PageRenderTime 42ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/s2member/src/includes/classes/utils-dirs.inc.php

https://gitlab.com/pankajmohale/chef2go
PHP | 207 lines | 100 code | 18 blank | 89 comment | 39 complexity | 8a798c9f07e303bb35a9eb75a9e60edd MD5 | raw file
  1. <?php
  2. // @codingStandardsIgnoreFile
  3. /**
  4. * Directory utilities.
  5. *
  6. * Copyright: © 2009-2011
  7. * {@link http://websharks-inc.com/ WebSharks, Inc.}
  8. * (coded in the USA)
  9. *
  10. * Released under the terms of the GNU General Public License.
  11. * You should have received a copy of the GNU General Public License,
  12. * along with this software. In the main directory, see: /licensing/
  13. * If not, see: {@link http://www.gnu.org/licenses/}.
  14. *
  15. * @package s2Member\Utilities
  16. * @since 3.5
  17. */
  18. if(!defined('WPINC')) // MUST have WordPress.
  19. exit ("Do not access this file directly.");
  20. if (!class_exists ("c_ws_plugin__s2member_utils_dirs"))
  21. {
  22. /**
  23. * Directory utilities.
  24. *
  25. * @package s2Member\Utilities
  26. * @since 3.5
  27. */
  28. class c_ws_plugin__s2member_utils_dirs
  29. {
  30. /**
  31. * Normalizes directory separators in dir/file paths.
  32. *
  33. * @package s2Member\Utilities
  34. * @since 111017
  35. *
  36. * @param string $path Directory or file path.
  37. * @return string Directory or file path, after having been normalized by this routine.
  38. */
  39. public static function n_dir_seps ($path = FALSE)
  40. {
  41. return rtrim (preg_replace ("/\/+/", "/", str_replace (array(DIRECTORY_SEPARATOR, "\\", "/"), "/", (string)$path)), "/");
  42. }
  43. /**
  44. * Strips a trailing `/app_data/` sub-directory.
  45. *
  46. * @package s2Member\Utilities
  47. * @since 3.5
  48. *
  49. * @param string $path Directory or file path.
  50. * @return string Directory or file path without `/app_data/`.
  51. */
  52. public static function strip_dir_app_data ($path = FALSE)
  53. {
  54. return preg_replace ("/\/app_data$/", "", c_ws_plugin__s2member_utils_dirs::n_dir_seps ((string)$path));
  55. }
  56. /**
  57. * Basename from a full directory or file path.
  58. *
  59. * @package s2Member\Utilities
  60. * @since 110815
  61. *
  62. * @param string $path Directory or file path.
  63. * @return string Basename; including a possible `/app_data/` directory.
  64. */
  65. public static function basename_dir_app_data ($path = FALSE)
  66. {
  67. $path = preg_replace ("/\/app_data$/", "", c_ws_plugin__s2member_utils_dirs::n_dir_seps ((string)$path), 1, $app_data);
  68. return basename ($path) . (($app_data) ? "/app_data" : "");
  69. }
  70. /**
  71. * Shortens to a directory or file path, from document root.
  72. *
  73. * @package s2Member\Utilities
  74. * @since 110815
  75. *
  76. * @param string $path Directory or file path.
  77. * @return string Shorther path, from document root.
  78. */
  79. public static function doc_root_path ($path = FALSE)
  80. {
  81. $doc_root = c_ws_plugin__s2member_utils_dirs::n_dir_seps ($_SERVER["DOCUMENT_ROOT"]);
  82. return preg_replace ("/^" . preg_quote ($doc_root, "/") . "/", "", c_ws_plugin__s2member_utils_dirs::n_dir_seps ((string)$path));
  83. }
  84. /**
  85. * Finds the relative path, from one location to another.
  86. *
  87. * @package s2Member\Utilities
  88. * @since 110815
  89. *
  90. * @param string $from The full directory path to calculate a relative path `from`.
  91. * @param string $to The full directory or file path, which this routine will build a relative path `to`.
  92. * @param bool $try_realpaths Defaults to true. When true, try to acquire ``realpath()``, thereby resolving all relative paths and/or symlinks in ``$from`` and ``$to`` args.
  93. * @param bool $use_win_diff_drive_jctn Defaults to true. When true, we'll work around issues with different drives on Windows by trying to create a directory junction.
  94. * @return string String with the relative path to: ``$to``.
  95. */
  96. public static function rel_path ($from = FALSE, $to = FALSE, $try_realpaths = TRUE, $use_win_diff_drive_jctn = TRUE)
  97. {
  98. if ( /* Initialize/validate. */!($rel_path = array()) && is_string ($from) && strlen ($from) && is_string ($to) && strlen ($to))
  99. {
  100. $from = ($try_realpaths && ($_real_from = realpath ($from))) ? $_real_from : $from; // Try this?
  101. $to = ($try_realpaths && ($_real_to = realpath ($to))) ? $_real_to : $to; // Try to find realpath?
  102. $from = (is_file ($from)) ? dirname ($from) . "/" : $from . "/"; // A (directory) with trailing `/`.
  103. $from = c_ws_plugin__s2member_utils_dirs::n_dir_seps ($from); // Normalize directory separators now.
  104. $to = c_ws_plugin__s2member_utils_dirs::n_dir_seps ($to); // Normalize directory separators here too.
  105. $from = preg_split ("/\//", $from); // Convert ``$from``, to an array. Split on each directory separator.
  106. $to = preg_split ("/\//", $to); // Also convert ``$to``, to an array. Split this on each directory separator.
  107. if ($use_win_diff_drive_jctn && stripos (PHP_OS, "win") === 0 /* Test for different drives on Windows servers? */)
  108. if (/*Drive? */preg_match ("/^([A-Z])\:$/i", $from[0], $_m) && ($_from_drive = $_m[1]) && preg_match ("/^([A-Z])\:$/i", $to[0], $_m) && ($_to_drive = $_m[1]))
  109. if ( /* Are these locations on completely different drives? */$_from_drive !== $_to_drive)
  110. {
  111. $_from_drive_jctn = $_from_drive . ":/s2-" . $_to_drive . "-jctn";
  112. $_sys_temp_dir_jctn = c_ws_plugin__s2member_utils_dirs::get_temp_dir (false) . "/s2-" . $_to_drive . "-jctn";
  113. $_jctn = ($_sys_temp_dir_jctn && strpos ($_sys_temp_dir_jctn, $_from_drive) === 0) ? $_sys_temp_dir_jctn : $_from_drive_jctn;
  114. if (($_from_drive_jctn_exists = (is_dir ($_from_drive_jctn)) ? true : false) || c_ws_plugin__s2member_utils_dirs::create_win_jctn ($_jctn, $_to_drive . ":/"))
  115. {
  116. array_shift /* Shift drive off and use junction now. */ ($to);
  117. foreach (array_reverse (preg_split ("/\//", (($_from_drive_jctn_exists) ? $_from_drive_jctn : $_jctn))) as $_jctn_dir)
  118. array_unshift ($to, $_jctn_dir);
  119. }
  120. else // Else, we should trigger an error in this case. It's NOT possible to generate this.
  121. {
  122. trigger_error ("Unable to generate a relative path across different Windows drives." .
  123. " Please create a Directory Junction here: " . $_from_drive_jctn . ", pointing to: " . $_to_drive . ":/", E_USER_ERROR);
  124. }
  125. }
  126. unset($_real_from, $_real_to, $_from_drive, $_to_drive, $_from_drive_jctn, $_sys_temp_dir_jctn, $_jctn, $_from_drive_jctn_exists, $_jctn_dir, $_m);
  127. $rel_path = $to; // Re-initialize. Start ``$rel_path`` as the value of the ``$to`` array.
  128. foreach (array_keys ($from) as $_depth) // Each ``$from`` directory ``$_depth``.
  129. {
  130. if (isset ($from[$_depth], $to[$_depth]) && $from[$_depth] === $to[$_depth])
  131. array_shift ($rel_path);
  132. else if (($_remaining = count ($from) - $_depth) > 1)
  133. {
  134. $_left_p = -1 * (count ($rel_path) + ($_remaining - 1));
  135. $rel_path = array_pad ($rel_path, $_left_p, "..");
  136. break; // Stop now, no need to go any further.
  137. }
  138. else // Else, set as the same directory `./[0]`.
  139. {
  140. $rel_path[0] = "./" . $rel_path[0];
  141. break; // Stop now.
  142. }
  143. }
  144. }
  145. return implode ("/", $rel_path);
  146. }
  147. /**
  148. * Creates a directory Junction in Windows.
  149. *
  150. * @package s2Member\Utilities
  151. * @since 111013
  152. *
  153. * @param string $jctn Directory location of the Junction (i.e., the link).
  154. * @param string $target Target directory that this Junction will connect to.
  155. * @return bool True if created successfully, or already exists, else false.
  156. */
  157. public static function create_win_jctn ($jctn = FALSE, $target = FALSE)
  158. {
  159. if ($jctn && is_string ($jctn) && $target && is_string ($target) && stripos (PHP_OS, "win") === 0)
  160. {
  161. if (is_dir ($jctn)) // Does it already exist? If so return now.
  162. return true; // Return now to save extra processing time below.
  163. else if ( /* Possible? */function_exists ("shell_exec") && ($esa = "escapeshellarg"))
  164. {
  165. @shell_exec ("mklink /J " . $esa ($jctn) . " " . $esa ($target));
  166. clearstatcache (); // Clear ``stat()`` cache now.
  167. if (is_dir ($jctn)) // Created successfully?
  168. return true;
  169. }
  170. }
  171. return false; // Else return false.
  172. }
  173. /**
  174. * Get the system's temporary directory.
  175. *
  176. * @package s2Member\Utilities
  177. * @since 111017
  178. *
  179. * @param string $fallback Defaults to true. If true, fallback on WordPress routine if not available, or if not writable.
  180. * @return str|bool Full string path to a writable temp directory, else false on failure.
  181. */
  182. public static function get_temp_dir ($fallback = TRUE)
  183. {
  184. $temp_dir = (($temp_dir = realpath (sys_get_temp_dir ())) && is_writable ($temp_dir)) ? $temp_dir : false;
  185. $temp_dir = (!$temp_dir && $fallback && ($wp_temp_dir = realpath (get_temp_dir ())) && is_writable ($wp_temp_dir)) ? $wp_temp_dir : $temp_dir;
  186. return ($temp_dir) ? c_ws_plugin__s2member_utils_dirs::n_dir_seps ($temp_dir) : false;
  187. }
  188. }
  189. }