Greeting handling - if email_greeting_custom (etc) isset & email_greeting_id is not...
[civicrm-core.git] / CRM / Contact / BAO / Group.php
CommitLineData
6a488035
TO
1<?php
2/*
bc77d7c0
TO
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
e70a7fc0 10 */
6a488035 11
edc2ebcf
MM
12use Civi\Api4\Group;
13
6a488035
TO
14/**
15 *
16 * @package CRM
ca5cec67 17 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
18 */
19class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
20
6a488035 21 /**
4f940304 22 * Retrieve DB object and copy to defaults array.
6a488035 23 *
77c5b619 24 * @param array $params
4f940304 25 * Array of criteria values.
77c5b619 26 * @param array $defaults
4f940304
CW
27 * Array to be populated with found values.
28 *
29 * @return self|null
30 * The DAO object, if found.
6a488035 31 *
4f940304 32 * @deprecated
6a488035 33 */
4f940304
CW
34 public static function retrieve($params, &$defaults) {
35 return self::commonRetrieve(self::class, $params, $defaults);
6a488035
TO
36 }
37
38 /**
67d19299 39 * Delete the group and all the object that connect to this group.
40 *
41 * Incredibly destructive.
6a488035 42 *
67d19299 43 * @param int $id Group id.
6a488035 44 */
00be9182 45 public static function discard($id) {
29d68d51 46 if (!$id || !is_numeric($id)) {
47 throw new CRM_Core_Exception('Invalid group request attempted');
48 }
be12df5a 49 CRM_Utils_Hook::pre('delete', 'Group', $id);
6a488035
TO
50
51 $transaction = new CRM_Core_Transaction();
52
53 // added for CRM-1631 and CRM-1794
54 // delete all subscribed mails with the selected group id
55 $subscribe = new CRM_Mailing_Event_DAO_Subscribe();
56 $subscribe->group_id = $id;
57 $subscribe->delete();
58
59 // delete all Subscription records with the selected group id
60 $subHistory = new CRM_Contact_DAO_SubscriptionHistory();
61 $subHistory->group_id = $id;
62 $subHistory->delete();
63
64 // delete all crm_group_contact records with the selected group id
65 $groupContact = new CRM_Contact_DAO_GroupContact();
66 $groupContact->group_id = $id;
67 $groupContact->delete();
68
69 // make all the 'add_to_group_id' field of 'civicrm_uf_group table', pointing to this group, as null
be2fb01f 70 $params = [1 => [$id, 'Integer']];
6a488035
TO
71 $query = "UPDATE civicrm_uf_group SET `add_to_group_id`= NULL WHERE `add_to_group_id` = %1";
72 CRM_Core_DAO::executeQuery($query, $params);
73
74 $query = "UPDATE civicrm_uf_group SET `limit_listings_group_id`= NULL WHERE `limit_listings_group_id` = %1";
75 CRM_Core_DAO::executeQuery($query, $params);
76
77 // make sure u delete all the entries from civicrm_mailing_group and civicrm_campaign_group
78 // CRM-6186
79 $query = "DELETE FROM civicrm_mailing_group where entity_table = 'civicrm_group' AND entity_id = %1";
80 CRM_Core_DAO::executeQuery($query, $params);
81
82 $query = "DELETE FROM civicrm_campaign_group where entity_table = 'civicrm_group' AND entity_id = %1";
83 CRM_Core_DAO::executeQuery($query, $params);
84
85 $query = "DELETE FROM civicrm_acl_entity_role where entity_table = 'civicrm_group' AND entity_id = %1";
86 CRM_Core_DAO::executeQuery($query, $params);
87
edc2ebcf
MM
88 //check whether this group contains any saved searches and check if that saved search is appropriate to delete.
89 $groupDetails = Group::get(FALSE)->addWhere('id', '=', $id)->execute();
90 if (!empty($groupDetails[0]['saved_search_id'])) {
91 $savedSearch = new CRM_Contact_DAO_SavedSearch();
92 $savedSearch->id = $groupDetails[0]['saved_search_id'];
93 $savedSearch->find(TRUE);
94 // If it is a traditional saved search i.e has form values and there is no linked api_entity then delete the saved search as well.
95 if (!empty($savedSearch->form_values) && empty($savedSearch->api_entity) && empty($savedSearch->api_params)) {
96 $savedSearch->delete();
97 }
98 }
99
6a488035
TO
100 // delete from group table
101 $group = new CRM_Contact_DAO_Group();
102 $group->id = $id;
103 $group->delete();
104
105 $transaction->commit();
106
107 CRM_Utils_Hook::post('delete', 'Group', $id, $group);
6a488035
TO
108 }
109
110 /**
111 * Returns an array of the contacts in the given group.
ad37ac8e 112 *
113 * @param int $id
6a488035 114 */
00be9182 115 public static function getGroupContacts($id) {
be2fb01f 116 $params = [['group', 'IN', [1 => $id], 0, 0]];
676a6ff4 117 [$contacts] = CRM_Contact_BAO_Query::apiQuery($params, ['contact_id']);
6a488035
TO
118 return $contacts;
119 }
120
121 /**
fe482240 122 * Get the count of a members in a group with the specific status.
6a488035 123 *
77c5b619
TO
124 * @param int $id
125 * Group id.
3f8d2862
CW
126 * @param string $status
127 * status of members in group
80ad33e7 128 * @param bool $countChildGroups
6a488035 129 *
a6c01b45
CW
130 * @return int
131 * count of members in the group with above status
6a488035 132 */
00be9182 133 public static function memberCount($id, $status = 'Added', $countChildGroups = FALSE) {
6a488035 134 $groupContact = new CRM_Contact_DAO_GroupContact();
be2fb01f 135 $groupIds = [$id];
6a488035
TO
136 if ($countChildGroups) {
137 $groupIds = CRM_Contact_BAO_GroupNesting::getDescendentGroupIds($groupIds);
138 }
139 $count = 0;
140
141 $contacts = self::getGroupContacts($id);
142
143 foreach ($groupIds as $groupId) {
144
145 $groupContacts = self::getGroupContacts($groupId);
146 foreach ($groupContacts as $gcontact) {
147 if ($groupId != $id) {
148 // Loop through main group's contacts
149 // and subtract from the count for each contact which
150 // matches one in the present group, if it is not the
151 // main group
152 foreach ($contacts as $contact) {
153 if ($contact['contact_id'] == $gcontact['contact_id']) {
154 $count--;
155 }
156 }
157 }
158 }
159 $groupContact->group_id = $groupId;
160 if (isset($status)) {
161 $groupContact->status = $status;
162 }
163 $groupContact->_query['condition'] = 'WHERE contact_id NOT IN (SELECT id FROM civicrm_contact WHERE is_deleted = 1)';
164 $count += $groupContact->count();
165 }
166 return $count;
167 }
168
169 /**
fe482240 170 * Get the list of member for a group id.
6a488035 171 *
100fef9d 172 * @param int $groupID
80ad33e7 173 * @param bool $useCache
4c8b4719 174 * @param int $limit
175 * Number to limit to (or 0 for unlimited).
80ad33e7 176 *
a6c01b45
CW
177 * @return array
178 * this array contains the list of members for this group id
6a488035 179 */
4c8b4719 180 public static function getMember($groupID, $useCache = TRUE, $limit = 0) {
be2fb01f
CW
181 $params = [['group', '=', $groupID, 0, 0]];
182 $returnProperties = ['contact_id'];
4c8b4719 183 list($contacts) = CRM_Contact_BAO_Query::apiQuery($params, $returnProperties, NULL, NULL, 0, $limit, $useCache);
6a488035 184
be2fb01f 185 $aMembers = [];
6a488035
TO
186 foreach ($contacts as $contact) {
187 $aMembers[$contact['contact_id']] = 1;
188 }
189
190 return $aMembers;
191 }
192
193 /**
194 * Returns array of group object(s) matching a set of one or Group properties.
195 *
77c5b619
TO
196 * @param array $params
197 * Limits the set of groups returned.
198 * @param array $returnProperties
199 * Which properties should be included in the returned group objects.
3f8d2862
CW
200 * (member_count should be last element.)
201 * @param string $sort
202 * @param int $offset
203 * @param int $rowCount
80ad33e7 204 *
a6c01b45 205 * @return array
16b10e64 206 * Array of group objects.
6a488035 207 *
6a488035
TO
208 *
209 * @todo other BAO functions that use returnProperties (e.g. Query Objects) receive the array flipped & filled with 1s and
210 * add in essential fields (e.g. id). This should follow a regular pattern like the others
211 */
2da40d21 212 public static function getGroups(
6a488035
TO
213 $params = NULL,
214 $returnProperties = NULL,
215 $sort = NULL,
216 $offset = NULL,
217 $rowCount = NULL
218 ) {
219 $dao = new CRM_Contact_DAO_Group();
6ce76461
CW
220 if (!isset($params['is_active'])) {
221 $dao->is_active = 1;
222 }
6a488035
TO
223 if ($params) {
224 foreach ($params as $k => $v) {
225 if ($k == 'name' || $k == 'title') {
226 $dao->whereAdd($k . ' LIKE "' . CRM_Core_DAO::escapeString($v) . '"');
227 }
6ce76461
CW
228 elseif ($k == 'group_type') {
229 foreach ((array) $v as $type) {
230 $dao->whereAdd($k . " LIKE '%" . CRM_Core_DAO::VALUE_SEPARATOR . (int) $type . CRM_Core_DAO::VALUE_SEPARATOR . "%'");
231 }
232 }
6a488035 233 elseif (is_array($v)) {
6ce76461
CW
234 foreach ($v as &$num) {
235 $num = (int) $num;
236 }
6a488035
TO
237 $dao->whereAdd($k . ' IN (' . implode(',', $v) . ')');
238 }
239 else {
240 $dao->$k = $v;
241 }
242 }
243 }
244
245 if ($offset || $rowCount) {
246 $offset = ($offset > 0) ? $offset : 0;
247 $rowCount = ($rowCount > 0) ? $rowCount : 25;
248 $dao->limit($offset, $rowCount);
249 }
250
251 if ($sort) {
252 $dao->orderBy($sort);
253 }
254
255 // return only specific fields if returnproperties are sent
256 if (!empty($returnProperties)) {
257 $dao->selectAdd();
258 $dao->selectAdd(implode(',', $returnProperties));
259 }
260 $dao->find();
261
262 $flag = $returnProperties && in_array('member_count', $returnProperties) ? 1 : 0;
263
be2fb01f 264 $groups = [];
6a488035
TO
265 while ($dao->fetch()) {
266 $group = new CRM_Contact_DAO_Group();
267 if ($flag) {
268 $dao->member_count = CRM_Contact_BAO_Group::memberCount($dao->id);
269 }
270 $groups[] = clone($dao);
271 }
272 return $groups;
273 }
274
275 /**
fe482240 276 * Make sure that the user has permission to access this group.
6a488035 277 *
77c5b619
TO
278 * @param int $id
279 * The id of the object.
addbec40 280 * @param bool $excludeHidden
281 * Should hidden groups be excluded.
282 * Logically this is the wrong place to filter hidden groups out as that is
283 * not a permission issue. However, as other functions may rely on that defaulting to
284 * FALSE for now & only the api call is calling with true.
6a488035 285 *
addbec40 286 * @return array
287 * The permission that the user has (or NULL)
6a488035 288 */
addbec40 289 public static function checkPermission($id, $excludeHidden = FALSE) {
290 $allGroups = CRM_Core_PseudoConstant::allGroup(NULL, $excludeHidden);
6a488035
TO
291
292 $permissions = NULL;
293 if (CRM_Core_Permission::check('edit all contacts') ||
294 CRM_ACL_API::groupPermission(CRM_ACL_API::EDIT, $id, NULL,
295 'civicrm_saved_search', $allGroups
296 )
297 ) {
298 $permissions[] = CRM_Core_Permission::EDIT;
299 }
300
301 if (CRM_Core_Permission::check('view all contacts') ||
302 CRM_ACL_API::groupPermission(CRM_ACL_API::VIEW, $id, NULL,
303 'civicrm_saved_search', $allGroups
304 )
305 ) {
306 $permissions[] = CRM_Core_Permission::VIEW;
307 }
308
309 if (!empty($permissions) && CRM_Core_Permission::check('delete contacts')) {
310 // Note: using !empty() in if condition, restricts the scope of delete
311 // permission to groups/contacts that are editable/viewable.
312 // We can remove this !empty condition once we have ACL support for delete functionality.
313 $permissions[] = CRM_Core_Permission::DELETE;
314 }
315
316 return $permissions;
317 }
318
319 /**
fe482240 320 * Create a new group.
6a488035 321 *
77c5b619 322 * @param array $params
6a488035 323 *
72b3a70c
CW
324 * @return CRM_Contact_BAO_Group|NULL
325 * The new group BAO (if created)
6a488035 326 */
c3137c08 327 public static function create(&$params) {
c4f19d0f
CW
328 $params += [
329 'group_type' => NULL,
330 'parents' => NULL,
331 ];
6a488035 332
c4f19d0f
CW
333 $hook = empty($params['id']) ? 'create' : 'edit';
334 CRM_Utils_Hook::pre($hook, 'Group', $params['id'] ?? NULL, $params);
6a488035 335
e616e67d 336 // If title isn't specified, retrieve it because we use it later, e.g.
337 // for RecentItems. But note we use array_key_exists not isset or empty
338 // since otherwise there would be no way to blank out an existing title.
339 // I'm not sure what the use-case is for that, but you're allowed to do it
340 // currently.
341 if (!empty($params['id']) && !array_key_exists('title', $params)) {
342 try {
343 $groupTitle = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $params['id'], 'title', 'id');
344 $params['title'] = $groupTitle;
345 }
346 catch (CRM_Core_Exception $groupTitleException) {
347 // don't set title
348 }
349 }
350
d023b622 351 // dev/core#287 Disable child groups if all parents are disabled.
08b5ed10 352 if (!empty($params['id'])) {
230d43a4 353 $allChildGroupIds = self::getChildGroupIds($params['id']);
354 foreach ($allChildGroupIds as $childKey => $childValue) {
355 $parentIds = CRM_Contact_BAO_GroupNesting::getParentGroupIds($childValue);
356 $activeParentsCount = civicrm_api3('Group', 'getcount', [
357 'id' => ['IN' => $parentIds],
358 'is_active' => 1,
359 ]);
08b5ed10 360 if (count($parentIds) >= 1 && $activeParentsCount <= 1) {
c4f19d0f 361 self::setIsActive($childValue, (int) ($params['is_active'] ?? 1));
230d43a4 362 }
363 }
364 }
6a488035 365 // form the name only if missing: CRM-627
9c1bc317 366 $nameParam = $params['name'] ?? NULL;
8cc574cf 367 if (!$nameParam && empty($params['id'])) {
6a488035
TO
368 $params['name'] = CRM_Utils_String::titleToVar($params['title']);
369 }
370
c4f19d0f 371 if (!CRM_Utils_System::isNull($params['parents'])) {
30208fab 372 $params['parents'] = CRM_Utils_Array::convertCheckboxFormatToArray((array) $params['parents']);
373 }
374
6a488035 375 // convert params if array type
c4f19d0f 376 if (!CRM_Utils_System::isNull($params['group_type'])) {
30208fab 377 $params['group_type'] = CRM_Utils_Array::convertCheckboxFormatToArray((array) $params['group_type']);
6a488035 378 }
6a488035 379
481a74f4 380 $session = CRM_Core_Session::singleton();
d0dfb649
PJ
381 $cid = $session->get('userID');
382 // this action is add
383 if ($cid && empty($params['id'])) {
6a488035
TO
384 $params['created_id'] = $cid;
385 }
d0dfb649
PJ
386 // this action is update
387 if ($cid && !empty($params['id'])) {
388 $params['modified_id'] = $cid;
389 }
6a488035 390
d4fba42a
SL
391 // CRM-19068.
392 // Validate parents parameter when creating group.
c4f19d0f 393 if (!CRM_Utils_System::isNull($params['parents'])) {
026e0308
FG
394 $parents = is_array($params['parents']) ? array_keys($params['parents']) : (array) $params['parents'];
395 foreach ($parents as $parent) {
396 CRM_Utils_Type::validate($parent, 'Integer');
d4fba42a
SL
397 }
398 }
6a488035 399 $group = new CRM_Contact_BAO_Group();
fc944198 400 $group->copyValues($params);
30208fab 401
c4f19d0f 402 if (empty($params['id']) && !$nameParam) {
6a488035
TO
403 $group->name .= "_tmp";
404 }
405 $group->save();
406
407 if (!$group->id) {
408 return NULL;
409 }
410
c4f19d0f
CW
411 // Enforce unique name by appending id
412 if (empty($params['id']) && !$nameParam) {
6a488035
TO
413 $group->name = substr($group->name, 0, -4) . "_{$group->id}";
414 }
415
6a488035
TO
416 $group->save();
417
418 // add custom field values
a7488080 419 if (!empty($params['custom'])) {
6a488035
TO
420 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_group', $group->id);
421 }
422
423 // make the group, child of domain/site group by default.
424 $domainGroupID = CRM_Core_BAO_Domain::getGroupId();
425 if (CRM_Utils_Array::value('no_parent', $params) !== 1) {
426 if (empty($params['parents']) &&
427 $domainGroupID != $group->id &&
aaffa79f 428 Civi::settings()->get('is_enabled') &&
6a488035
TO
429 !CRM_Contact_BAO_GroupNesting::hasParentGroups($group->id)
430 ) {
431 // if no parent present and the group doesn't already have any parents,
432 // make sure site group goes as parent
be2fb01f 433 $params['parents'] = [$domainGroupID];
6a488035
TO
434 }
435
c4f19d0f 436 if (!CRM_Utils_System::isNull($params['parents'])) {
30208fab 437 foreach ($params['parents'] as $parentId) {
1069895e
SL
438 if ($parentId && !CRM_Contact_BAO_GroupNesting::isParentChild($parentId, $group->id)) {
439 CRM_Contact_BAO_GroupNesting::add($parentId, $group->id);
6a488035
TO
440 }
441 }
442 }
443
6a488035
TO
444 // this is always required, since we don't know when a
445 // parent group is removed
446 CRM_Contact_BAO_GroupNestingCache::update();
447
448 // update group contact cache for all parent groups
449 $parentIds = CRM_Contact_BAO_GroupNesting::getParentGroupIds($group->id);
450 foreach ($parentIds as $parentId) {
ab4e1e52 451 CRM_Contact_BAO_GroupContactCache::invalidateGroupContactCache($parentId);
6a488035
TO
452 }
453 }
454
a7488080 455 if (!empty($params['organization_id'])) {
47e5bbbb
MD
456 if ($params['organization_id'] == 'null') {
457 $groupOrganization = [];
458 CRM_Contact_BAO_GroupOrganization::retrieve($group->id, $groupOrganization);
459 if (!empty($groupOrganization['group_organization'])) {
460 CRM_Contact_BAO_GroupOrganization::deleteGroupOrganization($groupOrganization['group_organization']);
461 }
462 }
463 else {
464 // dev/core#382 Keeping the id here can cause db errors as it tries to update the wrong record in the Organization table
465 $groupOrg = [
466 'group_id' => $group->id,
467 'organization_id' => $params['organization_id'],
468 ];
469 CRM_Contact_BAO_GroupOrganization::add($groupOrg);
470 }
6a488035
TO
471 }
472
6d054a8e 473 self::flushCaches();
ab4e1e52 474 CRM_Contact_BAO_GroupContactCache::invalidateGroupContactCache($group->id);
6a488035 475
c4f19d0f 476 CRM_Utils_Hook::post($hook, 'Group', $group->id, $group);
6a488035 477
be2fb01f 478 $recentOther = [];
6a488035
TO
479 if (CRM_Core_Permission::check('edit groups')) {
480 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/group', 'reset=1&action=update&id=' . $group->id);
481 // currently same permission we are using for delete a group
482 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/group', 'reset=1&action=delete&id=' . $group->id);
483 }
484
485 // add the recently added group (unless hidden: CRM-6432)
486 if (!$group->is_hidden) {
487 CRM_Utils_Recent::add($group->title,
488 CRM_Utils_System::url('civicrm/group/search', 'reset=1&force=1&context=smog&gid=' . $group->id),
489 $group->id,
490 'Group',
491 NULL,
492 NULL,
493 $recentOther
494 );
495 }
496 return $group;
497 }
498
6a488035 499 /**
53b13ffe
CW
500 * Takes a sloppy mismash of params and creates two entities: a Group and a SavedSearch
501 * Currently only used by unit tests.
6a488035 502 *
77c5b619 503 * @param array $params
72b3a70c 504 * @return CRM_Contact_BAO_Group|NULL
53b13ffe 505 * @deprecated
6a488035 506 */
53b13ffe 507 public static function createSmartGroup($params) {
a7488080 508 if (!empty($params['formValues'])) {
6a488035 509 $ssParams = $params;
53b13ffe
CW
510 // Remove group parameters from sloppy mismash
511 unset($ssParams['id'], $ssParams['name'], $ssParams['title'], $ssParams['formValues'], $ssParams['saved_search_id']);
512 if (isset($params['saved_search_id'])) {
513 $ssParams['id'] = $params['saved_search_id'];
6a488035 514 }
53b13ffe
CW
515 $ssParams['form_values'] = $params['formValues'];
516 $savedSearch = CRM_Contact_BAO_SavedSearch::create($ssParams);
6a488035
TO
517
518 $params['saved_search_id'] = $savedSearch->id;
519 }
520 else {
521 return NULL;
522 }
523
524 return self::create($params);
525 }
526
527 /**
fe482240 528 * Update the is_active flag in the db.
6a488035 529 *
77c5b619
TO
530 * @param int $id
531 * Id of the database record.
532 * @param bool $isActive
533 * Value we want to set the is_active field.
6a488035 534 *
8a4fede3 535 * @return bool
536 * true if we found and updated the object, else false
6a488035 537 */
00be9182 538 public static function setIsActive($id, $isActive) {
6a488035
TO
539 return CRM_Core_DAO::setFieldValue('CRM_Contact_DAO_Group', $id, 'is_active', $isActive);
540 }
541
542 /**
100fef9d 543 * Build the condition to retrieve groups.
6a488035 544 *
77c5b619
TO
545 * @param string $groupType
546 * Type of group(Access/Mailing) OR the key of the group.
3f8d2862 547 * @param bool $excludeHidden exclude hidden groups.
6a488035 548 *
a6c01b45 549 * @return string
6a488035 550 */
00be9182 551 public static function groupTypeCondition($groupType = NULL, $excludeHidden = TRUE) {
6a488035
TO
552 $value = NULL;
553 if ($groupType == 'Mailing') {
554 $value = CRM_Core_DAO::VALUE_SEPARATOR . '2' . CRM_Core_DAO::VALUE_SEPARATOR;
555 }
556 elseif ($groupType == 'Access') {
557 $value = CRM_Core_DAO::VALUE_SEPARATOR . '1' . CRM_Core_DAO::VALUE_SEPARATOR;
558 }
9b873358 559 elseif (!empty($groupType)) {
6a488035
TO
560 // ie we have been given the group key
561 $value = CRM_Core_DAO::VALUE_SEPARATOR . $groupType . CRM_Core_DAO::VALUE_SEPARATOR;
562 }
563
564 $condition = NULL;
565 if ($excludeHidden) {
566 $condition = "is_hidden = 0";
567 }
568
569 if ($value) {
570 if ($condition) {
571 $condition .= " AND group_type LIKE '%$value%'";
572 }
573 else {
574 $condition = "group_type LIKE '%$value%'";
575 }
576 }
577
578 return $condition;
579 }
580
47c89d6b 581 /**
fe482240 582 * Get permission relevant clauses.
aaac0e0b 583 *
47c89d6b
EM
584 * @return array
585 */
bc95ea0d 586 public static function getPermissionClause() {
587 if (!isset(Civi::$statics[__CLASS__]['permission_clause'])) {
9486be34 588 if (CRM_Core_Permission::check('view all contacts') || CRM_Core_Permission::check('edit all contacts')) {
589 $clause = 1;
47c89d6b 590 }
aaac0e0b 591 else {
9486be34 592 //get the allowed groups for the current user
593 $groups = CRM_ACL_API::group(CRM_ACL_API::VIEW);
594 if (!empty($groups)) {
595 $groupList = implode(', ', array_values($groups));
d9d23a91 596 $clause = "`groups`.id IN ( $groupList ) ";
9486be34 597 }
598 else {
599 $clause = '1 = 0';
600 }
aaac0e0b 601 }
bc95ea0d 602 Civi::$statics[__CLASS__]['permission_clause'] = $clause;
47c89d6b 603 }
bc95ea0d 604 return Civi::$statics[__CLASS__]['permission_clause'];
47c89d6b
EM
605 }
606
6d054a8e 607 /**
608 * Flush caches that hold group data.
609 *
610 * (Actually probably some overkill at the moment.)
611 */
612 protected static function flushCaches() {
613 CRM_Utils_System::flushCache();
be2fb01f 614 $staticCaches = [
6d054a8e 615 'CRM_Core_PseudoConstant' => 'groups',
616 'CRM_ACL_API' => 'group_permission',
617 'CRM_ACL_BAO_ACL' => 'permissioned_groups',
bc95ea0d 618 'CRM_Contact_BAO_Group' => 'permission_clause',
be2fb01f 619 ];
6d054a8e 620 foreach ($staticCaches as $class => $key) {
621 if (isset(Civi::$statics[$class][$key])) {
622 unset(Civi::$statics[$class][$key]);
623 }
624 }
625 }
626
86538308
EM
627 /**
628 * @return string
629 */
6a488035
TO
630 public function __toString() {
631 return $this->title;
632 }
633
634 /**
635 * This function create the hidden smart group when user perform
b44e3f84 636 * contact search and want to send mailing to search contacts.
6a488035 637 *
77c5b619
TO
638 * @param array $params
639 * ( reference ) an assoc array of name/value pairs.
6a488035 640 *
a6c01b45
CW
641 * @return array
642 * ( smartGroupId, ssId ) smart group id and saved search id
6a488035 643 */
00be9182 644 public static function createHiddenSmartGroup($params) {
9c1bc317 645 $ssId = $params['saved_search_id'] ?? NULL;
6a488035
TO
646
647 //add mapping record only for search builder saved search
648 $mappingId = NULL;
649 if ($params['search_context'] == 'builder') {
650 //save the mapping for search builder
651 if (!$ssId) {
652 //save record in mapping table
be2fb01f 653 $mappingParams = [
95f52e3b 654 'mapping_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Search Builder'),
be2fb01f 655 ];
c997dfa8 656 $mapping = CRM_Core_BAO_Mapping::add($mappingParams);
353ffa53 657 $mappingId = $mapping->id;
6a488035
TO
658 }
659 else {
660 //get the mapping id from saved search
661 $savedSearch = new CRM_Contact_BAO_SavedSearch();
662 $savedSearch->id = $ssId;
663 $savedSearch->find(TRUE);
664 $mappingId = $savedSearch->mapping_id;
665 }
666
667 //save mapping fields
668 CRM_Core_BAO_Mapping::saveMappingFields($params['form_values'], $mappingId);
669 }
670
671 //create/update saved search record.
672 $savedSearch = new CRM_Contact_BAO_SavedSearch();
673 $savedSearch->id = $ssId;
93287bd4 674 $formValues = $params['search_context'] === 'builder' ? $params['form_values'] : CRM_Contact_BAO_Query::convertFormValues($params['form_values']);
675 $savedSearch->form_values = serialize($formValues);
6a488035 676 $savedSearch->mapping_id = $mappingId;
9c1bc317 677 $savedSearch->search_custom_id = $params['search_custom_id'] ?? NULL;
6a488035
TO
678 $savedSearch->save();
679
680 $ssId = $savedSearch->id;
681 if (!$ssId) {
682 return NULL;
683 }
684
685 $smartGroupId = NULL;
a7488080 686 if (!empty($params['saved_search_id'])) {
6a488035
TO
687 $smartGroupId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $ssId, 'id', 'saved_search_id');
688 }
689 else {
690 //create group only when new saved search.
be2fb01f 691 $groupParams = [
6a488035
TO
692 'title' => "Hidden Smart Group {$ssId}",
693 'is_active' => CRM_Utils_Array::value('is_active', $params, 1),
694 'is_hidden' => CRM_Utils_Array::value('is_hidden', $params, 1),
6b409353
CW
695 'group_type' => $params['group_type'] ?? NULL,
696 'visibility' => $params['visibility'] ?? NULL,
6a488035 697 'saved_search_id' => $ssId,
be2fb01f 698 ];
6a488035
TO
699
700 $smartGroup = self::create($groupParams);
701 $smartGroupId = $smartGroup->id;
702 }
703
c997dfa8
TS
704 // Update mapping with the name and description of the hidden smart group.
705 if ($mappingId) {
be2fb01f 706 $mappingParams = [
c997dfa8
TS
707 'id' => $mappingId,
708 'name' => CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $smartGroupId, 'name', 'id'),
709 'description' => CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $smartGroupId, 'description', 'id'),
95f52e3b 710 'mapping_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Search Builder'),
be2fb01f 711 ];
c997dfa8
TS
712 CRM_Core_BAO_Mapping::add($mappingParams);
713 }
714
be2fb01f 715 return [$smartGroupId, $ssId];
6a488035
TO
716 }
717
718 /**
fe482240 719 * wrapper for ajax group selector.
6a488035 720 *
77c5b619
TO
721 * @param array $params
722 * Associated array for params record id.
6a488035 723 *
a6c01b45
CW
724 * @return array
725 * associated array of group list
16b10e64
CW
726 * -rp = rowcount
727 * -page= offset
d3e86119
TO
728 * @todo there seems little reason for the small number of functions that call this to pass in
729 * params that then need to be translated in this function since they are coding them when calling
6a488035 730 */
69078420 731 public static function getGroupListSelector(&$params) {
6a488035 732 // format the params
353ffa53 733 $params['offset'] = ($params['page'] - 1) * $params['rp'];
6a488035 734 $params['rowCount'] = $params['rp'];
9c1bc317 735 $params['sort'] = $params['sortBy'] ?? NULL;
6a488035
TO
736
737 // get groups
738 $groups = CRM_Contact_BAO_Group::getGroupList($params);
739
740 //skip total if we are making call to show only children
a7488080 741 if (empty($params['parent_id'])) {
6a488035
TO
742 // add total
743 $params['total'] = CRM_Contact_BAO_Group::getGroupCount($params);
744
745 // get all the groups
746 $allGroups = CRM_Core_PseudoConstant::allGroup();
747 }
748
749 // format params and add links
be2fb01f 750 $groupList = [];
3b448eca 751 foreach ($groups as $id => $value) {
be2fb01f 752 $group = [];
3b448eca
JL
753 $group['group_id'] = $value['id'];
754 $group['count'] = $value['count'];
755 $group['title'] = $value['title'];
756
757 // append parent names if in search mode
758 if (empty($params['parent_id']) && !empty($value['parents'])) {
759 $group['parent_id'] = $value['parents'];
760 $groupIds = explode(',', $value['parents']);
be2fb01f 761 $title = [];
3b448eca
JL
762 foreach ($groupIds as $gId) {
763 $title[] = $allGroups[$gId];
764 }
765 $group['title'] .= '<div class="crm-row-parent-name"><em>' . ts('Child of') . '</em>: ' . implode(', ', $title) . '</div>';
be2fb01f 766 $value['class'] = array_diff($value['class'], ['crm-row-parent']);
3b448eca
JL
767 }
768 $group['DT_RowId'] = 'row_' . $value['id'];
46d33c7a 769 if (empty($params['parentsOnly'])) {
fe6e4e4b 770 foreach ($value['class'] as $id => $class) {
be632a8a 771 if ($class == 'crm-group-parent') {
3b448eca 772 unset($value['class'][$id]);
6a488035 773 }
6a488035 774 }
3b448eca
JL
775 }
776 $group['DT_RowClass'] = 'crm-entity ' . implode(' ', $value['class']);
be2fb01f 777 $group['DT_RowAttr'] = [];
3b448eca
JL
778 $group['DT_RowAttr']['data-id'] = $value['id'];
779 $group['DT_RowAttr']['data-entity'] = 'group';
6a488035 780
9c1bc317 781 $group['description'] = $value['description'] ?? NULL;
6a488035 782
3b448eca
JL
783 if (!empty($value['group_type'])) {
784 $group['group_type'] = $value['group_type'];
785 }
786 else {
787 $group['group_type'] = '';
6a488035 788 }
3b448eca
JL
789
790 $group['visibility'] = $value['visibility'];
791 $group['links'] = $value['action'];
9c1bc317
CW
792 $group['org_info'] = $value['org_info'] ?? NULL;
793 $group['created_by'] = $value['created_by'] ?? NULL;
3b448eca
JL
794
795 $group['is_parent'] = $value['is_parent'];
796
1e223804 797 array_push($groupList, $group);
6a488035 798 }
3b448eca 799
be2fb01f 800 $groupsDT = [];
3b448eca 801 $groupsDT['data'] = $groupList;
adf9de83
TS
802 $groupsDT['recordsTotal'] = !empty($params['total']) ? $params['total'] : NULL;
803 $groupsDT['recordsFiltered'] = !empty($params['total']) ? $params['total'] : NULL;
3b448eca
JL
804
805 return $groupsDT;
6a488035
TO
806 }
807
808 /**
fe482240 809 * This function to get list of groups.
6a488035 810 *
77c5b619
TO
811 * @param array $params
812 * Associated array for params.
80ad33e7
EM
813 *
814 * @return array
6a488035 815 */
00be9182 816 public static function getGroupList(&$params) {
6a488035 817 $whereClause = self::whereClause($params, FALSE);
f90c40b9 818
adf9de83 819 $limit = "";
6a488035
TO
820 if (!empty($params['rowCount']) &&
821 $params['rowCount'] > 0
822 ) {
823 $limit = " LIMIT {$params['offset']}, {$params['rowCount']} ";
824 }
825
d9d23a91 826 $orderBy = ' ORDER BY `groups`.title asc';
21d32567
DL
827 if (!empty($params['sort'])) {
828 $orderBy = ' ORDER BY ' . CRM_Utils_Type::escape($params['sort'], 'String');
1d19a8f2
CW
829
830 // CRM-16905 - Sort by count cannot be done with sql
831 if (strpos($params['sort'], 'count') === 0) {
832 $orderBy = $limit = '';
833 }
6a488035
TO
834 }
835
836 $select = $from = $where = "";
837 $groupOrg = FALSE;
838 if (CRM_Core_Permission::check('administer Multiple Organizations') &&
839 CRM_Core_Permission::isMultisiteEnabled()
840 ) {
841 $select = ", contact.display_name as org_name, contact.id as org_id";
842 $from = " LEFT JOIN civicrm_group_organization gOrg
d9d23a91 843 ON gOrg.group_id = `groups`.id
6a488035
TO
844 LEFT JOIN civicrm_contact contact
845 ON contact.id = gOrg.organization_id ";
846
847 //get the Organization ID
a3d827a7 848 $orgID = CRM_Utils_Request::retrieve('oid', 'Positive');
6a488035
TO
849 if ($orgID) {
850 $where = " AND gOrg.organization_id = {$orgID}";
851 }
852
853 $groupOrg = TRUE;
854 }
855
856 $query = "
d9d23a91
SL
857 SELECT `groups`.*, createdBy.sort_name as created_by {$select}
858 FROM civicrm_group `groups`
7f4b344c 859 LEFT JOIN civicrm_contact createdBy
d9d23a91 860 ON createdBy.id = `groups`.created_id
7f4b344c 861 {$from}
6a488035
TO
862 WHERE $whereClause {$where}
863 {$orderBy}
864 {$limit}";
865
866 $object = CRM_Core_DAO::executeQuery($query, $params, TRUE, 'CRM_Contact_DAO_Group');
867
868 //FIXME CRM-4418, now we are handling delete separately
869 //if we introduce 'delete for group' make sure to handle here.
be2fb01f 870 $groupPermissions = [CRM_Core_Permission::VIEW];
6a488035
TO
871 if (CRM_Core_Permission::check('edit groups')) {
872 $groupPermissions[] = CRM_Core_Permission::EDIT;
873 $groupPermissions[] = CRM_Core_Permission::DELETE;
874 }
875
876 // CRM-9936
877 $reservedPermission = CRM_Core_Permission::check('administer reserved groups');
878
fecb40f5 879 $links = self::actionLinks($params);
6a488035
TO
880
881 $allTypes = CRM_Core_OptionGroup::values('group_type');
be2fb01f 882 $values = [];
6a488035 883
e3c75a92 884 $visibility = CRM_Core_SelectValues::ufVisibility();
885
6a488035 886 while ($object->fetch()) {
6d054a8e 887 $newLinks = $links;
be2fb01f
CW
888 $values[$object->id] = [
889 'class' => [],
6d054a8e 890 'count' => '0',
be2fb01f 891 ];
6d054a8e 892 CRM_Core_DAO::storeValues($object, $values[$object->id]);
893
894 if ($object->saved_search_id) {
36e13a80 895 $values[$object->id]['class'][] = "crm-smart-group";
6d054a8e 896 // check if custom search, if so fix view link
897 $customSearchID = CRM_Core_DAO::getFieldValue(
898 'CRM_Contact_DAO_SavedSearch',
899 $object->saved_search_id,
900 'search_custom_id'
cbe32e2f 901 );
6d054a8e 902
903 if ($customSearchID) {
904 $newLinks[CRM_Core_Action::VIEW]['url'] = 'civicrm/contact/search/custom';
905 $newLinks[CRM_Core_Action::VIEW]['qs'] = "reset=1&force=1&ssID={$object->saved_search_id}";
6a488035 906 }
6d054a8e 907 }
6a488035 908
6d054a8e 909 $action = array_sum(array_keys($newLinks));
6a488035 910
6d054a8e 911 // CRM-9936
aebf3542 912 if (property_exists($object, 'is_reserved')) {
6d054a8e 913 //if group is reserved and I don't have reserved permission, suppress delete/edit
914 if ($object->is_reserved && !$reservedPermission) {
915 $action -= CRM_Core_Action::DELETE;
916 $action -= CRM_Core_Action::UPDATE;
917 $action -= CRM_Core_Action::DISABLE;
6a488035 918 }
6d054a8e 919 }
6a488035 920
aebf3542 921 if (property_exists($object, 'is_active')) {
6d054a8e 922 if ($object->is_active) {
923 $action -= CRM_Core_Action::ENABLE;
6a488035 924 }
6d054a8e 925 else {
926 $values[$object->id]['class'][] = 'disabled';
927 $action -= CRM_Core_Action::VIEW;
928 $action -= CRM_Core_Action::DISABLE;
929 }
930 }
6a488035 931
6d054a8e 932 $action = $action & CRM_Core_Action::mask($groupPermissions);
6a488035 933
6d054a8e 934 $values[$object->id]['visibility'] = $visibility[$values[$object->id]['visibility']];
e3c75a92 935
6d054a8e 936 if (isset($values[$object->id]['group_type'])) {
937 $groupTypes = explode(CRM_Core_DAO::VALUE_SEPARATOR,
938 substr($values[$object->id]['group_type'], 1, -1)
6a488035 939 );
be2fb01f 940 $types = [];
6d054a8e 941 foreach ($groupTypes as $type) {
9c1bc317 942 $types[] = $allTypes[$type] ?? NULL;
6a488035 943 }
6d054a8e 944 $values[$object->id]['group_type'] = implode(', ', $types);
945 }
887688b9
JG
946 if ($action) {
947 $values[$object->id]['action'] = CRM_Core_Action::formLink($newLinks,
948 $action,
be2fb01f 949 [
887688b9
JG
950 'id' => $object->id,
951 'ssid' => $object->saved_search_id,
be2fb01f 952 ],
887688b9
JG
953 ts('more'),
954 FALSE,
955 'group.selector.row',
956 'Group',
957 $object->id
958 );
959 }
6a488035 960
6d054a8e 961 // If group has children, add class for link to view children
962 $values[$object->id]['is_parent'] = FALSE;
963 if (array_key_exists('children', $values[$object->id])) {
964 $values[$object->id]['class'][] = "crm-group-parent";
965 $values[$object->id]['is_parent'] = TRUE;
966 }
6a488035 967
6d054a8e 968 // If group is a child, add child class
969 if (array_key_exists('parents', $values[$object->id])) {
970 $values[$object->id]['class'][] = "crm-group-child";
971 }
972
973 if ($groupOrg) {
974 if ($object->org_id) {
975 $contactUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$object->org_id}");
976 $values[$object->id]['org_info'] = "<a href='{$contactUrl}'>{$object->org_name}</a>";
6a488035
TO
977 }
978 else {
69078420
SL
979 // Empty cell
980 $values[$object->id]['org_info'] = '';
6a488035
TO
981 }
982 }
6d054a8e 983 else {
69078420
SL
984 // Collapsed column if all cells are NULL
985 $values[$object->id]['org_info'] = NULL;
6d054a8e 986 }
987 if ($object->created_id) {
988 $contactUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$object->created_id}");
989 $values[$object->id]['created_by'] = "<a href='{$contactUrl}'>{$object->created_by}</a>";
990 }
6a488035 991
01ef4db9 992 // By default, we try to get a count of the contacts in each group
b804448d
JM
993 // to display to the user on the Manage Group page. However, if
994 // that will result in the cache being regenerated, then dipslay
995 // "unknown" instead to avoid a long wait for the user.
996 if (CRM_Contact_BAO_GroupContactCache::shouldGroupBeRefreshed($object->id)) {
a19f5834
JM
997 $values[$object->id]['count'] = ts('unknown');
998 }
999 else {
be2fb01f 1000 $values[$object->id]['count'] = civicrm_api3('Contact', 'getcount', ['group' => $object->id]);
a19f5834 1001 }
cbe32e2f
CW
1002 }
1003
1d19a8f2
CW
1004 // CRM-16905 - Sort by count cannot be done with sql
1005 if (!empty($params['sort']) && strpos($params['sort'], 'count') === 0) {
1006 usort($values, function($a, $b) {
1007 return $a['count'] - $b['count'];
1008 });
1009 if (strpos($params['sort'], 'desc')) {
1010 $values = array_reverse($values, TRUE);
1011 }
1012 return array_slice($values, $params['offset'], $params['rowCount']);
1013 }
1014
6a488035
TO
1015 return $values;
1016 }
1017
1018 /**
1019 * This function to get hierarchical list of groups (parent followed by children)
1020 *
77c5b619
TO
1021 * @param array $groupIDs
1022 * Array of group ids.
80ad33e7 1023 *
e97c66ff 1024 * @param string $parents
80ad33e7
EM
1025 * @param string $spacer
1026 * @param bool $titleOnly
be44418d 1027 * @param bool $public
f828fa2c 1028 *
80ad33e7 1029 * @return array
6a488035 1030 */
2da40d21 1031 public static function getGroupsHierarchy(
f828fa2c 1032 $groupIDs,
90d1fee5 1033 $parents = NULL,
6a488035 1034 $spacer = '<span class="child-indent"></span>',
be44418d
SL
1035 $titleOnly = FALSE,
1036 $public = FALSE
90d1fee5 1037 ) {
f828fa2c 1038 if (empty($groupIDs)) {
be2fb01f 1039 return [];
f828fa2c
DL
1040 }
1041
1042 $groupIdString = '(' . implode(',', array_keys($groupIDs)) . ')';
90d1fee5 1043 // <span class="child-icon"></span>
1044 // need to return id, title (w/ spacer), description, visibility
1045
1046 // We need to build a list of tags ordered by hierarchy and sorted by
b44e3f84 1047 // name. The hierarchy will be communicated by an accumulation of
90d1fee5 1048 // separators in front of the name to give it a visual offset.
1049 // Instead of recursively making mysql queries, we'll make one big
b44e3f84 1050 // query and build the hierarchy with the algorithm below.
be2fb01f
CW
1051 $groups = [];
1052 $args = [1 => [$groupIdString, 'String']];
90d1fee5 1053 $query = "
be44418d 1054SELECT id, title, frontend_title, description, frontend_description, visibility, parents, saved_search_id
f828fa2c
DL
1055FROM civicrm_group
1056WHERE id IN $groupIdString
1057";
90d1fee5 1058 if ($parents) {
b901b84e 1059 // group can have > 1 parent so parents may be comma separated list (eg. '1,2,5').
90d1fee5 1060 $parentArray = explode(',', $parents);
ea5f6013 1061 $parent = self::filterActiveGroups($parentArray);
be2fb01f 1062 $args[2] = [$parent, 'Integer'];
90d1fee5 1063 $query .= " AND SUBSTRING_INDEX(parents, ',', 1) = %2";
1064 }
1065 $query .= " ORDER BY title";
1066 $dao = CRM_Core_DAO::executeQuery($query, $args);
1067
1068 // Sort the groups into the correct storage by the parent
1069 // $roots represent the current leaf nodes that need to be checked for
1070 // children. $rows represent the unplaced nodes
f71d7bd3 1071 // $tree contains the child nodes based on their parent_id.
be2fb01f
CW
1072 $roots = [];
1073 $tree = [];
90d1fee5 1074 while ($dao->fetch()) {
be44418d
SL
1075 $title = $dao->title;
1076 $description = $dao->description;
1077 if ($public) {
1078 if (!empty($dao->frontend_title)) {
1079 $title = $dao->frontend_title;
1080 }
1081 if (!empty($dao->frontend_description)) {
1082 $description = $dao->frontend_description;
1083 }
1084 }
f71d7bd3
JJ
1085 if ($dao->parents) {
1086 $parentArray = explode(',', $dao->parents);
ea5f6013 1087 $parent = self::filterActiveGroups($parentArray);
be2fb01f 1088 $tree[$parent][] = [
90d1fee5 1089 'id' => $dao->id,
be44418d 1090 'title' => empty($dao->saved_search_id) ? $title : '* ' . $title,
f71d7bd3 1091 'visibility' => $dao->visibility,
be44418d 1092 'description' => $description,
be2fb01f 1093 ];
8f658465
JJ
1094 }
1095 else {
be2fb01f 1096 $roots[] = [
90d1fee5 1097 'id' => $dao->id,
be44418d 1098 'title' => empty($dao->saved_search_id) ? $title : '* ' . $title,
f71d7bd3 1099 'visibility' => $dao->visibility,
be44418d 1100 'description' => $description,
be2fb01f 1101 ];
90d1fee5 1102 }
1103 }
90d1fee5 1104
be2fb01f 1105 $hierarchy = [];
8f658465 1106 for ($i = 0; $i < count($roots); $i++) {
f71d7bd3 1107 self::buildGroupHierarchy($hierarchy, $roots[$i], $tree, $titleOnly, $spacer, 0);
90d1fee5 1108 }
956b9960 1109
f71d7bd3
JJ
1110 return $hierarchy;
1111 }
90d1fee5 1112
f71d7bd3
JJ
1113 /**
1114 * Build a list with groups on alphabetical order and child groups after the parent group.
1115 *
1116 * This is a recursive function filling the $hierarchy parameter.
1117 *
fa3fdebc
BT
1118 * @param array $hierarchy
1119 * @param array $group
1120 * @param array $tree
1121 * @param bool $titleOnly
1122 * @param string $spacer
1123 * @param int $level
f71d7bd3
JJ
1124 */
1125 private static function buildGroupHierarchy(&$hierarchy, $group, $tree, $titleOnly, $spacer, $level) {
1126 $spaces = str_repeat($spacer, $level);
1127
1128 if ($titleOnly) {
1129 $hierarchy[$group['id']] = $spaces . $group['title'];
90d1fee5 1130 }
f71d7bd3 1131 else {
78d0090b
MD
1132 $hierarchy[] = [
1133 'id' => $group['id'],
1134 'text' => $spaces . $group['title'],
f71d7bd3
JJ
1135 'description' => $group['description'],
1136 'visibility' => $group['visibility'],
ba2ad46f 1137 ];
90d1fee5 1138 }
1139
f71d7bd3
JJ
1140 // For performance reasons we use a for loop rather than a foreach.
1141 // Metrics for performance in an installation with 2867 groups a foreach
1142 // caused the function getGroupsHierarchy with a foreach execution takes
fa3fdebc 1143 // around 2.2 seconds (2,200 ms).
f71d7bd3 1144 // Changing to a for loop execustion takes around 0.02 seconds (20 ms).
d10c0875
JJ
1145 if (isset($tree[$group['id']]) && is_array($tree[$group['id']])) {
1146 for ($i = 0; $i < count($tree[$group['id']]); $i++) {
cca81cba 1147 self::buildGroupHierarchy($hierarchy, $tree[$group['id']][$i], $tree, $titleOnly, $spacer, $level + 1);
d10c0875 1148 }
f71d7bd3 1149 }
6a488035
TO
1150 }
1151
86538308 1152 /**
c490a46a 1153 * @param array $params
86538308 1154 *
e60f24eb 1155 * @return NULL|string
86538308 1156 */
00be9182 1157 public static function getGroupCount(&$params) {
6a488035 1158 $whereClause = self::whereClause($params, FALSE);
d9d23a91 1159 $query = "SELECT COUNT(*) FROM civicrm_group `groups`";
6a488035 1160
a7488080 1161 if (!empty($params['created_by'])) {
6a488035
TO
1162 $query .= "
1163INNER JOIN civicrm_contact createdBy
d9d23a91 1164 ON createdBy.id = `groups`.created_id";
6a488035
TO
1165 }
1166 $query .= "
1167WHERE {$whereClause}";
1168 return CRM_Core_DAO::singleValueQuery($query, $params);
1169 }
1170
47c89d6b 1171 /**
fe482240 1172 * Generate permissioned where clause for group search.
c490a46a 1173 * @param array $params
47c89d6b
EM
1174 * @param bool $sortBy
1175 * @param bool $excludeHidden
1176 *
1177 * @return string
1178 */
00be9182 1179 public static function whereClause(&$params, $sortBy = TRUE, $excludeHidden = TRUE) {
be2fb01f 1180 $values = [];
9c1bc317 1181 $title = $params['title'] ?? NULL;
6a488035 1182 if ($title) {
d9d23a91 1183 $clauses[] = "`groups`.title LIKE %1";
6a488035 1184 if (strpos($title, '%') !== FALSE) {
be2fb01f 1185 $params[1] = [$title, 'String', FALSE];
6a488035
TO
1186 }
1187 else {
be2fb01f 1188 $params[1] = [$title, 'String', TRUE];
6a488035
TO
1189 }
1190 }
1191
9c1bc317 1192 $groupType = $params['group_type'] ?? NULL;
6a488035
TO
1193 if ($groupType) {
1194 $types = explode(',', $groupType);
1195 if (!empty($types)) {
d9d23a91 1196 $clauses[] = '`groups`.group_type LIKE %2';
6a488035 1197 $typeString = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $types) . CRM_Core_DAO::VALUE_SEPARATOR;
be2fb01f 1198 $params[2] = [$typeString, 'String', TRUE];
6a488035
TO
1199 }
1200 }
1201
9c1bc317 1202 $visibility = $params['visibility'] ?? NULL;
6a488035 1203 if ($visibility) {
d9d23a91 1204 $clauses[] = '`groups`.visibility = %3';
be2fb01f 1205 $params[3] = [$visibility, 'String'];
6a488035
TO
1206 }
1207
9c1bc317 1208 $groupStatus = $params['status'] ?? NULL;
6a488035
TO
1209 if ($groupStatus) {
1210 switch ($groupStatus) {
1211 case 1:
d9d23a91 1212 $clauses[] = '`groups`.is_active = 1';
be2fb01f 1213 $params[4] = [$groupStatus, 'Integer'];
6a488035
TO
1214 break;
1215
1216 case 2:
d9d23a91 1217 $clauses[] = '`groups`.is_active = 0';
be2fb01f 1218 $params[4] = [$groupStatus, 'Integer'];
6a488035
TO
1219 break;
1220
1221 case 3:
d9d23a91 1222 $clauses[] = '(`groups`.is_active = 0 OR `groups`.is_active = 1 )';
6a488035
TO
1223 break;
1224 }
1225 }
1226
9c1bc317 1227 $parentsOnly = $params['parentsOnly'] ?? NULL;
6a488035 1228 if ($parentsOnly) {
d9d23a91 1229 $clauses[] = '`groups`.parents IS NULL';
6a488035
TO
1230 }
1231
7538f64d 1232 $savedSearch = $params['savedSearch'] ?? NULL;
effbcf85 1233 if ($savedSearch == 1) {
7538f64d 1234 $clauses[] = '`groups`.saved_search_id IS NOT NULL';
effbcf85 1235 }
f33893fd 1236 elseif ($savedSearch == 2) {
7538f64d 1237 $clauses[] = '`groups`.saved_search_id IS NULL';
effbcf85
SP
1238 }
1239
6a488035 1240 // only show child groups of a specific parent group
9c1bc317 1241 $parent_id = $params['parent_id'] ?? NULL;
6a488035 1242 if ($parent_id) {
d9d23a91 1243 $clauses[] = '`groups`.id IN (SELECT child_group_id FROM civicrm_group_nesting WHERE parent_group_id = %5)';
be2fb01f 1244 $params[5] = [$parent_id, 'Integer'];
6a488035
TO
1245 }
1246
1247 if ($createdBy = CRM_Utils_Array::value('created_by', $params)) {
1248 $clauses[] = "createdBy.sort_name LIKE %6";
1249 if (strpos($createdBy, '%') !== FALSE) {
be2fb01f 1250 $params[6] = [$createdBy, 'String', FALSE];
6a488035
TO
1251 }
1252 else {
be2fb01f 1253 $params[6] = [$createdBy, 'String', TRUE];
6a488035
TO
1254 }
1255 }
1256
6a488035 1257 if (empty($clauses)) {
d9d23a91 1258 $clauses[] = '`groups`.is_active = 1';
6a488035
TO
1259 }
1260
1261 if ($excludeHidden) {
d9d23a91 1262 $clauses[] = '`groups`.is_hidden = 0';
6a488035 1263 }
33421d01 1264
aaac0e0b 1265 $clauses[] = self::getPermissionClause();
6a488035
TO
1266
1267 return implode(' AND ', $clauses);
1268 }
1269
1270 /**
fe482240 1271 * Define action links.
6a488035 1272 *
a6c01b45
CW
1273 * @return array
1274 * array of action links
6a488035 1275 */
fecb40f5
MW
1276 public static function actionLinks($params) {
1277 // If component_mode is set we change the "View" link to match the requested component type
1278 if (!isset($params['component_mode'])) {
1279 $params['component_mode'] = CRM_Contact_BAO_Query::MODE_CONTACTS;
1280 }
1281 $modeValue = CRM_Contact_Form_Search::getModeValue($params['component_mode']);
be2fb01f
CW
1282 $links = [
1283 CRM_Core_Action::VIEW => [
fecb40f5 1284 'name' => $modeValue['selectorLabel'],
6a488035 1285 'url' => 'civicrm/group/search',
fecb40f5 1286 'qs' => 'reset=1&force=1&context=smog&gid=%%id%%&component_mode=' . $params['component_mode'],
6a488035 1287 'title' => ts('Group Contacts'),
be2fb01f
CW
1288 ],
1289 CRM_Core_Action::UPDATE => [
6a488035
TO
1290 'name' => ts('Settings'),
1291 'url' => 'civicrm/group',
1292 'qs' => 'reset=1&action=update&id=%%id%%',
1293 'title' => ts('Edit Group'),
be2fb01f
CW
1294 ],
1295 CRM_Core_Action::DISABLE => [
6a488035 1296 'name' => ts('Disable'),
4d17a233 1297 'ref' => 'crm-enable-disable',
6a488035 1298 'title' => ts('Disable Group'),
be2fb01f
CW
1299 ],
1300 CRM_Core_Action::ENABLE => [
6a488035 1301 'name' => ts('Enable'),
4d17a233 1302 'ref' => 'crm-enable-disable',
6a488035 1303 'title' => ts('Enable Group'),
be2fb01f
CW
1304 ],
1305 CRM_Core_Action::DELETE => [
6a488035
TO
1306 'name' => ts('Delete'),
1307 'url' => 'civicrm/group',
1308 'qs' => 'reset=1&action=delete&id=%%id%%',
1309 'title' => ts('Delete Group'),
be2fb01f
CW
1310 ],
1311 ];
6a488035
TO
1312
1313 return $links;
1314 }
1315
86538308
EM
1316 /**
1317 * @param $whereClause
100fef9d 1318 * @param array $whereParams
86538308
EM
1319 *
1320 * @return string
1321 */
00be9182 1322 public function pagerAtoZ($whereClause, $whereParams) {
6a488035 1323 $query = "
d9d23a91
SL
1324 SELECT DISTINCT UPPER(LEFT(`groups`.title, 1)) as sort_name
1325 FROM civicrm_group `groups`
6a488035 1326 WHERE $whereClause
d9d23a91 1327 ORDER BY LEFT(`groups`.title, 1)
6a488035
TO
1328 ";
1329 $dao = CRM_Core_DAO::executeQuery($query, $whereParams);
1330
1331 return CRM_Utils_PagerAToZ::getAToZBar($dao, $this->_sortByCharacter, TRUE);
1332 }
96025800 1333
c955c26c
SL
1334 /**
1335 * Assign Test Value.
1336 *
1337 * @param string $fieldName
1338 * @param array $fieldDef
1339 * @param int $counter
1340 */
1341 protected function assignTestValue($fieldName, &$fieldDef, $counter) {
94183dd6 1342 if ($fieldName == 'children' || $fieldName == 'parents') {
c955c26c
SL
1343 $this->{$fieldName} = "NULL";
1344 }
1345 else {
35fd9d21 1346 parent::assignTestValue($fieldName, $fieldDef, $counter);
c955c26c
SL
1347 }
1348 }
1349
883e1e76 1350 /**
1351 * Get child group ids
1352 *
783144b0 1353 * @param array $regularGroupIDs
883e1e76 1354 * Parent Group IDs
1355 *
1356 * @return array
1357 */
783144b0 1358 public static function getChildGroupIds($regularGroupIDs) {
be2fb01f 1359 $childGroupIDs = [];
783144b0 1360
cc949606 1361 foreach ((array) $regularGroupIDs as $regularGroupID) {
783144b0 1362 // temporary store the child group ID(s) of regular group identified by $id,
1363 // later merge with main child group array
be2fb01f 1364 $tempChildGroupIDs = [];
783144b0 1365 // check that the regular group has any child group, if not then continue
1366 if ($childrenFound = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $regularGroupID, 'children')) {
1367 $tempChildGroupIDs[] = $childrenFound;
1368 }
1369 else {
1370 continue;
1371 }
1372 // as civicrm_group.children stores multiple group IDs in comma imploded string format,
1373 // so we need to convert it into array of child group IDs first
1374 $tempChildGroupIDs = explode(',', implode(',', $tempChildGroupIDs));
1375 $childGroupIDs = array_merge($childGroupIDs, $tempChildGroupIDs);
1376 // recursively fetch the child group IDs
1377 while (count($tempChildGroupIDs)) {
1378 $tempChildGroupIDs = self::getChildGroupIds($tempChildGroupIDs);
1379 if (count($tempChildGroupIDs)) {
1380 $childGroupIDs = array_merge($childGroupIDs, $tempChildGroupIDs);
1381 }
883e1e76 1382 }
1383 }
1384
783144b0 1385 return $childGroupIDs;
883e1e76 1386 }
1387
ea5f6013
E
1388 /**
1389 * Check parent groups and filter out the disabled ones.
1390 *
1391 * @param array $parentArray
1392 * Array of group Ids.
1393 *
1394 * @return int
1395 */
1396 public static function filterActiveGroups($parentArray) {
1397 if (count($parentArray) > 1) {
be2fb01f
CW
1398 $result = civicrm_api3('Group', 'get', [
1399 'id' => ['IN' => $parentArray],
b4957876 1400 'is_active' => TRUE,
1401 'return' => 'id',
be2fb01f 1402 ]);
b4957876 1403 $activeParentGroupIDs = CRM_Utils_Array::collect('id', $result['values']);
1404 foreach ($parentArray as $key => $groupID) {
1405 if (!array_key_exists($groupID, $activeParentGroupIDs)) {
ea5f6013
E
1406 unset($parentArray[$key]);
1407 }
1408 }
1409 }
b4957876 1410
ea5f6013
E
1411 return reset($parentArray);
1412 }
1413
6a488035 1414}