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