ScheduledJob cleanup, remove unused var
[civicrm-core.git] / CRM / Activity / Selector / Search.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/**
3819f101 19 * This class is used to retrieve and display a range of contacts that match the given criteria.
6a488035 20 *
3819f101 21 * Specifically for results of advanced search options.
6a488035
TO
22 */
23class CRM_Activity_Selector_Search extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
24
25 /**
26 * This defines two actions- View and Edit.
27 *
28 * @var array
6a488035 29 */
62d3ee27 30 public static $_links = NULL;
6a488035
TO
31
32 /**
100fef9d 33 * We use desc to remind us what that column is, name is used in the tpl
6a488035
TO
34 *
35 * @var array
6a488035 36 */
62d3ee27 37 public static $_columnHeaders;
6a488035
TO
38
39 /**
40 * Properties of contact we're interested in displaying
41 * @var array
6a488035
TO
42 */
43
62d3ee27 44 public static $_properties = [
6a488035
TO
45 'contact_id',
46 'contact_type',
47 'contact_sub_type',
48 'sort_name',
49 'display_name',
50 'activity_id',
51 'activity_date_time',
52 'activity_status_id',
53 'activity_status',
54 'activity_subject',
6a488035 55 'source_record_id',
6a488035
TO
56 'activity_type_id',
57 'activity_type',
58 'activity_is_test',
59 'activity_campaign_id',
60 'activity_engagement_level',
be2fb01f 61 ];
6a488035
TO
62
63 /**
fe482240 64 * Are we restricting ourselves to a single contact.
6a488035 65 *
d51c6add 66 * @var bool
6a488035
TO
67 */
68 protected $_single = FALSE;
69
70 /**
fe482240 71 * Are we restricting ourselves to a single contact.
6a488035 72 *
d51c6add 73 * @var bool
6a488035
TO
74 */
75 protected $_limit = NULL;
76
77 /**
fe482240 78 * What context are we being invoked from.
6a488035 79 *
6a488035
TO
80 * @var string
81 */
82 protected $_context = NULL;
83
84 /**
fe482240 85 * What component context are we being invoked from.
6a488035 86 *
6a488035
TO
87 * @var string
88 */
89 protected $_compContext = NULL;
90
91 /**
fe482240 92 * QueryParams is the array returned by exportValues called on.
6a488035
TO
93 * the HTML_QuickForm_Controller for that page.
94 *
95 * @var array
6a488035
TO
96 */
97 public $_queryParams;
98
99 /**
fe482240 100 * Represent the type of selector.
6a488035
TO
101 *
102 * @var int
6a488035
TO
103 */
104 protected $_action;
105
106 /**
fe482240 107 * The additional clause that we restrict the search with.
6a488035
TO
108 *
109 * @var string
110 */
111 protected $_activityClause = NULL;
112
113 /**
fe482240 114 * The query object.
6a488035 115 *
c2a377b1 116 * @var \CRM_Contact_BAO_Query
6a488035
TO
117 */
118 protected $_query;
119
120 /**
fe482240 121 * Class constructor.
6a488035 122 *
041ab3d1
TO
123 * @param array $queryParams
124 * Array of parameters for query.
dd244018 125 * @param \const|int $action - action of search basic or advanced.
041ab3d1
TO
126 * @param string $activityClause
127 * If the caller wants to further restrict the search (used in activities).
128 * @param bool $single
129 * Are we dealing only with one contact?.
130 * @param int $limit
131 * How many activities do we want returned.
6a488035 132 *
dd244018
EM
133 * @param string $context
134 * @param null $compContext
135 *
136 * @return \CRM_Activity_Selector_Search
6a488035 137 */
2da40d21 138 public function __construct(
9d5494f7 139 &$queryParams,
32864ccf 140 $action = CRM_Core_Action::NONE,
6a488035 141 $activityClause = NULL,
32864ccf
TO
142 $single = FALSE,
143 $limit = NULL,
144 $context = 'search',
145 $compContext = NULL
6a488035
TO
146 ) {
147 // submitted form values
148 $this->_queryParams = &$queryParams;
149
353ffa53
TO
150 $this->_single = $single;
151 $this->_limit = $limit;
152 $this->_context = $context;
6a488035
TO
153 $this->_compContext = $compContext;
154
155 $this->_activityClause = $activityClause;
156
157 // type of selector
158 $this->_action = $action;
159 $this->_query = new CRM_Contact_BAO_Query($this->_queryParams,
7bd16b05 160 CRM_Activity_BAO_Query::selectorReturnProperties(),
6a488035
TO
161 NULL, FALSE, FALSE,
162 CRM_Contact_BAO_Query::MODE_ACTIVITY
163 );
164 $this->_query->_distinctComponentClause = '( civicrm_activity.id )';
165 $this->_query->_groupByComponentClause = " GROUP BY civicrm_activity.id ";
6a488035 166 }
6a488035
TO
167
168 /**
100fef9d 169 * Getter for array of the parameters required for creating pager.
6a488035 170 *
da6b46f4 171 * @param $action
c490a46a 172 * @param array $params
6a488035 173 */
00be9182 174 public function getPagerParams($action, &$params) {
6a488035
TO
175 $params['status'] = ts('Activities %%StatusMessage%%');
176 $params['csvString'] = NULL;
177 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
178 $params['buttonTop'] = 'PagerTopButton';
179 $params['buttonBottom'] = 'PagerBottomButton';
180 }
6a488035
TO
181
182 /**
183 * Returns total number of rows for the query.
184 *
2e2605fe 185 * @param string $action
6a488035 186 *
a6c01b45
CW
187 * @return int
188 * Total number of rows
6a488035 189 */
00be9182 190 public function getTotalCount($action) {
6a488035
TO
191 return $this->_query->searchQuery(0, 0, NULL,
192 TRUE, FALSE,
193 FALSE, FALSE,
194 FALSE,
195 $this->_activityClause
196 );
197 }
198
199 /**
2e2605fe 200 * Returns all the rows in the given offset and rowCount.
6a488035 201 *
3f8d2862 202 * @param string $action
041ab3d1
TO
203 * The action being performed.
204 * @param int $offset
205 * The row number to start from.
206 * @param int $rowCount
207 * The number of rows to return.
208 * @param string $sort
209 * The sql string that describes the sort order.
3f8d2862 210 * @param string $output
041ab3d1 211 * What should the result set include (web/email/csv).
6a488035 212 *
a6c01b45
CW
213 * @return array
214 * rows in the given offset and rowCount
6a488035 215 */
00be9182 216 public function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
f04255e4
DL
217 $result = $this->_query->searchQuery(
218 $offset, $rowCount, $sort,
6a488035
TO
219 FALSE, FALSE,
220 FALSE, FALSE,
221 FALSE,
222 $this->_activityClause
223 );
be2fb01f 224 $rows = [];
353ffa53 225 $mailingIDs = CRM_Mailing_BAO_Mailing::mailingACLIDs();
6a488035
TO
226 $accessCiviMail = CRM_Core_Permission::check('access CiviMail');
227
7808aae6 228 // Get all campaigns.
6a488035
TO
229 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
230
231 $engagementLevels = CRM_Campaign_PseudoConstant::engagementLevel();
44f817d4 232 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
a24b3694 233 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
234 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
235 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
b864360d 236 $bulkActivityTypeID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Bulk Email');
f813f78e 237
6a488035 238 while ($result->fetch()) {
be2fb01f 239 $row = [];
6a488035 240
7808aae6 241 // Ignore rows where we dont have an activity id.
6a488035
TO
242 if (empty($result->activity_id)) {
243 continue;
244 }
7bd16b05 245 $this->_query->convertToPseudoNames($result);
6a488035
TO
246
247 // the columns we are interested in
248 foreach (self::$_properties as $property) {
249 if (isset($result->$property)) {
250 $row[$property] = $result->$property;
251 }
252 }
253
9c1bc317 254 $contactId = $row['contact_id'] ?? NULL;
6a488035 255 if (!$contactId) {
9c1bc317 256 $contactId = $row['source_contact_id'] ?? NULL;
6a488035
TO
257 }
258
353ffa53 259 $row['target_contact_name'] = CRM_Activity_BAO_ActivityContact::getNames($row['activity_id'], $targetID);
a24b3694 260 $row['assignee_contact_name'] = CRM_Activity_BAO_ActivityContact::getNames($row['activity_id'], $assigneeID);
261 list($row['source_contact_name'], $row['source_contact_id']) = CRM_Activity_BAO_ActivityContact::getNames($row['activity_id'], $sourceID, TRUE);
f04255e4
DL
262 $row['source_contact_name'] = implode(',', array_values($row['source_contact_name']));
263 $row['source_contact_id'] = implode(',', $row['source_contact_id']);
6a488035 264
6a488035
TO
265 if ($this->_context == 'search') {
266 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->activity_id;
267 }
32864ccf 268 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ? $result->contact_sub_type : $result->contact_type, FALSE, $result->contact_id
6a488035
TO
269 );
270 $accessMailingReport = FALSE;
353ffa53 271 $activityTypeId = $row['activity_type_id'];
6a488035 272 if ($row['activity_is_test']) {
cd355351 273 $row['activity_type'] = CRM_Core_TestEntity::appendTestText($row['activity_type']);
6a488035 274 }
6a488035
TO
275 $row['mailingId'] = '';
276 if (
277 $accessCiviMail &&
278 ($mailingIDs === TRUE || in_array($result->source_record_id, $mailingIDs)) &&
279 ($bulkActivityTypeID == $activityTypeId)
280 ) {
281 $row['mailingId'] = CRM_Utils_System::url('civicrm/mailing/report',
c79f662a 282 "mid={$result->source_record_id}&reset=1&cid={$contactId}&context=activitySelector"
6a488035
TO
283 );
284 $row['recipients'] = ts('(recipients)');
285 $row['target_contact_name'] = '';
286 $row['assignee_contact_name'] = '';
287 $accessMailingReport = TRUE;
288 }
289 $activityActions = new CRM_Activity_Selector_Activity($result->contact_id, NULL);
290 $actionLinks = $activityActions->actionLinks($activityTypeId,
291 CRM_Utils_Array::value('source_record_id', $row),
292 $accessMailingReport,
293 CRM_Utils_Array::value('activity_id', $row),
294 $this->_key,
295 $this->_compContext
296 );
297 $row['action'] = CRM_Core_Action::formLink($actionLinks, NULL,
be2fb01f 298 [
6a488035
TO
299 'id' => $result->activity_id,
300 'cid' => $contactId,
301 'cxt' => $this->_context,
be2fb01f 302 ],
87dab4a4
AH
303 ts('more'),
304 FALSE,
305 'activity.selector.row',
306 'Activity',
307 $result->activity_id
6a488035
TO
308 );
309
7808aae6 310 // Carry campaign to selector.
9c1bc317 311 $row['campaign'] = $allCampaigns[$result->activity_campaign_id] ?? NULL;
6a488035
TO
312 $row['campaign_id'] = $result->activity_campaign_id;
313
314 if ($engagementLevel = CRM_Utils_Array::value('activity_engagement_level', $row)) {
315 $row['activity_engagement_level'] = CRM_Utils_Array::value($engagementLevel,
316 $engagementLevels, $engagementLevel
317 );
318 }
319
7808aae6 320 // Check if recurring activity.
04374d9d 321 $repeat = CRM_Core_BAO_RecurringEntity::getPositionAndCount($row['activity_id'], 'civicrm_activity');
d8786c71 322 $row['repeat'] = '';
04374d9d 323 if ($repeat) {
be2fb01f 324 $row['repeat'] = ts('Repeating (%1 of %2)', [1 => $repeat[0], 2 => $repeat[1]]);
d8786c71 325 }
6a488035
TO
326 $rows[] = $row;
327 }
328
329 return $rows;
330 }
331
332 /**
a6c01b45
CW
333 * @return array
334 * which contains an array of strings
6a488035
TO
335 */
336 public function getQILL() {
337 return $this->_query->qill();
338 }
339
340 /**
100fef9d 341 * Returns the column headers as an array of tuples:
6a488035
TO
342 * (name, sortName (key to the sort array))
343 *
041ab3d1
TO
344 * @param string $action
345 * The action being performed.
3f8d2862 346 * @param string $output
041ab3d1 347 * What should the result set include (web/email/csv).
6a488035 348 *
a6c01b45
CW
349 * @return array
350 * the column headers that need to be displayed
6a488035
TO
351 */
352 public function &getColumnHeaders($action = NULL, $output = NULL) {
353 if (!isset(self::$_columnHeaders)) {
be2fb01f
CW
354 self::$_columnHeaders = [
355 [
6a488035
TO
356 'name' => ts('Type'),
357 'sort' => 'activity_type_id',
358 'direction' => CRM_Utils_Sort::DONTCARE,
be2fb01f
CW
359 ],
360 [
6a488035 361 'name' => ts('Subject'),
5fa296f7 362 'sort' => 'activity_subject',
6a488035 363 'direction' => CRM_Utils_Sort::DONTCARE,
be2fb01f
CW
364 ],
365 [
ff3f9641 366 'name' => ts('Added by'),
37eb6ff9 367 'sort' => 'source_contact',
6a488035 368 'direction' => CRM_Utils_Sort::DONTCARE,
be2fb01f
CW
369 ],
370 ['name' => ts('With')],
371 ['name' => ts('Assigned')],
372 [
6a488035
TO
373 'name' => ts('Date'),
374 'sort' => 'activity_date_time',
375 'direction' => CRM_Utils_Sort::DESCENDING,
be2fb01f
CW
376 ],
377 [
6a488035 378 'name' => ts('Status'),
33a5a53d 379 'sort' => 'activity_status',
6a488035 380 'direction' => CRM_Utils_Sort::DONTCARE,
be2fb01f
CW
381 ],
382 [
6a488035 383 'desc' => ts('Actions'),
be2fb01f
CW
384 ],
385 ];
6a488035
TO
386 }
387 return self::$_columnHeaders;
388 }
389
ffd93213
EM
390 /**
391 * @return mixed
392 */
00be9182 393 public function alphabetQuery() {
52cda5dc 394 return $this->_query->alphabetQuery();
6a488035
TO
395 }
396
ffd93213 397 /**
c2a377b1 398 * @return \CRM_Contact_BAO_Query
ffd93213 399 */
00be9182 400 public function &getQuery() {
6a488035
TO
401 return $this->_query;
402 }
403
404 /**
100fef9d 405 * Name of export file.
6a488035 406 *
041ab3d1
TO
407 * @param string $output
408 * Type of output.
6a488035 409 *
a6c01b45
CW
410 * @return string
411 * name of the file
6a488035 412 */
00be9182 413 public function getExportFileName($output = 'csv') {
6a488035
TO
414 return ts('CiviCRM Activity Search');
415 }
96025800 416
6a488035 417}