Do not fatally fail on angular pages if an extension is missing
[civicrm-core.git] / CRM / Extension / Mapper.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 * This class proivdes various helper functions for locating extensions
14 * data. It's designed for compatibility with pre-existing functions from
15 * CRM_Core_Extensions.
16 *
17 * Most of these helper functions originate with the first major iteration
18 * of extensions -- a time when every extension had one eponymous PHP class,
19 * when there was no PHP class-loader, and when there was special-case logic
20 * sprinkled around to handle loading of "extension classes".
21 *
22 * With module-extensions (Civi 4.2+), there are no eponymous classes --
23 * instead, module-extensions follow the same class-naming and class-loading
24 * practices as core (and don't require special-case logic for class
25 * loading). Consequently, the helpers in here aren't much used with
26 * module-extensions.
27 *
28 * @package CRM
ca5cec67 29 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
30 */
31class CRM_Extension_Mapper {
32
33 /**
fe482240 34 * An URL for public extensions repository.
6a488035 35 */
6a488035
TO
36
37 /**
fe482240 38 * Extension info file name.
6a488035
TO
39 */
40 const EXT_TEMPLATES_DIRNAME = 'templates';
41
42 /**
43 * @var CRM_Extension_Container_Interface
44 */
45 protected $container;
46
47 /**
51dda21e
SL
48 * @var \CRM_Extension_Info[]
49 * (key => CRM_Extension_Info)
6a488035 50 */
be2fb01f 51 protected $infos = [];
6a488035
TO
52
53 /**
54 * @var array
55 */
56 protected $moduleExtensions = NULL;
57
58 /**
59 * @var CRM_Utils_Cache_Interface
60 */
61 protected $cache;
62
63 protected $cacheKey;
64
65 protected $civicrmPath;
66
67 protected $civicrmUrl;
68
e0ef6999
EM
69 /**
70 * @param CRM_Extension_Container_Interface $container
71 * @param CRM_Utils_Cache_Interface $cache
72 * @param null $cacheKey
73 * @param null $civicrmPath
74 * @param null $civicrmUrl
75 */
6a488035
TO
76 public function __construct(CRM_Extension_Container_Interface $container, CRM_Utils_Cache_Interface $cache = NULL, $cacheKey = NULL, $civicrmPath = NULL, $civicrmUrl = NULL) {
77 $this->container = $container;
78 $this->cache = $cache;
79 $this->cacheKey = $cacheKey;
80 if ($civicrmUrl) {
81 $this->civicrmUrl = rtrim($civicrmUrl, '/');
0db6c3e1
TO
82 }
83 else {
6a488035
TO
84 $config = CRM_Core_Config::singleton();
85 $this->civicrmUrl = rtrim($config->resourceBase, '/');
86 }
87 if ($civicrmPath) {
b3a4b879 88 $this->civicrmPath = rtrim($civicrmPath, '/');
0db6c3e1
TO
89 }
90 else {
6a488035 91 global $civicrm_root;
b3a4b879 92 $this->civicrmPath = rtrim($civicrm_root, '/');
6a488035
TO
93 }
94 }
95
96 /**
97 * Given the class, provides extension's key.
98 *
6a488035 99 *
f41911fd
TO
100 * @param string $clazz
101 * Extension class name.
6a488035 102 *
a6c01b45
CW
103 * @return string
104 * name of extension key
6a488035
TO
105 */
106 public function classToKey($clazz) {
107 return str_replace('_', '.', $clazz);
108 }
109
110 /**
111 * Given the class, provides extension path.
112 *
6a488035 113 *
6c8f6e67
EM
114 * @param $clazz
115 *
a6c01b45
CW
116 * @return string
117 * full path the extension .php file
6a488035
TO
118 */
119 public function classToPath($clazz) {
120 $elements = explode('_', $clazz);
121 $key = implode('.', $elements);
122 return $this->keyToPath($key);
123 }
124
125 /**
126 * Given the string, returns true or false if it's an extension key.
127 *
6a488035 128 *
f41911fd
TO
129 * @param string $key
130 * A string which might be an extension key.
6a488035 131 *
e7483cbe 132 * @return bool
a6c01b45 133 * true if given string is an extension name
6a488035
TO
134 */
135 public function isExtensionKey($key) {
136 // check if the string is an extension name or the class
137 return (strpos($key, '.') !== FALSE) ? TRUE : FALSE;
138 }
139
140 /**
141 * Given the string, returns true or false if it's an extension class name.
142 *
6a488035 143 *
f41911fd
TO
144 * @param string $clazz
145 * A string which might be an extension class name.
6a488035 146 *
e7483cbe 147 * @return bool
a6c01b45 148 * true if given string is an extension class name
6a488035
TO
149 */
150 public function isExtensionClass($clazz) {
151
152 if (substr($clazz, 0, 4) != 'CRM_') {
153 return (bool) preg_match('/^[a-z0-9]+(_[a-z0-9]+)+$/', $clazz);
154 }
155 return FALSE;
156 }
157
158 /**
f41911fd
TO
159 * @param string $key
160 * Extension fully-qualified-name.
77b97be7
EM
161 * @param bool $fresh
162 *
163 * @throws CRM_Extension_Exception
164 * @throws Exception
c490a46a 165 * @return CRM_Extension_Info
6a488035
TO
166 */
167 public function keyToInfo($key, $fresh = FALSE) {
168 if ($fresh || !array_key_exists($key, $this->infos)) {
169 try {
170 $this->infos[$key] = CRM_Extension_Info::loadFromFile($this->container->getPath($key) . DIRECTORY_SEPARATOR . CRM_Extension_Info::FILENAME);
0db6c3e1
TO
171 }
172 catch (CRM_Extension_Exception $e) {
6a488035
TO
173 // file has more detailed info, but we'll fallback to DB if it's missing -- DB has enough info to uninstall
174 $this->infos[$key] = CRM_Extension_System::singleton()->getManager()->createInfoFromDB($key);
175 if (!$this->infos[$key]) {
176 throw $e;
177 }
178 }
179 }
180 return $this->infos[$key];
181 }
182
183 /**
184 * Given the key, provides extension's class name.
185 *
6a488035 186 *
f41911fd
TO
187 * @param string $key
188 * Extension key.
6a488035 189 *
a6c01b45
CW
190 * @return string
191 * name of extension's main class
6a488035
TO
192 */
193 public function keyToClass($key) {
194 return str_replace('.', '_', $key);
195 }
196
197 /**
198 * Given the key, provides the path to file containing
199 * extension's main class.
200 *
6a488035 201 *
f41911fd
TO
202 * @param string $key
203 * Extension key.
6a488035 204 *
a6c01b45
CW
205 * @return string
206 * path to file containing extension's main class
6a488035
TO
207 */
208 public function keyToPath($key) {
209 $info = $this->keyToInfo($key);
210 return $this->container->getPath($key) . DIRECTORY_SEPARATOR . $info->file . '.php';
211 }
212
213 /**
214 * Given the key, provides the path to file containing
215 * extension's main class.
216 *
f41911fd
TO
217 * @param string $key
218 * Extension key.
a6c01b45
CW
219 * @return string
220 * local path of the extension source tree
6a488035
TO
221 */
222 public function keyToBasePath($key) {
223 if ($key == 'civicrm') {
224 return $this->civicrmPath;
225 }
226 return $this->container->getPath($key);
227 }
228
229 /**
230 * Given the key, provides the path to file containing
231 * extension's main class.
232 *
6a488035 233 *
f41911fd
TO
234 * @param string $key
235 * Extension key.
6a488035 236 *
a6c01b45
CW
237 * @return string
238 * url for resources in this extension
78280a63 239 *
240 * @throws \CRM_Extension_Exception_MissingException
6a488035
TO
241 */
242 public function keyToUrl($key) {
78280a63 243 if ($key === 'civicrm') {
dee7a2b1
PJ
244 // CRM-12130 Workaround: If the domain's config_backend is NULL at the start of the request,
245 // then the Mapper is wrongly constructed with an empty value for $this->civicrmUrl.
3d4a4ccf
PJ
246 if (empty($this->civicrmUrl)) {
247 $config = CRM_Core_Config::singleton();
248 return rtrim($config->resourceBase, '/');
249 }
6a488035
TO
250 return $this->civicrmUrl;
251 }
252
253 return $this->container->getResUrl($key);
254 }
255
256 /**
257 * Fetch the list of active extensions of type 'module'
258 *
5a4f6742
CW
259 * @param bool $fresh
260 * whether to forcibly reload extensions list from canonical store.
a6c01b45 261 * @return array
0e092fe0 262 * array(array('prefix' => $, 'fullName' => $, 'filePath' => $))
6a488035
TO
263 */
264 public function getActiveModuleFiles($fresh = FALSE) {
62f662b0 265 if (!defined('CIVICRM_DSN')) {
266 // hmm, ok
267 return [];
6a488035
TO
268 }
269
0e092fe0
HD
270 // The list of module files is cached in two tiers. The tiers are slightly
271 // different:
272 //
273 // 1. The persistent tier (cache) stores
274 // names WITHOUT absolute paths.
275 // 2. The ephemeral/thread-local tier (statics) stores names
276 // WITH absolute paths.
277 // Return static value instead of re-running query
24ef6b49 278 if (isset(Civi::$statics[__CLASS__]['moduleExtensions']) && !$fresh) {
0e092fe0
HD
279 return Civi::$statics[__CLASS__]['moduleExtensions'];
280 }
281
6a488035 282 $moduleExtensions = NULL;
0e092fe0
HD
283
284 // Checked if it's stored in the persistent cache.
6a488035 285 if ($this->cache && !$fresh) {
ec2dd0bd 286 $moduleExtensions = $this->cache->get($this->cacheKey . '_moduleFiles');
6a488035
TO
287 }
288
0e092fe0 289 // If cache is empty we build it from database.
6a488035 290 if (!is_array($moduleExtensions)) {
6542d699
TO
291 $compat = CRM_Extension_System::getCompatibilityInfo();
292
6a488035 293 // Check canonical module list
be2fb01f 294 $moduleExtensions = [];
6a488035
TO
295 $sql = '
296 SELECT full_name, file
297 FROM civicrm_extension
298 WHERE is_active = 1
299 AND type = "module"
300 ';
301 $dao = CRM_Core_DAO::executeQuery($sql);
302 while ($dao->fetch()) {
6542d699
TO
303 if (!empty($compat[$dao->full_name]['force-uninstall'])) {
304 continue;
305 }
0851bac5
HD
306 $moduleExtensions[] = [
307 'prefix' => $dao->file,
308 'fullName' => $dao->full_name,
309 'filePath' => NULL,
310 ];
6a488035
TO
311 }
312
313 if ($this->cache) {
ec2dd0bd 314 $this->cache->set($this->cacheKey . '_moduleFiles', $moduleExtensions);
6a488035
TO
315 }
316 }
9194bdb3
HD
317
318 // Since we're not caching the full path we add it now.
319 array_walk($moduleExtensions, function(&$value, $key) {
0851bac5 320 try {
456e9097
HD
321 if (!$value['filePath']) {
322 $value['filePath'] = $this->keyToPath($value['fullName']);
323 }
0851bac5
HD
324 }
325 catch (CRM_Extension_Exception $e) {
326 // Putting a stub here provides more consistency
327 // in how getActiveModuleFiles when racing between
328 // dirty file-removals and cache-clears.
329 CRM_Core_Session::setStatus($e->getMessage(), '', 'error');
330 $value['filePath'] = NULL;
331 }
9194bdb3
HD
332 });
333
0e092fe0
HD
334 Civi::$statics[__CLASS__]['moduleExtensions'] = $moduleExtensions;
335
6a488035
TO
336 return $moduleExtensions;
337 }
338
e7ff7042 339 /**
fe482240 340 * Get a list of base URLs for all active modules.
e7ff7042 341 *
a6c01b45
CW
342 * @return array
343 * (string $extKey => string $baseUrl)
78280a63 344 *
345 * @throws \CRM_Extension_Exception_MissingException
e7ff7042
TO
346 */
347 public function getActiveModuleUrls() {
348 // TODO optimization/caching
be2fb01f 349 $urls = [];
e7ff7042
TO
350 $urls['civicrm'] = $this->keyToUrl('civicrm');
351 foreach ($this->getModules() as $module) {
352 /** @var $module CRM_Core_Module */
353 if ($module->is_active) {
78280a63 354 try {
355 $urls[$module->name] = $this->keyToUrl($module->name);
356 }
357 catch (CRM_Extension_Exception_MissingException $e) {
358 CRM_Core_Session::setStatus(ts('An enabled extension is missing from the extensions directory') . ':' . $module->name);
359 }
e7ff7042
TO
360 }
361 }
362 return $urls;
363 }
364
3b3f6d23
TO
365 /**
366 * Get a list of extension keys, filtered by the corresponding file path.
367 *
368 * @param string $pattern
369 * A file path. To search subdirectories, append "*".
370 * Ex: "/var/www/extensions/*"
371 * Ex: "/var/www/extensions/org.foo.bar"
372 * @return array
373 * Array(string $key).
374 * Ex: array("org.foo.bar").
375 */
376 public function getKeysByPath($pattern) {
be2fb01f 377 $keys = [];
3b3f6d23
TO
378
379 if (CRM_Utils_String::endsWith($pattern, '*')) {
380 $prefix = rtrim($pattern, '*');
381 foreach ($this->container->getKeys() as $key) {
382 $path = CRM_Utils_File::addTrailingSlash($this->container->getPath($key));
383 if (realpath($prefix) == realpath($path) || CRM_Utils_File::isChildPath($prefix, $path)) {
384 $keys[] = $key;
385 }
386 }
387 }
388 else {
389 foreach ($this->container->getKeys() as $key) {
390 $path = CRM_Utils_File::addTrailingSlash($this->container->getPath($key));
391 if (realpath($pattern) == realpath($path)) {
392 $keys[] = $key;
393 }
394 }
395 }
396
397 return $keys;
398 }
399
f8a7cfff
TO
400 /**
401 * @return array
402 * Ex: $result['org.civicrm.foobar'] = new CRM_Extension_Info(...).
403 * @throws \CRM_Extension_Exception
404 * @throws \Exception
405 */
406 public function getAllInfos() {
407 foreach ($this->container->getKeys() as $key) {
408 $this->keyToInfo($key);
409 }
410 return $this->infos;
411 }
412
e0ef6999 413 /**
100fef9d 414 * @param string $name
e0ef6999
EM
415 *
416 * @return bool
417 */
6a488035
TO
418 public function isActiveModule($name) {
419 $activeModules = $this->getActiveModuleFiles();
420 foreach ($activeModules as $activeModule) {
421 if ($activeModule['prefix'] == $name) {
422 return TRUE;
423 }
424 }
425 return FALSE;
426 }
427
428 /**
429 * Get a list of all installed modules, including enabled and disabled ones
430 *
a6c01b45
CW
431 * @return array
432 * CRM_Core_Module
6a488035
TO
433 */
434 public function getModules() {
be2fb01f 435 $result = [];
6a488035
TO
436 $dao = new CRM_Core_DAO_Extension();
437 $dao->type = 'module';
438 $dao->find();
439 while ($dao->fetch()) {
440 $result[] = new CRM_Core_Module($dao->full_name, $dao->is_active);
441 }
442 return $result;
443 }
444
445 /**
446 * Given the class, provides the template path.
447 *
6a488035 448 *
f41911fd
TO
449 * @param string $clazz
450 * Extension class name.
6a488035 451 *
a6c01b45
CW
452 * @return string
453 * path to extension's templates directory
6a488035
TO
454 */
455 public function getTemplatePath($clazz) {
456 $path = $this->container->getPath($this->classToKey($clazz));
457 return $path . DIRECTORY_SEPARATOR . self::EXT_TEMPLATES_DIRNAME;
458 /*
459 $path = $this->classToPath($clazz);
460 $pathElm = explode(DIRECTORY_SEPARATOR, $path);
461 array_pop($pathElm);
462 return implode(DIRECTORY_SEPARATOR, $pathElm) . DIRECTORY_SEPARATOR . self::EXT_TEMPLATES_DIRNAME;
e70a7fc0 463 */
6a488035
TO
464 }
465
466 /**
467 * Given te class, provides the template name.
468 * @todo consider multiple templates, support for one template for now
469 *
6a488035 470 *
f41911fd
TO
471 * @param string $clazz
472 * Extension class name.
6a488035 473 *
a6c01b45
CW
474 * @return string
475 * extension's template name
6a488035
TO
476 */
477 public function getTemplateName($clazz) {
478 $info = $this->keyToInfo($this->classToKey($clazz));
479 return (string) $info->file . '.tpl';
480 }
481
482 public function refresh() {
be2fb01f 483 $this->infos = [];
6a488035
TO
484 $this->moduleExtensions = NULL;
485 if ($this->cache) {
ec2dd0bd 486 $this->cache->delete($this->cacheKey . '_moduleFiles');
6a488035 487 }
85c7eb67
TO
488 // FIXME: How can code so code wrong be so right?
489 CRM_Extension_System::singleton()->getClassLoader()->refresh();
6a488035 490 }
96025800 491
6a488035 492}