Merge pull request #16713 from eileenmcnaughton/regress
[civicrm-core.git] / Civi / Core / Paths.php
1 <?php
2 namespace Civi\Core;
3
4 /**
5 * Class Paths
6 * @package Civi\Core
7 *
8 * This paths class translates path-expressions into local file paths and
9 * URLs. Path-expressions may take a few forms:
10 *
11 * - Paths and URLs may use a variable prefix. For example, '[civicrm.files]/upload'
12 * - Paths and URLS may be absolute.
13 * - Paths may be relative (base dir: [civicrm.files]).
14 * - URLs may be relative (base dir: [cms.root]).
15 */
16 class Paths {
17
18 const DEFAULT_URL = 'cms.root';
19 const DEFAULT_PATH = 'civicrm.files';
20
21 /**
22 * @var array
23 * Array(string $name => array(url => $, path => $)).
24 */
25 private $variables = [];
26
27 private $variableFactory = [];
28
29 /**
30 * Class constructor.
31 */
32 public function __construct() {
33 $paths = $this;
34 $this
35 ->register('civicrm.root', function () {
36 return \CRM_Core_Config::singleton()->userSystem->getCiviSourceStorage();
37 })
38 ->register('civicrm.packages', function () {
39 return [
40 'path' => \Civi::paths()->getPath('[civicrm.root]/packages/'),
41 'url' => \Civi::paths()->getUrl('[civicrm.root]/packages/'),
42 ];
43 })
44 ->register('civicrm.vendor', function () {
45 return [
46 'path' => \Civi::paths()->getPath('[civicrm.root]/vendor/'),
47 'url' => \Civi::paths()->getUrl('[civicrm.root]/vendor/'),
48 ];
49 })
50 ->register('civicrm.bower', function () {
51 return [
52 'path' => \Civi::paths()->getPath('[civicrm.root]/bower_components/'),
53 'url' => \Civi::paths()->getUrl('[civicrm.root]/bower_components/'),
54 ];
55 })
56 ->register('civicrm.files', function () {
57 return \CRM_Core_Config::singleton()->userSystem->getDefaultFileStorage();
58 })
59 ->register('civicrm.private', function () {
60 return [
61 // For backward compatibility with existing deployments, this
62 // effectively returns `dirname(CIVICRM_TEMPLATE_COMPILEDIR)`.
63 // That's confusing. Future installers should probably set `civicrm.private`
64 // explicitly instead of setting `CIVICRM_TEMPLATE_COMPILEDIR`.
65 'path' => \CRM_Utils_File::baseFilePath(),
66 ];
67 })
68 ->register('civicrm.log', function () {
69 return [
70 'path' => \Civi::paths()->getPath('[civicrm.private]/ConfigAndLog'),
71 ];
72 })
73 ->register('civicrm.compile', function () {
74 return [
75 // These two formulations are equivalent in typical deployments; however,
76 // for existing systems which previously customized CIVICRM_TEMPLATE_COMPILEDIR,
77 // using the constant should be more backward-compatibility.
78 'path' => defined('CIVICRM_TEMPLATE_COMPILEDIR') ? CIVICRM_TEMPLATE_COMPILEDIR : \Civi::paths()->getPath('[civicrm.private]/templates_c'),
79 ];
80 })
81 ->register('civicrm.l10n', function () {
82 $dir = defined('CIVICRM_L10N_BASEDIR') ? CIVICRM_L10N_BASEDIR : \Civi::paths()->getPath('[civicrm.private]/l10n');
83 return [
84 'path' => is_dir($dir) ? $dir : \Civi::paths()->getPath('[civicrm.root]/l10n'),
85 ];
86 })
87 ->register('wp.frontend.base', function () {
88 return ['url' => rtrim(CIVICRM_UF_BASEURL, '/') . '/'];
89 })
90 ->register('wp.frontend', function () use ($paths) {
91 $config = \CRM_Core_Config::singleton();
92 $suffix = defined('CIVICRM_UF_WP_BASEPAGE') ? CIVICRM_UF_WP_BASEPAGE : $config->wpBasePage;
93 return [
94 'url' => $paths->getVariable('wp.frontend.base', 'url') . $suffix,
95 ];
96 })
97 ->register('wp.backend.base', function () {
98 return ['url' => rtrim(CIVICRM_UF_BASEURL, '/') . '/wp-admin/'];
99 })
100 ->register('wp.backend', function () use ($paths) {
101 return [
102 'url' => $paths->getVariable('wp.backend.base', 'url') . 'admin.php',
103 ];
104 })
105 ->register('cms', function () {
106 return [
107 'path' => \CRM_Core_Config::singleton()->userSystem->cmsRootPath(),
108 'url' => \CRM_Utils_System::baseCMSURL(),
109 ];
110 })
111 ->register('cms.root', function () {
112 return [
113 'path' => \CRM_Core_Config::singleton()->userSystem->cmsRootPath(),
114 // Misleading: this *removes* the language part of the URL, producing a pristine base URL.
115 'url' => \CRM_Utils_System::languageNegotiationURL(\CRM_Utils_System::baseCMSURL(), FALSE, TRUE),
116 ];
117 });
118 }
119
120 /**
121 * Register a new URL/file path mapping.
122 *
123 * @param string $name
124 * The name of the variable.
125 * @param callable $factory
126 * Function which returns an array with keys:
127 * - path: string.
128 * - url: string.
129 * @return Paths
130 */
131 public function register($name, $factory) {
132 $this->variableFactory[$name] = $factory;
133 return $this;
134 }
135
136 /**
137 * @param string $name
138 * Ex: 'civicrm.root'.
139 * @param string $attr
140 * Ex: 'url', 'path'.
141 * @return mixed
142 */
143 public function getVariable($name, $attr) {
144 if (!isset($this->variables[$name])) {
145 $this->variables[$name] = call_user_func($this->variableFactory[$name]);
146 if (isset($GLOBALS['civicrm_paths'][$name])) {
147 $this->variables[$name] = array_merge($this->variables[$name], $GLOBALS['civicrm_paths'][$name]);
148 }
149 if (isset($this->variables[$name]['url'])) {
150 // Typical behavior is to return an absolute URL. If an admin has put an override that's site-relative, then convert.
151 $this->variables[$name]['url'] = $this->toAbsoluteUrl($this->variables[$name]['url'], $name);
152 }
153 }
154 if (!isset($this->variables[$name][$attr])) {
155 throw new \RuntimeException("Cannot resolve path using \"$name.$attr\"");
156 }
157 return $this->variables[$name][$attr];
158 }
159
160 /**
161 * @param string $url
162 * Ex: 'https://example.com:8000/foobar' or '/foobar'
163 * @param string $for
164 * Ex: 'civicrm.root' or 'civicrm.packages'
165 * @return string
166 */
167 private function toAbsoluteUrl($url, $for) {
168 if (!$url) {
169 return $url;
170 }
171 elseif ($url[0] === '/') {
172 // Relative URL interpretation
173 if ($for === 'cms.root') {
174 throw new \RuntimeException('Invalid configuration: the [cms.root] path must be an absolute URL');
175 }
176 $cmsUrl = rtrim($this->getVariable('cms.root', 'url'), '/');
177 // The norms for relative URLs dictate:
178 // Single-slash: "/sub/dir" or "/" (domain-relative)
179 // Double-slash: "//example.com/sub/dir" (same-scheme)
180 $prefix = ($url === '/' || $url[1] !== '/')
181 ? $cmsUrl
182 : (parse_url($cmsUrl, PHP_URL_SCHEME) . ':');
183 return $prefix . $url;
184 }
185 else {
186 // Assume this is an absolute URL, as in the past ('_h_ttp://').
187 return $url;
188 }
189 }
190
191 /**
192 * Does the variable exist.
193 *
194 * @param string $name
195 *
196 * @return bool
197 */
198 public function hasVariable($name) {
199 return isset($this->variableFactory[$name]);
200 }
201
202 /**
203 * Determine the absolute path to a file, given that the file is most likely
204 * in a given particular variable.
205 *
206 * @param string $value
207 * The file path.
208 * Use "." to reference to default file root.
209 * Values may begin with a variable, e.g. "[civicrm.files]/upload".
210 * @return mixed|string
211 */
212 public function getPath($value) {
213 $defaultContainer = self::DEFAULT_PATH;
214 if ($value && $value{0} == '[' && preg_match(';^\[([a-zA-Z0-9\._]+)\]/(.*);', $value, $matches)) {
215 $defaultContainer = $matches[1];
216 $value = $matches[2];
217 }
218 if (empty($value)) {
219 return FALSE;
220 }
221 if ($value === '.') {
222 $value = '';
223 }
224 return \CRM_Utils_File::absoluteDirectory($value, $this->getVariable($defaultContainer, 'path'));
225 }
226
227 /**
228 * Determine the URL to a file.
229 *
230 * @param string $value
231 * The file path. The path may begin with a variable, e.g. "[civicrm.files]/upload".
232 * @param string $preferFormat
233 * The preferred format ('absolute', 'relative').
234 * The result data may not meet the preference -- if the setting
235 * refers to an external domain, then the result will be
236 * absolute (regardless of preference).
237 * @param bool|NULL $ssl
238 * NULL to autodetect. TRUE to force to SSL.
239 * @return mixed|string
240 */
241 public function getUrl($value, $preferFormat = 'relative', $ssl = NULL) {
242 $defaultContainer = self::DEFAULT_URL;
243 if ($value && $value{0} == '[' && preg_match(';^\[([a-zA-Z0-9\._]+)\](/(.*))$;', $value, $matches)) {
244 $defaultContainer = $matches[1];
245 $value = empty($matches[3]) ? '.' : $matches[3];
246 }
247
248 if (empty($value)) {
249 return FALSE;
250 }
251 if ($value === '.') {
252 $value = '';
253 }
254 if (substr($value, 0, 4) == 'http') {
255 return $value;
256 }
257
258 $value = $this->getVariable($defaultContainer, 'url') . $value;
259
260 if ($preferFormat === 'relative') {
261 $parsed = parse_url($value);
262 if (isset($_SERVER['HTTP_HOST']) && isset($parsed['host']) && $_SERVER['HTTP_HOST'] == $parsed['host']) {
263 $value = $parsed['path'];
264 }
265 }
266
267 if ($ssl || ($ssl === NULL && \CRM_Utils_System::isSSL())) {
268 $value = str_replace('http://', 'https://', $value);
269 }
270
271 return $value;
272 }
273
274 }