Various phpdoc fixes
[civicrm-core.git] / CRM / Contact / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
5a409b50 19 * This class generates form components for search-result tasks.
6a488035 20 */
31aaf096 21class CRM_Contact_Form_Task extends CRM_Core_Form_Task {
6a488035
TO
22
23 /**
100fef9d 24 * The task being performed
6a488035
TO
25 *
26 * @var int
27 */
28 protected $_task;
29
30 /**
31 * The array that holds all the contact ids
32 *
33 * @var array
34 */
35 public $_contactIds;
36
37 /**
38 * The array that holds all the contact types
39 *
40 * @var array
41 */
42 public $_contactTypes;
43
44 /**
45 * The additional clause that we restrict the search with
46 *
47 * @var string
48 */
49 protected $_componentClause = NULL;
50
51 /**
52 * The name of the temp table where we store the contact IDs
53 *
54 * @var string
55 */
56 protected $_componentTable = NULL;
57
58 /**
59 * The array that holds all the component ids
60 *
61 * @var array
62 */
63 protected $_componentIds;
64
65 /**
66 * This includes the submitted values of the search form
69078420 67 * @var array
6a488035
TO
68 */
69 static protected $_searchFormValues;
70
71 /**
d8689418 72 * Build all the data structures needed to build the form.
8ef12e64 73 */
00be9182 74 public function preProcess() {
6a488035
TO
75 self::preProcessCommon($this);
76 }
77
86538308 78 /**
d8689418
EM
79 * Common pre-processing function.
80 *
986ac53f 81 * @param \CRM_Core_Form_Task $form
a0174743
MW
82 *
83 * @throws \CRM_Core_Exception
86538308 84 */
2b089ce1 85 public static function preProcessCommon(&$form) {
be2fb01f
CW
86 $form->_contactIds = [];
87 $form->_contactTypes = [];
6a488035 88
8fccc8a2 89 $isStandAlone = in_array('task', $form->urlPath) || in_array('standalone', $form->urlPath) || in_array('map', $form->urlPath);
061ff68c 90 if ($isStandAlone) {
986ac53f 91 [$form->_task, $title] = CRM_Contact_Task::getTaskAndTitleByClass(get_class($form));
061ff68c 92 if (!array_key_exists($form->_task, CRM_Contact_Task::permissionedTaskTitles(CRM_Core_Permission::getPermission()))) {
f2774867 93 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
061ff68c 94 }
78b22ce9 95 $form->_contactIds = explode(',', CRM_Utils_Request::retrieve('cids', 'CommaSeparatedIntegers', $form, TRUE));
061ff68c 96 if (empty($form->_contactIds)) {
6bc234fa 97 CRM_Core_Error::statusBounce(ts('No Contacts Selected'));
061ff68c 98 }
99 $form->setTitle($title);
100 }
101
6a488035
TO
102 // get the submitted values of the search form
103 // we'll need to get fv from either search or adv search in the future
104 $fragment = 'search';
105 if ($form->_action == CRM_Core_Action::ADVANCED) {
6a488035
TO
106 $fragment .= '/advanced';
107 }
108 elseif ($form->_action == CRM_Core_Action::PROFILE) {
6a488035
TO
109 $fragment .= '/builder';
110 }
111 elseif ($form->_action == CRM_Core_Action::COPY) {
6a488035
TO
112 $fragment .= '/custom';
113 }
986ac53f 114 if (!$isStandAlone) {
2d09a0c3 115 self::$_searchFormValues = $form->getSearchFormValues();
6a488035
TO
116 }
117
118 //set the user context for redirection of task actions
119 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
120 $urlParams = 'force=1';
121 if (CRM_Utils_Rule::qfKey($qfKey)) {
122 $urlParams .= "&qfKey=$qfKey";
123 }
124
6a488035
TO
125 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $urlParams);
126 $session = CRM_Core_Session::singleton();
127 $session->replaceUserContext($url);
128
986ac53f 129 $cacheKey = "civicrm search {$qfKey}";
130
9c1bc317 131 $form->_task = self::$_searchFormValues['task'] ?? NULL;
6a488035 132
6a488035
TO
133 // all contacts or action = save a search
134 if ((CRM_Utils_Array::value('radio_ts', self::$_searchFormValues) == 'ts_all') ||
135 ($form->_task == CRM_Contact_Task::SAVE_SEARCH)
136 ) {
66ceb5d9 137 // since we don't store all contacts in prevnextcache, when user selects "all" use query to retrieve contacts
8e1a7c71 138 // rather than prevnext cache table for most of the task actions except export where we rebuild query to fetch
139 // final result set
c32592e1 140 $allCids[$cacheKey] = self::legacyGetContactIds($form);
6a488035 141
be2fb01f 142 $form->_contactIds = [];
239d4cf8 143 if (empty($form->_contactIds)) {
6a488035
TO
144 // filter duplicates here
145 // CRM-7058
146 // might be better to do this in the query, but that logic is a bit complex
147 // and it decides when to use distinct based on input criteria, which needs
148 // to be fixed and optimized.
149
150 foreach ($allCids[$cacheKey] as $cid => $ignore) {
151 $form->_contactIds[] = $cid;
152 }
153 }
154 }
155 elseif (CRM_Utils_Array::value('radio_ts', self::$_searchFormValues) == 'ts_sel') {
156 // selected contacts only
157 // need to perform action on only selected contacts
be2fb01f 158 $insertString = [];
6a488035 159
b44e3f84 160 // refire sql in case of custom search
6a488035
TO
161 if ($form->_action == CRM_Core_Action::COPY) {
162 // selected contacts only
163 // need to perform action on only selected contacts
164 foreach (self::$_searchFormValues as $name => $value) {
165 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
239d4cf8 166 $form->_contactIds[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
6a488035
TO
167 }
168 }
169 }
170 else {
5d272ea2 171 // fetching selected contact ids of passed cache key
b7994703 172 $selectedCids = Civi::service('prevnext')->getSelection($cacheKey);
5d272ea2 173 foreach ($selectedCids[$cacheKey] as $selectedCid => $ignore) {
239d4cf8 174 $form->_contactIds[] = $selectedCid;
6a488035
TO
175 }
176 }
8ef12e64 177
6a488035
TO
178 if (!empty($insertString)) {
179 $string = implode(',', $insertString);
180 $sql = "REPLACE INTO {$form->_componentTable} ( contact_id ) VALUES $string";
181 CRM_Core_DAO::executeQuery($sql);
182 }
183 }
184
185 //contact type for pick up profiles as per selected contact types with subtypes
186 //CRM-5521
187 if ($selectedTypes = CRM_Utils_Array::value('contact_type', self::$_searchFormValues)) {
188 if (!is_array($selectedTypes)) {
189 $selectedTypes = explode(' ', $selectedTypes);
190 }
191 foreach ($selectedTypes as $ct => $dontcare) {
192 if (strpos($ct, CRM_Core_DAO::VALUE_SEPARATOR) === FALSE) {
193 $form->_contactTypes[] = $ct;
194 }
195 else {
196 $separator = strpos($ct, CRM_Core_DAO::VALUE_SEPARATOR);
197 $form->_contactTypes[] = substr($ct, $separator + 1);
198 }
199 }
200 }
201
6a488035 202 if (CRM_Utils_Array::value('radio_ts', self::$_searchFormValues) == 'ts_sel'
5d272ea2 203 && ($form->_action != CRM_Core_Action::COPY)
204 ) {
9c1bc317 205 $sel = self::$_searchFormValues['radio_ts'] ?? NULL;
5d272ea2 206 $form->assign('searchtype', $sel);
0dbe04b1 207 $result = self::getSelectedContactNames();
6a488035
TO
208 $form->assign("value", $result);
209 }
8ef12e64 210
6a488035
TO
211 if (!empty($form->_contactIds)) {
212 $form->_componentClause = ' contact_a.id IN ( ' . implode(',', $form->_contactIds) . ' ) ';
213 $form->assign('totalSelectedContacts', count($form->_contactIds));
214
215 $form->_componentIds = $form->_contactIds;
216 }
217 }
218
219 /**
fe9b66c1
MW
220 * Get the contact ids for:
221 * - "Select Records: All xx records"
222 * - custom search (FIXME: does this still apply to custom search?).
223 * When we call this function we are not using the prev/next cache
d8689418 224 *
c32592e1
EM
225 * We've started to try to move away from these functions
226 * being static. Probably we need to convert the export forms
227 * to use a trait based approach. For now this is renamed to
228 * permit the use of a non-static function with this name
229 *
a2f24340 230 * @param CRM_Core_Form_Task $form
fe9b66c1
MW
231 *
232 * @return array $contactIds
6a488035 233 */
c32592e1 234 protected static function legacyGetContactIds($form) {
6a488035
TO
235 // need to perform action on all contacts
236 // fire the query again and get the contact id's + display name
237 $sortID = NULL;
fe9b66c1
MW
238 if ($form->get(CRM_Utils_Sort::SORT_ID)) {
239 $sortID = CRM_Utils_Sort::sortIDValue($form->get(CRM_Utils_Sort::SORT_ID),
240 $form->get(CRM_Utils_Sort::SORT_DIRECTION)
6a488035
TO
241 );
242 }
243
fe9b66c1 244 $selectorName = $form->controller->selectorName();
6a488035 245
fe9b66c1
MW
246 $fv = $form->get('formValues');
247 $customClass = $form->get('customSearchClass');
6a488035
TO
248 $returnProperties = CRM_Core_BAO_Mapping::returnProperties(self::$_searchFormValues);
249
5d272ea2 250 $selector = new $selectorName($customClass, $fv, NULL, $returnProperties);
6a488035 251
fe9b66c1 252 $params = $form->get('queryParams');
6a488035
TO
253
254 // fix for CRM-5165
fe9b66c1 255 $sortByCharacter = $form->get('sortByCharacter');
a7cddb8c 256 if ($sortByCharacter && $sortByCharacter != 1) {
be2fb01f 257 $params[] = ['sortByCharacter', '=', $sortByCharacter, 0, 0];
6a488035 258 }
fe9b66c1 259 $queryOperator = $form->get('queryOperator');
6a488035
TO
260 if (!$queryOperator) {
261 $queryOperator = 'AND';
262 }
ae066a2b 263 $dao = $selector->contactIDQuery($params, $sortID,
5d272ea2 264 CRM_Utils_Array::value('display_relationship_type', $fv),
6a488035
TO
265 $queryOperator
266 );
267
be2fb01f 268 $contactIds = [];
5d272ea2 269 while ($dao->fetch()) {
6a488035
TO
270 $contactIds[$dao->contact_id] = $dao->contact_id;
271 }
272
273 return $contactIds;
274 }
275
6a488035 276 /**
ee0ce2ef 277 * Set default values for the form. Relationship that in edit/view action.
6a488035 278 *
ee0ce2ef 279 * The default values are retrieved from the database.
6a488035 280 *
e2046b33 281 * @return array
6a488035 282 */
00be9182 283 public function setDefaultValues() {
be2fb01f 284 $defaults = [];
6a488035
TO
285 return $defaults;
286 }
287
288 /**
57507ae6 289 * Add the rules for form.
6a488035 290 */
00be9182 291 public function addRules() {
5d272ea2 292 }
6a488035
TO
293
294 /**
5c9ff055 295 * Build the form object.
6a488035
TO
296 */
297 public function buildQuickForm() {
298 $this->addDefaultButtons(ts('Confirm Action'));
299 }
300
301 /**
ee0ce2ef 302 * Process the form after the input has been submitted and validated.
6a488035 303 */
5d272ea2 304 public function postProcess() {
305 }
306
6a488035 307 /**
57507ae6
EM
308 * Simple shell that derived classes can call to add form buttons.
309 *
310 * Allows customized title for the main Submit
6a488035 311 *
77c5b619
TO
312 * @param string $title
313 * Title of the main button.
314 * @param string $nextType
315 * Button type for the form after processing.
77b97be7
EM
316 * @param string $backType
317 * @param bool $submitOnce
6a488035 318 */
00be9182 319 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f 320 $this->addButtons([
69078420
SL
321 [
322 'type' => $nextType,
323 'name' => $title,
324 'isDefault' => TRUE,
325 ],
326 [
327 'type' => $backType,
328 'name' => ts('Cancel'),
329 'icon' => 'fa-times',
330 ],
331 ]);
6a488035 332 }
57884c26
DJ
333
334 /**
100fef9d 335 * Replace ids of household members in $this->_contactIds with the id of their household.
57884c26 336 *
0e480632 337 * @see https://issues.civicrm.org/jira/browse/CRM-8338
57884c26
DJ
338 */
339 public function mergeContactIdsByHousehold() {
340 if (empty($this->_contactIds)) {
341 return;
342 }
343
344 $contactRelationshipTypes = CRM_Contact_BAO_Relationship::getContactRelationshipType(
345 NULL,
346 NULL,
347 NULL,
348 NULL,
349 TRUE,
350 'name',
351 FALSE
352 );
353
354 // Get Head of Household & Household Member relationships
355 $relationKeyMOH = CRM_Utils_Array::key('Household Member of', $contactRelationshipTypes);
356 $relationKeyHOH = CRM_Utils_Array::key('Head of Household for', $contactRelationshipTypes);
be2fb01f 357 $householdRelationshipTypes = [
57884c26
DJ
358 $relationKeyMOH => $contactRelationshipTypes[$relationKeyMOH],
359 $relationKeyHOH => $contactRelationshipTypes[$relationKeyHOH],
be2fb01f 360 ];
57884c26
DJ
361
362 $relID = implode(',', $this->_contactIds);
363
364 foreach ($householdRelationshipTypes as $rel => $dnt) {
365 list($id, $direction) = explode('_', $rel, 2);
366 // identify the relationship direction
367 $contactA = 'contact_id_a';
368 $contactB = 'contact_id_b';
369 if ($direction == 'b_a') {
370 $contactA = 'contact_id_b';
371 $contactB = 'contact_id_a';
372 }
373
374 // Find related households.
353ffa53 375 $relationSelect = "SELECT contact_household.id as household_id, {$contactA} as refContact ";
57884c26
DJ
376 $relationFrom = " FROM civicrm_contact contact_household
377 INNER JOIN civicrm_relationship crel ON crel.{$contactB} = contact_household.id AND crel.relationship_type_id = {$id} ";
378
379 // Check for active relationship status only.
353ffa53
TO
380 $today = date('Ymd');
381 $relationActive = " AND (crel.is_active = 1 AND ( crel.end_date is NULL OR crel.end_date >= {$today} ) )";
382 $relationWhere = " WHERE contact_household.is_deleted = 0 AND crel.{$contactA} IN ( {$relID} ) {$relationActive}";
0ee5581e 383 $relationGroupBy = " GROUP BY crel.{$contactA}, contact_household.id";
57884c26
DJ
384 $relationQueryString = "$relationSelect $relationFrom $relationWhere $relationGroupBy";
385
386 $householdsDAO = CRM_Core_DAO::executeQuery($relationQueryString);
387 while ($householdsDAO->fetch()) {
388 // Remove contact's id from $this->_contactIds and replace with their household's id.
389 foreach (array_keys($this->_contactIds, $householdsDAO->refContact) as $idKey) {
390 unset($this->_contactIds[$idKey]);
391 }
392 if (!in_array($householdsDAO->household_id, $this->_contactIds)) {
393 $this->_contactIds[] = $householdsDAO->household_id;
394 }
395 }
57884c26 396 }
31fd348d
AS
397
398 // If contact list has changed, households will probably be at the end of
399 // the list. Sort it again by sort_name.
400 if (implode(',', $this->_contactIds) != $relID) {
be2fb01f
CW
401 $result = civicrm_api3('Contact', 'get', [
402 'return' => ['id'],
403 'id' => ['IN' => $this->_contactIds],
404 'options' => [
31fd348d 405 'limit' => 0,
351b2dd9 406 'sort' => "sort_name",
be2fb01f
CW
407 ],
408 ]);
31fd348d
AS
409 $this->_contactIds = array_keys($result['values']);
410 }
57884c26 411 }
96025800 412
0dbe04b1
TO
413 /**
414 * @return array
415 * List of contact names.
416 * NOTE: These are raw values from the DB. In current data-model, that means
417 * they are pre-encoded HTML.
418 */
419 private static function getSelectedContactNames() {
420 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String');
421 $cacheKey = "civicrm search {$qfKey}";
422
be2fb01f 423 $cids = [];
0dbe04b1
TO
424 // Gymanstic time!
425 foreach (Civi::service('prevnext')->getSelection($cacheKey) as $cacheKey => $values) {
426 $cids = array_unique(array_merge($cids, array_keys($values)));
427 }
428
429 $result = CRM_Utils_SQL_Select::from('civicrm_contact')
430 ->where('id IN (#cids)', ['cids' => $cids])
431 ->execute()
432 ->fetchMap('id', 'sort_name');
433 return $result;
434 }
435
36c74cd6
TO
436 /**
437 * Given this task's list of targets, produce a hidden group.
438 *
439 * @return array
440 * Array(0 => int $groupID, 1 => int|NULL $ssID).
441 * @throws Exception
442 */
443 public function createHiddenGroup() {
444 // Did the user select "All" matches or cherry-pick a few records?
445 $searchParams = $this->controller->exportValues();
446 if ($searchParams['radio_ts'] == 'ts_sel') {
447 // Create a static group.
69078420
SL
448 // groups require a unique name
449 $randID = md5(time() . rand(1, 1000));
36c74cd6
TO
450 $grpTitle = "Hidden Group {$randID}";
451 $grpID = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $grpTitle, 'id', 'title');
452
453 if (!$grpID) {
be2fb01f 454 $groupParams = [
36c74cd6
TO
455 'title' => $grpTitle,
456 'is_active' => 1,
457 'is_hidden' => 1,
be2fb01f
CW
458 'group_type' => ['2' => 1],
459 ];
36c74cd6
TO
460
461 $group = CRM_Contact_BAO_Group::create($groupParams);
462 $grpID = $group->id;
463
464 CRM_Contact_BAO_GroupContact::addContactsToGroup($this->_contactIds, $group->id);
465
466 $newGroupTitle = "Hidden Group {$grpID}";
be2fb01f 467 $groupParams = [
36c74cd6
TO
468 'id' => $grpID,
469 'name' => CRM_Utils_String::titleToVar($newGroupTitle),
470 'title' => $newGroupTitle,
be2fb01f
CW
471 'group_type' => ['2' => 1],
472 ];
5ab8fe4a 473 CRM_Contact_BAO_Group::create($groupParams);
36c74cd6
TO
474 }
475
476 // note at this point its a static group
be2fb01f 477 return [$grpID, NULL];
36c74cd6
TO
478 }
479 else {
480 // Create a smart group.
36c74cd6 481 $ssId = $this->get('ssID');
be2fb01f
CW
482 $hiddenSmartParams = [
483 'group_type' => ['2' => 1],
d1249113 484 // queryParams have been preprocessed esp WRT any entity reference fields - see +
485 // https://github.com/civicrm/civicrm-core/pull/13250
93287bd4 486 // Advanced search sets queryParams, for builder you need formValues.
487 // This is kinda fragile but .... see CRM_Mailing_Form_Task_AdhocMailingTest for test effort.
488 // Moral never touch anything ever again and the house of cards will stand tall, unless there is a breeze
af7e94a6 489 'form_values' => $this->get('isSearchBuilder') ? $this->get('formValues') : $this->get('queryParams'),
36c74cd6
TO
490 'saved_search_id' => $ssId,
491 'search_custom_id' => $this->get('customSearchID'),
492 'search_context' => $this->get('context'),
be2fb01f 493 ];
36c74cd6
TO
494
495 list($smartGroupId, $savedSearchId) = CRM_Contact_BAO_Group::createHiddenSmartGroup($hiddenSmartParams);
be2fb01f 496 return [$smartGroupId, $savedSearchId];
36c74cd6
TO
497 }
498
499 }
500
6a488035 501}