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