Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-02-06-10-43-01
[civicrm-core.git] / CRM / Utils / File.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id: $
33 *
34 */
35
36 /**
37 * class to provide simple static functions for file objects
38 */
39 class CRM_Utils_File {
40
41 /**
42 * Given a file name, determine if the file contents make it an ascii file
43 *
44 * @param string $name name of file
45 *
46 * @return boolean true if file is ascii
47 * @access public
48 */
49 static function isAscii($name) {
50 $fd = fopen($name, "r");
51 if (!$fd) {
52 return FALSE;
53 }
54
55 $ascii = TRUE;
56 while (!feof($fd)) {
57 $line = fgets($fd, 8192);
58 if (!CRM_Utils_String::isAscii($line)) {
59 $ascii = FALSE;
60 break;
61 }
62 }
63
64 fclose($fd);
65 return $ascii;
66 }
67
68 /**
69 * Given a file name, determine if the file contents make it an html file
70 *
71 * @param string $name name of file
72 *
73 * @return boolean true if file is html
74 * @access public
75 */
76 static function isHtml($name) {
77 $fd = fopen($name, "r");
78 if (!$fd) {
79 return FALSE;
80 }
81
82 $html = FALSE;
83 $lineCount = 0;
84 while (!feof($fd) & $lineCount <= 5) {
85 $lineCount++;
86 $line = fgets($fd, 8192);
87 if (!CRM_Utils_String::isHtml($line)) {
88 $html = TRUE;
89 break;
90 }
91 }
92
93 fclose($fd);
94 return $html;
95 }
96
97 /**
98 * create a directory given a path name, creates parent directories
99 * if needed
100 *
101 * @param string $path the path name
102 * @param boolean $abort should we abort or just return an invalid code
103 *
104 * @return void
105 * @access public
106 * @static
107 */
108 static function createDir($path, $abort = TRUE) {
109 if (is_dir($path) || empty($path)) {
110 return;
111 }
112
113 CRM_Utils_File::createDir(dirname($path), $abort);
114 if (@mkdir($path, 0777) == FALSE) {
115 if ($abort) {
116 $docLink = CRM_Utils_System::docURL2('Moving an Existing Installation to a New Server or Location', NULL, NULL, NULL, NULL, "wiki");
117 echo "Error: Could not create directory: $path.<p>If you have moved an existing CiviCRM installation from one location or server to another there are several steps you will need to follow. They are detailed on this CiviCRM wiki page - {$docLink}. A fix for the specific problem that caused this error message to be displayed is to set the value of the config_backend column in the civicrm_domain table to NULL. However we strongly recommend that you review and follow all the steps in that document.</p>";
118
119 CRM_Utils_System::civiExit();
120 }
121 else {
122 return FALSE;
123 }
124 }
125 return TRUE;
126 }
127
128 /**
129 * delete a directory given a path name, delete children directories
130 * and files if needed
131 *
132 * @param string $path the path name
133 *
134 * @return void
135 * @access public
136 * @static
137 */
138 static function cleanDir($target, $rmdir = TRUE, $verbose = TRUE) {
139 static $exceptions = array('.', '..');
140 if ($target == '' || $target == '/') {
141 throw new Exception("Overly broad deletion");
142 }
143
144 if ($sourcedir = @opendir($target)) {
145 while (FALSE !== ($sibling = readdir($sourcedir))) {
146 if (!in_array($sibling, $exceptions)) {
147 $object = $target . DIRECTORY_SEPARATOR . $sibling;
148
149 if (is_dir($object)) {
150 CRM_Utils_File::cleanDir($object, $rmdir, $verbose);
151 }
152 elseif (is_file($object)) {
153 if (!unlink($object)) {
154 CRM_Core_Session::setStatus(ts('Unable to remove file %1', array(1 => $object)), ts('Warning'), 'error');
155 }
156 }
157 }
158 }
159 closedir($sourcedir);
160
161 if ($rmdir) {
162 if (rmdir($target)) {
163 if ($verbose) {
164 CRM_Core_Session::setStatus(ts('Removed directory %1', array(1 => $target)), '', 'success');
165 }
166 return TRUE;
167 }
168 else {
169 CRM_Core_Session::setStatus(ts('Unable to remove directory %1', array(1 => $target)), ts('Warning'), 'error');
170 }
171 }
172 }
173 }
174
175 static function copyDir($source, $destination) {
176 $dir = opendir($source);
177 @mkdir($destination);
178 while (FALSE !== ($file = readdir($dir))) {
179 if (($file != '.') && ($file != '..')) {
180 if (is_dir($source . DIRECTORY_SEPARATOR . $file)) {
181 CRM_Utils_File::copyDir($source . DIRECTORY_SEPARATOR . $file, $destination . DIRECTORY_SEPARATOR . $file);
182 }
183 else {
184 copy($source . DIRECTORY_SEPARATOR . $file, $destination . DIRECTORY_SEPARATOR . $file);
185 }
186 }
187 }
188 closedir($dir);
189 }
190
191 /**
192 * Given a file name, recode it (in place!) to UTF-8
193 *
194 * @param string $name name of file
195 *
196 * @return boolean whether the file was recoded properly
197 * @access public
198 */
199 static function toUtf8($name) {
200 static $config = NULL;
201 static $legacyEncoding = NULL;
202 if ($config == NULL) {
203 $config = CRM_Core_Config::singleton();
204 $legacyEncoding = $config->legacyEncoding;
205 }
206
207 if (!function_exists('iconv')) {
208
209 return FALSE;
210
211 }
212
213 $contents = file_get_contents($name);
214 if ($contents === FALSE) {
215 return FALSE;
216 }
217
218 $contents = iconv($legacyEncoding, 'UTF-8', $contents);
219 if ($contents === FALSE) {
220 return FALSE;
221 }
222
223 $file = fopen($name, 'w');
224 if ($file === FALSE) {
225 return FALSE;
226 }
227
228 $written = fwrite($file, $contents);
229 $closed = fclose($file);
230 if ($written === FALSE or !$closed) {
231 return FALSE;
232 }
233
234 return TRUE;
235 }
236
237 /**
238 * Appends trailing slashed to paths
239 *
240 * @return string
241 * @access public
242 * @static
243 */
244 static function addTrailingSlash($name, $separator = NULL) {
245 if (!$separator) {
246 $separator = DIRECTORY_SEPARATOR;
247 }
248
249 if (substr($name, -1, 1) != $separator) {
250 $name .= $separator;
251 }
252 return $name;
253 }
254
255 static function sourceSQLFile($dsn, $fileName, $prefix = NULL, $isQueryString = FALSE, $dieOnErrors = TRUE) {
256 require_once 'DB.php';
257
258 $db = DB::connect($dsn);
259 if (PEAR::isError($db)) {
260 die("Cannot open $dsn: " . $db->getMessage());
261 }
262 if (CRM_Utils_Constant::value('CIVICRM_MYSQL_STRICT', CRM_Utils_System::isDevelopment())) {
263 $db->query('SET SESSION sql_mode = STRICT_TRANS_TABLES');
264 }
265
266 if (!$isQueryString) {
267 $string = $prefix . file_get_contents($fileName);
268 }
269 else {
270 // use filename as query string
271 $string = $prefix . $fileName;
272 }
273
274 //get rid of comments starting with # and --
275
276 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
277 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
278
279 $queries = preg_split('/;\s*$/m', $string);
280 foreach ($queries as $query) {
281 $query = trim($query);
282 if (!empty($query)) {
283 CRM_Core_Error::debug_query($query);
284 $res = &$db->query($query);
285 if (PEAR::isError($res)) {
286 if ($dieOnErrors) {
287 die("Cannot execute $query: " . $res->getMessage());
288 }
289 else {
290 echo "Cannot execute $query: " . $res->getMessage() . "<p>";
291 }
292 }
293 }
294 }
295 }
296
297 static function isExtensionSafe($ext) {
298 static $extensions = NULL;
299 if (!$extensions) {
300 $extensions = CRM_Core_OptionGroup::values('safe_file_extension', TRUE);
301
302 //make extensions to lowercase
303 $extensions = array_change_key_case($extensions, CASE_LOWER);
304 // allow html/htm extension ONLY if the user is admin
305 // and/or has access CiviMail
306 if (!(CRM_Core_Permission::check('access CiviMail') ||
307 CRM_Core_Permission::check('administer CiviCRM') ||
308 (CRM_Mailing_Info::workflowEnabled() &&
309 CRM_Core_Permission::check('create mailings')
310 )
311 )) {
312 unset($extensions['html']);
313 unset($extensions['htm']);
314 }
315 }
316 //support lower and uppercase file extensions
317 return isset($extensions[strtolower($ext)]) ? TRUE : FALSE;
318 }
319
320 /**
321 * Determine whether a given file is listed in the PHP include path
322 *
323 * @param string $name name of file
324 *
325 * @return boolean whether the file can be include()d or require()d
326 */
327 static function isIncludable($name) {
328 $x = @fopen($name, 'r', TRUE);
329 if ($x) {
330 fclose($x);
331 return TRUE;
332 }
333 else {
334 return FALSE;
335 }
336 }
337
338 /**
339 * remove the 32 bit md5 we add to the fileName
340 * also remove the unknown tag if we added it
341 */
342 static function cleanFileName($name) {
343 // replace the last 33 character before the '.' with null
344 $name = preg_replace('/(_[\w]{32})\./', '.', $name);
345 return $name;
346 }
347
348 static function makeFileName($name) {
349 $uniqID = md5(uniqid(rand(), TRUE));
350 $info = pathinfo($name);
351 $basename = substr($info['basename'],
352 0, -(strlen(CRM_Utils_Array::value('extension', $info)) + (CRM_Utils_Array::value('extension', $info) == '' ? 0 : 1))
353 );
354 if (!self::isExtensionSafe(CRM_Utils_Array::value('extension', $info))) {
355 // munge extension so it cannot have an embbeded dot in it
356 // The maximum length of a filename for most filesystems is 255 chars.
357 // We'll truncate at 240 to give some room for the extension.
358 return CRM_Utils_String::munge("{$basename}_" . CRM_Utils_Array::value('extension', $info) . "_{$uniqID}", '_', 240) . ".unknown";
359 }
360 else {
361 return CRM_Utils_String::munge("{$basename}_{$uniqID}", '_', 240) . "." . CRM_Utils_Array::value('extension', $info);
362 }
363 }
364
365 static function getFilesByExtension($path, $ext) {
366 $path = self::addTrailingSlash($path);
367 $dh = opendir($path);
368 $files = array();
369 while (FALSE !== ($elem = readdir($dh))) {
370 if (substr($elem, -(strlen($ext) + 1)) == '.' . $ext) {
371 $files[] .= $path . $elem;
372 }
373 }
374 closedir($dh);
375 return $files;
376 }
377
378 /**
379 * Restrict access to a given directory (by planting there a restrictive .htaccess file)
380 *
381 * @param string $dir the directory to be secured
382 */
383 static function restrictAccess($dir, $overwrite = FALSE) {
384 // note: empty value for $dir can play havoc, since that might result in putting '.htaccess' to root dir
385 // of site, causing site to stop functioning.
386 // FIXME: we should do more checks here -
387 if (!empty($dir) && is_dir($dir)) {
388 $htaccess = <<<HTACCESS
389 <Files "*">
390 Order allow,deny
391 Deny from all
392 </Files>
393
394 HTACCESS;
395 $file = $dir . '.htaccess';
396 if ($overwrite || !file_exists($file)) {
397 if (file_put_contents($file, $htaccess) === FALSE) {
398 CRM_Core_Error::movedSiteError($file);
399 }
400 }
401 }
402 }
403
404 /**
405 * Restrict remote users from browsing the given directory.
406 *
407 * @param $publicDir
408 */
409 static function restrictBrowsing($publicDir) {
410 // base dir
411 $nobrowse = realpath($publicDir) . '/index.html';
412 if (!file_exists($nobrowse)) {
413 @file_put_contents($nobrowse, '');
414 }
415
416 // child dirs
417 $dir = new RecursiveDirectoryIterator($publicDir);
418 foreach ($dir as $name => $object) {
419 if (is_dir($name) && $name != '..') {
420 $nobrowse = realpath($name) . '/index.html';
421 if (!file_exists($nobrowse)) {
422 @file_put_contents($nobrowse, '');
423 }
424 }
425 }
426 }
427
428 /**
429 * Create the base file path from which all our internal directories are
430 * offset. This is derived from the template compile directory set
431 */
432 static function baseFilePath($templateCompileDir = NULL) {
433 static $_path = NULL;
434 if (!$_path) {
435 if ($templateCompileDir == NULL) {
436 $config = CRM_Core_Config::singleton();
437 $templateCompileDir = $config->templateCompileDir;
438 }
439
440 $path = dirname($templateCompileDir);
441
442 //this fix is to avoid creation of upload dirs inside templates_c directory
443 $checkPath = explode(DIRECTORY_SEPARATOR, $path);
444
445 $cnt = count($checkPath) - 1;
446 if ($checkPath[$cnt] == 'templates_c') {
447 unset($checkPath[$cnt]);
448 $path = implode(DIRECTORY_SEPARATOR, $checkPath);
449 }
450
451 $_path = CRM_Utils_File::addTrailingSlash($path);
452 }
453 return $_path;
454 }
455
456 static function relativeDirectory($directory) {
457 // Do nothing on windows
458 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
459 return $directory;
460 }
461
462 // check if directory is relative, if so return immediately
463 if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) {
464 return $directory;
465 }
466
467 // make everything relative from the baseFilePath
468 $basePath = self::baseFilePath();
469 // check if basePath is a substr of $directory, if so
470 // return rest of string
471 if (substr($directory, 0, strlen($basePath)) == $basePath) {
472 return substr($directory, strlen($basePath));
473 }
474
475 // return the original value
476 return $directory;
477 }
478
479 static function absoluteDirectory($directory) {
480 // Do nothing on windows - config will need to specify absolute path
481 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
482 return $directory;
483 }
484
485 // check if directory is already absolute, if so return immediately
486 if (substr($directory, 0, 1) == DIRECTORY_SEPARATOR) {
487 return $directory;
488 }
489
490 // make everything absolute from the baseFilePath
491 $basePath = self::baseFilePath();
492
493 return $basePath . $directory;
494 }
495
496 /**
497 * Make a file path relative to some base dir
498 *
499 * @return string
500 */
501 static function relativize($directory, $basePath) {
502 if (substr($directory, 0, strlen($basePath)) == $basePath) {
503 return substr($directory, strlen($basePath));
504 } else {
505 return $directory;
506 }
507 }
508
509 /**
510 * Create a path to a temporary file which can endure for multiple requests
511 *
512 * TODO: Automatic file cleanup using, eg, TTL policy
513 *
514 * @param $prefix string
515 *
516 * @return string, path to an openable/writable file
517 * @see tempnam
518 */
519 static function tempnam($prefix = 'tmp-') {
520 //$config = CRM_Core_Config::singleton();
521 //$nonce = md5(uniqid() . $config->dsn . $config->userFrameworkResourceURL);
522 //$fileName = "{$config->configAndLogDir}" . $prefix . $nonce . $suffix;
523 $fileName = tempnam(sys_get_temp_dir(), $prefix);
524 return $fileName;
525 }
526
527 /**
528 * Create a path to a temporary directory which can endure for multiple requests
529 *
530 * TODO: Automatic file cleanup using, eg, TTL policy
531 *
532 * @param $prefix string
533 *
534 * @return string, path to an openable/writable directory; ends with '/'
535 * @see tempnam
536 */
537 static function tempdir($prefix = 'tmp-') {
538 $fileName = self::tempnam($prefix);
539 unlink($fileName);
540 mkdir($fileName, 0700);
541 return $fileName . '/';
542 }
543
544 /**
545 * Search directory tree for files which match a glob pattern.
546 *
547 * Note: Dot-directories (like "..", ".git", or ".svn") will be ignored.
548 *
549 * @param $dir string, base dir
550 * @param $pattern string, glob pattern, eg "*.txt"
551 * @return array(string)
552 */
553 static function findFiles($dir, $pattern) {
554 $todos = array($dir);
555 $result = array();
556 while (!empty($todos)) {
557 $subdir = array_shift($todos);
558 $matches = glob("$subdir/$pattern");
559 if (is_array($matches)) {
560 foreach ($matches as $match) {
561 if (!is_dir($match)) {
562 $result[] = $match;
563 }
564 }
565 }
566 $dh = opendir($subdir);
567 if ($dh) {
568 while (FALSE !== ($entry = readdir($dh))) {
569 $path = $subdir . DIRECTORY_SEPARATOR . $entry;
570 if ($entry{0} == '.') {
571 // ignore
572 } elseif (is_dir($path)) {
573 $todos[] = $path;
574 }
575 }
576 closedir($dh);
577 }
578 }
579 return $result;
580 }
581
582 /**
583 * Determine if $child is a sub-directory of $parent
584 *
585 * @param string $parent
586 * @param string $child
587 * @return bool
588 */
589 static function isChildPath($parent, $child, $checkRealPath = TRUE) {
590 if ($checkRealPath) {
591 $parent = realpath($parent);
592 $child = realpath($child);
593 }
594 $parentParts = explode('/', rtrim($parent, '/'));
595 $childParts = explode('/', rtrim($child, '/'));
596 while (($parentPart = array_shift($parentParts)) !== NULL) {
597 $childPart = array_shift($childParts);
598 if ($parentPart != $childPart) {
599 return FALSE;
600 }
601 }
602 if (empty($childParts)) {
603 return FALSE; // same directory
604 } else {
605 return TRUE;
606 }
607 }
608
609 /**
610 * Move $fromDir to $toDir, replacing/deleting any
611 * pre-existing content.
612 *
613 * @param string $fromDir the directory which should be moved
614 * @param string $toDir the new location of the directory
615 * @return bool TRUE on success
616 */
617 static function replaceDir($fromDir, $toDir, $verbose = FALSE) {
618 if (is_dir($toDir)) {
619 if (!self::cleanDir($toDir, TRUE, $verbose)) {
620 return FALSE;
621 }
622 }
623
624 // return rename($fromDir, $toDir); // CRM-11987, https://bugs.php.net/bug.php?id=54097
625
626 CRM_Utils_File::copyDir($fromDir, $toDir);
627 if (!CRM_Utils_File::cleanDir($fromDir, TRUE, FALSE)) {
628 CRM_Core_Session::setStatus(ts('Failed to clean temp dir: %1', array(1 => $fromDir)), '', 'alert');
629 return FALSE;
630 }
631 return TRUE;
632 }
633 }
634