Fix fatal error when sorting by status in activity search
[civicrm-core.git] / CRM / Core / Resources.php
CommitLineData
6a488035
TO
1<?php
2/*
8d7a9d07 3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
8d7a9d07 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
8d7a9d07
CB
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 +--------------------------------------------------------------------+
e70a7fc0 26 */
1889d803 27use Civi\Core\Event\GenericHookEvent;
6a488035
TO
28
29/**
30 * This class facilitates the loading of resources
31 * such as JavaScript files and CSS files.
32 *
33 * Any URLs generated for resources may include a 'cache-code'. By resetting the
34 * cache-code, one may force clients to re-download resource files (regardless of
35 * any HTTP caching rules).
36 *
37 * TODO: This is currently a thin wrapper over CRM_Core_Region. We
38 * should incorporte services for aggregation, minimization, etc.
39 *
40 * @package CRM
6b83d5bd 41 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
42 * $Id$
43 *
44 */
45class CRM_Core_Resources {
46 const DEFAULT_WEIGHT = 0;
47 const DEFAULT_REGION = 'page-footer';
48
49 /**
50 * We don't have a container or dependency-injection, so use singleton instead
51 *
52 * @var object
6a488035
TO
53 */
54 private static $_singleton = NULL;
55
56 /**
57 * @var CRM_Extension_Mapper
58 */
59 private $extMapper = NULL;
60
61 /**
fd7dc3f3 62 * @var CRM_Core_Resources_Strings
6a488035 63 */
fd7dc3f3 64 private $strings = NULL;
6a488035
TO
65
66 /**
e97c66ff 67 * Settings in free-form data tree.
68 *
69 * @var array
6a488035 70 */
be2fb01f 71 protected $settings = [];
6a488035
TO
72 protected $addedSettings = FALSE;
73
74 /**
e97c66ff 75 * Setting factories.
76 *
77 * @var callable[]
6a488035 78 */
be2fb01f 79 protected $settingsFactories = [];
6a488035
TO
80
81 /**
e97c66ff 82 * Added core resources.
83 *
84 * Format is ($regionName => bool).
85 *
86 * @var array
6a488035 87 */
be2fb01f 88 protected $addedCoreResources = [];
6a488035
TO
89
90 /**
e97c66ff 91 * Added core styles.
92 *
93 * Format is ($regionName => bool).
94 *
95 * @var array
6a488035 96 */
be2fb01f 97 protected $addedCoreStyles = [];
6a488035
TO
98
99 /**
e97c66ff 100 * A value to append to JS/CSS URLs to coerce cache resets.
101 *
102 * @var string
6a488035
TO
103 */
104 protected $cacheCode = NULL;
105
106 /**
e97c66ff 107 * The name of a setting which persistently stores the cacheCode.
108 *
109 * @var string
6a488035
TO
110 */
111 protected $cacheCodeKey = NULL;
112
53f2643c 113 /**
e97c66ff 114 * Are ajax popup screens enabled.
115 *
53f2643c
CW
116 * @var bool
117 */
118 public $ajaxPopupsEnabled;
119
b698e2d5
TO
120 /**
121 * @var \Civi\Core\Paths
122 */
123 protected $paths;
124
6a488035 125 /**
fe482240 126 * Get or set the single instance of CRM_Core_Resources.
6a488035 127 *
5a4f6742
CW
128 * @param CRM_Core_Resources $instance
129 * New copy of the manager.
e97c66ff 130 *
6a488035
TO
131 * @return CRM_Core_Resources
132 */
518fa0ee 133 public static function singleton(CRM_Core_Resources $instance = NULL) {
6a488035
TO
134 if ($instance !== NULL) {
135 self::$_singleton = $instance;
136 }
137 if (self::$_singleton === NULL) {
223ba025 138 self::$_singleton = Civi::service('resources');
6a488035
TO
139 }
140 return self::$_singleton;
141 }
142
143 /**
d09edf64 144 * Construct a resource manager.
6a488035 145 *
6a0b768e
TO
146 * @param CRM_Extension_Mapper $extMapper
147 * Map extension names to their base path or URLs.
148 * @param CRM_Utils_Cache_Interface $cache
149 * JS-localization cache.
3be754d6 150 * @param string|null $cacheCodeKey Random code to append to resource URLs; changing the code forces clients to reload resources
6a488035
TO
151 */
152 public function __construct($extMapper, $cache, $cacheCodeKey = NULL) {
153 $this->extMapper = $extMapper;
fd7dc3f3 154 $this->strings = new CRM_Core_Resources_Strings($cache);
6a488035
TO
155 $this->cacheCodeKey = $cacheCodeKey;
156 if ($cacheCodeKey !== NULL) {
aaffa79f 157 $this->cacheCode = Civi::settings()->get($cacheCodeKey);
6a488035 158 }
150f50c1 159 if (!$this->cacheCode) {
6a488035
TO
160 $this->resetCacheCode();
161 }
84fb7424 162 $this->ajaxPopupsEnabled = (bool) Civi::settings()->get('ajaxPopupsEnabled');
b698e2d5 163 $this->paths = Civi::paths();
6a488035
TO
164 }
165
90efc417
TO
166 /**
167 * Export permission data to the client to enable smarter GUIs.
168 *
169 * Note: Application security stems from the server's enforcement
170 * of the security logic (e.g. in the API permissions). There's no way
171 * the client can use this info to make the app more secure; however,
172 * it can produce a better-tuned (non-broken) UI.
173 *
174 * @param array $permNames
175 * List of permission names to check/export.
176 * @return CRM_Core_Resources
177 */
178 public function addPermissions($permNames) {
179 $permNames = (array) $permNames;
be2fb01f 180 $perms = [];
90efc417
TO
181 foreach ($permNames as $permName) {
182 $perms[$permName] = CRM_Core_Permission::check($permName);
183 }
be2fb01f 184 return $this->addSetting([
90efc417 185 'permissions' => $perms,
be2fb01f 186 ]);
90efc417
TO
187 }
188
6a488035
TO
189 /**
190 * Add a JavaScript file to the current page using <SCRIPT SRC>.
191 *
5a4f6742
CW
192 * @param string $ext
193 * extension name; use 'civicrm' for core.
194 * @param string $file
195 * file path -- relative to the extension base dir.
196 * @param int $weight
197 * relative weight within a given region.
198 * @param string $region
199 * location within the file; 'html-header', 'page-header', 'page-footer'.
3f3bba82
TO
200 * @param bool|string $translate
201 * Whether to load translated strings for this file. Use one of:
202 * - FALSE: Do not load translated strings.
203 * - TRUE: Load translated strings. Use the $ext's default domain.
204 * - string: Load translated strings. Use a specific domain.
6a488035
TO
205 *
206 * @return CRM_Core_Resources
89bfc54a 207 *
208 * @throws \CRM_Core_Exception
6a488035
TO
209 */
210 public function addScriptFile($ext, $file, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION, $translate = TRUE) {
211 if ($translate) {
3f3bba82
TO
212 $domain = ($translate === TRUE) ? $ext : $translate;
213 $this->addString($this->strings->get($domain, $this->getPath($ext, $file), 'text/javascript'), $domain);
6a488035 214 }
d89d2545
TO
215 $url = $this->getUrl($ext, $this->filterMinify($ext, $file), TRUE);
216 return $this->addScriptUrl($url, $weight, $region);
6a488035
TO
217 }
218
219 /**
220 * Add a JavaScript file to the current page using <SCRIPT SRC>.
221 *
5a4f6742
CW
222 * @param string $url
223 * @param int $weight
224 * relative weight within a given region.
225 * @param string $region
226 * location within the file; 'html-header', 'page-header', 'page-footer'.
6a488035
TO
227 * @return CRM_Core_Resources
228 */
229 public function addScriptUrl($url, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
be2fb01f 230 CRM_Core_Region::instance($region)->add([
518fa0ee
SL
231 'name' => $url,
232 'type' => 'scriptUrl',
233 'scriptUrl' => $url,
234 'weight' => $weight,
235 'region' => $region,
236 ]);
6a488035
TO
237 return $this;
238 }
239
240 /**
241 * Add a JavaScript file to the current page using <SCRIPT SRC>.
242 *
5a4f6742
CW
243 * @param string $code
244 * JavaScript source code.
245 * @param int $weight
246 * relative weight within a given region.
247 * @param string $region
248 * location within the file; 'html-header', 'page-header', 'page-footer'.
6a488035
TO
249 * @return CRM_Core_Resources
250 */
251 public function addScript($code, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
be2fb01f 252 CRM_Core_Region::instance($region)->add([
8d7a9d07 253 // 'name' => automatic
518fa0ee
SL
254 'type' => 'script',
255 'script' => $code,
256 'weight' => $weight,
257 'region' => $region,
258 ]);
6a488035
TO
259 return $this;
260 }
261
262 /**
73bcd446 263 * Add JavaScript variables to CRM.vars
6a488035 264 *
132fc68e
CW
265 * Example:
266 * From the server:
73bcd446
CW
267 * CRM_Core_Resources::singleton()->addVars('myNamespace', array('foo' => 'bar'));
268 * Access var from javascript:
269 * CRM.vars.myNamespace.foo // "bar"
132fc68e 270 *
01478033 271 * @see http://wiki.civicrm.org/confluence/display/CRMDOC/Javascript+Reference
132fc68e 272 *
6a0b768e
TO
273 * @param string $nameSpace
274 * Usually the name of your extension.
73bcd446
CW
275 * @param array $vars
276 * @return CRM_Core_Resources
277 */
278 public function addVars($nameSpace, $vars) {
be2fb01f 279 $existing = CRM_Utils_Array::value($nameSpace, CRM_Utils_Array::value('vars', $this->settings), []);
73bcd446 280 $vars = $this->mergeSettings($existing, $vars);
be2fb01f 281 $this->addSetting(['vars' => [$nameSpace => $vars]]);
73bcd446
CW
282 return $this;
283 }
284
285 /**
286 * Add JavaScript variables to the root of the CRM object.
287 * This function is usually reserved for low-level system use.
288 * Extensions and components should generally use addVars instead.
289 *
5a4f6742 290 * @param array $settings
6a488035
TO
291 * @return CRM_Core_Resources
292 */
293 public function addSetting($settings) {
294 $this->settings = $this->mergeSettings($this->settings, $settings);
295 if (!$this->addedSettings) {
88cd8875 296 $region = self::isAjaxMode() ? 'ajax-snippet' : 'html-header';
6a488035 297 $resources = $this;
be2fb01f 298 CRM_Core_Region::instance($region)->add([
353ffa53
TO
299 'callback' => function (&$snippet, &$html) use ($resources) {
300 $html .= "\n" . $resources->renderSetting();
301 },
8cb324cc 302 'weight' => -100000,
be2fb01f 303 ]);
6a488035
TO
304 $this->addedSettings = TRUE;
305 }
306 return $this;
307 }
308
309 /**
69847402 310 * Add JavaScript variables to the global CRM object via a callback function.
6a488035 311 *
3be754d6 312 * @param callable $callable
6a488035
TO
313 * @return CRM_Core_Resources
314 */
315 public function addSettingsFactory($callable) {
d937dbcd 316 // Make sure our callback has been registered
be2fb01f 317 $this->addSetting([]);
6a488035
TO
318 $this->settingsFactories[] = $callable;
319 return $this;
320 }
321
69847402 322 /**
d09edf64 323 * Helper fn for addSettingsFactory.
69847402 324 */
6a488035
TO
325 public function getSettings() {
326 $result = $this->settings;
327 foreach ($this->settingsFactories as $callable) {
328 $result = $this->mergeSettings($result, $callable());
329 }
898951c6 330 CRM_Utils_Hook::alterResourceSettings($result);
6a488035
TO
331 return $result;
332 }
333
334 /**
335 * @param array $settings
336 * @param array $additions
a6c01b45
CW
337 * @return array
338 * combination of $settings and $additions
6a488035
TO
339 */
340 protected function mergeSettings($settings, $additions) {
341 foreach ($additions as $k => $v) {
342 if (isset($settings[$k]) && is_array($settings[$k]) && is_array($v)) {
343 $v += $settings[$k];
344 }
345 $settings[$k] = $v;
346 }
347 return $settings;
348 }
349
350 /**
d09edf64 351 * Helper fn for addSetting.
6a488035
TO
352 * Render JavaScript variables for the global CRM object.
353 *
6a488035
TO
354 * @return string
355 */
356 public function renderSetting() {
156fd9b9
CW
357 // On a standard page request we construct the CRM object from scratch
358 if (!self::isAjaxMode()) {
359 $js = 'var CRM = ' . json_encode($this->getSettings()) . ';';
360 }
361 // For an ajax request we append to it
362 else {
363 $js = 'CRM.$.extend(true, CRM, ' . json_encode($this->getSettings()) . ');';
364 }
d759bd10 365 return sprintf("<script type=\"text/javascript\">\n%s\n</script>\n", $js);
6a488035
TO
366 }
367
368 /**
369 * Add translated string to the js CRM object.
370 * It can then be retrived from the client-side ts() function
371 * Variable substitutions can happen from client-side
8ef12e64 372 *
6a488035 373 * Note: this function rarely needs to be called directly and is mostly for internal use.
d3e86119 374 * See CRM_Core_Resources::addScriptFile which automatically adds translated strings from js files
6a488035
TO
375 *
376 * Simple example:
377 * // From php:
378 * CRM_Core_Resources::singleton()->addString('Hello');
379 * // The string is now available to javascript code i.e.
380 * ts('Hello');
381 *
382 * Example with client-side substitutions:
383 * // From php:
384 * CRM_Core_Resources::singleton()->addString('Your %1 has been %2');
385 * // ts() in javascript works the same as in php, for example:
386 * ts('Your %1 has been %2', {1: objectName, 2: actionTaken});
387 *
388 * NOTE: This function does not work with server-side substitutions
389 * (as this might result in collisions and unwanted variable injections)
390 * Instead, use code like:
391 * CRM_Core_Resources::singleton()->addSetting(array('myNamespace' => array('myString' => ts('Your %1 has been %2', array(subs)))));
392 * And from javascript access it at CRM.myNamespace.myString
393 *
5a4f6742 394 * @param string|array $text
e97c66ff 395 * @param string|null $domain
6a488035
TO
396 * @return CRM_Core_Resources
397 */
3f3bba82 398 public function addString($text, $domain = 'civicrm') {
6a488035 399 foreach ((array) $text as $str) {
be2fb01f
CW
400 $translated = ts($str, [
401 'domain' => ($domain == 'civicrm') ? NULL : [$domain, NULL],
1b4710da 402 'raw' => TRUE,
be2fb01f 403 ]);
3f3bba82 404
6a488035
TO
405 // We only need to push this string to client if the translation
406 // is actually different from the original
407 if ($translated != $str) {
3f3bba82 408 $bucket = $domain == 'civicrm' ? 'strings' : 'strings::' . $domain;
be2fb01f
CW
409 $this->addSetting([
410 $bucket => [$str => $translated],
411 ]);
6a488035
TO
412 }
413 }
414 return $this;
415 }
416
417 /**
418 * Add a CSS file to the current page using <LINK HREF>.
419 *
5a4f6742
CW
420 * @param string $ext
421 * extension name; use 'civicrm' for core.
422 * @param string $file
423 * file path -- relative to the extension base dir.
424 * @param int $weight
425 * relative weight within a given region.
426 * @param string $region
427 * location within the file; 'html-header', 'page-header', 'page-footer'.
6a488035
TO
428 * @return CRM_Core_Resources
429 */
430 public function addStyleFile($ext, $file, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
d89d2545
TO
431 /** @var Civi\Core\Themes $theme */
432 $theme = Civi::service('themes');
433 foreach ($theme->resolveUrls($theme->getActiveThemeKey(), $ext, $file) as $url) {
434 $this->addStyleUrl($url, $weight, $region);
435 }
436 return $this;
6a488035
TO
437 }
438
439 /**
440 * Add a CSS file to the current page using <LINK HREF>.
441 *
5a4f6742
CW
442 * @param string $url
443 * @param int $weight
444 * relative weight within a given region.
445 * @param string $region
446 * location within the file; 'html-header', 'page-header', 'page-footer'.
6a488035
TO
447 * @return CRM_Core_Resources
448 */
449 public function addStyleUrl($url, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
be2fb01f 450 CRM_Core_Region::instance($region)->add([
518fa0ee
SL
451 'name' => $url,
452 'type' => 'styleUrl',
453 'styleUrl' => $url,
454 'weight' => $weight,
455 'region' => $region,
456 ]);
6a488035
TO
457 return $this;
458 }
459
460 /**
461 * Add a CSS content to the current page using <STYLE>.
462 *
5a4f6742
CW
463 * @param string $code
464 * CSS source code.
465 * @param int $weight
466 * relative weight within a given region.
467 * @param string $region
468 * location within the file; 'html-header', 'page-header', 'page-footer'.
6a488035
TO
469 * @return CRM_Core_Resources
470 */
471 public function addStyle($code, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
be2fb01f 472 CRM_Core_Region::instance($region)->add([
8d7a9d07 473 // 'name' => automatic
518fa0ee
SL
474 'type' => 'style',
475 'style' => $code,
476 'weight' => $weight,
477 'region' => $region,
478 ]);
6a488035
TO
479 return $this;
480 }
481
482 /**
d09edf64 483 * Determine file path of a resource provided by an extension.
6a488035 484 *
5a4f6742
CW
485 * @param string $ext
486 * extension name; use 'civicrm' for core.
e97c66ff 487 * @param string|null $file
5a4f6742 488 * file path -- relative to the extension base dir.
6a488035 489 *
72b3a70c
CW
490 * @return bool|string
491 * full file path or FALSE if not found
6a488035 492 */
16cd1eca 493 public function getPath($ext, $file = NULL) {
6a488035 494 // TODO consider caching results
b698e2d5
TO
495 $base = $this->paths->hasVariable($ext)
496 ? rtrim($this->paths->getVariable($ext, 'path'), '/')
497 : $this->extMapper->keyToBasePath($ext);
16cd1eca 498 if ($file === NULL) {
b698e2d5 499 return $base;
16cd1eca 500 }
b698e2d5 501 $path = $base . '/' . $file;
6a488035
TO
502 if (is_file($path)) {
503 return $path;
504 }
505 return FALSE;
506 }
507
508 /**
d09edf64 509 * Determine public URL of a resource provided by an extension.
6a488035 510 *
5a4f6742
CW
511 * @param string $ext
512 * extension name; use 'civicrm' for core.
513 * @param string $file
514 * file path -- relative to the extension base dir.
2a6da8d7
EM
515 * @param bool $addCacheCode
516 *
6a488035
TO
517 * @return string, URL
518 */
519 public function getUrl($ext, $file = NULL, $addCacheCode = FALSE) {
520 if ($file === NULL) {
521 $file = '';
522 }
523 if ($addCacheCode) {
6f12c6eb 524 $file = $this->addCacheCode($file);
6a488035
TO
525 }
526 // TODO consider caching results
b698e2d5
TO
527 $base = $this->paths->hasVariable($ext)
528 ? $this->paths->getVariable($ext, 'url')
529 : ($this->extMapper->keyToUrl($ext) . '/');
530 return $base . $file;
6a488035
TO
531 }
532
16cd1eca
TO
533 /**
534 * Evaluate a glob pattern in the context of a particular extension.
535 *
536 * @param string $ext
537 * Extension name; use 'civicrm' for core.
538 * @param string|array $patterns
539 * Glob pattern; e.g. "*.html".
540 * @param null|int $flags
541 * See glob().
542 * @return array
543 * List of matching files, relative to the extension base dir.
544 * @see glob()
545 */
546 public function glob($ext, $patterns, $flags = NULL) {
547 $path = $this->getPath($ext);
548 $patterns = (array) $patterns;
be2fb01f 549 $files = [];
16cd1eca 550 foreach ($patterns as $pattern) {
e5c376e7
TO
551 if (preg_match(';^(assetBuilder|ext)://;', $pattern)) {
552 $files[] = $pattern;
553 }
9f87b14b 554 if (CRM_Utils_File::isAbsolute($pattern)) {
16cd1eca
TO
555 // Absolute path.
556 $files = array_merge($files, (array) glob($pattern, $flags));
557 }
558 else {
559 // Relative path.
560 $files = array_merge($files, (array) glob("$path/$pattern", $flags));
561 }
562 }
518fa0ee
SL
563 // Deterministic order.
564 sort($files);
16cd1eca
TO
565 $files = array_unique($files);
566 return array_map(function ($file) use ($path) {
567 return CRM_Utils_File::relativize($file, "$path/");
568 }, $files);
569 }
570
a0ee3941
EM
571 /**
572 * @return string
573 */
6a488035
TO
574 public function getCacheCode() {
575 return $this->cacheCode;
576 }
577
a0ee3941
EM
578 /**
579 * @param $value
5badddc3 580 * @return CRM_Core_Resources
a0ee3941 581 */
6a488035
TO
582 public function setCacheCode($value) {
583 $this->cacheCode = $value;
584 if ($this->cacheCodeKey) {
08ef4ddd 585 Civi::settings()->set($this->cacheCodeKey, $value);
6a488035 586 }
9762f6ff 587 return $this;
6a488035
TO
588 }
589
5badddc3
CW
590 /**
591 * @return CRM_Core_Resources
592 */
6a488035
TO
593 public function resetCacheCode() {
594 $this->setCacheCode(CRM_Utils_String::createRandom(5, CRM_Utils_String::ALPHANUMERIC));
f091327b
CW
595 // Also flush cms resource cache if needed
596 CRM_Core_Config::singleton()->userSystem->clearResourceCache();
9762f6ff 597 return $this;
6a488035
TO
598 }
599
600 /**
601 * This adds CiviCRM's standard css and js to the specified region of the document.
602 * It will only run once.
603 *
604 * TODO: Separate the functional code (like addStyle/addScript) from the policy code
605 * (like addCoreResources/addCoreStyles).
606 *
2a6da8d7 607 * @param string $region
6a488035 608 * @return CRM_Core_Resources
6a488035
TO
609 */
610 public function addCoreResources($region = 'html-header') {
156fd9b9 611 if (!isset($this->addedCoreResources[$region]) && !self::isAjaxMode()) {
6a488035
TO
612 $this->addedCoreResources[$region] = TRUE;
613 $config = CRM_Core_Config::singleton();
614
a43b1583 615 // Add resources from coreResourceList
6a488035 616 $jsWeight = -9999;
dbb12634 617 foreach ($this->coreResourceList($region) as $item) {
7266e09b
CW
618 if (is_array($item)) {
619 $this->addSetting($item);
620 }
adcd4bf7
CW
621 elseif (strpos($item, '.css')) {
622 $this->isFullyFormedUrl($item) ? $this->addStyleUrl($item, -100, $region) : $this->addStyleFile('civicrm', $item, -100, $region);
623 }
624 elseif ($this->isFullyFormedUrl($item)) {
625 $this->addScriptUrl($item, $jsWeight++, $region);
626 }
627 else {
74227f77 628 // Don't bother looking for ts() calls in packages, there aren't any
7266e09b
CW
629 $translate = (substr($item, 0, 3) == 'js/');
630 $this->addScriptFile('civicrm', $item, $jsWeight++, $region, $translate);
6a488035 631 }
6a488035 632 }
d759bd10 633 // Add global settings
be2fb01f
CW
634 $settings = [
635 'config' => [
353ffa53 636 'isFrontend' => $config->userFrameworkFrontend,
be2fb01f
CW
637 ],
638 ];
4e56e743
CW
639 // Disable profile creation if user lacks permission
640 if (!CRM_Core_Permission::check('edit all contacts') && !CRM_Core_Permission::check('add contacts')) {
b7ceb253 641 $settings['config']['entityRef']['contactCreate'] = FALSE;
3d527838 642 }
4e56e743 643 $this->addSetting($settings);
3d527838
CW
644
645 // Give control of jQuery and _ back to the CMS - this loads last
c2777586 646 $this->addScriptFile('civicrm', 'js/noconflict.js', 9999, $region, FALSE);
6a488035
TO
647
648 $this->addCoreStyles($region);
649 }
650 return $this;
651 }
652
653 /**
654 * This will add CiviCRM's standard CSS
655 *
656 * TODO: Separate the functional code (like addStyle/addScript) from the policy code
657 * (like addCoreResources/addCoreStyles).
658 *
659 * @param string $region
660 * @return CRM_Core_Resources
661 */
662 public function addCoreStyles($region = 'html-header') {
663 if (!isset($this->addedCoreStyles[$region])) {
664 $this->addedCoreStyles[$region] = TRUE;
665
666 // Load custom or core css
667 $config = CRM_Core_Config::singleton();
668 if (!empty($config->customCSSURL)) {
6f12c6eb 669 $customCSSURL = $this->addCacheCode($config->customCSSURL);
670 $this->addStyleUrl($customCSSURL, 99, $region);
6a488035 671 }
aaffa79f 672 if (!Civi::settings()->get('disable_core_css')) {
6a488035 673 $this->addStyleFile('civicrm', 'css/civicrm.css', -99, $region);
6a488035 674 }
a2c70872
AH
675 // crm-i.css added ahead of other styles so it can be overridden by FA.
676 $this->addStyleFile('civicrm', 'css/crm-i.css', -101, $region);
6a488035
TO
677 }
678 return $this;
679 }
680
627668e8 681 /**
d09edf64 682 * Flushes cached translated strings.
5badddc3 683 * @return CRM_Core_Resources
627668e8
CW
684 */
685 public function flushStrings() {
fd7dc3f3 686 $this->strings->flush();
9762f6ff
CW
687 return $this;
688 }
689
6a488035 690 /**
fd7dc3f3
TO
691 * @return CRM_Core_Resources_Strings
692 */
693 public function getStrings() {
694 return $this->strings;
6a488035
TO
695 }
696
19f7e35e 697 /**
8d7a9d07 698 * Create dynamic script for localizing js widgets.
19f7e35e 699 */
00be9182 700 public static function outputLocalizationJS() {
4cc9b813 701 CRM_Core_Page_AJAX::setJsHeaders();
a88cf11a 702 $config = CRM_Core_Config::singleton();
be2fb01f 703 $vars = [
3d527838
CW
704 'moneyFormat' => json_encode(CRM_Utils_Money::format(1234.56)),
705 'contactSearch' => json_encode($config->includeEmailInName ? ts('Start typing a name or email...') : ts('Start typing a name...')),
706 'otherSearch' => json_encode(ts('Enter search term...')),
e695ee7c 707 'entityRef' => self::getEntityRefMetadata(),
7b83e312 708 'ajaxPopupsEnabled' => self::singleton()->ajaxPopupsEnabled,
a9fb6123 709 'allowAlertAutodismissal' => (bool) Civi::settings()->get('allow_alert_autodismissal'),
c7e39a79 710 'resourceCacheCode' => self::singleton()->getCacheCode(),
b30809e4
CW
711 'locale' => CRM_Core_I18n::getLocale(),
712 'cid' => (int) CRM_Core_Session::getLoggedInContactID(),
be2fb01f 713 ];
3d4fb0ed 714 print CRM_Core_Smarty::singleton()->fetchWith('CRM/common/l10n.js.tpl', $vars);
4cc9b813 715 CRM_Utils_System::civiExit();
c66581f5
CW
716 }
717
6a488035 718 /**
d09edf64 719 * List of core resources we add to every CiviCRM page.
6a488035 720 *
e8038a7b
CW
721 * Note: non-compressed versions of .min files will be used in debug mode
722 *
e3c1e85b 723 * @param string $region
a43b1583 724 * @return array
6a488035 725 */
e3c1e85b 726 public function coreResourceList($region) {
dbe0bbc6 727 $config = CRM_Core_Config::singleton();
a43b1583 728
4968e732
CW
729 // Scripts needed by everyone, everywhere
730 // FIXME: This is too long; list needs finer-grained segmentation
be2fb01f 731 $items = [
3c61fc8f
CW
732 "bower_components/jquery/dist/jquery.min.js",
733 "bower_components/jquery-ui/jquery-ui.min.js",
e8038a7b 734 "bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css",
1891a856 735 "bower_components/lodash-compat/lodash.min.js",
e8038a7b
CW
736 "packages/jquery/plugins/jquery.mousewheel.min.js",
737 "bower_components/select2/select2.min.js",
738 "bower_components/select2/select2.min.css",
90000c30 739 "bower_components/font-awesome/css/font-awesome.min.css",
e8038a7b
CW
740 "packages/jquery/plugins/jquery.form.min.js",
741 "packages/jquery/plugins/jquery.timeentry.min.js",
742 "packages/jquery/plugins/jquery.blockUI.min.js",
743 "bower_components/datatables/media/js/jquery.dataTables.min.js",
744 "bower_components/datatables/media/css/jquery.dataTables.min.css",
745 "bower_components/jquery-validation/dist/jquery.validate.min.js",
746 "packages/jquery/plugins/jquery.ui.datepicker.validation.min.js",
a0c8b50e 747 "js/Common.js",
ff2eb9e8 748 "js/crm.datepicker.js",
53f2643c 749 "js/crm.ajax.js",
7060d177 750 "js/wysiwyg/crm.wysiwyg.js",
be2fb01f 751 ];
adcd4bf7
CW
752
753 // Dynamic localization script
754 $items[] = $this->addCacheCode(
755 CRM_Utils_System::url('civicrm/ajax/l10n-js/' . CRM_Core_I18n::getLocale(),
756 ['cid' => CRM_Core_Session::getLoggedInContactID()], FALSE, NULL, FALSE)
757 );
758
7c523661 759 // add wysiwyg editor
aaffa79f 760 $editor = Civi::settings()->get('editor_id');
b608cfb1 761 if ($editor == "CKEditor") {
5e0b4b77 762 CRM_Admin_Page_CKEditorConfig::setConfigDefault();
be2fb01f
CW
763 $items[] = [
764 'config' => [
286a7e5a
CW
765 'wysisygScriptLocation' => Civi::paths()->getUrl("[civicrm.root]/js/wysiwyg/crm.ckeditor.js"),
766 'CKEditorCustomConfig' => CRM_Admin_Page_CKEditorConfig::getConfigUrl(),
be2fb01f
CW
767 ],
768 ];
b608cfb1 769 }
dbe0bbc6 770
4968e732
CW
771 // These scripts are only needed by back-office users
772 if (CRM_Core_Permission::check('access CiviCRM')) {
642d43fa 773 $items[] = "packages/jquery/plugins/jquery.tableHeader.js";
e8038a7b 774 $items[] = "packages/jquery/plugins/jquery.notify.min.js";
4968e732
CW
775 }
776
b30809e4
CW
777 $contactID = CRM_Core_Session::getLoggedInContactID();
778
779 // Menubar
c931044d
CW
780 $position = 'none';
781 if (
782 $contactID && !$config->userFrameworkFrontend
783 && CRM_Core_Permission::check('access CiviCRM')
784 && !@constant('CIVICRM_DISABLE_DEFAULT_MENU')
785 && !CRM_Core_Config::isUpgradeMode()
786 ) {
787 $position = Civi::settings()->get('menubar_position') ?: 'over-cms-menu';
788 }
789 if ($position !== 'none') {
b30809e4
CW
790 $items[] = 'bower_components/smartmenus/dist/jquery.smartmenus.min.js';
791 $items[] = 'bower_components/smartmenus/dist/addons/keyboard/jquery.smartmenus.keyboard.min.js';
792 $items[] = 'js/crm.menubar.js';
dcaf410f 793 // @see CRM_Core_Resources::renderMenubarStylesheet
08a3a519 794 $items[] = Civi::service('asset_builder')->getUrl('crm-menubar.css', [
dcaf410f 795 'menubarColor' => Civi::settings()->get('menubar_color'),
c4560ed2
CW
796 'height' => 40,
797 'breakpoint' => 768,
08a3a519 798 ]);
dcaf410f 799 // Variables for crm.menubar.js
b30809e4
CW
800 $items[] = [
801 'menubar' => [
c931044d 802 'position' => $position,
b30809e4
CW
803 'qfKey' => CRM_Core_Key::get('CRM_Contact_Controller_Search', TRUE),
804 'cacheCode' => CRM_Core_BAO_Navigation::getCacheKey($contactID),
805 ],
806 ];
807 }
808
d606fff7
CW
809 // JS for multilingual installations
810 if (!empty($config->languageLimit) && count($config->languageLimit) > 1 && CRM_Core_Permission::check('translate CiviCRM')) {
811 $items[] = "js/crm.multilingual.js";
812 }
813
53f2643c
CW
814 // Enable administrators to edit option lists in a dialog
815 if (CRM_Core_Permission::check('administer CiviCRM') && $this->ajaxPopupsEnabled) {
816 $items[] = "js/crm.optionEdit.js";
817 }
9efeb642 818
98466ff9 819 $tsLocale = CRM_Core_I18n::getLocale();
dbe0bbc6 820 // Add localized jQuery UI files
5d26edf0 821 if ($tsLocale && $tsLocale != 'en_US') {
dbe0bbc6 822 // Search for i18n file in order of specificity (try fr-CA, then fr)
5d26edf0 823 list($lang) = explode('_', $tsLocale);
3c61fc8f 824 $path = "bower_components/jquery-ui/ui/i18n";
be2fb01f 825 foreach ([str_replace('_', '-', $tsLocale), $lang] as $language) {
f2f191fe 826 $localizationFile = "$path/datepicker-{$language}.js";
dbe0bbc6
CW
827 if ($this->getPath('civicrm', $localizationFile)) {
828 $items[] = $localizationFile;
829 break;
830 }
831 }
832 }
f9f361d0 833
72e86d7d 834 // Allow hooks to modify this list
e3c1e85b 835 CRM_Utils_Hook::coreResourceList($items, $region);
f9f361d0 836
6a488035
TO
837 return $items;
838 }
156fd9b9
CW
839
840 /**
a6c01b45
CW
841 * @return bool
842 * is this page request an ajax snippet?
156fd9b9 843 */
00be9182 844 public static function isAjaxMode() {
be2fb01f 845 if (in_array(CRM_Utils_Array::value('snippet', $_REQUEST), [
518fa0ee
SL
846 CRM_Core_Smarty::PRINT_SNIPPET,
847 CRM_Core_Smarty::PRINT_NOFORM,
848 CRM_Core_Smarty::PRINT_JSON,
849 ])
42a40a1c 850 ) {
851 return TRUE;
852 }
60c3b6e9
CW
853 list($arg0, $arg1) = array_pad(explode('/', CRM_Utils_System::getUrlPath()), 2, '');
854 return ($arg0 === 'civicrm' && in_array($arg1, ['ajax', 'angularprofiles', 'asset']));
156fd9b9 855 }
b7ceb253 856
1889d803 857 /**
518fa0ee 858 * @param \Civi\Core\Event\GenericHookEvent $e
1889d803
CW
859 * @see \CRM_Utils_Hook::buildAsset()
860 */
861 public static function renderMenubarStylesheet(GenericHookEvent $e) {
862 if ($e->asset !== 'crm-menubar.css') {
863 return;
864 }
865 $e->mimeType = 'text/css';
dcaf410f 866 $content = '';
1889d803
CW
867 $config = CRM_Core_Config::singleton();
868 $cms = strtolower($config->userFramework);
869 $cms = $cms === 'drupal' ? 'drupal7' : $cms;
870 $items = [
871 'bower_components/smartmenus/dist/css/sm-core-css.css',
872 'css/crm-menubar.css',
873 "css/menubar-$cms.css",
874 ];
875 foreach ($items as $item) {
dcaf410f 876 $content .= file_get_contents(self::singleton()->getPath('civicrm', $item));
8a52ae34 877 }
dcaf410f
CW
878 $params = $e->params;
879 // "color" is deprecated in favor of the more specific "menubarColor"
880 $menubarColor = $params['color'] ?? $params['menubarColor'];
1889d803 881 $vars = [
dcaf410f
CW
882 '$resourceBase' => rtrim($config->resourceBase, '/'),
883 '$menubarHeight' => $params['height'] . 'px',
884 '$breakMin' => $params['breakpoint'] . 'px',
885 '$breakMax' => ($params['breakpoint'] - 1) . 'px',
886 '$menubarColor' => $menubarColor,
887 '$menuItemColor' => $params['menuItemColor'] ?? 'rgba(' . implode(', ', CRM_Utils_Color::getRgb($menubarColor)) . ", .9)",
888 '$highlightColor' => $params['highlightColor'] ?? CRM_Utils_Color::getHighlight($menubarColor),
889 '$textColor' => $params['textColor'] ?? CRM_Utils_Color::getContrast($menubarColor, '#333', '#ddd'),
1889d803 890 ];
dcaf410f
CW
891 $vars['$highlightTextColor'] = $params['highlightTextColor'] ?? CRM_Utils_Color::getContrast($vars['$highlightColor'], '#333', '#ddd');
892 $e->content = str_replace(array_keys($vars), array_values($vars), $content);
1889d803
CW
893 }
894
b7ceb253 895 /**
f9e31d7f 896 * Provide a list of available entityRef filters.
fd7c068f 897 *
b7ceb253
CW
898 * @return array
899 */
e695ee7c
CW
900 public static function getEntityRefMetadata() {
901 $data = [
902 'filters' => [],
903 'links' => [],
904 ];
06606cd1 905 $config = CRM_Core_Config::singleton();
b7ceb253 906
1d6f94ab
CW
907 $disabledComponents = [];
908 $dao = CRM_Core_DAO::executeQuery("SELECT name, namespace FROM civicrm_component");
909 while ($dao->fetch()) {
910 if (!in_array($dao->name, $config->enableComponents)) {
911 $disabledComponents[$dao->name] = $dao->namespace;
06606cd1
CW
912 }
913 }
914
1d6f94ab
CW
915 foreach (CRM_Core_DAO_AllCoreTables::daoToClass() as $entity => $daoName) {
916 // Skip DAOs of disabled components
917 foreach ($disabledComponents as $nameSpace) {
918 if (strpos($daoName, $nameSpace) === 0) {
919 continue 2;
920 }
921 }
922 $baoName = str_replace('_DAO_', '_BAO_', $daoName);
923 if (class_exists($baoName)) {
e695ee7c
CW
924 $filters = $baoName::getEntityRefFilters();
925 if ($filters) {
2229cf4f 926 $data['filters'][$entity] = $filters;
e695ee7c
CW
927 }
928 if (is_callable([$baoName, 'getEntityRefCreateLinks'])) {
929 $createLinks = $baoName::getEntityRefCreateLinks();
930 if ($createLinks) {
2229cf4f 931 $data['links'][$entity] = $createLinks;
e695ee7c 932 }
1d6f94ab
CW
933 }
934 }
b7b528bc
CW
935 }
936
77d0bf4e 937 CRM_Utils_Hook::entityRefFilters($data['filters'], $data['links']);
fd7c068f 938
e695ee7c 939 return $data;
b7ceb253 940 }
96025800 941
09a4dcd5 942 /**
d89d2545 943 * Determine the minified file name.
09a4dcd5 944 *
d89d2545
TO
945 * @param string $ext
946 * @param string $file
947 * @return string
948 * An updated $fileName. If a minified version exists and is supported by
949 * system policy, the minified version will be returned. Otherwise, the original.
950 */
951 public function filterMinify($ext, $file) {
952 if (CRM_Core_Config::singleton()->debug && strpos($file, '.min.') !== FALSE) {
953 $nonMiniFile = str_replace('.min.', '.', $file);
954 if ($this->getPath($ext, $nonMiniFile)) {
955 $file = $nonMiniFile;
09a4dcd5
CW
956 }
957 }
d89d2545 958 return $file;
09a4dcd5
CW
959 }
960
6f12c6eb 961 /**
962 * @param string $url
963 * @return string
964 */
965 public function addCacheCode($url) {
33603e1d 966 $hasQuery = strpos($url, '?') !== FALSE;
03449a5b 967 $operator = $hasQuery ? '&' : '?';
6f12c6eb 968
03449a5b 969 return $url . $operator . 'r=' . $this->cacheCode;
6f12c6eb 970 }
33603e1d 971
adcd4bf7
CW
972 /**
973 * Checks if the given URL is fully-formed
974 *
975 * @param string $url
976 *
977 * @return bool
978 */
979 public static function isFullyFormedUrl($url) {
980 return (substr($url, 0, 4) === 'http') || (substr($url, 0, 1) === '/');
981 }
982
6a488035 983}