Merge pull request #11580 from seamuslee001/CRM-21687
[civicrm-core.git] / CRM / Contact / BAO / Group.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
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
359 // convert params if array type
360 if (isset($params['group_type'])) {
361 if (is_array($params['group_type'])) {
362 $params['group_type'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
fb413e82 363 CRM_Utils_Array::convertCheckboxFormatToArray($params['group_type'])
353ffa53 364 ) . CRM_Core_DAO::VALUE_SEPARATOR;
6a488035 365 }
568fcb22 366 else {
367 $params['group_type'] = CRM_Core_DAO::VALUE_SEPARATOR . $params['group_type'] . CRM_Core_DAO::VALUE_SEPARATOR;
368 }
6a488035
TO
369 }
370 else {
82d7eb3d 371 $params['group_type'] = NULL;
6a488035
TO
372 }
373
481a74f4 374 $session = CRM_Core_Session::singleton();
d0dfb649
PJ
375 $cid = $session->get('userID');
376 // this action is add
377 if ($cid && empty($params['id'])) {
6a488035
TO
378 $params['created_id'] = $cid;
379 }
d0dfb649
PJ
380 // this action is update
381 if ($cid && !empty($params['id'])) {
382 $params['modified_id'] = $cid;
383 }
6a488035 384
d4fba42a
SL
385 // CRM-19068.
386 // Validate parents parameter when creating group.
ec7846f5 387 if (!empty($params['parents'])) {
026e0308
FG
388 $parents = is_array($params['parents']) ? array_keys($params['parents']) : (array) $params['parents'];
389 foreach ($parents as $parent) {
390 CRM_Utils_Type::validate($parent, 'Integer');
d4fba42a
SL
391 }
392 }
6a488035
TO
393 $group = new CRM_Contact_BAO_Group();
394 $group->copyValues($params);
57c93d72
E
395 //@todo very hacky fix for the fact this function wants to receive 'parents' as an array further down but
396 // needs it as a separated string for the DB. Preferred approaches are having the copyParams or save fn
397 // use metadata to translate the array to the appropriate DB type or altering the param in the api layer,
398 // or at least altering the param in same section as 'group_type' rather than repeating here. However, further down
399 // we need the $params one to be in it's original form & we are not sure what test coverage we have on that
22e263ad 400 if (isset($group->parents) && is_array($group->parents)) {
57c93d72 401 $group->parents = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
402 array_keys($group->parents)
403 ) . CRM_Core_DAO::VALUE_SEPARATOR;
57c93d72 404 }
a7488080 405 if (empty($params['id']) &&
e2b7c67d 406 !$nameParam
0aab99e7 407 ) {
6a488035
TO
408 $group->name .= "_tmp";
409 }
410 $group->save();
411
412 if (!$group->id) {
413 return NULL;
414 }
415
a7488080 416 if (empty($params['id']) &&
e2b7c67d 417 !$nameParam
0aab99e7 418 ) {
6a488035
TO
419 $group->name = substr($group->name, 0, -4) . "_{$group->id}";
420 }
421
422 $group->buildClause();
423 $group->save();
424
425 // add custom field values
a7488080 426 if (!empty($params['custom'])) {
6a488035
TO
427 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_group', $group->id);
428 }
429
430 // make the group, child of domain/site group by default.
431 $domainGroupID = CRM_Core_BAO_Domain::getGroupId();
432 if (CRM_Utils_Array::value('no_parent', $params) !== 1) {
433 if (empty($params['parents']) &&
434 $domainGroupID != $group->id &&
aaffa79f 435 Civi::settings()->get('is_enabled') &&
6a488035
TO
436 !CRM_Contact_BAO_GroupNesting::hasParentGroups($group->id)
437 ) {
438 // if no parent present and the group doesn't already have any parents,
439 // make sure site group goes as parent
440 $params['parents'] = array($domainGroupID => 1);
441 }
442 elseif (array_key_exists('parents', $params) && !is_array($params['parents'])) {
443 $params['parents'] = array($params['parents'] => 1);
444 }
445
446 if (!empty($params['parents'])) {
447 foreach ($params['parents'] as $parentId => $dnc) {
1069895e
SL
448 if ($parentId && !CRM_Contact_BAO_GroupNesting::isParentChild($parentId, $group->id)) {
449 CRM_Contact_BAO_GroupNesting::add($parentId, $group->id);
6a488035
TO
450 }
451 }
452 }
453
6a488035
TO
454 // this is always required, since we don't know when a
455 // parent group is removed
456 CRM_Contact_BAO_GroupNestingCache::update();
457
458 // update group contact cache for all parent groups
459 $parentIds = CRM_Contact_BAO_GroupNesting::getParentGroupIds($group->id);
460 foreach ($parentIds as $parentId) {
461 CRM_Contact_BAO_GroupContactCache::add($parentId);
462 }
463 }
464
a7488080 465 if (!empty($params['organization_id'])) {
6a488035
TO
466 $groupOrg = $params;
467 $groupOrg['group_id'] = $group->id;
468 CRM_Contact_BAO_GroupOrganization::add($groupOrg);
469 }
470
6d054a8e 471 self::flushCaches();
6a488035
TO
472 CRM_Contact_BAO_GroupContactCache::add($group->id);
473
a7488080 474 if (!empty($params['id'])) {
6a488035
TO
475 CRM_Utils_Hook::post('edit', 'Group', $group->id, $group);
476 }
477 else {
478 CRM_Utils_Hook::post('create', 'Group', $group->id, $group);
479 }
480
481 $recentOther = array();
482 if (CRM_Core_Permission::check('edit groups')) {
483 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/group', 'reset=1&action=update&id=' . $group->id);
484 // currently same permission we are using for delete a group
485 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/group', 'reset=1&action=delete&id=' . $group->id);
486 }
487
488 // add the recently added group (unless hidden: CRM-6432)
489 if (!$group->is_hidden) {
490 CRM_Utils_Recent::add($group->title,
491 CRM_Utils_System::url('civicrm/group/search', 'reset=1&force=1&context=smog&gid=' . $group->id),
492 $group->id,
493 'Group',
494 NULL,
495 NULL,
496 $recentOther
497 );
498 }
499 return $group;
500 }
501
502 /**
100fef9d 503 * Given a saved search compute the clause and the tables
6a488035
TO
504 * and store it for future use
505 */
00be9182 506 public function buildClause() {
1dbdc161 507 $params = array(array('group', 'IN', array($this->id), 0, 0));
6a488035
TO
508
509 if (!empty($params)) {
510 $tables = $whereTables = array();
511 $this->where_clause = CRM_Contact_BAO_Query::getWhereClause($params, NULL, $tables, $whereTables);
512 if (!empty($tables)) {
513 $this->select_tables = serialize($tables);
514 }
515 if (!empty($whereTables)) {
516 $this->where_tables = serialize($whereTables);
517 }
518 }
6a488035
TO
519 }
520
521 /**
fe482240 522 * Defines a new smart group.
6a488035 523 *
77c5b619
TO
524 * @param array $params
525 * Associative array of parameters.
6a488035 526 *
72b3a70c
CW
527 * @return CRM_Contact_BAO_Group|NULL
528 * The new group BAO (if created)
6a488035
TO
529 */
530 public static function createSmartGroup(&$params) {
a7488080 531 if (!empty($params['formValues'])) {
6a488035
TO
532 $ssParams = $params;
533 unset($ssParams['id']);
534 if (isset($ssParams['saved_search_id'])) {
535 $ssParams['id'] = $ssParams['saved_search_id'];
536 }
537
538 $savedSearch = CRM_Contact_BAO_SavedSearch::create($params);
539
540 $params['saved_search_id'] = $savedSearch->id;
541 }
542 else {
543 return NULL;
544 }
545
546 return self::create($params);
547 }
548
549 /**
fe482240 550 * Update the is_active flag in the db.
6a488035 551 *
77c5b619
TO
552 * @param int $id
553 * Id of the database record.
554 * @param bool $isActive
555 * Value we want to set the is_active field.
6a488035 556 *
16b10e64 557 * @return CRM_Core_DAO|null
3f8d2862 558 * DAO object on success, NULL otherwise
6a488035 559 */
00be9182 560 public static function setIsActive($id, $isActive) {
6a488035
TO
561 return CRM_Core_DAO::setFieldValue('CRM_Contact_DAO_Group', $id, 'is_active', $isActive);
562 }
563
564 /**
100fef9d 565 * Build the condition to retrieve groups.
6a488035 566 *
77c5b619
TO
567 * @param string $groupType
568 * Type of group(Access/Mailing) OR the key of the group.
3f8d2862 569 * @param bool $excludeHidden exclude hidden groups.
6a488035 570 *
a6c01b45 571 * @return string
6a488035 572 */
00be9182 573 public static function groupTypeCondition($groupType = NULL, $excludeHidden = TRUE) {
6a488035
TO
574 $value = NULL;
575 if ($groupType == 'Mailing') {
576 $value = CRM_Core_DAO::VALUE_SEPARATOR . '2' . CRM_Core_DAO::VALUE_SEPARATOR;
577 }
578 elseif ($groupType == 'Access') {
579 $value = CRM_Core_DAO::VALUE_SEPARATOR . '1' . CRM_Core_DAO::VALUE_SEPARATOR;
580 }
9b873358 581 elseif (!empty($groupType)) {
6a488035
TO
582 // ie we have been given the group key
583 $value = CRM_Core_DAO::VALUE_SEPARATOR . $groupType . CRM_Core_DAO::VALUE_SEPARATOR;
584 }
585
586 $condition = NULL;
587 if ($excludeHidden) {
588 $condition = "is_hidden = 0";
589 }
590
591 if ($value) {
592 if ($condition) {
593 $condition .= " AND group_type LIKE '%$value%'";
594 }
595 else {
596 $condition = "group_type LIKE '%$value%'";
597 }
598 }
599
600 return $condition;
601 }
602
47c89d6b 603 /**
fe482240 604 * Get permission relevant clauses.
aaac0e0b 605 *
47c89d6b
EM
606 * @return array
607 */
bc95ea0d 608 public static function getPermissionClause() {
609 if (!isset(Civi::$statics[__CLASS__]['permission_clause'])) {
9486be34 610 if (CRM_Core_Permission::check('view all contacts') || CRM_Core_Permission::check('edit all contacts')) {
611 $clause = 1;
47c89d6b 612 }
aaac0e0b 613 else {
9486be34 614 //get the allowed groups for the current user
615 $groups = CRM_ACL_API::group(CRM_ACL_API::VIEW);
616 if (!empty($groups)) {
617 $groupList = implode(', ', array_values($groups));
618 $clause = "groups.id IN ( $groupList ) ";
619 }
620 else {
621 $clause = '1 = 0';
622 }
aaac0e0b 623 }
bc95ea0d 624 Civi::$statics[__CLASS__]['permission_clause'] = $clause;
47c89d6b 625 }
bc95ea0d 626 return Civi::$statics[__CLASS__]['permission_clause'];
47c89d6b
EM
627 }
628
6d054a8e 629 /**
630 * Flush caches that hold group data.
631 *
632 * (Actually probably some overkill at the moment.)
633 */
634 protected static function flushCaches() {
635 CRM_Utils_System::flushCache();
636 $staticCaches = array(
637 'CRM_Core_PseudoConstant' => 'groups',
638 'CRM_ACL_API' => 'group_permission',
639 'CRM_ACL_BAO_ACL' => 'permissioned_groups',
bc95ea0d 640 'CRM_Contact_BAO_Group' => 'permission_clause',
6d054a8e 641 );
642 foreach ($staticCaches as $class => $key) {
643 if (isset(Civi::$statics[$class][$key])) {
644 unset(Civi::$statics[$class][$key]);
645 }
646 }
647 }
648
86538308
EM
649 /**
650 * @return string
651 */
6a488035
TO
652 public function __toString() {
653 return $this->title;
654 }
655
656 /**
657 * This function create the hidden smart group when user perform
b44e3f84 658 * contact search and want to send mailing to search contacts.
6a488035 659 *
77c5b619
TO
660 * @param array $params
661 * ( reference ) an assoc array of name/value pairs.
6a488035 662 *
a6c01b45
CW
663 * @return array
664 * ( smartGroupId, ssId ) smart group id and saved search id
6a488035 665 */
00be9182 666 public static function createHiddenSmartGroup($params) {
6a488035
TO
667 $ssId = CRM_Utils_Array::value('saved_search_id', $params);
668
669 //add mapping record only for search builder saved search
670 $mappingId = NULL;
671 if ($params['search_context'] == 'builder') {
672 //save the mapping for search builder
673 if (!$ssId) {
674 //save record in mapping table
c997dfa8 675 $mappingParams = array(
95f52e3b 676 'mapping_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Search Builder'),
c997dfa8
TS
677 );
678 $mapping = CRM_Core_BAO_Mapping::add($mappingParams);
353ffa53 679 $mappingId = $mapping->id;
6a488035
TO
680 }
681 else {
682 //get the mapping id from saved search
683 $savedSearch = new CRM_Contact_BAO_SavedSearch();
684 $savedSearch->id = $ssId;
685 $savedSearch->find(TRUE);
686 $mappingId = $savedSearch->mapping_id;
687 }
688
689 //save mapping fields
690 CRM_Core_BAO_Mapping::saveMappingFields($params['form_values'], $mappingId);
691 }
692
693 //create/update saved search record.
694 $savedSearch = new CRM_Contact_BAO_SavedSearch();
695 $savedSearch->id = $ssId;
696 $savedSearch->form_values = serialize($params['form_values']);
697 $savedSearch->mapping_id = $mappingId;
698 $savedSearch->search_custom_id = CRM_Utils_Array::value('search_custom_id', $params);
699 $savedSearch->save();
700
701 $ssId = $savedSearch->id;
702 if (!$ssId) {
703 return NULL;
704 }
705
706 $smartGroupId = NULL;
a7488080 707 if (!empty($params['saved_search_id'])) {
6a488035
TO
708 $smartGroupId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $ssId, 'id', 'saved_search_id');
709 }
710 else {
711 //create group only when new saved search.
712 $groupParams = array(
713 'title' => "Hidden Smart Group {$ssId}",
714 'is_active' => CRM_Utils_Array::value('is_active', $params, 1),
715 'is_hidden' => CRM_Utils_Array::value('is_hidden', $params, 1),
716 'group_type' => CRM_Utils_Array::value('group_type', $params),
717 'visibility' => CRM_Utils_Array::value('visibility', $params),
718 'saved_search_id' => $ssId,
719 );
720
721 $smartGroup = self::create($groupParams);
722 $smartGroupId = $smartGroup->id;
723 }
724
c997dfa8
TS
725 // Update mapping with the name and description of the hidden smart group.
726 if ($mappingId) {
727 $mappingParams = array(
728 'id' => $mappingId,
729 'name' => CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $smartGroupId, 'name', 'id'),
730 'description' => CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $smartGroupId, 'description', 'id'),
95f52e3b 731 'mapping_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Mapping', 'mapping_type_id', 'Search Builder'),
c997dfa8
TS
732 );
733 CRM_Core_BAO_Mapping::add($mappingParams);
734 }
735
6a488035
TO
736 return array($smartGroupId, $ssId);
737 }
738
739 /**
fe482240 740 * wrapper for ajax group selector.
6a488035 741 *
77c5b619
TO
742 * @param array $params
743 * Associated array for params record id.
6a488035 744 *
a6c01b45
CW
745 * @return array
746 * associated array of group list
16b10e64
CW
747 * -rp = rowcount
748 * -page= offset
d3e86119
TO
749 * @todo there seems little reason for the small number of functions that call this to pass in
750 * params that then need to be translated in this function since they are coding them when calling
6a488035 751 */
bca4d720 752 static public function getGroupListSelector(&$params) {
6a488035 753 // format the params
353ffa53 754 $params['offset'] = ($params['page'] - 1) * $params['rp'];
6a488035 755 $params['rowCount'] = $params['rp'];
353ffa53 756 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
6a488035
TO
757
758 // get groups
759 $groups = CRM_Contact_BAO_Group::getGroupList($params);
760
761 //skip total if we are making call to show only children
a7488080 762 if (empty($params['parent_id'])) {
6a488035
TO
763 // add total
764 $params['total'] = CRM_Contact_BAO_Group::getGroupCount($params);
765
766 // get all the groups
767 $allGroups = CRM_Core_PseudoConstant::allGroup();
768 }
769
770 // format params and add links
771 $groupList = array();
3b448eca
JL
772 foreach ($groups as $id => $value) {
773 $group = array();
774 $group['group_id'] = $value['id'];
775 $group['count'] = $value['count'];
776 $group['title'] = $value['title'];
777
778 // append parent names if in search mode
779 if (empty($params['parent_id']) && !empty($value['parents'])) {
780 $group['parent_id'] = $value['parents'];
781 $groupIds = explode(',', $value['parents']);
782 $title = array();
783 foreach ($groupIds as $gId) {
784 $title[] = $allGroups[$gId];
785 }
786 $group['title'] .= '<div class="crm-row-parent-name"><em>' . ts('Child of') . '</em>: ' . implode(', ', $title) . '</div>';
787 $value['class'] = array_diff($value['class'], array('crm-row-parent'));
788 }
789 $group['DT_RowId'] = 'row_' . $value['id'];
46d33c7a 790 if (empty($params['parentsOnly'])) {
fe6e4e4b 791 foreach ($value['class'] as $id => $class) {
be632a8a 792 if ($class == 'crm-group-parent') {
3b448eca 793 unset($value['class'][$id]);
6a488035 794 }
6a488035 795 }
3b448eca
JL
796 }
797 $group['DT_RowClass'] = 'crm-entity ' . implode(' ', $value['class']);
798 $group['DT_RowAttr'] = array();
799 $group['DT_RowAttr']['data-id'] = $value['id'];
800 $group['DT_RowAttr']['data-entity'] = 'group';
6a488035 801
3b448eca 802 $group['description'] = CRM_Utils_Array::value('description', $value);
6a488035 803
3b448eca
JL
804 if (!empty($value['group_type'])) {
805 $group['group_type'] = $value['group_type'];
806 }
807 else {
808 $group['group_type'] = '';
6a488035 809 }
3b448eca
JL
810
811 $group['visibility'] = $value['visibility'];
812 $group['links'] = $value['action'];
813 $group['org_info'] = CRM_Utils_Array::value('org_info', $value);
814 $group['created_by'] = CRM_Utils_Array::value('created_by', $value);
815
816 $group['is_parent'] = $value['is_parent'];
817
1e223804 818 array_push($groupList, $group);
6a488035 819 }
3b448eca
JL
820
821 $groupsDT = array();
822 $groupsDT['data'] = $groupList;
adf9de83
TS
823 $groupsDT['recordsTotal'] = !empty($params['total']) ? $params['total'] : NULL;
824 $groupsDT['recordsFiltered'] = !empty($params['total']) ? $params['total'] : NULL;
3b448eca
JL
825
826 return $groupsDT;
6a488035
TO
827 }
828
829 /**
fe482240 830 * This function to get list of groups.
6a488035 831 *
77c5b619
TO
832 * @param array $params
833 * Associated array for params.
80ad33e7
EM
834 *
835 * @return array
6a488035 836 */
00be9182 837 public static function getGroupList(&$params) {
6a488035 838 $whereClause = self::whereClause($params, FALSE);
f90c40b9 839
adf9de83 840 $limit = "";
6a488035
TO
841 if (!empty($params['rowCount']) &&
842 $params['rowCount'] > 0
843 ) {
844 $limit = " LIMIT {$params['offset']}, {$params['rowCount']} ";
845 }
846
847 $orderBy = ' ORDER BY groups.title asc';
21d32567
DL
848 if (!empty($params['sort'])) {
849 $orderBy = ' ORDER BY ' . CRM_Utils_Type::escape($params['sort'], 'String');
1d19a8f2
CW
850
851 // CRM-16905 - Sort by count cannot be done with sql
852 if (strpos($params['sort'], 'count') === 0) {
853 $orderBy = $limit = '';
854 }
6a488035
TO
855 }
856
857 $select = $from = $where = "";
858 $groupOrg = FALSE;
859 if (CRM_Core_Permission::check('administer Multiple Organizations') &&
860 CRM_Core_Permission::isMultisiteEnabled()
861 ) {
862 $select = ", contact.display_name as org_name, contact.id as org_id";
863 $from = " LEFT JOIN civicrm_group_organization gOrg
864 ON gOrg.group_id = groups.id
865 LEFT JOIN civicrm_contact contact
866 ON contact.id = gOrg.organization_id ";
867
868 //get the Organization ID
a3d827a7 869 $orgID = CRM_Utils_Request::retrieve('oid', 'Positive');
6a488035
TO
870 if ($orgID) {
871 $where = " AND gOrg.organization_id = {$orgID}";
872 }
873
874 $groupOrg = TRUE;
875 }
876
877 $query = "
cbe32e2f 878 SELECT groups.*, createdBy.sort_name as created_by {$select}
6a488035 879 FROM civicrm_group groups
7f4b344c
CW
880 LEFT JOIN civicrm_contact createdBy
881 ON createdBy.id = groups.created_id
882 {$from}
6a488035
TO
883 WHERE $whereClause {$where}
884 {$orderBy}
885 {$limit}";
886
887 $object = CRM_Core_DAO::executeQuery($query, $params, TRUE, 'CRM_Contact_DAO_Group');
888
889 //FIXME CRM-4418, now we are handling delete separately
890 //if we introduce 'delete for group' make sure to handle here.
891 $groupPermissions = array(CRM_Core_Permission::VIEW);
892 if (CRM_Core_Permission::check('edit groups')) {
893 $groupPermissions[] = CRM_Core_Permission::EDIT;
894 $groupPermissions[] = CRM_Core_Permission::DELETE;
895 }
896
897 // CRM-9936
898 $reservedPermission = CRM_Core_Permission::check('administer reserved groups');
899
900 $links = self::actionLinks();
901
902 $allTypes = CRM_Core_OptionGroup::values('group_type');
783144b0 903 $values = array();
6a488035 904
e3c75a92 905 $visibility = CRM_Core_SelectValues::ufVisibility();
906
6a488035 907 while ($object->fetch()) {
6d054a8e 908 $newLinks = $links;
909 $values[$object->id] = array(
910 'class' => array(),
911 'count' => '0',
912 );
913 CRM_Core_DAO::storeValues($object, $values[$object->id]);
914
915 if ($object->saved_search_id) {
916 $values[$object->id]['title'] .= ' (' . ts('Smart Group') . ')';
917 // check if custom search, if so fix view link
918 $customSearchID = CRM_Core_DAO::getFieldValue(
919 'CRM_Contact_DAO_SavedSearch',
920 $object->saved_search_id,
921 'search_custom_id'
cbe32e2f 922 );
6d054a8e 923
924 if ($customSearchID) {
925 $newLinks[CRM_Core_Action::VIEW]['url'] = 'civicrm/contact/search/custom';
926 $newLinks[CRM_Core_Action::VIEW]['qs'] = "reset=1&force=1&ssID={$object->saved_search_id}";
6a488035 927 }
6d054a8e 928 }
6a488035 929
6d054a8e 930 $action = array_sum(array_keys($newLinks));
6a488035 931
6d054a8e 932 // CRM-9936
933 if (array_key_exists('is_reserved', $object)) {
934 //if group is reserved and I don't have reserved permission, suppress delete/edit
935 if ($object->is_reserved && !$reservedPermission) {
936 $action -= CRM_Core_Action::DELETE;
937 $action -= CRM_Core_Action::UPDATE;
938 $action -= CRM_Core_Action::DISABLE;
6a488035 939 }
6d054a8e 940 }
6a488035 941
6d054a8e 942 if (array_key_exists('is_active', $object)) {
943 if ($object->is_active) {
944 $action -= CRM_Core_Action::ENABLE;
6a488035 945 }
6d054a8e 946 else {
947 $values[$object->id]['class'][] = 'disabled';
948 $action -= CRM_Core_Action::VIEW;
949 $action -= CRM_Core_Action::DISABLE;
950 }
951 }
6a488035 952
6d054a8e 953 $action = $action & CRM_Core_Action::mask($groupPermissions);
6a488035 954
6d054a8e 955 $values[$object->id]['visibility'] = $visibility[$values[$object->id]['visibility']];
e3c75a92 956
6d054a8e 957 if (isset($values[$object->id]['group_type'])) {
958 $groupTypes = explode(CRM_Core_DAO::VALUE_SEPARATOR,
959 substr($values[$object->id]['group_type'], 1, -1)
6a488035 960 );
6d054a8e 961 $types = array();
962 foreach ($groupTypes as $type) {
963 $types[] = CRM_Utils_Array::value($type, $allTypes);
6a488035 964 }
6d054a8e 965 $values[$object->id]['group_type'] = implode(', ', $types);
966 }
967 $values[$object->id]['action'] = CRM_Core_Action::formLink($newLinks,
968 $action,
969 array(
970 'id' => $object->id,
971 'ssid' => $object->saved_search_id,
972 ),
973 ts('more'),
974 FALSE,
975 'group.selector.row',
976 'Group',
977 $object->id
978 );
6a488035 979
6d054a8e 980 // If group has children, add class for link to view children
981 $values[$object->id]['is_parent'] = FALSE;
982 if (array_key_exists('children', $values[$object->id])) {
983 $values[$object->id]['class'][] = "crm-group-parent";
984 $values[$object->id]['is_parent'] = TRUE;
985 }
6a488035 986
6d054a8e 987 // If group is a child, add child class
988 if (array_key_exists('parents', $values[$object->id])) {
989 $values[$object->id]['class'][] = "crm-group-child";
990 }
991
992 if ($groupOrg) {
993 if ($object->org_id) {
994 $contactUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$object->org_id}");
995 $values[$object->id]['org_info'] = "<a href='{$contactUrl}'>{$object->org_name}</a>";
6a488035
TO
996 }
997 else {
6d054a8e 998 $values[$object->id]['org_info'] = ''; // Empty cell
6a488035
TO
999 }
1000 }
6d054a8e 1001 else {
1002 $values[$object->id]['org_info'] = NULL; // Collapsed column if all cells are NULL
1003 }
1004 if ($object->created_id) {
1005 $contactUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$object->created_id}");
1006 $values[$object->id]['created_by'] = "<a href='{$contactUrl}'>{$object->created_by}</a>";
1007 }
6a488035 1008
01ef4db9 1009 // By default, we try to get a count of the contacts in each group
b804448d
JM
1010 // to display to the user on the Manage Group page. However, if
1011 // that will result in the cache being regenerated, then dipslay
1012 // "unknown" instead to avoid a long wait for the user.
1013 if (CRM_Contact_BAO_GroupContactCache::shouldGroupBeRefreshed($object->id)) {
a19f5834
JM
1014 $values[$object->id]['count'] = ts('unknown');
1015 }
1016 else {
a19f5834
JM
1017 $values[$object->id]['count'] = civicrm_api3('Contact', 'getcount', array('group' => $object->id));
1018 }
cbe32e2f
CW
1019 }
1020
1d19a8f2
CW
1021 // CRM-16905 - Sort by count cannot be done with sql
1022 if (!empty($params['sort']) && strpos($params['sort'], 'count') === 0) {
1023 usort($values, function($a, $b) {
1024 return $a['count'] - $b['count'];
1025 });
1026 if (strpos($params['sort'], 'desc')) {
1027 $values = array_reverse($values, TRUE);
1028 }
1029 return array_slice($values, $params['offset'], $params['rowCount']);
1030 }
1031
6a488035
TO
1032 return $values;
1033 }
1034
1035 /**
1036 * This function to get hierarchical list of groups (parent followed by children)
1037 *
77c5b619
TO
1038 * @param array $groupIDs
1039 * Array of group ids.
80ad33e7 1040 *
e60f24eb 1041 * @param NULL $parents
80ad33e7
EM
1042 * @param string $spacer
1043 * @param bool $titleOnly
f828fa2c 1044 *
80ad33e7 1045 * @return array
6a488035 1046 */
2da40d21 1047 public static function getGroupsHierarchy(
f828fa2c 1048 $groupIDs,
90d1fee5 1049 $parents = NULL,
6a488035
TO
1050 $spacer = '<span class="child-indent"></span>',
1051 $titleOnly = FALSE
90d1fee5 1052 ) {
f828fa2c
DL
1053 if (empty($groupIDs)) {
1054 return array();
1055 }
1056
1057 $groupIdString = '(' . implode(',', array_keys($groupIDs)) . ')';
90d1fee5 1058 // <span class="child-icon"></span>
1059 // need to return id, title (w/ spacer), description, visibility
1060
1061 // We need to build a list of tags ordered by hierarchy and sorted by
b44e3f84 1062 // name. The hierarchy will be communicated by an accumulation of
90d1fee5 1063 // separators in front of the name to give it a visual offset.
1064 // Instead of recursively making mysql queries, we'll make one big
b44e3f84 1065 // query and build the hierarchy with the algorithm below.
90d1fee5 1066 $groups = array();
1067 $args = array(1 => array($groupIdString, 'String'));
1068 $query = "
f828fa2c
DL
1069SELECT id, title, description, visibility, parents
1070FROM civicrm_group
1071WHERE id IN $groupIdString
1072";
90d1fee5 1073 if ($parents) {
b901b84e 1074 // group can have > 1 parent so parents may be comma separated list (eg. '1,2,5').
90d1fee5 1075 $parentArray = explode(',', $parents);
ea5f6013 1076 $parent = self::filterActiveGroups($parentArray);
90d1fee5 1077 $args[2] = array($parent, 'Integer');
1078 $query .= " AND SUBSTRING_INDEX(parents, ',', 1) = %2";
1079 }
1080 $query .= " ORDER BY title";
1081 $dao = CRM_Core_DAO::executeQuery($query, $args);
1082
1083 // Sort the groups into the correct storage by the parent
1084 // $roots represent the current leaf nodes that need to be checked for
1085 // children. $rows represent the unplaced nodes
f71d7bd3
JJ
1086 // $tree contains the child nodes based on their parent_id.
1087 $roots = array();
1088 $tree = array();
90d1fee5 1089 while ($dao->fetch()) {
f71d7bd3
JJ
1090 if ($dao->parents) {
1091 $parentArray = explode(',', $dao->parents);
ea5f6013 1092 $parent = self::filterActiveGroups($parentArray);
f71d7bd3 1093 $tree[$parent][] = array(
90d1fee5 1094 'id' => $dao->id,
21dfd5f5 1095 'title' => $dao->title,
f71d7bd3
JJ
1096 'visibility' => $dao->visibility,
1097 'description' => $dao->description,
90d1fee5 1098 );
8f658465
JJ
1099 }
1100 else {
6bb7acc4 1101 $roots[] = array(
90d1fee5 1102 'id' => $dao->id,
90d1fee5 1103 'title' => $dao->title,
f71d7bd3
JJ
1104 'visibility' => $dao->visibility,
1105 'description' => $dao->description,
90d1fee5 1106 );
1107 }
1108 }
1109 $dao->free();
90d1fee5 1110
f71d7bd3 1111 $hierarchy = array();
8f658465 1112 for ($i = 0; $i < count($roots); $i++) {
f71d7bd3 1113 self::buildGroupHierarchy($hierarchy, $roots[$i], $tree, $titleOnly, $spacer, 0);
90d1fee5 1114 }
f71d7bd3
JJ
1115 return $hierarchy;
1116 }
90d1fee5 1117
f71d7bd3
JJ
1118 /**
1119 * Build a list with groups on alphabetical order and child groups after the parent group.
1120 *
1121 * This is a recursive function filling the $hierarchy parameter.
1122 *
1123 * @param $hierarchy
1124 * @param $group
1125 * @param $tree
1126 * @param $titleOnly
1127 * @param $spacer
1128 * @param $level
1129 */
1130 private static function buildGroupHierarchy(&$hierarchy, $group, $tree, $titleOnly, $spacer, $level) {
1131 $spaces = str_repeat($spacer, $level);
1132
1133 if ($titleOnly) {
1134 $hierarchy[$group['id']] = $spaces . $group['title'];
90d1fee5 1135 }
f71d7bd3
JJ
1136 else {
1137 $hierarchy[$group['id']] = array(
8f658465 1138 'title' => $spaces . $group['title'],
f71d7bd3
JJ
1139 'description' => $group['description'],
1140 'visibility' => $group['visibility'],
1141 );
90d1fee5 1142 }
1143
f71d7bd3
JJ
1144 // For performance reasons we use a for loop rather than a foreach.
1145 // Metrics for performance in an installation with 2867 groups a foreach
1146 // caused the function getGroupsHierarchy with a foreach execution takes
1147 // around 2.2 seoonds (2,200 ms).
1148 // Changing to a for loop execustion takes around 0.02 seconds (20 ms).
d10c0875
JJ
1149 if (isset($tree[$group['id']]) && is_array($tree[$group['id']])) {
1150 for ($i = 0; $i < count($tree[$group['id']]); $i++) {
cca81cba 1151 self::buildGroupHierarchy($hierarchy, $tree[$group['id']][$i], $tree, $titleOnly, $spacer, $level + 1);
d10c0875 1152 }
f71d7bd3 1153 }
6a488035
TO
1154 }
1155
86538308 1156 /**
c490a46a 1157 * @param array $params
86538308 1158 *
e60f24eb 1159 * @return NULL|string
86538308 1160 */
00be9182 1161 public static function getGroupCount(&$params) {
6a488035
TO
1162 $whereClause = self::whereClause($params, FALSE);
1163 $query = "SELECT COUNT(*) FROM civicrm_group groups";
1164
a7488080 1165 if (!empty($params['created_by'])) {
6a488035
TO
1166 $query .= "
1167INNER JOIN civicrm_contact createdBy
1168 ON createdBy.id = groups.created_id";
1169 }
1170 $query .= "
1171WHERE {$whereClause}";
1172 return CRM_Core_DAO::singleValueQuery($query, $params);
1173 }
1174
47c89d6b 1175 /**
fe482240 1176 * Generate permissioned where clause for group search.
c490a46a 1177 * @param array $params
47c89d6b
EM
1178 * @param bool $sortBy
1179 * @param bool $excludeHidden
1180 *
1181 * @return string
1182 */
00be9182 1183 public static function whereClause(&$params, $sortBy = TRUE, $excludeHidden = TRUE) {
6a488035 1184 $values = array();
6a488035
TO
1185 $title = CRM_Utils_Array::value('title', $params);
1186 if ($title) {
1187 $clauses[] = "groups.title LIKE %1";
1188 if (strpos($title, '%') !== FALSE) {
1189 $params[1] = array($title, 'String', FALSE);
1190 }
1191 else {
1192 $params[1] = array($title, 'String', TRUE);
1193 }
1194 }
1195
1196 $groupType = CRM_Utils_Array::value('group_type', $params);
1197 if ($groupType) {
1198 $types = explode(',', $groupType);
1199 if (!empty($types)) {
353ffa53 1200 $clauses[] = 'groups.group_type LIKE %2';
6a488035 1201 $typeString = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $types) . CRM_Core_DAO::VALUE_SEPARATOR;
353ffa53 1202 $params[2] = array($typeString, 'String', TRUE);
6a488035
TO
1203 }
1204 }
1205
1206 $visibility = CRM_Utils_Array::value('visibility', $params);
1207 if ($visibility) {
1208 $clauses[] = 'groups.visibility = %3';
1209 $params[3] = array($visibility, 'String');
1210 }
1211
1212 $groupStatus = CRM_Utils_Array::value('status', $params);
1213 if ($groupStatus) {
1214 switch ($groupStatus) {
1215 case 1:
1216 $clauses[] = 'groups.is_active = 1';
1217 $params[4] = array($groupStatus, 'Integer');
1218 break;
1219
1220 case 2:
1221 $clauses[] = 'groups.is_active = 0';
1222 $params[4] = array($groupStatus, 'Integer');
1223 break;
1224
1225 case 3:
1226 $clauses[] = '(groups.is_active = 0 OR groups.is_active = 1 )';
1227 break;
1228 }
1229 }
1230
1231 $parentsOnly = CRM_Utils_Array::value('parentsOnly', $params);
1232 if ($parentsOnly) {
1233 $clauses[] = 'groups.parents IS NULL';
1234 }
1235
1236 // only show child groups of a specific parent group
1237 $parent_id = CRM_Utils_Array::value('parent_id', $params);
1238 if ($parent_id) {
1239 $clauses[] = 'groups.id IN (SELECT child_group_id FROM civicrm_group_nesting WHERE parent_group_id = %5)';
1240 $params[5] = array($parent_id, 'Integer');
1241 }
1242
1243 if ($createdBy = CRM_Utils_Array::value('created_by', $params)) {
1244 $clauses[] = "createdBy.sort_name LIKE %6";
1245 if (strpos($createdBy, '%') !== FALSE) {
1246 $params[6] = array($createdBy, 'String', FALSE);
1247 }
1248 else {
1249 $params[6] = array($createdBy, 'String', TRUE);
1250 }
1251 }
1252
6a488035
TO
1253 if (empty($clauses)) {
1254 $clauses[] = 'groups.is_active = 1';
1255 }
1256
1257 if ($excludeHidden) {
1258 $clauses[] = 'groups.is_hidden = 0';
1259 }
33421d01 1260
aaac0e0b 1261 $clauses[] = self::getPermissionClause();
6a488035
TO
1262
1263 return implode(' AND ', $clauses);
1264 }
1265
1266 /**
fe482240 1267 * Define action links.
6a488035 1268 *
a6c01b45
CW
1269 * @return array
1270 * array of action links
6a488035 1271 */
00be9182 1272 public static function actionLinks() {
6a488035
TO
1273 $links = array(
1274 CRM_Core_Action::VIEW => array(
1275 'name' => ts('Contacts'),
1276 'url' => 'civicrm/group/search',
1277 'qs' => 'reset=1&force=1&context=smog&gid=%%id%%',
1278 'title' => ts('Group Contacts'),
1279 ),
1280 CRM_Core_Action::UPDATE => array(
1281 'name' => ts('Settings'),
1282 'url' => 'civicrm/group',
1283 'qs' => 'reset=1&action=update&id=%%id%%',
1284 'title' => ts('Edit Group'),
1285 ),
1286 CRM_Core_Action::DISABLE => array(
1287 'name' => ts('Disable'),
4d17a233 1288 'ref' => 'crm-enable-disable',
6a488035
TO
1289 'title' => ts('Disable Group'),
1290 ),
1291 CRM_Core_Action::ENABLE => array(
1292 'name' => ts('Enable'),
4d17a233 1293 'ref' => 'crm-enable-disable',
6a488035
TO
1294 'title' => ts('Enable Group'),
1295 ),
1296 CRM_Core_Action::DELETE => array(
1297 'name' => ts('Delete'),
1298 'url' => 'civicrm/group',
1299 'qs' => 'reset=1&action=delete&id=%%id%%',
1300 'title' => ts('Delete Group'),
1301 ),
1302 );
1303
1304 return $links;
1305 }
1306
86538308
EM
1307 /**
1308 * @param $whereClause
100fef9d 1309 * @param array $whereParams
86538308
EM
1310 *
1311 * @return string
1312 */
00be9182 1313 public function pagerAtoZ($whereClause, $whereParams) {
6a488035
TO
1314 $query = "
1315 SELECT DISTINCT UPPER(LEFT(groups.title, 1)) as sort_name
1316 FROM civicrm_group groups
1317 WHERE $whereClause
1318 ORDER BY LEFT(groups.title, 1)
1319 ";
1320 $dao = CRM_Core_DAO::executeQuery($query, $whereParams);
1321
1322 return CRM_Utils_PagerAToZ::getAToZBar($dao, $this->_sortByCharacter, TRUE);
1323 }
96025800 1324
c955c26c
SL
1325 /**
1326 * Assign Test Value.
1327 *
1328 * @param string $fieldName
1329 * @param array $fieldDef
1330 * @param int $counter
1331 */
1332 protected function assignTestValue($fieldName, &$fieldDef, $counter) {
94183dd6 1333 if ($fieldName == 'children' || $fieldName == 'parents') {
c955c26c
SL
1334 $this->{$fieldName} = "NULL";
1335 }
1336 else {
94183dd6 1337 parent::assignTestValues($fieldName, $fieldDef, $counter);
c955c26c
SL
1338 }
1339 }
1340
883e1e76 1341 /**
1342 * Get child group ids
1343 *
783144b0 1344 * @param array $regularGroupIDs
883e1e76 1345 * Parent Group IDs
1346 *
1347 * @return array
1348 */
783144b0 1349 public static function getChildGroupIds($regularGroupIDs) {
1350 $childGroupIDs = array();
1351
1352 foreach ($regularGroupIDs as $regularGroupID) {
1353 // temporary store the child group ID(s) of regular group identified by $id,
1354 // later merge with main child group array
1355 $tempChildGroupIDs = array();
1356 // check that the regular group has any child group, if not then continue
1357 if ($childrenFound = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $regularGroupID, 'children')) {
1358 $tempChildGroupIDs[] = $childrenFound;
1359 }
1360 else {
1361 continue;
1362 }
1363 // as civicrm_group.children stores multiple group IDs in comma imploded string format,
1364 // so we need to convert it into array of child group IDs first
1365 $tempChildGroupIDs = explode(',', implode(',', $tempChildGroupIDs));
1366 $childGroupIDs = array_merge($childGroupIDs, $tempChildGroupIDs);
1367 // recursively fetch the child group IDs
1368 while (count($tempChildGroupIDs)) {
1369 $tempChildGroupIDs = self::getChildGroupIds($tempChildGroupIDs);
1370 if (count($tempChildGroupIDs)) {
1371 $childGroupIDs = array_merge($childGroupIDs, $tempChildGroupIDs);
1372 }
883e1e76 1373 }
1374 }
1375
783144b0 1376 return $childGroupIDs;
883e1e76 1377 }
1378
ea5f6013
E
1379 /**
1380 * Check parent groups and filter out the disabled ones.
1381 *
1382 * @param array $parentArray
1383 * Array of group Ids.
1384 *
1385 * @return int
1386 */
1387 public static function filterActiveGroups($parentArray) {
1388 if (count($parentArray) > 1) {
b4957876 1389 $result = civicrm_api3('Group', 'get', array(
1390 'id' => array('IN' => $parentArray),
1391 'is_active' => TRUE,
1392 'return' => 'id',
1393 ));
1394 $activeParentGroupIDs = CRM_Utils_Array::collect('id', $result['values']);
1395 foreach ($parentArray as $key => $groupID) {
1396 if (!array_key_exists($groupID, $activeParentGroupIDs)) {
ea5f6013
E
1397 unset($parentArray[$key]);
1398 }
1399 }
1400 }
b4957876 1401
ea5f6013
E
1402 return reset($parentArray);
1403 }
1404
6a488035 1405}