CRM-16995: Addressed XSS vulnerability.
[civicrm-core.git] / Civi / Angular / Page / Main.php
CommitLineData
e7ff7042 1<?php
39c3d5e9 2namespace Civi\Angular\Page;
e7ff7042
TO
3
4/**
5 * This page is simply a container; any Angular modules defined by CiviCRM (or by CiviCRM extensions)
6 * will be activated on this page.
7 *
8 * @link https://issues.civicrm.org/jira/browse/CRM-14479
9 */
39c3d5e9 10class Main extends \CRM_Core_Page {
e7ff7042 11 /**
fe482240 12 * The weight to assign to any Angular JS module files.
e7ff7042
TO
13 */
14 const DEFAULT_MODULE_WEIGHT = 200;
15
2f6c50d5 16 /**
4d93c42f
TO
17 * The resource manager.
18 *
19 * Do not use publicly. Inject your own copy!
20 *
39c3d5e9 21 * @var \CRM_Core_Resources
2f6c50d5 22 */
4d93c42f 23 public $res;
2f6c50d5 24
16072ce1
TO
25
26 /**
4d93c42f
TO
27 * The Angular module manager.
28 *
29 * Do not use publicly. Inject your own copy!
30 *
39c3d5e9 31 * @var \Civi\Angular\Manager
16072ce1 32 */
4d93c42f 33 public $angular;
16072ce1 34
2f6c50d5
TO
35 /**
36 * @param string $title
37 * Title of the page.
38 * @param int $mode
39 * Mode of the page.
39c3d5e9 40 * @param \CRM_Core_Resources|null $res
2f6c50d5
TO
41 * Resource manager.
42 */
43 public function __construct($title = NULL, $mode = NULL, $res = NULL) {
44 parent::__construct($title, $mode);
39c3d5e9
TO
45 $this->res = \CRM_Core_Resources::singleton();
46 $this->angular = \Civi\Core\Container::singleton()->get('angular');
6aeeacaf 47 $this->region = \CRM_Utils_Request::retrieve('snippet', 'String') ? 'ajax-snippet' : 'html-header';
2f6c50d5
TO
48 }
49
b5c2afd0
EM
50 /**
51 * This function takes care of all the things common to all
52 * pages. This typically involves assigning the appropriate
53 * smarty variable :)
54 *
a6c01b45
CW
55 * @return string
56 * The content generated by running this page
b5c2afd0 57 */
00be9182 58 public function run() {
6aeeacaf 59 $this->registerResources();
4b07d5bd
TO
60 return parent::run();
61 }
62
a0ee3941 63 /**
2f6c50d5 64 * Register resources required by Angular.
a0ee3941 65 */
6aeeacaf 66 public function registerResources() {
16072ce1 67 $modules = $this->angular->getModules();
4d93c42f 68 $page = $this; // PHP 5.3 does not propagate $this to inner functions.
e7ff7042 69
4d93c42f 70 $this->res->addSettingsFactory(function () use (&$modules, $page) {
e7ff7042 71 // TODO optimization; client-side caching
1da632e0 72 return array_merge($page->angular->getResources(array_keys($modules), 'settings', 'settings'), array(
6bd0dca9
FG
73 'resourceUrls' => \CRM_Extension_System::singleton()->getMapper()->getActiveModuleUrls(),
74 'angular' => array(
75 'modules' => array_merge(array('ngRoute'), array_keys($modules)),
76 'cacheCode' => $page->res->getCacheCode(),
77 ),
1da632e0 78 ));
e7ff7042
TO
79 });
80
6aeeacaf 81 $this->res->addScriptFile('civicrm', 'bower_components/angular/angular.min.js', 100, $this->region, FALSE);
27a90ef6 82
6d57b745 83 $headOffset = 0;
6aeeacaf 84 $config = \CRM_Core_Config::singleton();
27a90ef6 85 if ($config->debug) {
27a90ef6
TO
86 foreach ($modules as $moduleName => $module) {
87 foreach ($this->angular->getResources($moduleName, 'css', 'cacheUrl') as $url) {
6aeeacaf 88 $this->res->addStyleUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->region);
27a90ef6
TO
89 }
90 foreach ($this->angular->getResources($moduleName, 'js', 'cacheUrl') as $url) {
6aeeacaf 91 $this->res->addScriptUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->region);
27a90ef6
TO
92 // addScriptUrl() bypasses the normal string-localization of addScriptFile(),
93 // but that's OK because all Angular strings (JS+HTML) will load via crmResource.
94 }
2f6c50d5 95 }
2f6c50d5 96 }
27a90ef6
TO
97 else {
98 // Note: addScriptUrl() bypasses the normal string-localization of addScriptFile(),
99 // but that's OK because all Angular strings (JS+HTML) will load via crmResource.
100 $aggScriptUrl = \CRM_Utils_System::url('civicrm/ajax/angular-modules', 'format=js&r=' . $page->res->getCacheCode(), FALSE, NULL, FALSE);
6aeeacaf 101 $this->res->addScriptUrl($aggScriptUrl, 120, $this->region);
27a90ef6 102
6d57b745
TO
103 // FIXME: The following CSS aggregator doesn't currently handle path-adjustments - which can break icons.
104 //$aggStyleUrl = \CRM_Utils_System::url('civicrm/ajax/angular-modules', 'format=css&r=' . $page->res->getCacheCode(), FALSE, NULL, FALSE);
6aeeacaf 105 //$this->res->addStyleUrl($aggStyleUrl, 120, $this->region);
6d57b745
TO
106
107 foreach ($this->angular->getResources(array_keys($modules), 'css', 'cacheUrl') as $url) {
6aeeacaf 108 $this->res->addStyleUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->region);
6d57b745 109 }
27a90ef6 110 }
81916bee 111
337fc3e6
FG
112 // If trying to load an Angular page via AJAX, the route must be passed as a
113 // URL parameter, since PHP doesn't know about URL fragments (i.e, what
114 // comes after the #).
115 \CRM_Core_Resources::singleton()->addSetting(array(
116 'angularRoute' => \CRM_Utils_Request::retrieve('route', 'String'),
117 ));
2f6c50d5 118 }
e807a9a6 119
b5c2afd0 120}