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