Merge pull request #19890 from mlutfy/fixEmptyFileField
[civicrm-core.git] / Civi / Angular / AngularLoader.php
1 <?php
2 namespace Civi\Angular;
3
4 /**
5 * The AngularLoader loads any JS/CSS/JSON resources
6 * required for setting up AngularJS.
7 *
8 * The AngularLoader stops short of bootstrapping AngularJS. You may
9 * need to `<div ng-app="..."></div>` or `angular.bootstrap(...)`.
10 *
11 * ```
12 * $loader = new AngularLoader();
13 * $loader->setPageName('civicrm/case/a');
14 * $loader->setModules(array('crmApp'));
15 * $loader->load();
16 * ```
17 *
18 * @link https://docs.angularjs.org/guide/bootstrap
19 */
20 class AngularLoader {
21
22 /**
23 * The weight to assign to any Angular JS module files.
24 */
25 const DEFAULT_MODULE_WEIGHT = 200;
26
27 /**
28 * The resource manager.
29 *
30 * Do not use publicly. Inject your own copy!
31 *
32 * @var \CRM_Core_Resources
33 */
34 protected $res;
35
36 /**
37 * The Angular module manager.
38 *
39 * Do not use publicly. Inject your own copy!
40 *
41 * @var \Civi\Angular\Manager
42 */
43 protected $angular;
44
45 /**
46 * The region of the page into which JavaScript will be loaded.
47 *
48 * @var string
49 */
50 protected $region;
51
52 /**
53 * @var string
54 * Ex: 'civicrm/a'.
55 */
56 protected $pageName;
57
58 /**
59 * @var array
60 * A list of modules to load.
61 */
62 protected $modules;
63
64 /**
65 * @var array|null
66 */
67 protected $crmApp = NULL;
68
69 /**
70 * AngularLoader constructor.
71 */
72 public function __construct() {
73 $this->res = \CRM_Core_Resources::singleton();
74 $this->angular = \Civi::service('angular');
75 $this->region = \CRM_Utils_Request::retrieve('snippet', 'String') ? 'ajax-snippet' : 'html-header';
76 $this->pageName = \CRM_Utils_System::currentPath();
77 $this->modules = [];
78 }
79
80 /**
81 * Calling this method from outside this class is deprecated.
82 *
83 * The correct way to use this class is as a service, which will load automatically. E.g.:
84 *
85 * ```
86 * Civi::service('angularjs.loader')
87 * ->addModules('moduleFoo')
88 * ->useApp(); // Optional, if Civi's routing is desired (full-page apps only)
89 * ```
90 *
91 * @internal
92 * @deprecated
93 * @return AngularLoader
94 */
95 public function load() {
96 $angular = $this->getAngular();
97 $res = $this->getRes();
98
99 if ($this->crmApp !== NULL) {
100 $this->addModules($this->crmApp['modules']);
101
102 $this->res->addSetting([
103 'crmApp' => [
104 'defaultRoute' => $this->crmApp['defaultRoute'],
105 ],
106 ]);
107
108 // If trying to load an Angular page via AJAX, the route must be passed as a
109 // URL parameter, since the server doesn't receive information about
110 // URL fragments (i.e, what comes after the #).
111 $this->res->addSetting([
112 'angularRoute' => $this->crmApp['activeRoute'],
113 ]);
114 }
115
116 $moduleNames = $this->findActiveModules();
117 if (!$this->isAllModules($moduleNames)) {
118 $assetParams = ['modules' => implode(',', $moduleNames)];
119 }
120 else {
121 // The module list will be "all modules that the user can see".
122 $assetParams = ['nonce' => md5(implode(',', $moduleNames))];
123 }
124
125 $res->addSettingsFactory(function () use (&$moduleNames, $angular, $res, $assetParams) {
126 // Merge static settings with the results of settingsFactory functions
127 $settingsByModule = $angular->getResources($moduleNames, 'settings', 'settings');
128 foreach ($angular->getResources($moduleNames, 'settingsFactory', 'settingsFactory') as $moduleName => $factory) {
129 $settingsByModule[$moduleName] = array_merge($settingsByModule[$moduleName] ?? [], $factory());
130 }
131 // Add clientside permissions
132 $permissions = [];
133 $toCheck = $angular->getResources($moduleNames, 'permissions', 'permissions');
134 foreach ($toCheck as $perms) {
135 foreach ((array) $perms as $perm) {
136 if (!isset($permissions[$perm])) {
137 $permissions[$perm] = \CRM_Core_Permission::check($perm);
138 }
139 }
140 }
141 // TODO optimization; client-side caching
142 return array_merge($settingsByModule, ['permissions' => $permissions], [
143 'resourceUrls' => \CRM_Extension_System::singleton()->getMapper()->getActiveModuleUrls(),
144 'angular' => [
145 'modules' => $moduleNames,
146 'requires' => $angular->getResources($moduleNames, 'requires', 'requires'),
147 'cacheCode' => $res->getCacheCode(),
148 'bundleUrl' => \Civi::service('asset_builder')->getUrl('angular-modules.json', $assetParams),
149 ],
150 ]);
151 });
152
153 $res->addScriptFile('civicrm', 'bower_components/angular/angular.min.js', 100, $this->getRegion(), FALSE);
154
155 $headOffset = 0;
156 $config = \CRM_Core_Config::singleton();
157 if ($config->debug) {
158 foreach ($moduleNames as $moduleName) {
159 foreach ($this->angular->getResources($moduleName, 'css', 'cacheUrl') as $url) {
160 $res->addStyleUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->getRegion());
161 }
162 foreach ($this->angular->getResources($moduleName, 'js', 'cacheUrl') as $url) {
163 $res->addScriptUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->getRegion());
164 // addScriptUrl() bypasses the normal string-localization of addScriptFile(),
165 // but that's OK because all Angular strings (JS+HTML) will load via crmResource.
166 }
167 }
168 }
169 else {
170 // Note: addScriptUrl() bypasses the normal string-localization of addScriptFile(),
171 // but that's OK because all Angular strings (JS+HTML) will load via crmResource.
172 // $aggScriptUrl = \CRM_Utils_System::url('civicrm/ajax/angular-modules', 'format=js&r=' . $res->getCacheCode(), FALSE, NULL, FALSE);
173 $aggScriptUrl = \Civi::service('asset_builder')->getUrl('angular-modules.js', $assetParams);
174 $res->addScriptUrl($aggScriptUrl, 120, $this->getRegion());
175
176 // FIXME: The following CSS aggregator doesn't currently handle path-adjustments - which can break icons.
177 //$aggStyleUrl = \CRM_Utils_System::url('civicrm/ajax/angular-modules', 'format=css&r=' . $res->getCacheCode(), FALSE, NULL, FALSE);
178 //$aggStyleUrl = \Civi::service('asset_builder')->getUrl('angular-modules.css', $assetParams);
179 //$res->addStyleUrl($aggStyleUrl, 120, $this->getRegion());
180
181 foreach ($this->angular->getResources($moduleNames, 'css', 'cacheUrl') as $url) {
182 $res->addStyleUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->getRegion());
183 }
184 }
185 // Add bundles
186 foreach ($this->angular->getResources($moduleNames, 'bundles', 'bundles') as $bundles) {
187 $res->addBundle($bundles);
188 }
189
190 return $this;
191 }
192
193 /**
194 * Use Civi's generic "application" module.
195 *
196 * This is suitable for use on a basic, standalone Angular page
197 * like `civicrm/a`. (If you need to integrate Angular with pre-existing,
198 * non-Angular pages... then this probably won't help.)
199 *
200 * The Angular bootstrap process requires an HTML directive like
201 * `<div ng-app="foo">`.
202 *
203 * Calling useApp() will replace the page's main body with the
204 * `<div ng-app="crmApp">...</div>` and apply some configuration options
205 * for the `crmApp` module.
206 *
207 * @param array $settings
208 * A list of settings. Accepted values:
209 * - activeRoute: string, the route to open up immediately
210 * Ex: '/case/list'
211 * - defaultRoute: string, use this to redirect the default route (`/`) to another page
212 * Ex: '/case/list'
213 * - region: string, the place on the page where we should insert the angular app
214 * Ex: 'page-body'
215 * @return AngularLoader
216 * @link https://code.angularjs.org/1.5.11/docs/guide/bootstrap
217 */
218 public function useApp($settings = []) {
219 $defaults = [
220 'modules' => ['crmApp'],
221 'activeRoute' => NULL,
222 'defaultRoute' => NULL,
223 'region' => 'page-body',
224 'file' => 'Civi/Angular/Page/Main.tpl',
225 ];
226 $this->crmApp = array_merge($defaults, $settings);
227 $region = \CRM_Core_Region::instance($this->crmApp['region']);
228 $region->update('default', ['disabled' => TRUE]);
229 $region->add(['template' => $this->crmApp['file'], 'weight' => 0]);
230 return $this;
231 }
232
233 /**
234 * Get a list of all Angular modules which should be activated on this
235 * page.
236 *
237 * @return array
238 * List of module names.
239 * Ex: array('angularFileUpload', 'crmUi', 'crmUtil').
240 */
241 public function findActiveModules() {
242 return $this->angular->resolveDependencies(array_merge(
243 $this->getModules(),
244 $this->angular->resolveDefaultModules($this->getPageName())
245 ));
246 }
247
248 /**
249 * @param $moduleNames
250 * @return int
251 */
252 private function isAllModules($moduleNames) {
253 $allModuleNames = array_keys($this->angular->getModules());
254 return count(array_diff($allModuleNames, $moduleNames)) === 0;
255 }
256
257 /**
258 * @return \CRM_Core_Resources
259 */
260 public function getRes() {
261 return $this->res;
262 }
263
264 /**
265 * @param \CRM_Core_Resources $res
266 * @return AngularLoader
267 */
268 public function setRes($res) {
269 $this->res = $res;
270 return $this;
271 }
272
273 /**
274 * @return \Civi\Angular\Manager
275 */
276 public function getAngular() {
277 return $this->angular;
278 }
279
280 /**
281 * @param \Civi\Angular\Manager $angular
282 * @return AngularLoader
283 */
284 public function setAngular($angular) {
285 $this->angular = $angular;
286 return $this;
287 }
288
289 /**
290 * @return string
291 */
292 public function getRegion() {
293 return $this->region;
294 }
295
296 /**
297 * @param string $region
298 * @return AngularLoader
299 */
300 public function setRegion($region) {
301 $this->region = $region;
302 return $this;
303 }
304
305 /**
306 * @return string
307 * Ex: 'civicrm/a'.
308 */
309 public function getPageName() {
310 return $this->pageName;
311 }
312
313 /**
314 * @param string $pageName
315 * Ex: 'civicrm/a'.
316 * @return AngularLoader
317 */
318 public function setPageName($pageName) {
319 $this->pageName = $pageName;
320 return $this;
321 }
322
323 /**
324 * @param array|string $modules
325 * @return AngularLoader
326 */
327 public function addModules($modules) {
328 $modules = (array) $modules;
329 $this->modules = array_unique(array_merge($this->modules, $modules));
330 return $this;
331 }
332
333 /**
334 * @return array
335 */
336 public function getModules() {
337 return $this->modules;
338 }
339
340 /**
341 * Replace all previously set modules.
342 *
343 * Use with caution, as it can cause conflicts with other extensions who have added modules.
344 *
345 * @param array $modules
346 * @return AngularLoader
347 */
348 public function setModules($modules) {
349 $this->modules = $modules;
350 return $this;
351 }
352
353 /**
354 * @param \Civi\Core\Event\GenericHookEvent $e
355 */
356 public function onRegionRender($e) {
357 if ($e->region->_name === $this->region && ($this->modules || $this->crmApp)) {
358 $this->load();
359 $this->res->addScriptFile('civicrm', 'js/crm-angularjs-loader.js', 200, $this->getRegion(), FALSE);
360 }
361 }
362
363 }