Remove unused variable and param
[civicrm-core.git] / CRM / Core / BAO / Navigation.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33class CRM_Core_BAO_Navigation extends CRM_Core_DAO_Navigation {
34
73538697
CW
35 // Number of characters in the menu js cache key
36 const CACHE_KEY_STRLEN = 8;
37
6a488035 38 /**
fe482240 39 * Class constructor.
6a488035 40 */
00be9182 41 public function __construct() {
6a488035
TO
42 parent::__construct();
43 }
44
45 /**
fe482240 46 * Update the is_active flag in the db.
6a488035 47 *
6a0b768e
TO
48 * @param int $id
49 * Id of the database record.
50 * @param bool $is_active
51 * Value we want to set the is_active field.
6a488035 52 *
8a4fede3 53 * @return bool
54 * true if we found and updated the object, else false
6a488035 55 */
00be9182 56 public static function setIsActive($id, $is_active) {
6a488035
TO
57 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_Navigation', $id, 'is_active', $is_active);
58 }
59
6a488035 60 /**
ffbff132 61 * Add/update navigation record.
6a488035 62 *
ffbff132 63 * @param array $params Submitted values
6a488035 64 *
ffbff132 65 * @return CRM_Core_DAO_Navigation
a6c01b45 66 * navigation object
6a488035 67 */
00be9182 68 public static function add(&$params) {
6a488035 69 $navigation = new CRM_Core_DAO_Navigation();
3523b615 70 if (empty($params['id'])) {
71 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
72 $params['has_separator'] = CRM_Utils_Array::value('has_separator', $params, FALSE);
7a487c63 73 $params['domain_id'] = CRM_Utils_Array::value('domain_id', $params, CRM_Core_Config::domainID());
3523b615 74 }
6a488035
TO
75
76 if (!isset($params['id']) ||
481a74f4 77 (CRM_Utils_Array::value('parent_id', $params) != CRM_Utils_Array::value('current_parent_id', $params))
6a488035
TO
78 ) {
79 /* re/calculate the weight, if the Parent ID changed OR create new menu */
80
81 if ($navName = CRM_Utils_Array::value('name', $params)) {
82 $params['name'] = $navName;
83 }
c5e077b2
PJ
84 elseif ($navLabel = CRM_Utils_Array::value('label', $params)) {
85 $params['name'] = $navLabel;
6a488035
TO
86 }
87
88 $params['weight'] = self::calculateWeight(CRM_Utils_Array::value('parent_id', $params));
89 }
90
c5e077b2 91 if (array_key_exists('permission', $params) && is_array($params['permission'])) {
6a488035
TO
92 $params['permission'] = implode(',', $params['permission']);
93 }
94
95 $navigation->copyValues($params);
96
6a488035
TO
97 $navigation->save();
98 return $navigation;
99 }
100
101 /**
fe482240 102 * Fetch object based on array of properties.
6a488035 103 *
6a0b768e
TO
104 * @param array $params
105 * (reference ) an assoc array of name/value pairs.
106 * @param array $defaults
107 * (reference ) an assoc array to hold the flattened values.
6a488035 108 *
16b10e64
CW
109 * @return CRM_Core_BAO_Navigation|null
110 * object on success, NULL otherwise
6a488035 111 */
00be9182 112 public static function retrieve(&$params, &$defaults) {
6a488035
TO
113 $navigation = new CRM_Core_DAO_Navigation();
114 $navigation->copyValues($params);
115
116 $navigation->domain_id = CRM_Core_Config::domainID();
117
118 if ($navigation->find(TRUE)) {
119 CRM_Core_DAO::storeValues($navigation, $defaults);
120 return $navigation;
121 }
122 return NULL;
123 }
124
125 /**
fe482240 126 * Calculate navigation weight.
6a488035 127 *
5a4f6742 128 * @param int $parentID
6a0b768e 129 * Parent_id of a menu.
5a4f6742 130 * @param int $menuID
6a0b768e 131 * Menu id.
6a488035 132 *
a6c01b45
CW
133 * @return int
134 * $weight string
6a488035 135 */
00be9182 136 public static function calculateWeight($parentID = NULL, $menuID = NULL) {
6a488035
TO
137 $domainID = CRM_Core_Config::domainID();
138
139 $weight = 1;
140 // we reset weight for each parent, i.e we start from 1 to n
141 // calculate max weight for top level menus, if parent id is absent
142 if (!$parentID) {
143 $query = "SELECT max(weight) as weight FROM civicrm_navigation WHERE parent_id IS NULL AND domain_id = $domainID";
144 }
145 else {
146 // if parent is passed, we need to get max weight for that particular parent
147 $query = "SELECT max(weight) as weight FROM civicrm_navigation WHERE parent_id = {$parentID} AND domain_id = $domainID";
148 }
149
150 $dao = CRM_Core_DAO::executeQuery($query);
151 $dao->fetch();
152 return $weight = $weight + $dao->weight;
153 }
154
155 /**
fe482240 156 * Get formatted menu list.
6a488035 157 *
a6c01b45
CW
158 * @return array
159 * returns associated array
6a488035 160 */
00be9182 161 public static function getNavigationList() {
6a488035
TO
162 $cacheKeyString = "navigationList";
163 $whereClause = '';
164
165 $config = CRM_Core_Config::singleton();
166
167 // check if we can retrieve from database cache
168 $navigations = CRM_Core_BAO_Cache::getItem('navigation', $cacheKeyString);
169
170 if (!$navigations) {
171 $domainID = CRM_Core_Config::domainID();
172 $query = "
173SELECT id, label, parent_id, weight, is_active, name
a8911fe3 174FROM civicrm_navigation WHERE domain_id = $domainID";
6a488035
TO
175 $result = CRM_Core_DAO::executeQuery($query);
176
177 $pidGroups = array();
178 while ($result->fetch()) {
179 $pidGroups[$result->parent_id][$result->label] = $result->id;
180 }
181
182 foreach ($pidGroups[''] as $label => $val) {
183 $pidGroups[''][$label] = self::_getNavigationValue($val, $pidGroups);
184 }
185
186 $navigations = array();
187 self::_getNavigationLabel($pidGroups[''], $navigations);
188
189 CRM_Core_BAO_Cache::setItem($navigations, 'navigation', $cacheKeyString);
190 }
191 return $navigations;
192 }
193
194 /**
ffbff132 195 * Helper function for getNavigationList().
6a488035 196 *
6a0b768e
TO
197 * @param array $list
198 * Menu info.
199 * @param array $navigations
200 * Navigation menus.
201 * @param string $separator
202 * Menu separator.
6a488035 203 */
00be9182 204 public static function _getNavigationLabel($list, &$navigations, $separator = '') {
6a488035
TO
205 $i18n = CRM_Core_I18n::singleton();
206 foreach ($list as $label => $val) {
207 if ($label == 'navigation_id') {
208 continue;
209 }
210 $translatedLabel = $i18n->crm_translate($label, array('context' => 'menu'));
211 $navigations[is_array($val) ? $val['navigation_id'] : $val] = "{$separator}{$translatedLabel}";
212 if (is_array($val)) {
213 self::_getNavigationLabel($val, $navigations, $separator . '&nbsp;&nbsp;&nbsp;&nbsp;');
214 }
215 }
216 }
217
218 /**
ffbff132 219 * Helper function for getNavigationList().
6a488035 220 *
6a0b768e
TO
221 * @param string $val
222 * Menu name.
223 * @param array $pidGroups
224 * Parent menus.
ffbff132 225 *
6a488035
TO
226 * @return array
227 */
00be9182 228 public static function _getNavigationValue($val, &$pidGroups) {
6a488035
TO
229 if (array_key_exists($val, $pidGroups)) {
230 $list = array('navigation_id' => $val);
231 foreach ($pidGroups[$val] as $label => $id) {
232 $list[$label] = self::_getNavigationValue($id, $pidGroups);
233 }
234 unset($pidGroups[$val]);
235 return $list;
236 }
237 else {
238 return $val;
239 }
240 }
241
242 /**
fe482240 243 * Build navigation tree.
6a488035 244 *
a6c01b45
CW
245 * @return array
246 * nested array of menus
6a488035 247 */
656e5c5b 248 public static function buildNavigationTree() {
6a488035 249 $domainID = CRM_Core_Config::domainID();
656e5c5b 250 $navigationTree = array();
6a488035 251
c88f9a4d
O
252 $navigationMenu = new self();
253 $navigationMenu->domain_id = $domainID;
254 $navigationMenu->orderBy('parent_id, weight');
255 $navigationMenu->find();
256
257 while ($navigationMenu->fetch()) {
258 $navigationTree[$navigationMenu->id] = array(
6ea503d4 259 'attributes' => array(
c88f9a4d
O
260 'label' => $navigationMenu->label,
261 'name' => $navigationMenu->name,
262 'url' => $navigationMenu->url,
263 'icon' => $navigationMenu->icon,
9f51bd16 264 'weight' => $navigationMenu->weight,
c88f9a4d
O
265 'permission' => $navigationMenu->permission,
266 'operator' => $navigationMenu->permission_operator,
267 'separator' => $navigationMenu->has_separator,
268 'parentID' => $navigationMenu->parent_id,
269 'navID' => $navigationMenu->id,
270 'active' => $navigationMenu->is_active,
acb1052e 271 ),
353ffa53 272 );
6a488035
TO
273 }
274
656e5c5b 275 return self::buildTree($navigationTree);
6a488035
TO
276 }
277
278 /**
656e5c5b 279 * Convert flat array to nested.
6a488035 280 *
656e5c5b
CW
281 * @param array $elements
282 * @param int|null $parentId
283 *
284 * @return array
285 */
286 private static function buildTree($elements, $parentId = NULL) {
287 $branch = array();
288
289 foreach ($elements as $id => $element) {
290 if ($element['attributes']['parentID'] == $parentId) {
291 $children = self::buildTree($elements, $id);
292 if ($children) {
293 $element['child'] = $children;
294 }
295 $branch[$id] = $element;
296 }
297 }
298
299 return $branch;
300 }
301
302 /**
303 * Build menu.
6a488035 304 *
72b3a70c 305 * @return string
6a488035 306 */
656e5c5b
CW
307 public static function buildNavigation() {
308 $navigations = self::buildNavigationTree();
309 $navigationString = '';
6a488035
TO
310
311 // run the Navigation through a hook so users can modify it
312 CRM_Utils_Hook::navigationMenu($navigations);
b774b065 313 self::fixNavigationMenu($navigations);
6a488035 314
9f51bd16
MM
315 // Hooks have added menu items in an arbitrary order. We need to order by
316 // weight again. I would put this function directly after
317 // CRM_Utils_Hook::navigationMenu but for some reason, fixNavigationMenu is
318 // moving items added by hooks on the end of the menu. Hence I do it
319 // afterwards
320 self::orderByWeight($navigations);
321
6a488035
TO
322 //skip children menu item if user don't have access to parent menu item
323 $skipMenuItems = array();
324 foreach ($navigations as $key => $value) {
656e5c5b
CW
325 // Home is a special case
326 if ($value['attributes']['name'] != 'Home') {
327 $name = self::getMenuName($value, $skipMenuItems);
328 if ($name) {
329 //separator before
330 if (isset($value['attributes']['separator']) && $value['attributes']['separator'] == 2) {
331 $navigationString .= '<li class="menu-separator"></li>';
6a488035 332 }
656e5c5b
CW
333 $removeCharacters = array('/', '!', '&', '*', ' ', '(', ')', '.');
334 $navigationString .= '<li class="menumain crm-' . str_replace($removeCharacters, '_', $value['attributes']['label']) . '">' . $name;
6a488035
TO
335 }
336 }
656e5c5b 337 self::recurseNavigation($value, $navigationString, $skipMenuItems);
6a488035
TO
338 }
339
656e5c5b
CW
340 // clean up - Need to remove empty <ul>'s, this happens when user don't have
341 // permission to access parent
342 $navigationString = str_replace('<ul></ul></li>', '', $navigationString);
6a488035
TO
343
344 return $navigationString;
345 }
346
9f51bd16
MM
347 /**
348 * buildNavigationTree retreives items in order. We call this function to
349 * ensure that any items added by the hook are also in the correct order.
350 */
351 private static function orderByWeight(&$navigations) {
9f51bd16
MM
352 // sort each item in navigations by weight
353 usort($navigations, function($a, $b) {
354
355 // If no weight have been defined for an item put it at the end of the list
356 if (!isset($a['attributes']['weight'])) {
357 $a['attributes']['weight'] = 1000;
358 }
359 if (!isset($b['attributes']['weight'])) {
360 $b['attributes']['weight'] = 1000;
361 }
362 return $a['attributes']['weight'] - $b['attributes']['weight'];
363 });
364
365 // If any of the $navigations have children, recurse
366 foreach ($navigations as $navigation) {
367 if (isset($navigation['child'])) {
368 self::orderByWeight($navigation['child']);
369 }
370 }
371 }
372
6a488035 373 /**
fe482240 374 * Recursively check child menus.
6a488035
TO
375 *
376 * @param array $value
377 * @param string $navigationString
656e5c5b 378 * @param array $skipMenuItems
ffbff132 379 *
6a488035
TO
380 * @return string
381 */
656e5c5b
CW
382 public static function recurseNavigation(&$value, &$navigationString, $skipMenuItems) {
383 if (!empty($value['child'])) {
384 $navigationString .= '<ul>';
6a488035
TO
385 }
386 else {
656e5c5b
CW
387 $navigationString .= '</li>';
388 //locate separator after
389 if (isset($value['attributes']['separator']) && $value['attributes']['separator'] == 1) {
390 $navigationString .= '<li class="menu-separator"></li>';
6a488035 391 }
656e5c5b 392 }
6a488035 393
656e5c5b
CW
394 if (!empty($value['child'])) {
395 foreach ($value['child'] as $val) {
396 $name = self::getMenuName($val, $skipMenuItems);
397 if ($name) {
398 //locate separator before
399 if (isset($val['attributes']['separator']) && $val['attributes']['separator'] == 2) {
400 $navigationString .= '<li class="menu-separator"></li>';
6a488035 401 }
656e5c5b
CW
402 $removeCharacters = array('/', '!', '&', '*', ' ', '(', ')', '.');
403 $navigationString .= '<li class="crm-' . str_replace($removeCharacters, '_', $val['attributes']['label']) . '">' . $name;
404 self::recurseNavigation($val, $navigationString, $skipMenuItems);
6a488035
TO
405 }
406 }
656e5c5b
CW
407 }
408 if (!empty($value['child'])) {
409 $navigationString .= '</ul></li>';
410 if (isset($value['attributes']['separator']) && $value['attributes']['separator'] == 1) {
411 $navigationString .= '<li class="menu-separator"></li>';
6a488035
TO
412 }
413 }
414 return $navigationString;
415 }
416
b774b065
TO
417 /**
418 * Given a navigation menu, generate navIDs for any items which are
419 * missing them.
420 *
421 * @param array $nodes
422 * Each key is a numeral; each value is a node in
423 * the menu tree (with keys "child" and "attributes").
424 */
425 public static function fixNavigationMenu(&$nodes) {
426 $maxNavID = 1;
427 array_walk_recursive($nodes, function($item, $key) use (&$maxNavID) {
428 if ($key === 'navID') {
429 $maxNavID = max($maxNavID, $item);
430 }
431 });
432 self::_fixNavigationMenu($nodes, $maxNavID, NULL);
433 }
434
435 /**
436 * @param array $nodes
437 * Each key is a numeral; each value is a node in
438 * the menu tree (with keys "child" and "attributes").
ea3ddccf 439 * @param int $maxNavID
440 * @param int $parentID
b774b065
TO
441 */
442 private static function _fixNavigationMenu(&$nodes, &$maxNavID, $parentID) {
443 $origKeys = array_keys($nodes);
444 foreach ($origKeys as $origKey) {
445 if (!isset($nodes[$origKey]['attributes']['parentID']) && $parentID !== NULL) {
446 $nodes[$origKey]['attributes']['parentID'] = $parentID;
447 }
448 // If no navID, then assign navID and fix key.
449 if (!isset($nodes[$origKey]['attributes']['navID'])) {
450 $newKey = ++$maxNavID;
451 $nodes[$origKey]['attributes']['navID'] = $newKey;
f5d3c41c
JM
452 if ($origKey != $newKey) {
453 // If the keys are different, reset the array index to match.
454 $nodes[$newKey] = $nodes[$origKey];
455 unset($nodes[$origKey]);
456 $origKey = $newKey;
457 }
b774b065
TO
458 }
459 if (isset($nodes[$origKey]['child']) && is_array($nodes[$origKey]['child'])) {
460 self::_fixNavigationMenu($nodes[$origKey]['child'], $maxNavID, $nodes[$origKey]['attributes']['navID']);
461 }
462 }
463 }
464
6a488035 465 /**
fe482240 466 * Get Menu name.
6a488035
TO
467 *
468 * @param $value
100fef9d 469 * @param array $skipMenuItems
ffbff132 470 *
6a488035
TO
471 * @return bool|string
472 */
00be9182 473 public static function getMenuName(&$value, &$skipMenuItems) {
6a488035
TO
474 // we need to localise the menu labels (CRM-5456) and don’t
475 // want to use ts() as it would throw the ts-extractor off
476 $i18n = CRM_Core_I18n::singleton();
477
353ffa53 478 $name = $i18n->crm_translate($value['attributes']['label'], array('context' => 'menu'));
29c4b4bf
WA
479 $url = CRM_Utils_Array::value('url', $value['attributes']);
480 $permission = CRM_Utils_Array::value('permission', $value['attributes']);
481 $operator = CRM_Utils_Array::value('operator', $value['attributes']);
482 $parentID = CRM_Utils_Array::value('parentID', $value['attributes']);
483 $navID = CRM_Utils_Array::value('navID', $value['attributes']);
484 $active = CRM_Utils_Array::value('active', $value['attributes']);
353ffa53 485 $target = CRM_Utils_Array::value('target', $value['attributes']);
6a488035
TO
486
487 if (in_array($parentID, $skipMenuItems) || !$active) {
488 $skipMenuItems[] = $navID;
489 return FALSE;
490 }
491
6a488035
TO
492 $config = CRM_Core_Config::singleton();
493
494 $makeLink = FALSE;
45d70ef5
CW
495 if (!empty($url)) {
496 // Skip processing fully-formed urls
a78fa537 497 if (substr($url, 0, 4) !== 'http' && $url[0] !== '/' && $url[0] !== '#') {
6a488035
TO
498 //CRM-7656 --make sure to separate out url path from url params,
499 //as we'r going to validate url path across cross-site scripting.
402ee56d
TO
500 $parsedUrl = parse_url($url);
501 if (empty($parsedUrl['query'])) {
502 $parsedUrl['query'] = NULL;
710199c8 503 }
402ee56d
TO
504 if (empty($parsedUrl['fragment'])) {
505 $parsedUrl['fragment'] = NULL;
506 }
507 $url = CRM_Utils_System::url($parsedUrl['path'], $parsedUrl['query'], FALSE, $parsedUrl['fragment'], TRUE);
6a488035 508 }
f39c14c6
CW
509 elseif (strpos($url, '&amp;') === FALSE) {
510 $url = htmlspecialchars($url);
511 }
6a488035
TO
512 $makeLink = TRUE;
513 }
514
515 static $allComponents;
516 if (!$allComponents) {
517 $allComponents = CRM_Core_Component::getNames();
518 }
519
520 if (isset($permission) && $permission) {
521 $permissions = explode(',', $permission);
522
523 $hasPermission = FALSE;
524 foreach ($permissions as $key) {
525 $key = trim($key);
526 $showItem = TRUE;
527
528 //get the component name from permission.
529 $componentName = CRM_Core_Permission::getComponentName($key);
530
531 if ($componentName) {
532 if (!in_array($componentName, $config->enableComponents) ||
533 !CRM_Core_Permission::check($key)
534 ) {
535 $showItem = FALSE;
536 if ($operator == 'AND') {
537 $skipMenuItems[] = $navID;
538 return $showItem;
539 }
540 }
541 else {
542 $hasPermission = TRUE;
543 }
544 }
545 elseif (!CRM_Core_Permission::check($key)) {
546 $showItem = FALSE;
547 if ($operator == 'AND') {
548 $skipMenuItems[] = $navID;
549 return $showItem;
550 }
551 }
552 else {
553 $hasPermission = TRUE;
554 }
555 }
556
557 if (!$showItem && !$hasPermission) {
558 $skipMenuItems[] = $navID;
559 return FALSE;
560 }
561 }
562
4926ede8 563 if (!empty($value['attributes']['icon'])) {
e5dd49b5 564 $menuIcon = sprintf('<i class="%s"></i>', $value['attributes']['icon']);
4926ede8
O
565 $name = $menuIcon . $name;
566 }
567
6a488035 568 if ($makeLink) {
202407d7 569 $url = CRM_Utils_System::evalUrl($url);
6a488035
TO
570 if ($target) {
571 $name = "<a href=\"{$url}\" target=\"{$target}\">{$name}</a>";
572 }
573 else {
574 $name = "<a href=\"{$url}\">{$name}</a>";
575 }
576 }
577
578 return $name;
579 }
580
581 /**
fe482240 582 * Create navigation for CiviCRM Admin Menu.
6a488035 583 *
a6c01b45
CW
584 * @return string
585 * returns navigation html
6a488035 586 */
2e42cb18 587 public static function createNavigation() {
73538697 588 $navigation = self::buildNavigation();
6a488035 589
73538697 590 if ($navigation) {
6a488035
TO
591
592 //add additional navigation items
593 $logoutURL = CRM_Utils_System::url('civicrm/logout', 'reset=1');
6a488035
TO
594
595 // get home menu from db
596 $homeParams = array('name' => 'Home');
597 $homeNav = array();
a2e1885c 598 $homeIcon = '<span class="crm-logo-sm" ></span>';
6a488035
TO
599 self::retrieve($homeParams, $homeNav);
600 if ($homeNav) {
710199c8 601 list($path, $q) = explode('?', $homeNav['url']);
6a488035
TO
602 $homeURL = CRM_Utils_System::url($path, $q);
603 $homeLabel = $homeNav['label'];
604 // CRM-6804 (we need to special-case this as we don’t ts()-tag variables)
605 if ($homeLabel == 'Home') {
a65693e5 606 $homeLabel = ts('CiviCRM Home');
6a488035
TO
607 }
608 }
609 else {
610 $homeURL = CRM_Utils_System::url('civicrm/dashboard', 'reset=1');
a65693e5 611 $homeLabel = ts('CiviCRM Home');
6a488035 612 }
8960d9b9 613 // Link to hide the menubar
8b571e4c 614 $hideLabel = ts('Hide Menu');
6a488035 615
8960d9b9
CW
616 $prepandString = "
617 <li class='menumain crm-link-home'>$homeIcon
618 <ul id='civicrm-home'>
619 <li><a href='$homeURL'>$homeLabel</a></li>
620 <li><a href='#' class='crm-hidemenu'>$hideLabel</a></li>
86bfa4f6 621 <li><a href='$logoutURL' class='crm-logout-link'>" . ts('Log out') . "</a></li>
8960d9b9
CW
622 </ul>";
623 // <li> tag doesn't need to be closed
73538697 624 }
8960d9b9 625 return $prepandString . $navigation;
73538697 626 }
6a488035 627
73538697 628 /**
fe482240 629 * Reset navigation for all contacts or a specified contact.
73538697 630 *
6a0b768e
TO
631 * @param int $contactID
632 * Reset only entries belonging to that contact ID.
ffbff132 633 *
73538697
CW
634 * @return string
635 */
00be9182 636 public static function resetNavigation($contactID = NULL) {
73538697
CW
637 $newKey = CRM_Utils_String::createRandom(self::CACHE_KEY_STRLEN, CRM_Utils_String::ALPHANUMERIC);
638 if (!$contactID) {
290110ef
TO
639 $ser = serialize($newKey);
640 $query = "UPDATE civicrm_setting SET value = '$ser' WHERE name='navigation' AND contact_id IS NOT NULL";
73538697
CW
641 CRM_Core_DAO::executeQuery($query);
642 CRM_Core_BAO_Cache::deleteGroup('navigation');
643 }
644 else {
6a488035 645 // before inserting check if contact id exists in db
73538697 646 // this is to handle weird case when contact id is in session but not in db
6a488035
TO
647 $contact = new CRM_Contact_DAO_Contact();
648 $contact->id = $contactID;
649 if ($contact->find(TRUE)) {
650 CRM_Core_BAO_Setting::setItem(
73538697 651 $newKey,
6a488035
TO
652 CRM_Core_BAO_Setting::PERSONAL_PREFERENCES_NAME,
653 'navigation',
654 NULL,
655 $contactID,
656 $contactID
657 );
658 }
659 }
73538697
CW
660
661 return $newKey;
6a488035
TO
662 }
663
664 /**
fe482240 665 * Process navigation.
6a488035 666 *
6a0b768e
TO
667 * @param array $params
668 * Associated array, $_GET.
6a488035 669 */
00be9182 670 public static function processNavigation(&$params) {
353ffa53
TO
671 $nodeID = (int) str_replace("node_", "", $params['id']);
672 $referenceID = (int) str_replace("node_", "", $params['ref_id']);
673 $position = $params['ps'];
674 $type = $params['type'];
675 $label = CRM_Utils_Array::value('data', $params);
6a488035
TO
676
677 switch ($type) {
678 case "move":
679 self::processMove($nodeID, $referenceID, $position);
680 break;
681
682 case "rename":
683 self::processRename($nodeID, $label);
684 break;
685
686 case "delete":
687 self::processDelete($nodeID);
688 break;
689 }
690
691 //reset navigation menus
692 self::resetNavigation();
693 CRM_Utils_System::civiExit();
694 }
695
696 /**
fe482240 697 * Process move action.
6a488035 698 *
6a0b768e
TO
699 * @param $nodeID
700 * Node that is being moved.
701 * @param $referenceID
702 * Parent id where node is moved. 0 mean no parent.
703 * @param $position
704 * New position of the nod, it starts with 0 - n.
6a488035 705 */
00be9182 706 public static function processMove($nodeID, $referenceID, $position) {
6a488035
TO
707 // based on the new position we need to get the weight of the node after moved node
708 // 1. update the weight of $position + 1 nodes to weight + 1
709 // 2. weight of the ( $position -1 ) node - 1 is the new weight of the node being moved
710
711 // check if there is parent id, which means node is moved inside existing parent container, so use parent id
712 // to find the correct position else use NULL to get the weights of parent ( $position - 1 )
713 // accordingly set the new parent_id
714 if ($referenceID) {
715 $newParentID = $referenceID;
716 $parentClause = "parent_id = {$referenceID} ";
717 }
718 else {
719 $newParentID = 'NULL';
720 $parentClause = 'parent_id IS NULL';
721 }
722
4eeb9a5b 723 $incrementOtherNodes = TRUE;
353ffa53 724 $sql = "SELECT weight from civicrm_navigation WHERE {$parentClause} ORDER BY weight LIMIT %1, 1";
481a74f4 725 $params = array(1 => array($position, 'Positive'));
6a488035
TO
726 $newWeight = CRM_Core_DAO::singleValueQuery($sql, $params);
727
728 // this means node is moved to last position, so you need to get the weight of last element + 1
729 if (!$newWeight) {
7cc5305f
CW
730 // If this is not the first item being added to a parent
731 if ($position) {
732 $lastPosition = $position - 1;
733 $sql = "SELECT weight from civicrm_navigation WHERE {$parentClause} ORDER BY weight LIMIT %1, 1";
734 $params = array(1 => array($lastPosition, 'Positive'));
735 $newWeight = CRM_Core_DAO::singleValueQuery($sql, $params);
736
737 // since last node increment + 1
738 $newWeight = $newWeight + 1;
739 }
740 else {
741 $newWeight = '0';
742 }
6a488035
TO
743
744 // since this is a last node we don't need to increment other nodes
ab8a593e 745 $incrementOtherNodes = FALSE;
6a488035
TO
746 }
747
748 $transaction = new CRM_Core_Transaction();
749
750 // now update the existing nodes to weight + 1, if required.
481a74f4 751 if ($incrementOtherNodes) {
6a488035
TO
752 $query = "UPDATE civicrm_navigation SET weight = weight + 1
753 WHERE {$parentClause} AND weight >= {$newWeight}";
754
755 CRM_Core_DAO::executeQuery($query);
756 }
757
758 // finally set the weight of current node
759 $query = "UPDATE civicrm_navigation SET weight = {$newWeight}, parent_id = {$newParentID} WHERE id = {$nodeID}";
760 CRM_Core_DAO::executeQuery($query);
761
762 $transaction->commit();
763 }
764
765 /**
ffbff132 766 * Function to process rename action for tree.
6a488035 767 *
100fef9d 768 * @param int $nodeID
6a488035
TO
769 * @param $label
770 */
00be9182 771 public static function processRename($nodeID, $label) {
6a488035
TO
772 CRM_Core_DAO::setFieldValue('CRM_Core_DAO_Navigation', $nodeID, 'label', $label);
773 }
774
775 /**
fe482240 776 * Process delete action for tree.
6a488035 777 *
100fef9d 778 * @param int $nodeID
6a488035 779 */
00be9182 780 public static function processDelete($nodeID) {
6a488035
TO
781 $query = "DELETE FROM civicrm_navigation WHERE id = {$nodeID}";
782 CRM_Core_DAO::executeQuery($query);
783 }
784
6a488035 785 /**
fe482240 786 * Update menu.
6a488035 787 *
6a0b768e
TO
788 * @param array $params
789 * @param array $newParams
790 * New value of params.
6a488035 791 */
00be9182 792 public static function processUpdate($params, $newParams) {
6a488035
TO
793 $dao = new CRM_Core_DAO_Navigation();
794 $dao->copyValues($params);
795 if ($dao->find(TRUE)) {
796 $dao->copyValues($newParams);
797 $dao->save();
798 }
799 }
73538697 800
31cb1898
AN
801 /**
802 * Rebuild reports menu.
803 *
804 * All Contact reports will become sub-items of 'Contact Reports' and so on.
805 *
806 * @param int $domain_id
807 */
808 public static function rebuildReportsNavigation($domain_id) {
809 $component_to_nav_name = array(
810 'CiviContact' => 'Contact Reports',
811 'CiviContribute' => 'Contribution Reports',
812 'CiviMember' => 'Membership Reports',
813 'CiviEvent' => 'Event Reports',
814 'CiviPledge' => 'Pledge Reports',
815 'CiviGrant' => 'Grant Reports',
816 'CiviMail' => 'Mailing Reports',
817 'CiviCampaign' => 'Campaign Reports',
818 );
819
820 // Create or update the top level Reports link.
821 $reports_nav = self::createOrUpdateTopLevelReportsNavItem($domain_id);
822
823 // Get all active report instances grouped by component.
824 $components = self::getAllActiveReportsByComponent($domain_id);
825 foreach ($components as $component_id => $component) {
826 // Create or update the per component reports links.
827 $component_nav_name = $component['name'];
828 if (isset($component_to_nav_name[$component_nav_name])) {
829 $component_nav_name = $component_to_nav_name[$component_nav_name];
830 }
831 $permission = "access {$component['name']}";
832 if ($component['name'] === 'CiviContact') {
833 $permission = "administer CiviCRM";
834 }
835 elseif ($component['name'] === 'CiviCampaign') {
836 $permission = "access CiviReport";
837 }
0087242f 838 $component_nav = self::createOrUpdateReportNavItem($component_nav_name, 'civicrm/report/list',
839 "compid={$component_id}&reset=1", $reports_nav->id, $permission, $domain_id, TRUE);
31cb1898
AN
840 foreach ($component['reports'] as $report_id => $report) {
841 // Create or update the report instance links.
51704c4d 842 $report_nav = self::createOrUpdateReportNavItem($report['title'], $report['url'], 'reset=1', $component_nav->id, $report['permission'], $domain_id, FALSE, TRUE);
31cb1898
AN
843 // Update the report instance to include the navigation id.
844 $query = "UPDATE civicrm_report_instance SET navigation_id = %1 WHERE id = %2";
845 $params = array(
846 1 => array($report_nav->id, 'Integer'),
847 2 => array($report_id, 'Integer'),
848 );
849 CRM_Core_DAO::executeQuery($query, $params);
850 }
851 }
852
853 // Create or update the All Reports link.
dfbeefd8 854 self::createOrUpdateReportNavItem('All Reports', 'civicrm/report/list', 'reset=1', $reports_nav->id, 'access CiviReport', $domain_id, TRUE);
e24131b6 855 // Create or update the My Reports link.
856 self::createOrUpdateReportNavItem('My Reports', 'civicrm/report/list', 'myreports=1&reset=1', $reports_nav->id, 'access CiviReport', $domain_id, TRUE);
857
31cb1898
AN
858 }
859
860 /**
861 * Create the top level 'Reports' item in the navigation tree.
862 *
863 * @param int $domain_id
864 *
865 * @return bool|\CRM_Core_DAO
866 */
867 static public function createOrUpdateTopLevelReportsNavItem($domain_id) {
868 $id = NULL;
869
870 $dao = new CRM_Core_BAO_Navigation();
871 $dao->name = 'Reports';
872 $dao->domain_id = $domain_id;
873 // The first selectAdd clears it - so that we only retrieve the one field.
874 $dao->selectAdd();
875 $dao->selectAdd('id');
876 if ($dao->find(TRUE)) {
877 $id = $dao->id;
878 }
879
880 $nav = self::createReportNavItem('Reports', NULL, NULL, NULL, 'access CiviReport', $id, $domain_id);
881 return $nav;
882 }
883
884 /**
885 * Retrieve a navigation item using it's url.
886 *
51704c4d 887 * Note that we use LIKE to permit a wildcard as the calling code likely doesn't
888 * care about output params appended.
889 *
31cb1898
AN
890 * @param string $url
891 * @param array $url_params
892 *
0087242f 893 * @param int|null $parent_id
894 * Optionally restrict to one parent.
895 *
896 * @return bool|\CRM_Core_BAO_Navigation
31cb1898 897 */
0087242f 898 public static function getNavItemByUrl($url, $url_params, $parent_id = NULL) {
899 $nav = new CRM_Core_BAO_Navigation();
0087242f 900 $nav->parent_id = $parent_id;
51704c4d 901 $nav->whereAdd("url LIKE '{$url}?{$url_params}'");
902
0087242f 903 if ($nav->find(TRUE)) {
904 return $nav;
31cb1898
AN
905 }
906 return FALSE;
907 }
908
909 /**
910 * Get all active reports, organised by component.
911 *
912 * @param int $domain_id
913 *
914 * @return array
915 */
916 public static function getAllActiveReportsByComponent($domain_id) {
917 $sql = "
918 SELECT
919 civicrm_report_instance.id, civicrm_report_instance.title, civicrm_report_instance.permission, civicrm_component.name, civicrm_component.id AS component_id
920 FROM
921 civicrm_option_group
922 LEFT JOIN
923 civicrm_option_value ON civicrm_option_value.option_group_id = civicrm_option_group.id AND civicrm_option_group.name = 'report_template'
924 LEFT JOIN
925 civicrm_report_instance ON civicrm_option_value.value = civicrm_report_instance.report_id
926 LEFT JOIN
927 civicrm_component ON civicrm_option_value.component_id = civicrm_component.id
928 WHERE
929 civicrm_option_value.is_active = 1
930 AND
931 civicrm_report_instance.domain_id = %1
932 ORDER BY civicrm_option_value.weight";
933
934 $dao = CRM_Core_DAO::executeQuery($sql, array(
935 1 => array($domain_id, 'Integer'),
936 ));
937 $rows = array();
938 while ($dao->fetch()) {
939 $component_name = is_null($dao->name) ? 'CiviContact' : $dao->name;
940 $component_id = is_null($dao->component_id) ? 99 : $dao->component_id;
941 $rows[$component_id]['name'] = $component_name;
942 $rows[$component_id]['reports'][$dao->id] = array(
943 'title' => $dao->title,
944 'url' => "civicrm/report/instance/{$dao->id}",
945 'permission' => $dao->permission,
946 );
947 }
948 return $rows;
949 }
950
951 /**
952 * Create or update a navigation item for a report instance.
953 *
954 * The function will check whether create or update is required.
955 *
956 * @param string $name
957 * @param string $url
958 * @param string $url_params
959 * @param int $parent_id
960 * @param string $permission
961 * @param int $domain_id
962 *
0087242f 963 * @param bool $onlyMatchParentID
964 * If True then do not match with a url that has a different parent
965 * (This is because for top level items there is a risk of 'stealing' rows that normally
966 * live under 'Contact' and intentionally duplicate the report examples.)
967 *
31cb1898
AN
968 * @return \CRM_Core_DAO_Navigation
969 */
0087242f 970 protected static function createOrUpdateReportNavItem($name, $url, $url_params, $parent_id, $permission,
51704c4d 971 $domain_id, $onlyMatchParentID = FALSE, $useWildcard = TRUE) {
31cb1898 972 $id = NULL;
51704c4d 973 $existing_url_params = $useWildcard ? $url_params . '%' : $url_params;
974 $existing_nav = CRM_Core_BAO_Navigation::getNavItemByUrl($url, $existing_url_params, ($onlyMatchParentID ? $parent_id : NULL));
31cb1898
AN
975 if ($existing_nav) {
976 $id = $existing_nav->id;
977 }
0087242f 978
31cb1898
AN
979 $nav = self::createReportNavItem($name, $url, $url_params, $parent_id, $permission, $id, $domain_id);
980 return $nav;
981 }
982
983 /**
984 * Create a navigation item for a report instance.
985 *
986 * @param string $name
987 * @param string $url
988 * @param string $url_params
989 * @param int $parent_id
990 * @param string $permission
991 * @param int $id
992 * @param int $domain_id
993 * ID of domain to create item in.
994 *
995 * @return \CRM_Core_DAO_Navigation
996 */
997 public static function createReportNavItem($name, $url, $url_params, $parent_id, $permission, $id, $domain_id) {
998 if ($url !== NULL) {
999 $url = "{$url}?{$url_params}";
1000 }
1001 $params = array(
1002 'name' => $name,
1003 'label' => ts($name),
1004 'url' => $url,
1005 'parent_id' => $parent_id,
1006 'is_active' => TRUE,
1007 'permission' => array(
1008 $permission,
1009 ),
1010 'domain_id' => $domain_id,
1011 );
0087242f 1012 if ($id) {
31cb1898
AN
1013 $params['id'] = $id;
1014 }
0087242f 1015 return CRM_Core_BAO_Navigation::add($params);
31cb1898
AN
1016 }
1017
b5c2afd0 1018 /**
ffbff132
EM
1019 * Get cache key.
1020 *
100fef9d 1021 * @param int $cid
b5c2afd0
EM
1022 *
1023 * @return object|string
1024 */
00be9182 1025 public static function getCacheKey($cid) {
aaffa79f 1026 $key = Civi::service('settings_manager')
1027 ->getBagByContact(NULL, $cid)
1028 ->get('navigation');
73538697
CW
1029 if (strlen($key) !== self::CACHE_KEY_STRLEN) {
1030 $key = self::resetNavigation($cid);
1031 }
1032 return $key;
1033 }
96025800 1034
6a488035 1035}