don't crash for nonexistent uf_id
[civicrm-core.git] / CRM / Activity / BAO / Activity.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 11
1acaddb8 12use Civi\Api4\ActivityContact;
13
6a488035
TO
14/**
15 *
16 * @package CRM
ca5cec67 17 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
18 */
19
20/**
7808aae6 21 * This class is for activity functions.
6a488035
TO
22 */
23class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
24
ce9d78e1
CW
25 /**
26 * Activity status types
27 */
28 const
29 INCOMPLETE = 0,
30 COMPLETED = 1,
31 CANCELLED = 2;
32
6a488035 33 /**
fe482240 34 * Static field for all the activity information that we can potentially export.
6a488035
TO
35 *
36 * @var array
6a488035 37 */
62d3ee27 38 public static $_exportableFields = NULL;
6a488035 39
6a488035 40 /**
db7de9c1 41 * Check if there is absolute minimum of data to add the object.
6a488035 42 *
041ab3d1
TO
43 * @param array $params
44 * (reference ) an assoc array of name/value pairs.
6a488035 45 *
59f4c9ee 46 * @return bool
6a488035
TO
47 */
48 public static function dataExists(&$params) {
8cc574cf 49 if (!empty($params['source_contact_id']) || !empty($params['id'])) {
6a488035
TO
50 return TRUE;
51 }
52 return FALSE;
53 }
54
55 /**
d66c61b6 56 * @deprecated
57 *
d8689418 58 * Fetch object based on array of properties.
6a488035 59 *
041ab3d1
TO
60 * @param array $params
61 * (reference ) an assoc array of name/value pairs.
62 * @param array $defaults
63 * (reference ) an assoc array to hold the flattened values.
1cfa04c4 64 *
16b10e64 65 * @return CRM_Activity_DAO_Activity
6a488035
TO
66 */
67 public static function retrieve(&$params, &$defaults) {
d66c61b6 68 // this will bypass acls - use the api instead.
69 // @todo add deprecation logging to this function.
6a488035
TO
70 $activity = new CRM_Activity_DAO_Activity();
71 $activity->copyValues($params);
72
73 if ($activity->find(TRUE)) {
44f817d4 74 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
034500d4 75 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
76 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
77 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
78
6a488035 79 // TODO: at some stage we'll have to deal
7808aae6
SB
80 // with multiple values for assignees and targets, but
81 // for now, let's just fetch first row.
034500d4 82 $defaults['assignee_contact'] = CRM_Activity_BAO_ActivityContact::retrieveContactIdsByActivityId($activity->id, $assigneeID);
83 $assignee_contact_names = CRM_Activity_BAO_ActivityContact::getNames($activity->id, $assigneeID);
6a488035 84 $defaults['assignee_contact_value'] = implode('; ', $assignee_contact_names);
eb873b6e 85 $sourceContactId = self::getActivityContact($activity->id, $sourceID);
d66c61b6 86 if ($activity->activity_type_id != CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Bulk Email')) {
034500d4 87 $defaults['target_contact'] = CRM_Activity_BAO_ActivityContact::retrieveContactIdsByActivityId($activity->id, $targetID);
88 $target_contact_names = CRM_Activity_BAO_ActivityContact::getNames($activity->id, $targetID);
6a488035
TO
89 $defaults['target_contact_value'] = implode('; ', $target_contact_names);
90 }
91 elseif (CRM_Core_Permission::check('access CiviMail') ||
92 (CRM_Mailing_Info::workflowEnabled() &&
93 CRM_Core_Permission::check('create mailings')
94 )
95 ) {
96 $defaults['mailingId'] = CRM_Utils_System::url('civicrm/mailing/report',
eb873b6e 97 "mid={$activity->source_record_id}&reset=1&atype={$activity->activity_type_id}&aid={$activity->id}&cid={$sourceContactId}&context=activity"
6a488035
TO
98 );
99 }
100 else {
101 $defaults['target_contact_value'] = ts('(recipients)');
102 }
b319d00a 103
65ebc887 104 $sourceContactId = self::getActivityContact($activity->id, $sourceID);
ad674e50 105 $defaults['source_contact_id'] = $sourceContactId;
6a488035 106
65ebc887 107 if ($sourceContactId &&
6a488035 108 !CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
65ebc887 109 $sourceContactId,
6a488035
TO
110 'is_deleted'
111 )
112 ) {
113 $defaults['source_contact'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
65ebc887 114 $sourceContactId,
6a488035
TO
115 'sort_name'
116 );
117 }
118
7808aae6 119 // Get case subject.
6a488035
TO
120 $defaults['case_subject'] = CRM_Case_BAO_Case::getCaseSubject($activity->id);
121
122 CRM_Core_DAO::storeValues($activity, $defaults);
123
124 return $activity;
125 }
126 return NULL;
127 }
128
129 /**
d8689418 130 * Delete the activity.
6a488035 131 *
041ab3d1 132 * @param array $params
e63aff1c 133 * @param bool $moveToTrash
6a488035 134 *
d8689418 135 * @return mixed
6a488035
TO
136 */
137 public static function deleteActivity(&$params, $moveToTrash = FALSE) {
138 // CRM-9137
a7488080 139 if (!empty($params['id']) && !is_array($params['id'])) {
6a488035
TO
140 CRM_Utils_Hook::pre('delete', 'Activity', $params['id'], $params);
141 }
142 else {
143 CRM_Utils_Hook::pre('delete', 'Activity', NULL, $params);
144 }
145
146 $transaction = new CRM_Core_Transaction();
4286fa45 147 $sqlWhereParams = $where = [];
e01bf597 148 if (isset($params['source_record_id']) && is_array($params['source_record_id'])) {
6a488035
TO
149 $sourceRecordIds = implode(',', $params['source_record_id']);
150 }
151 else {
9c1bc317 152 $sourceRecordIds = $params['source_record_id'] ?? NULL;
6a488035
TO
153 }
154
4286fa45
SL
155 if ($sourceRecordIds) {
156 $where[] = 'source_record_id IN ( %1 )';
157 $sqlWhereParams[1] = [$sourceRecordIds, 'CommaSeparatedIntegers'];
158 }
6a488035
TO
159 $result = NULL;
160 if (!$moveToTrash) {
161 if (!isset($params['id'])) {
4286fa45
SL
162 if (!empty($params['activity_type_id'])) {
163 $where[] = 'activity_type_id IN ( %2 )';
164 $sqlWhereParams[2] = [implode(',', (array) $params['activity_type_id']), 'CommaSeparatedIntegers'];
6a488035 165 }
4286fa45
SL
166 $query = "DELETE FROM civicrm_activity WHERE " . implode(' AND ', $where);
167 $dao = CRM_Core_DAO::executeQuery($query, $sqlWhereParams);
6a488035
TO
168 }
169 else {
170 $activity = new CRM_Activity_DAO_Activity();
171 $activity->copyValues($params);
172 $result = $activity->delete();
173
174 // CRM-8708
175 $activity->case_id = CRM_Case_BAO_Case::getCaseIdByActivityId($activity->id);
93bcc9e8
BS
176
177 // CRM-13994 delete activity entity_tag
4286fa45
SL
178 $query = "DELETE FROM civicrm_entity_tag WHERE entity_table = 'civicrm_activity' AND entity_id = %1";
179 $dao = CRM_Core_DAO::executeQuery($query, [1 => [$activity->id, 'Positive']]);
8ee4df1d 180
181 CRM_Core_BAO_File::deleteEntityFile('civicrm_activity', $activity->id);
6a488035
TO
182 }
183 }
184 else {
185 $activity = new CRM_Activity_DAO_Activity();
186 $activity->copyValues($params);
187
188 $activity->is_deleted = 1;
189 $result = $activity->save();
190
93bcc9e8
BS
191 // CRM-4525 log activity delete
192 $logMsg = 'Case Activity deleted for';
96f94695 193 $msgs = [];
034500d4 194
44f817d4 195 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
034500d4 196 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
197 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
198 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
199 $sourceContactId = self::getActivityContact($activity->id, $sourceID);
6a488035
TO
200 if ($sourceContactId) {
201 $msgs[] = " source={$sourceContactId}";
202 }
034500d4 203
7808aae6 204 // get target contacts.
034500d4 205 $targetContactIds = CRM_Activity_BAO_ActivityContact::getNames($activity->id, $targetID);
6a488035
TO
206 if (!empty($targetContactIds)) {
207 $msgs[] = " target =" . implode(',', array_keys($targetContactIds));
208 }
7808aae6 209 // get assignee contacts.
034500d4 210 $assigneeContactIds = CRM_Activity_BAO_ActivityContact::getNames($activity->id, $assigneeID);
6a488035
TO
211 if (!empty($assigneeContactIds)) {
212 $msgs[] = " assignee =" . implode(',', array_keys($assigneeContactIds));
213 }
214
215 $logMsg .= implode(', ', $msgs);
216
217 self::logActivityAction($activity, $logMsg);
218 }
219
6a488035
TO
220 $transaction->commit();
221 if (isset($activity)) {
222 // CRM-8708
223 $activity->case_id = CRM_Case_BAO_Case::getCaseIdByActivityId($activity->id);
224 CRM_Utils_Hook::post('delete', 'Activity', $activity->id, $activity);
225 }
226
227 return $result;
228 }
229
230 /**
d8689418 231 * Delete activity assignment record.
6a488035 232 *
c490a46a 233 * @param int $activityId
100fef9d 234 * @param int $recordTypeID
6a488035 235 */
a24b3694 236 public static function deleteActivityContact($activityId, $recordTypeID = NULL) {
1d85d241
DL
237 $activityContact = new CRM_Activity_BAO_ActivityContact();
238 $activityContact->activity_id = $activityId;
a24b3694 239 if ($recordTypeID) {
240 $activityContact->record_type_id = $recordTypeID;
6a488035 241 }
1ad799fa 242
7808aae6
SB
243 // Let's check if activity contact record exits and then delete.
244 // Looks like delete leads to deadlock when multiple simultaneous
245 // requests are done. CRM-15470
1ad799fa 246 if ($activityContact->find()) {
247 $activityContact->delete();
248 }
6a488035
TO
249 }
250
251 /**
d8689418 252 * Process the activities.
6a488035 253 *
041ab3d1
TO
254 * @param array $params
255 * Associated array of the submitted values.
1cfa04c4 256 *
e63aff1c 257 * @throws CRM_Core_Exception
6a488035 258 *
59f4c9ee 259 * @return CRM_Activity_BAO_Activity|null|object
6a488035
TO
260 */
261 public static function create(&$params) {
ea6a17a9
TO
262 // CRM-20958 - These fields are managed by MySQL triggers. Watch out for clients resaving stale timestamps.
263 unset($params['created_date']);
264 unset($params['modified_date']);
265
6a488035
TO
266 // check required params
267 if (!self::dataExists($params)) {
9af2925b 268 throw new CRM_Core_Exception('Not enough data to create activity object');
6a488035
TO
269 }
270
271 $activity = new CRM_Activity_DAO_Activity();
272
273 if (isset($params['id']) && empty($params['id'])) {
274 unset($params['id']);
275 }
276
8cc574cf 277 if (empty($params['status_id']) && empty($params['activity_status_id']) && empty($params['id'])) {
6a488035
TO
278 if (isset($params['activity_date_time']) &&
279 strcmp($params['activity_date_time'], CRM_Utils_Date::processDate(date('Ymd')) == -1)
280 ) {
fc0c4d20 281 $params['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Completed');
6a488035
TO
282 }
283 else {
fc0c4d20 284 $params['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Scheduled');
6a488035
TO
285 }
286 }
287
7808aae6 288 // Set priority to Normal for Auto-populated activities (for Cases)
de6c59ca 289 if (!isset($params['priority_id']) &&
6a488035 290 // if not set and not 0
de6c59ca 291 empty($params['id'])
6a488035 292 ) {
cbf48754 293 $priority = CRM_Core_PseudoConstant::get('CRM_Activity_DAO_Activity', 'priority_id');
6a488035
TO
294 $params['priority_id'] = array_search('Normal', $priority);
295 }
296
297 if (!empty($params['target_contact_id']) && is_array($params['target_contact_id'])) {
298 $params['target_contact_id'] = array_unique($params['target_contact_id']);
299 }
300 if (!empty($params['assignee_contact_id']) && is_array($params['assignee_contact_id'])) {
301 $params['assignee_contact_id'] = array_unique($params['assignee_contact_id']);
302 }
303
3d619e42 304 $action = empty($params['id']) ? 'create' : 'edit';
305 CRM_Utils_Hook::pre($action, 'Activity', $params['id'] ?? NULL, $params);
6a488035
TO
306
307 $activity->copyValues($params);
308 if (isset($params['case_id'])) {
309 // CRM-8708, preserve case ID even though it's not part of the SQL model
310 $activity->case_id = $params['case_id'];
311 }
312 elseif (is_numeric($activity->id)) {
313 // CRM-8708, preserve case ID even though it's not part of the SQL model
314 $activity->case_id = CRM_Case_BAO_Case::getCaseIdByActivityId($activity->id);
315 }
316
317 // start transaction
318 $transaction = new CRM_Core_Transaction();
319
320 $result = $activity->save();
321
322 if (is_a($result, 'CRM_Core_Error')) {
323 $transaction->rollback();
324 return $result;
325 }
326
327 $activityId = $activity->id;
1acaddb8 328 $activityRecordTypes = [
66cbbfb6 329 'source_contact_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Source'),
330 'assignee_contact_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Assignees'),
331 'target_contact_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Targets'),
1acaddb8 332 ];
66cbbfb6 333
334 $activityContacts = [];
335 // Cast to an array if we just have an integer. Index by record type id.
336 foreach ($activityRecordTypes as $key => $recordTypeID) {
337 if (isset($params[$key])) {
338 if (empty($params[$key])) {
339 $activityContacts[$recordTypeID] = [];
340 }
341 else {
342 foreach ((array) $params[$key] as $contactID) {
343 $activityContacts[$recordTypeID][$contactID] = (int) $contactID;
344 }
345 }
1acaddb8 346 }
347 }
348
349 if ($action === 'edit' && !empty($activityContacts)) {
66cbbfb6 350 $wheres = [];
351 foreach ($activityContacts as $recordTypeID => $contactIDs) {
352 if (!empty($contactIDs)) {
353 $wheres[$key] = "(record_type_id = $recordTypeID AND contact_id IN (" . implode(',', $contactIDs) . '))';
354 }
355 }
356 $existingArray = empty($wheres) ? [] : CRM_Core_DAO::executeQuery("
357 SELECT id, contact_id, record_type_id
358 FROM civicrm_activity_contact
359 WHERE activity_id = %1
360 AND (" . implode(' OR ', $wheres) . ')',
361 [1 => [$params['id'], 'Integer']])->fetchAll();
362
363 $recordsToKeep = [];
364 $wheres = [['activity_id', '=', $params['id']], ['record_type_id', 'IN', array_keys($activityContacts)]];
365
366 foreach ($existingArray as $existingRecords) {
367 $recordsToKeep[$existingRecords['id']] = ['contact_id' => $existingRecords['contact_id'], 'record_type_id' => $existingRecords['record_type_id']];
368 unset($activityContacts[$recordTypeID][$existingRecords['contact_id']]);
369 if (empty($activityContacts[$recordTypeID])) {
370 // If we just removed the last one to update then also unset the key.
371 unset($activityContacts[$recordTypeID]);
372 }
373 }
374
375 if (!empty($recordsToKeep)) {
376 $wheres[] = ['id', 'NOT IN', array_keys($recordsToKeep)];
377 }
378
1acaddb8 379 // Delete all existing records for the types to be updated. Do a quick check to make sure there
380 // is at least one to avoid a delete query if not necessary (delete queries are more likely to cause contention).
381 if (ActivityContact::get($params['check_permissions'] ?? FALSE)->setLimit(1)->setWhere($wheres)->selectRowCount()->execute()) {
382 ActivityContact::delete($params['check_permissions'] ?? FALSE)->setWhere($wheres)->execute();
383 }
384 }
385
66cbbfb6 386 $activityContactApiValues = [];
387 foreach ($activityContacts as $recordTypeID => $contactIDs) {
388 foreach ($contactIDs as $contactID) {
389 $activityContactApiValues[] = ['record_type_id' => $recordTypeID, 'contact_id' => $contactID];
6a488035
TO
390 }
391 }
6a488035 392
66cbbfb6 393 if (!empty($activityContactApiValues)) {
394 ActivityContact::save($params['check_permissions'] ?? FALSE)->addDefault('activity_id', $activityId)
395 ->setRecords($activityContactApiValues)->execute();
6a488035
TO
396 }
397
66cbbfb6 398 // check and attach and files as needed
399 CRM_Core_BAO_File::processAttachment($params, 'civicrm_activity', $activityId);
6a488035 400
0a9f61c4 401 // write to changelog before transaction is committed/rolled
6a488035 402 // back (and prepare status to display)
a7488080 403 if (!empty($params['id'])) {
6a488035
TO
404 $logMsg = "Activity (id: {$result->id} ) updated with ";
405 }
406 else {
407 $logMsg = "Activity created for ";
408 }
409
96f94695 410 $msgs = [];
6a488035
TO
411 if (isset($params['source_contact_id'])) {
412 $msgs[] = "source={$params['source_contact_id']}";
413 }
414
a7488080 415 if (!empty($params['target_contact_id'])) {
35522279 416 if (is_array($params['target_contact_id']) && !CRM_Utils_Array::crmIsEmptyArray($params['target_contact_id'])) {
6a488035
TO
417 $msgs[] = "target=" . implode(',', $params['target_contact_id']);
418 // take only first target
419 // will be used for recently viewed display
420 $t = array_slice($params['target_contact_id'], 0, 1);
421 $recentContactId = $t[0];
422 }
7808aae6 423 // Is array check fixes warning without degrading functionality but it seems this bit of code may no longer work
9af2925b
EM
424 // as it may always be an array
425 elseif (isset($params['target_contact_id']) && !is_array($params['target_contact_id'])) {
6a488035
TO
426 $msgs[] = "target={$params['target_contact_id']}";
427 // will be used for recently viewed display
428 $recentContactId = $params['target_contact_id'];
429 }
430 }
431 else {
432 // at worst, take source for recently viewed display
9c1bc317 433 $recentContactId = $params['source_contact_id'] ?? NULL;
6a488035
TO
434 }
435
436 if (isset($params['assignee_contact_id'])) {
437 if (is_array($params['assignee_contact_id'])) {
438 $msgs[] = "assignee=" . implode(',', $params['assignee_contact_id']);
439 }
440 else {
441 $msgs[] = "assignee={$params['assignee_contact_id']}";
442 }
443 }
444 $logMsg .= implode(', ', $msgs);
445
446 self::logActivityAction($result, $logMsg);
447
a7488080 448 if (!empty($params['custom']) &&
6a488035
TO
449 is_array($params['custom'])
450 ) {
451 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_activity', $result->id);
452 }
453
454 $transaction->commit();
a7488080 455 if (empty($params['skipRecentView'])) {
96f94695 456 $recentOther = [];
a7488080 457 if (!empty($params['case_id'])) {
6a488035
TO
458 $caseContactID = CRM_Core_DAO::getFieldValue('CRM_Case_DAO_CaseContact', $params['case_id'], 'contact_id', 'case_id');
459 $url = CRM_Utils_System::url('civicrm/case/activity/view',
460 "reset=1&aid={$activity->id}&cid={$caseContactID}&caseID={$params['case_id']}&context=home"
461 );
462 }
463 else {
7ad77be0 464 $q = "action=view&reset=1&id={$activity->id}&atype={$activity->activity_type_id}&cid=" . CRM_Utils_Array::value('source_contact_id', $params) . "&context=home";
d66c61b6 465 if ($activity->activity_type_id != CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Email')) {
6a488035 466 $url = CRM_Utils_System::url('civicrm/activity', $q);
d66c61b6 467 if ($activity->activity_type_id == CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Print PDF Letter')) {
6a488035 468 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/activity/pdf/add',
eb873b6e 469 "action=update&reset=1&id={$activity->id}&atype={$activity->activity_type_id}&cid={$params['source_contact_id']}&context=home"
6a488035
TO
470 );
471 }
472 else {
473 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/activity/add',
e63aff1c 474 "action=update&reset=1&id={$activity->id}&atype={$activity->activity_type_id}&cid=" . CRM_Utils_Array::value('source_contact_id', $params) . "&context=home"
6a488035
TO
475 );
476 }
477
478 if (CRM_Core_Permission::check("delete activities")) {
479 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/activity',
e63aff1c 480 "action=delete&reset=1&id={$activity->id}&atype={$activity->activity_type_id}&cid=" . CRM_Utils_Array::value('source_contact_id', $params) . "&context=home"
6a488035
TO
481 );
482 }
483 }
484 else {
485 $url = CRM_Utils_System::url('civicrm/activity/view', $q);
486 if (CRM_Core_Permission::check('delete activities')) {
487 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/activity',
7ad77be0 488 "action=delete&reset=1&id={$activity->id}&atype={$activity->activity_type_id}&cid=" . CRM_Utils_Array::value('source_contact_id', $params) . "&context=home"
6a488035
TO
489 );
490 }
491 }
492 }
493
494 if (!isset($activity->parent_id)) {
495 $recentContactDisplay = CRM_Contact_BAO_Contact::displayName($recentContactId);
496 // add the recently created Activity
fc0c4d20 497 $activityTypes = CRM_Activity_BAO_Activity::buildOptions('activity_type_id');
6a488035
TO
498 $activitySubject = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity', $activity->id, 'subject');
499
500 $title = "";
501 if (isset($activitySubject)) {
502 $title = $activitySubject . ' - ';
503 }
504
505 $title = $title . $recentContactDisplay;
a7488080 506 if (!empty($activityTypes[$activity->activity_type_id])) {
6a488035
TO
507 $title .= ' (' . $activityTypes[$activity->activity_type_id] . ')';
508 }
509
510 CRM_Utils_Recent::add($title,
511 $url,
512 $activity->id,
513 'Activity',
514 $recentContactId,
515 $recentContactDisplay,
516 $recentOther
517 );
518 }
519 }
520
2b68a50c 521 CRM_Contact_BAO_GroupContactCache::opportunisticCacheFlush();
6a488035 522
6a488035 523 // if the subject contains a ‘[case #…]’ string, file that activity on the related case (CRM-5916)
96f94695 524 $matches = [];
9c1bc317 525 $subjectToMatch = $params['subject'] ?? NULL;
2019dea3 526 if (preg_match('/\[case #([0-9a-h]{7})\]/', $subjectToMatch, $matches)) {
9d5494f7
TO
527 $key = CRM_Core_DAO::escapeString(CIVICRM_SITE_KEY);
528 $hash = $matches[1];
2019dea3
JP
529 $query = "SELECT id FROM civicrm_case WHERE SUBSTR(SHA1(CONCAT('$key', id)), 1, 7) = '" . CRM_Core_DAO::escapeString($hash) . "'";
530 }
531 elseif (preg_match('/\[case #(\d+)\]/', $subjectToMatch, $matches)) {
532 $query = "SELECT id FROM civicrm_case WHERE id = '" . CRM_Core_DAO::escapeString($matches[1]) . "'";
533 }
534 if (!empty($matches)) {
96f94695 535 $caseParams = [
6a488035
TO
536 'activity_id' => $activity->id,
537 'case_id' => CRM_Core_DAO::singleValueQuery($query),
96f94695 538 ];
6a488035
TO
539 if ($caseParams['case_id']) {
540 CRM_Case_BAO_Case::processCaseActivity($caseParams);
541 }
542 else {
2019dea3 543 self::logActivityAction($activity, "Case details for {$matches[1]} not found while recording an activity on case.");
6a488035
TO
544 }
545 }
3d619e42 546 CRM_Utils_Hook::post($action, 'Activity', $activity->id, $activity);
6a488035
TO
547 return $result;
548 }
549
ffd93213 550 /**
0965e988
EM
551 * Create an activity.
552 *
553 * @todo elaborate on what this does.
554 *
f4b8bef7 555 * @param CRM_Activity_DAO_Activity $activity
0965e988 556 * @param string $logMessage
ffd93213
EM
557 *
558 * @return bool
559 */
6a488035 560 public static function logActivityAction($activity, $logMessage = NULL) {
3bdcd4ec 561 $id = CRM_Core_Session::getLoggedInContactID();
6a488035 562 if (!$id) {
44f817d4 563 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
8a6844b3 564 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
be89435d 565 $id = self::getActivityContact($activity->id, $sourceID);
6a488035 566 }
96f94695 567 $logParams = [
6a488035
TO
568 'entity_table' => 'civicrm_activity',
569 'entity_id' => $activity->id,
570 'modified_id' => $id,
571 'modified_date' => date('YmdHis'),
572 'data' => $logMessage,
96f94695 573 ];
6a488035
TO
574 CRM_Core_BAO_Log::add($logParams);
575 return TRUE;
576 }
577
578 /**
0965e988 579 * Get the list Activities.
6a488035 580 *
466e3a53 581 * @param array $params
041ab3d1 582 * Array of parameters.
6a488035 583 * Keys include
0a9f61c4 584 * - contact_id int contact_id whose activities we want to retrieve
6a488035
TO
585 * - offset int which row to start from ?
586 * - rowCount int how many rows to fetch
587 * - sort object|array object or array describing sort order for sql query.
588 * - admin boolean if contact is admin
589 * - caseId int case ID
590 * - context string page on which selector is build
591 * - activity_type_id int|string the activitiy types we want to restrict by
592 *
84be264e 593 * @return array
0965e988 594 * Relevant data object values of open activities
5b22d1b8 595 * @throws \CiviCRM_API3_Exception
6a488035 596 */
84be264e 597 public static function getActivities($params) {
96f94695 598 $activities = [];
5161bb0c 599
466e3a53 600 // Activity.Get API params
84be264e 601 $activityParams = self::getActivityParamsForDashboardFunctions($params);
6a488035 602
466e3a53 603 if (!empty($params['rowCount']) &&
604 $params['rowCount'] > 0
6a488035 605 ) {
466e3a53 606 $activityParams['options']['limit'] = $params['rowCount'];
6a488035
TO
607 }
608
466e3a53 609 if (!empty($params['sort'])) {
610 if (is_a($params['sort'], 'CRM_Utils_Sort')) {
611 $order = $params['sort']->orderBy();
612 }
613 elseif (trim($params['sort'])) {
614 $order = CRM_Utils_Type::escape($params['sort'], 'String');
615 }
6a488035
TO
616 }
617
885d25ac 618 $activityParams['options']['sort'] = empty($order) ? "activity_date_time DESC" : str_replace('activity_type ', 'activity_type_id.label ', $order);
9d13e312 619
84be264e 620 $activityParams['return'] = [
621 'activity_date_time',
622 'source_record_id',
623 'source_contact_id',
624 'source_contact_name',
625 'assignee_contact_id',
84be264e 626 'assignee_contact_name',
627 'status_id',
628 'subject',
629 'activity_type_id',
630 'activity_type',
631 'case_id',
632 'campaign_id',
633 ];
3e120a63
RLAR
634 // Q. What does the code below achieve? case_id and campaign_id are already
635 // in the array, defined above, and this code adds them in again if their
636 // component is enabled? @fixme remove case_id and campaign_id from the array above?
84be264e 637 foreach (['case_id' => 'CiviCase', 'campaign_id' => 'CiviCampaign'] as $attr => $component) {
638 if (in_array($component, self::activityComponents())) {
639 $activityParams['return'][] = $attr;
640 }
641 }
c2ce41b6 642 $result = civicrm_api3('Activity', 'Get', $activityParams)['values'];
6a488035 643
5b22d1b8 644 $bulkActivityTypeID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Bulk Email');
466e3a53 645 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
6a488035 646
7808aae6 647 // CRM-3553, need to check user has access to target groups.
6a488035 648 $mailingIDs = CRM_Mailing_BAO_Mailing::mailingACLIDs();
466e3a53 649 $accessCiviMail = ((CRM_Core_Permission::check('access CiviMail')) ||
650 (CRM_Mailing_Info::workflowEnabled() && CRM_Core_Permission::check('create mailings'))
6a488035
TO
651 );
652
c2ce41b6 653 // @todo - get rid of this & just handle in the array declaration like we do with 'subject' etc.
96f94695 654 $mappingParams = [
466e3a53 655 'source_record_id' => 'source_record_id',
656 'activity_type_id' => 'activity_type_id',
466e3a53 657 'status_id' => 'status_id',
466e3a53 658 'campaign_id' => 'campaign_id',
466e3a53 659 'case_id' => 'case_id',
96f94695 660 ];
6a488035 661
c2ce41b6 662 if (empty($result)) {
663 $targetCount = [];
664 }
665 else {
666 $targetCount = CRM_Core_DAO::executeQuery('
667 SELECT activity_id, count(*) as target_contact_count
668 FROM civicrm_activity_contact
669 INNER JOIN civicrm_contact c ON contact_id = c.id AND c.is_deleted = 0
670 WHERE activity_id IN (' . implode(',', array_keys($result)) . ')
671 AND record_type_id = %1
672 GROUP BY activity_id', [
673 1 => [
674 CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Targets'),
778497a1
PN
675 'Integer',
676 ],
c2ce41b6 677 ])->fetchAll();
678 }
679 foreach ($targetCount as $activityTarget) {
680 $result[$activityTarget['activity_id']]['target_contact_count'] = $activityTarget['target_contact_count'];
681 }
682 // Iterate through & do basic mappings & determine which ones we want to retrieve target count for.
683 foreach ($result as $id => $activity) {
684 $activities[$id] = [
685 'activity_id' => $activity['id'],
6b409353
CW
686 'activity_date_time' => $activity['activity_date_time'] ?? NULL,
687 'subject' => $activity['subject'] ?? NULL,
6187cca4 688 'assignee_contact_name' => $activity['assignee_contact_sort_name'] ?? [],
6b409353
CW
689 'source_contact_id' => $activity['source_contact_id'] ?? NULL,
690 'source_contact_name' => $activity['source_contact_sort_name'] ?? NULL,
c2ce41b6 691 ];
692 $activities[$id]['activity_type_name'] = CRM_Core_PseudoConstant::getName('CRM_Activity_BAO_Activity', 'activity_type_id', $activity['activity_type_id']);
693 $activities[$id]['activity_type'] = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'activity_type_id', $activity['activity_type_id']);
2975f0aa 694 $activities[$id]['target_contact_count'] = $activity['target_contact_count'] ?? 0;
c2ce41b6 695 if (!empty($activity['target_contact_count'])) {
696 $displayedTarget = civicrm_api3('ActivityContact', 'get', [
697 'activity_id' => $id,
698 'check_permissions' => TRUE,
699 'options' => ['limit' => 1],
700 'record_type_id' => 'Activity Targets',
701 'return' => ['contact_id.sort_name', 'contact_id'],
702 'sequential' => 1,
703 ])['values'];
704 if (empty($displayedTarget[0])) {
705 $activities[$id]['target_contact_name'] = [];
734f2683 706 }
c2ce41b6 707 else {
708 $activities[$id]['target_contact_name'] = [$displayedTarget[0]['contact_id'] => $displayedTarget[0]['contact_id.sort_name']];
734f2683 709 }
710 }
c2ce41b6 711 if ($activities[$id]['activity_type_name'] === 'Bulk Email') {
712 $bulkActivities[] = $id;
713 // Get the total without permissions being passed but only display names after permissioning.
714 $activities[$id]['recipients'] = ts('(%1 recipients)', [1 => $activities[$id]['target_contact_count']]);
715 }
716 }
717
718 // Eventually this second iteration should just handle the target contacts. It's a bit muddled at
719 // the moment as the bulk activity stuff needs unravelling & test coverage.
3e120a63 720 $caseIds = [];
c2ce41b6 721 foreach ($result as $id => $activity) {
722 $isBulkActivity = (!$bulkActivityTypeID || ($bulkActivityTypeID === $activity['activity_type_id']));
466e3a53 723 foreach ($mappingParams as $apiKey => $expectedName) {
96f94695 724 if (in_array($apiKey, [
96f94695 725 'target_contact_name',
726 ])) {
91da6cd5 727
466e3a53 728 if ($isBulkActivity) {
c2ce41b6 729 // @todo - how is this used? Couldn't we use 'is_bulk' or something clearer?
730 // or the calling function could handle
466e3a53 731 $activities[$id]['mailingId'] = FALSE;
732 if ($accessCiviMail &&
733 ($mailingIDs === TRUE || in_array($activity['source_record_id'], $mailingIDs))
734 ) {
735 $activities[$id]['mailingId'] = TRUE;
736 }
737 }
6a488035 738 }
6a488035 739 // case related fields
5161bb0c 740 elseif ($apiKey == 'case_id' && !$isBulkActivity) {
9c1bc317 741 $activities[$id][$expectedName] = $activity[$apiKey] ?? NULL;
5161bb0c 742
743 // fetch case subject for case ID found
744 if (!empty($activity['case_id'])) {
3e120a63
RLAR
745 // Store cases; we'll look them up in one query below. We convert
746 // to int here so we can trust it for SQL.
747 $caseIds[$id] = (int) current($activity['case_id']);
5161bb0c 748 }
466e3a53 749 }
750 else {
c2ce41b6 751 // @todo this generic assign could just be handled in array declaration earlier.
9c1bc317 752 $activities[$id][$expectedName] = $activity[$apiKey] ?? NULL;
c2ce41b6 753 if ($apiKey == 'campaign_id') {
9c1bc317 754 $activities[$id]['campaign'] = $allCampaigns[$activities[$id][$expectedName]] ?? NULL;
466e3a53 755 }
6a488035
TO
756 }
757 }
5161bb0c 758 // if deleted, wrap in <del>
759 if (!empty($activity['source_contact_id']) &&
760 CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $activity['source_contact_id'], 'is_deleted')
761 ) {
762 $activities[$id]['source_contact_name'] = sprintf("<del>%s<del>", $activity['source_contact_name']);
763 }
764 $activities[$id]['is_recurring_activity'] = CRM_Core_BAO_RecurringEntity::getParentFor($id, 'civicrm_activity');
6a488035
TO
765 }
766
3e120a63
RLAR
767 // Look up any case subjects we need in a single query and add them in the relevant activities under 'case_subject'
768 if ($caseIds) {
769 $subjects = CRM_Core_DAO::executeQuery('SELECT id, subject FROM civicrm_case WHERE id IN (' . implode(',', array_unique($caseIds)) . ')')
770 ->fetchMap('id', 'subject');
771 foreach ($caseIds as $activityId => $caseId) {
772 $result[$activityId]['case_subject'] = $subjects[$caseId];
773 }
774 }
775
84be264e 776 return $activities;
6a488035
TO
777 }
778
5b22d1b8
MW
779 /**
780 * Filter the activity types to only return the ones we actually asked for
781 * Uses params['activity_type_id'] and params['activity_type_exclude_id']
782 *
783 * @param $params
784 * @return array|null (Use in Activity.get API activity_type_id)
785 */
786 public static function filterActivityTypes($params) {
96f94695 787 $activityTypes = [];
5b22d1b8
MW
788
789 // If no activity types are specified, get all the active ones
790 if (empty($params['activity_type_id'])) {
791 $activityTypes = CRM_Activity_BAO_Activity::buildOptions('activity_type_id', 'get');
792 }
793
794 // If no activity types are specified or excluded, return the list of all active ones
795 if (empty($params['activity_type_id']) && empty($params['activity_type_exclude_id'])) {
796 if (!empty($activityTypes)) {
96f94695 797 return ['IN' => array_keys($activityTypes)];
5b22d1b8
MW
798 }
799 return NULL;
800 }
801
802 // If we have specified activity types, build a list to return, excluding the ones we don't want.
803 if (!empty($params['activity_type_id'])) {
804 if (!is_array($params['activity_type_id'])) {
805 // Turn it into array if only one specified, so we don't duplicate processing below
96f94695 806 $params['activity_type_id'] = [$params['activity_type_id'] => $params['activity_type_id']];
5b22d1b8
MW
807 }
808 foreach ($params['activity_type_id'] as $value) {
809 // Add each activity type that was specified to list
810 $value = CRM_Utils_Type::escape($value, 'Positive');
811 $activityTypes[$value] = $value;
812 }
813 }
814
815 // Build the list of activity types to exclude (from $params['activity_type_exclude_id'])
816 if (!empty($params['activity_type_exclude_id'])) {
817 if (!is_array($params['activity_type_exclude_id'])) {
818 // Turn it into array if only one specified, so we don't duplicate processing below
96f94695 819 $params['activity_type_exclude_id'] = [$params['activity_type_exclude_id'] => $params['activity_type_exclude_id']];
5b22d1b8
MW
820 }
821 foreach ($params['activity_type_exclude_id'] as $value) {
822 // Remove each activity type from list if it should be excluded
823 $value = CRM_Utils_Type::escape($value, 'Positive');
824 if (array_key_exists($value, $activityTypes)) {
825 unset($activityTypes[$value]);
826 }
827 }
828 }
829
96f94695 830 return ['IN' => array_keys($activityTypes)];
5b22d1b8
MW
831 }
832
ff2a3553 833 /**
834 * @inheritDoc
835 */
836 public function addSelectWhereClause() {
cdacd6ab 837 $clauses = [];
838 $permittedActivityTypeIDs = self::getPermittedActivityTypes();
d1d108ee 839 $allActivityTypes = self::buildOptions('activity_type_id');
cdacd6ab 840 if (empty($permittedActivityTypeIDs)) {
841 // This just prevents a mysql fail if they have no access - should be extremely edge case.
842 $permittedActivityTypeIDs = [0];
843 }
d1d108ee 844 if (array_keys($allActivityTypes) !== array_keys($permittedActivityTypeIDs)) {
845 $clauses['activity_type_id'] = ('IN (' . implode(', ', $permittedActivityTypeIDs) . ')');
846 }
cdacd6ab 847
848 $contactClause = CRM_Utils_SQL::mergeSubquery('Contact');
849 if ($contactClause) {
850 $contactClause = implode(' AND contact_id ', $contactClause);
851 $clauses['id'][] = "IN (SELECT activity_id FROM civicrm_activity_contact WHERE contact_id $contactClause)";
ff2a3553 852 }
cdacd6ab 853 CRM_Utils_Hook::selectWhereClause($this, $clauses);
ff2a3553 854 return $clauses;
855 }
856
6a488035 857 /**
c4937fe9 858 * Get an array of components that are accessible by the currenct user.
0965e988 859 *
c4937fe9 860 * This means checking if they are enabled and if the user has appropriate permission.
6a488035 861 *
c4937fe9 862 * For most components the permission is access component (e.g 'access CiviContribute').
863 * Exceptions as CiviCampaign (administer CiviCampaign) and CiviCase
864 * (accesses a case function which enforces edit all cases or edit my cases. Case
865 * permissions are also handled on a per activity basis).
866 *
867 * Checks whether logged in user has permission to the component.
868 *
869 * @param bool $excludeComponentHandledActivities
870 * Should we exclude components whose display is handled in the components.
871 * In practice this means should we include CiviCase in the results. Presumbaly
872 * at the time it was decided case activities should be shown in the case framework and
873 * that this concept might be extended later. In practice most places that
874 * call this then re-add CiviCase in some way so it's all a bit... odd.
875 *
62d3ee27 876 * @return array
16b10e64 877 * Array of component id and name.
59f4c9ee 878 */
c4937fe9 879 public static function activityComponents($excludeComponentHandledActivities = TRUE) {
96f94695 880 $components = [];
6a488035
TO
881 $compInfo = CRM_Core_Component::getEnabledComponents();
882 foreach ($compInfo as $compObj) {
c4937fe9 883 $includeComponent = !$excludeComponentHandledActivities || !empty($compObj->info['showActivitiesInCore']);
884 if ($includeComponent) {
6a488035
TO
885 if ($compObj->info['name'] == 'CiviCampaign') {
886 $componentPermission = "administer {$compObj->name}";
887 }
888 else {
889 $componentPermission = "access {$compObj->name}";
890 }
891 if ($compObj->info['name'] == 'CiviCase') {
892 if (CRM_Case_BAO_Case::accessCiviCase()) {
893 $components[$compObj->componentID] = $compObj->info['name'];
894 }
895 }
896 elseif (CRM_Core_Permission::check($componentPermission)) {
897 $components[$compObj->componentID] = $compObj->info['name'];
898 }
899 }
900 }
901
902 return $components;
903 }
904
6ab43e1b 905 /**
906 * Get the activity Count.
907 *
908 * @param array $input
909 * Array of parameters.
910 * Keys include
911 * - contact_id int contact_id whose activities we want to retrieve
912 * - admin boolean if contact is admin
913 * - caseId int case ID
914 * - context string page on which selector is build
915 * - activity_type_id int|string the activity types we want to restrict by
916 *
917 * @return int
918 * count of activities
919 */
920 public static function getActivitiesCount($input) {
84be264e 921 $activityParams = self::getActivityParamsForDashboardFunctions($input);
922 return civicrm_api3('Activity', 'getcount', $activityParams);
6ab43e1b 923 }
924
3459bb88 925 /**
5fd8cc4b
MW
926 * @param int $sourceContactID
927 * The contact ID of the email "from".
3459bb88
MWMC
928 * @param string $subject
929 * @param string $html
930 * @param string $text
931 * @param string $additionalDetails
5fd8cc4b 932 * The additional information of CC and BCC appended to the activity details.
3459bb88
MWMC
933 * @param int $campaignID
934 * @param array $attachments
f7f1cc3b 935 * @param int $caseID
3459bb88
MWMC
936 *
937 * @return int
938 * The created activity ID
939 * @throws \CRM_Core_Exception
940 */
5fd8cc4b 941 public static function createEmailActivity($sourceContactID, $subject, $html, $text, $additionalDetails, $campaignID, $attachments, $caseID) {
3459bb88
MWMC
942 $activityTypeID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Email');
943
944 // CRM-6265: save both text and HTML parts in details (if present)
945 if ($html and $text) {
5fd8cc4b 946 $details = "-ALTERNATIVE ITEM 0-\n{$html}{$additionalDetails}\n-ALTERNATIVE ITEM 1-\n{$text}{$additionalDetails}\n-ALTERNATIVE END-\n";
3459bb88
MWMC
947 }
948 else {
949 $details = $html ? $html : $text;
950 $details .= $additionalDetails;
951 }
952
953 $activityParams = [
5fd8cc4b 954 'source_contact_id' => $sourceContactID,
3459bb88
MWMC
955 'activity_type_id' => $activityTypeID,
956 'activity_date_time' => date('YmdHis'),
957 'subject' => $subject,
958 'details' => $details,
3459bb88
MWMC
959 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Completed'),
960 'campaign_id' => $campaignID,
961 ];
f7f1cc3b
SL
962 if (!empty($caseID)) {
963 $activityParams['case_id'] = $caseID;
964 }
3459bb88
MWMC
965
966 // CRM-5916: strip [case #…] before saving the activity (if present in subject)
967 $activityParams['subject'] = preg_replace('/\[case #([0-9a-h]{7})\] /', '', $activityParams['subject']);
968
969 // add the attachments to activity params here
970 if ($attachments) {
971 // first process them
972 $activityParams = array_merge($activityParams, $attachments);
973 }
974
f7f1cc3b 975 $activity = civicrm_api3('Activity', 'create', $activityParams);
5fd8cc4b 976
f7f1cc3b 977 return $activity['id'];
3459bb88
MWMC
978 }
979
6a488035 980 /**
0965e988
EM
981 * Send the message to all the contacts.
982 *
983 * Also insert a contact activity in each contacts record.
6a488035 984 *
041ab3d1
TO
985 * @param array $contactDetails
986 * The array of contact details to send the email.
987 * @param string $subject
988 * The subject of the message.
fd31fa4c
EM
989 * @param $text
990 * @param $html
041ab3d1
TO
991 * @param string $emailAddress
992 * Use this 'to' email address instead of the default Primary address.
993 * @param int $userID
994 * Use this userID if set.
6a488035 995 * @param string $from
041ab3d1
TO
996 * @param array $attachments
997 * The array of attachments if any.
998 * @param string $cc
999 * Cc recipient.
1000 * @param string $bcc
1001 * Bcc recipient.
1002 * @param array $contactIds
1003 * Contact ids.
1004 * @param string $additionalDetails
1005 * The additional information of CC and BCC appended to the activity Details.
cb5d08cd
JP
1006 * @param array $contributionIds
1007 * @param int $campaignId
b69df99f 1008 * @param int $caseId
6a488035 1009 *
a6c01b45 1010 * @return array
13ecf776 1011 * bool $sent FIXME: this only indicates the status of the last email sent.
1012 * array $activityIds The activity ids created, one per "To" recipient.
1013 *
3459bb88
MWMC
1014 * @throws \CRM_Core_Exception
1015 * @throws \CiviCRM_API3_Exception
6a488035 1016 */
59f4c9ee 1017 public static function sendEmail(
5ba209ba 1018 $contactDetails,
1019 $subject,
1020 $text,
1021 $html,
6a488035 1022 $emailAddress,
9d5494f7
TO
1023 $userID = NULL,
1024 $from = NULL,
6a488035 1025 $attachments = NULL,
9d5494f7
TO
1026 $cc = NULL,
1027 $bcc = NULL,
6c552737 1028 $contactIds = NULL,
7e2ec997 1029 $additionalDetails = NULL,
824989b9 1030 $contributionIds = NULL,
b69df99f
CW
1031 $campaignId = NULL,
1032 $caseId = NULL
6a488035
TO
1033 ) {
1034 // get the contact details of logged in contact, which we set as from email
1035 if ($userID == NULL) {
3bdcd4ec 1036 $userID = CRM_Core_Session::getLoggedInContactID();
6a488035
TO
1037 }
1038
1039 list($fromDisplayName, $fromEmail, $fromDoNotEmail) = CRM_Contact_BAO_Contact::getContactDetails($userID);
1040 if (!$fromEmail) {
96f94695 1041 return [count($contactDetails), 0, count($contactDetails)];
6a488035
TO
1042 }
1043 if (!trim($fromDisplayName)) {
1044 $fromDisplayName = $fromEmail;
1045 }
1046
1047 // CRM-4575
1048 // token replacement of addressee/email/postal greetings
1049 // get the tokens added in subject and message
1050 $subjectToken = CRM_Utils_Token::getTokens($subject);
1051 $messageToken = CRM_Utils_Token::getTokens($text);
1052 $messageToken = array_merge($messageToken, CRM_Utils_Token::getTokens($html));
219f4d0b 1053 $allTokens = CRM_Utils_Array::crmArrayMerge($messageToken, $subjectToken);
6a488035
TO
1054
1055 if (!$from) {
1056 $from = "$fromDisplayName <$fromEmail>";
1057 }
1058
6a488035
TO
1059 $escapeSmarty = FALSE;
1060 if (defined('CIVICRM_MAIL_SMARTY') && CIVICRM_MAIL_SMARTY) {
1061 $smarty = CRM_Core_Smarty::singleton();
1062 $escapeSmarty = TRUE;
1063 }
1064
96f94695 1065 $contributionDetails = [];
7e2ec997
E
1066 if (!empty($contributionIds)) {
1067 $contributionDetails = CRM_Contribute_BAO_Contribution::replaceContributionTokens(
1068 $contributionIds,
1069 $subject,
1070 $subjectToken,
1071 $text,
1072 $html,
1073 $messageToken,
1074 $escapeSmarty
1075 );
1076 }
1077
96f94695 1078 $sent = $notSent = [];
726e904b 1079 $attachmentFileIds = [];
13ecf776 1080 $activityIds = [];
726e904b 1081 $firstActivityCreated = FALSE;
6a488035
TO
1082 foreach ($contactDetails as $values) {
1083 $contactId = $values['contact_id'];
1084 $emailAddress = $values['email'];
1085
7e2ec997
E
1086 if (!empty($contributionDetails)) {
1087 $subject = $contributionDetails[$contactId]['subject'];
1088 $text = $contributionDetails[$contactId]['text'];
1089 $html = $contributionDetails[$contactId]['html'];
1090 }
1091
0952020a
EM
1092 $tokenSubject = $subject;
1093 $tokenText = in_array($values['preferred_mail_format'], ['Both', 'Text'], TRUE) ? $text : '';
1094 $tokenHtml = in_array($values['preferred_mail_format'], ['Both', 'HTML'], TRUE) ? $html : '';
6a488035 1095
0952020a
EM
1096 $renderedTemplate = CRM_Core_BAO_MessageTemplate::renderTemplate([
1097 'messageTemplate' => [
1098 'msg_text' => $tokenText,
1099 'msg_html' => $tokenHtml,
1100 'msg_subject' => $tokenSubject,
1101 ],
662bee85 1102 'tokenContext' => $caseId ? ['caseId' => $caseId] : [],
0952020a
EM
1103 'contactId' => $contactId,
1104 'disableSmarty' => !CRM_Utils_Constant::value('CIVICRM_MAIL_SMARTY'),
0952020a 1105 ]);
6a488035
TO
1106
1107 $sent = FALSE;
726e904b
TO
1108 // To minimize storage requirements, only one copy of any file attachments uploaded to CiviCRM is kept,
1109 // even when multiple contacts will receive separate emails from CiviCRM.
1110 if (!empty($attachmentFileIds)) {
3a9df50a 1111 $attachments = array_replace_recursive($attachments, $attachmentFileIds);
726e904b
TO
1112 }
1113
1114 // Create email activity.
0952020a 1115 $activityID = self::createEmailActivity($userID, $renderedTemplate['subject'], $renderedTemplate['html'], $renderedTemplate['text'], $additionalDetails, $campaignId, $attachments, $caseId);
13ecf776 1116 $activityIds[] = $activityID;
726e904b
TO
1117
1118 if ($firstActivityCreated == FALSE && !empty($attachments)) {
1119 $attachmentFileIds = self::getAttachmentFileIds($activityID, $attachments);
1120 $firstActivityCreated = TRUE;
1121 }
1122
6a488035 1123 if (self::sendMessage(
9d5494f7
TO
1124 $from,
1125 $userID,
1126 $contactId,
b0b4f714
EM
1127 $renderedTemplate['subject'],
1128 $renderedTemplate['text'],
1129 $renderedTemplate['html'],
9d5494f7 1130 $emailAddress,
3459bb88
MWMC
1131 $activityID,
1132 // get the set of attachments from where they are stored
1133 CRM_Core_BAO_File::getEntityFile('civicrm_activity', $activityID),
9d5494f7
TO
1134 $cc,
1135 $bcc
1136 )
1137 ) {
6a488035
TO
1138 $sent = TRUE;
1139 }
1140 }
1141
13ecf776 1142 return [$sent, $activityIds];
6a488035
TO
1143 }
1144
726e904b
TO
1145 /**
1146 * Returns a array of attachment key with matching file ID.
1147 *
1148 * The function searches for all file Ids added for the activity and returns an array that
1149 * uses the attachment key as the key and the file ID in the database for that matching attachment
1150 * key by comparing the file URI for that attachment to the matching file URI fetched from the
1151 * database. Having the file id matched per attachment key helps not to create a new file entry
1152 * when a new activity with these attachments when the email activity is created.
1153 *
1154 * @param int $activityID
1155 * Activity Id.
1156 * @param array $attachments
1157 * Attachments.
1158 *
1159 * @return array
1160 * Array of attachment key versus file Id.
1161 */
1162 private static function getAttachmentFileIds($activityID, $attachments) {
1163 $queryParams = [1 => [$activityID, 'Positive'], 2 => [CRM_Activity_DAO_Activity::getTableName(), 'String']];
1164 $query = "SELECT file_id, uri FROM civicrm_entity_file INNER JOIN civicrm_file ON civicrm_entity_file.file_id = civicrm_file.id
1165WHERE entity_id =%1 AND entity_table = %2";
1166 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
1167
1168 $fileDetails = [];
1169 while ($dao->fetch()) {
1170 $fileDetails[$dao->uri] = $dao->file_id;
1171 }
1172
1173 $activityAttachments = [];
1174 foreach ($attachments as $attachmentKey => $attachment) {
1175 foreach ($fileDetails as $keyUri => $fileId) {
1176 $path = explode('/', $attachment['uri']);
1177 $filename = $path[count($path) - 1];
1178 if ($filename == $keyUri) {
1179 $activityAttachments[$attachmentKey]['id'] = $fileId;
1180 }
1181 }
1182 }
1183
1184 return $activityAttachments;
1185 }
1186
ffd93213 1187 /**
36f5faa3 1188 * Send SMS. Returns: bool $sent, int $activityId, int $success (number of sent SMS)
0965e988 1189 *
100fef9d
CW
1190 * @param array $contactDetails
1191 * @param array $activityParams
36f5faa3
MW
1192 * @param array $smsProviderParams
1193 * @param array $contactIds
1194 * @param int $sourceContactId This is the source contact Id
ffd93213 1195 *
36f5faa3 1196 * @return array(bool $sent, int $activityId, int $success)
ffd93213
EM
1197 * @throws CRM_Core_Exception
1198 */
59f4c9ee 1199 public static function sendSMS(
cf348a5e 1200 &$contactDetails,
6a488035 1201 &$activityParams,
96f94695 1202 &$smsProviderParams = [],
36f5faa3
MW
1203 &$contactIds = NULL,
1204 $sourceContactId = NULL
6a488035 1205 ) {
63483feb
MM
1206 if (!CRM_Core_Permission::check('send SMS')) {
1207 throw new CRM_Core_Exception("You do not have the 'send SMS' permission");
1208 }
6a488035 1209
36f5faa3 1210 if (!isset($contactDetails) && !isset($contactIds)) {
0d48f1cc 1211 throw new CRM_Core_Exception('You must specify either $contactDetails or $contactIds');
36f5faa3
MW
1212 }
1213 // Populate $contactDetails and $contactIds if only one is set
1214 if (is_array($contactIds) && !empty($contactIds) && empty($contactDetails)) {
1215 foreach ($contactIds as $id) {
1216 try {
96f94695 1217 $contactDetails[] = civicrm_api3('Contact', 'getsingle', ['contact_id' => $id]);
36f5faa3
MW
1218 }
1219 catch (Exception $e) {
1220 // Contact Id doesn't exist
1221 }
1222 }
6a488035 1223 }
36f5faa3
MW
1224 elseif (is_array($contactDetails) && !empty($contactDetails) && empty($contactIds)) {
1225 foreach ($contactDetails as $contact) {
1226 $contactIds[] = $contact['contact_id'];
1227 }
1228 }
6a488035 1229
36f5faa3
MW
1230 // Get logged in User Id
1231 if (empty($sourceContactId)) {
1232 $sourceContactId = CRM_Core_Session::getLoggedInContactID();
1233 }
6a488035 1234
36f5faa3 1235 $text = &$activityParams['sms_text_message'];
6a488035 1236
36f5faa3 1237 // Create the meta level record first ( sms activity )
96f94695 1238 $activityParams = [
36f5faa3
MW
1239 'source_contact_id' => $sourceContactId,
1240 'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'SMS'),
6a488035 1241 'activity_date_time' => date('YmdHis'),
36f5faa3
MW
1242 'subject' => $activityParams['activity_subject'],
1243 'details' => $text,
fc0c4d20 1244 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Completed'),
96f94695 1245 ];
6a488035
TO
1246 $activity = self::create($activityParams);
1247 $activityID = $activity->id;
1248
36f5faa3
MW
1249 // Process Tokens
1250 // token replacement of addressee/email/postal greetings
1251 // get the tokens added in subject and message
1252 $messageToken = CRM_Utils_Token::getTokens($text);
96f94695 1253 $returnProperties = [];
6a488035
TO
1254 if (isset($messageToken['contact'])) {
1255 foreach ($messageToken['contact'] as $key => $value) {
1256 $returnProperties[$value] = 1;
1257 }
1258 }
36f5faa3 1259 // Call tokens hook
96f94695 1260 $tokens = [];
6a488035
TO
1261 CRM_Utils_Hook::tokens($tokens);
1262 $categories = array_keys($tokens);
6a488035 1263 // get token details for contacts, call only if tokens are used
96f94695 1264 $tokenDetails = [];
6a488035 1265 if (!empty($returnProperties) || !empty($tokens)) {
36f5faa3 1266 list($tokenDetails) = CRM_Utils_Token::getTokenDetails($contactIds,
6a488035
TO
1267 $returnProperties,
1268 NULL, NULL, FALSE,
1269 $messageToken,
1270 'CRM_Activity_BAO_Activity'
1271 );
1272 }
1273
f53ea1ce 1274 $success = 0;
96f94695 1275 $errMsgs = [];
36f5faa3
MW
1276 foreach ($contactDetails as $contact) {
1277 $contactId = $contact['contact_id'];
6a488035 1278
36f5faa3
MW
1279 // Replace tokens
1280 if (!empty($tokenDetails) && is_array($tokenDetails["{$contactId}"])) {
c965c606 1281 // unset phone from details since it always returns primary number
36f5faa3
MW
1282 unset($tokenDetails["{$contactId}"]['phone']);
1283 unset($tokenDetails["{$contactId}"]['phone_type_id']);
1284 $contact = array_merge($contact, $tokenDetails["{$contactId}"]);
6a488035 1285 }
e33c2ce7 1286 $tokenText = CRM_Core_BAO_MessageTemplate::renderTemplate(['messageTemplate' => ['msg_text' => $text], 'contactId' => $contactId, 'disableSmarty' => TRUE])['text'];
6a488035 1287
d65e1a68 1288 // Only send if the phone is of type mobile
36f5faa3
MW
1289 if ($contact['phone_type_id'] == CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_Phone', 'phone_type_id', 'Mobile')) {
1290 $smsProviderParams['To'] = $contact['phone'];
01aca362
DL
1291 }
1292 else {
36f5faa3 1293 $smsProviderParams['To'] = '';
d65e1a68 1294 }
6a488035 1295
2975f0aa 1296 $doNotSms = $contact['do_not_sms'] ?? 0;
c5a6413b 1297
a9b7ee41
SL
1298 if ($doNotSms) {
1299 $errMsgs[] = PEAR::raiseError('Contact Does not accept SMS', NULL, PEAR_ERROR_RETURN);
9d5494f7
TO
1300 }
1301 else {
4a0e3fe7
SL
1302 try {
1303 $sendResult = self::sendSMSMessage(
1304 $contactId,
1305 $tokenText,
1306 $smsProviderParams,
1307 $activityID,
1308 $sourceContactId
1309 );
a9b7ee41
SL
1310 $success++;
1311 }
4a0e3fe7
SL
1312 catch (CRM_Core_Exception $e) {
1313 $errMsgs[] = $e->getMessage();
1314 }
6a488035
TO
1315 }
1316 }
1317
c5a6413b
DS
1318 // If at least one message was sent and no errors
1319 // were generated then return a boolean value of TRUE.
1320 // Otherwise, return FALSE (no messages sent) or
1321 // and array of 1 or more PEAR_Error objects.
1322 $sent = FALSE;
1323 if ($success > 0 && count($errMsgs) == 0) {
1324 $sent = TRUE;
9d5494f7
TO
1325 }
1326 elseif (count($errMsgs) > 0) {
c5a6413b
DS
1327 $sent = $errMsgs;
1328 }
1329
96f94695 1330 return [$sent, $activity->id, $success];
6a488035
TO
1331 }
1332
1333 /**
5c9ff055 1334 * Send the sms message to a specific contact.
6a488035 1335 *
041ab3d1
TO
1336 * @param int $toID
1337 * The contact id of the recipient.
77b97be7 1338 * @param $tokenText
36f5faa3 1339 * @param array $smsProviderParams
041ab3d1
TO
1340 * The params used for sending sms.
1341 * @param int $activityID
1342 * The activity ID that tracks the message.
36f5faa3 1343 * @param int $sourceContactID
6a488035 1344 *
4a0e3fe7
SL
1345 * @return bool true on success
1346 * @throws CRM_Core_Exception
6a488035 1347 */
59f4c9ee 1348 public static function sendSMSMessage(
9d5494f7 1349 $toID,
6a488035 1350 &$tokenText,
cf348a5e 1351 $smsProviderParams,
e8cb3963 1352 $activityID,
36f5faa3 1353 $sourceContactID = NULL
6a488035 1354 ) {
36f5faa3 1355 $toPhoneNumber = NULL;
36f5faa3
MW
1356 if ($smsProviderParams['To']) {
1357 // If phone number is specified use it
1358 $toPhoneNumber = trim($smsProviderParams['To']);
6a488035
TO
1359 }
1360 elseif ($toID) {
36f5faa3 1361 // No phone number specified, so find a suitable one for the contact
96f94695 1362 $filters = ['is_deceased' => 0, 'is_deleted' => 0, 'do_not_sms' => 0];
6a488035 1363 $toPhoneNumbers = CRM_Core_BAO_Phone::allPhones($toID, FALSE, 'Mobile', $filters);
36f5faa3 1364 // To get primary mobile phonenumber, if not get the first mobile phonenumber
6a488035 1365 if (!empty($toPhoneNumbers)) {
36f5faa3 1366 $toPhoneNumberDetails = reset($toPhoneNumbers);
9c1bc317 1367 $toPhoneNumber = $toPhoneNumberDetails['phone'] ?? NULL;
7808aae6 1368 // Contact allows to send sms
6a488035
TO
1369 }
1370 }
1371
1372 // make sure both phone are valid
1373 // and that the recipient wants to receive sms
a9b7ee41 1374 if (empty($toPhoneNumber)) {
4a0e3fe7 1375 throw new CRM_Core_Exception('Recipient phone number is invalid or recipient does not want to receive SMS');
6a488035
TO
1376 }
1377
a9b7ee41 1378 $recipient = $toPhoneNumber;
36f5faa3
MW
1379 $smsProviderParams['contact_id'] = $toID;
1380 $smsProviderParams['parent_activity_id'] = $activityID;
6a488035 1381
96f94695 1382 $providerObj = CRM_SMS_Provider::singleton(['provider_id' => $smsProviderParams['provider_id']]);
36f5faa3 1383 $sendResult = $providerObj->send($recipient, $smsProviderParams, $tokenText, NULL, $sourceContactID);
6a488035 1384
36f5faa3
MW
1385 // add activity target record for every sms that is sent
1386 $targetID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Targets');
96f94695 1387 $activityTargetParams = [
6a488035 1388 'activity_id' => $activityID,
9d5494f7 1389 'contact_id' => $toID,
21dfd5f5 1390 'record_type_id' => $targetID,
96f94695 1391 ];
1d85d241 1392 CRM_Activity_BAO_ActivityContact::create($activityTargetParams);
6a488035
TO
1393
1394 return TRUE;
1395 }
1396
1397 /**
5c9ff055 1398 * Send the message to a specific contact.
6a488035 1399 *
041ab3d1
TO
1400 * @param string $from
1401 * The name and email of the sender.
100fef9d 1402 * @param int $fromID
041ab3d1
TO
1403 * @param int $toID
1404 * The contact id of the recipient.
1405 * @param string $subject
1406 * The subject of the message.
77b97be7
EM
1407 * @param $text_message
1408 * @param $html_message
041ab3d1
TO
1409 * @param string $emailAddress
1410 * Use this 'to' email address instead of the default Primary address.
1411 * @param int $activityID
1412 * The activity ID that tracks the message.
77b97be7
EM
1413 * @param null $attachments
1414 * @param null $cc
1415 * @param null $bcc
6a488035 1416 *
59f4c9ee
TO
1417 * @return bool
1418 * TRUE if successful else FALSE.
6a488035 1419 */
59f4c9ee 1420 public static function sendMessage(
9d5494f7 1421 $from,
6a488035
TO
1422 $fromID,
1423 $toID,
1424 &$subject,
1425 &$text_message,
1426 &$html_message,
1427 $emailAddress,
1428 $activityID,
1429 $attachments = NULL,
9d5494f7
TO
1430 $cc = NULL,
1431 $bcc = NULL
6a488035
TO
1432 ) {
1433 list($toDisplayName, $toEmail, $toDoNotEmail) = CRM_Contact_BAO_Contact::getContactDetails($toID);
1434 if ($emailAddress) {
1435 $toEmail = trim($emailAddress);
1436 }
1437
1438 // make sure both email addresses are valid
1439 // and that the recipient wants to receive email
1440 if (empty($toEmail) or $toDoNotEmail) {
1441 return FALSE;
1442 }
1443 if (!trim($toDisplayName)) {
1444 $toDisplayName = $toEmail;
1445 }
1446
44f817d4 1447 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
a24b3694 1448 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
1449
6a488035 1450 // create the params array
96f94695 1451 $mailParams = [
6a488035
TO
1452 'groupName' => 'Activity Email Sender',
1453 'from' => $from,
1454 'toName' => $toDisplayName,
1455 'toEmail' => $toEmail,
1456 'subject' => $subject,
1457 'cc' => $cc,
1458 'bcc' => $bcc,
1459 'text' => $text_message,
1460 'html' => $html_message,
1461 'attachments' => $attachments,
96f94695 1462 ];
6a488035
TO
1463
1464 if (!CRM_Utils_Mail::send($mailParams)) {
1465 return FALSE;
1466 }
1467
1468 // add activity target record for every mail that is send
96f94695 1469 $activityTargetParams = [
6a488035 1470 'activity_id' => $activityID,
1d85d241 1471 'contact_id' => $toID,
21dfd5f5 1472 'record_type_id' => $targetID,
96f94695 1473 ];
1d85d241 1474 CRM_Activity_BAO_ActivityContact::create($activityTargetParams);
6a488035
TO
1475 return TRUE;
1476 }
1477
1478 /**
db7de9c1 1479 * Combine all the importable fields from the lower levels object.
6a488035
TO
1480 *
1481 * The ordering is important, since currently we do not have a weight
1482 * scheme. Adding weight is super important and should be done in the
1483 * next week or so, before this can be called complete.
1484 *
dd244018
EM
1485 * @param bool $status
1486 *
a6c01b45
CW
1487 * @return array
1488 * array of importable Fields
6a488035 1489 */
00be9182 1490 public static function &importableFields($status = FALSE) {
a5280e5d 1491 if (empty(Civi::$statics[__CLASS__][__FUNCTION__])) {
1492 Civi::$statics[__CLASS__][__FUNCTION__] = [];
6a488035 1493 if (!$status) {
96f94695 1494 $fields = ['' => ['title' => ts('- do not import -')]];
6a488035
TO
1495 }
1496 else {
96f94695 1497 $fields = ['' => ['title' => ts('- Activity Fields -')]];
6a488035
TO
1498 }
1499
1500 $tmpFields = CRM_Activity_DAO_Activity::import();
1501 $contactFields = CRM_Contact_BAO_Contact::importableFields('Individual', NULL);
1502
1503 // Using new Dedupe rule.
96f94695 1504 $ruleParams = [
6a488035 1505 'contact_type' => 'Individual',
9d5494f7 1506 'used' => 'Unsupervised',
96f94695 1507 ];
61194d45 1508 $fieldsArray = CRM_Dedupe_BAO_DedupeRule::dedupeRuleFields($ruleParams);
6a488035 1509
96f94695 1510 $tmpConatctField = [];
6a488035
TO
1511 if (is_array($fieldsArray)) {
1512 foreach ($fieldsArray as $value) {
1513 $customFieldId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
1514 $value,
1515 'id',
1516 'column_name'
1517 );
1518 $value = $customFieldId ? 'custom_' . $customFieldId : $value;
1519 $tmpConatctField[trim($value)] = $contactFields[trim($value)];
1520 $tmpConatctField[trim($value)]['title'] = $tmpConatctField[trim($value)]['title'] . " (match to contact)";
1521 }
1522 }
1523 $tmpConatctField['external_identifier'] = $contactFields['external_identifier'];
1524 $tmpConatctField['external_identifier']['title'] = $contactFields['external_identifier']['title'] . " (match to contact)";
1525 $fields = array_merge($fields, $tmpConatctField);
1526 $fields = array_merge($fields, $tmpFields);
1527 $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Activity'));
a5280e5d 1528 Civi::$statics[__CLASS__][__FUNCTION__] = $fields;
6a488035 1529 }
a5280e5d 1530 return Civi::$statics[__CLASS__][__FUNCTION__];
6a488035
TO
1531 }
1532
1533 /**
a59cecb1 1534 * @deprecated - use the api instead.
1535 *
57507ae6 1536 * Get the Activities of a target contact.
6a488035 1537 *
041ab3d1
TO
1538 * @param int $contactId
1539 * Id of the contact whose activities need to find.
6a488035 1540 *
a6c01b45
CW
1541 * @return array
1542 * array of activity fields
6a488035 1543 */
00be9182 1544 public static function getContactActivity($contactId) {
a59cecb1 1545 // @todo remove this function entirely.
96f94695 1546 $activities = [];
44f817d4 1547 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
a24b3694 1548 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
1549 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
1550 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
b319d00a 1551
6a488035 1552 // First look for activities where contactId is one of the targets
91da6cd5 1553 $query = "
a24b3694 1554SELECT activity_id, record_type_id
91da6cd5
DL
1555FROM civicrm_activity_contact
1556WHERE contact_id = $contactId
1557";
1558 $dao = CRM_Core_DAO::executeQuery($query);
6a488035 1559 while ($dao->fetch()) {
9d5494f7 1560 if ($dao->record_type_id == $targetID) {
91da6cd5
DL
1561 $activities[$dao->activity_id]['targets'][$contactId] = $contactId;
1562 }
4c9b6178 1563 elseif ($dao->record_type_id == $assigneeID) {
91da6cd5
DL
1564 $activities[$dao->activity_id]['asignees'][$contactId] = $contactId;
1565 }
1566 else {
1567 // do source stuff here
42d30b83 1568 $activities[$dao->activity_id]['source_contact_id'] = $contactId;
91da6cd5 1569 }
6a488035
TO
1570 }
1571
91da6cd5 1572 $activityIds = array_keys($activities);
6a488035 1573 if (count($activityIds) < 1) {
96f94695 1574 return [];
6a488035 1575 }
91da6cd5 1576
6a488035 1577 $activityIds = implode(',', $activityIds);
91da6cd5
DL
1578 $query = "
1579SELECT activity.id as activity_id,
1580 activity_type_id,
1581 subject, location, activity_date_time, details, status_id
1582FROM civicrm_activity activity
1583WHERE activity.id IN ($activityIds)";
6a488035 1584
91da6cd5 1585 $dao = CRM_Core_DAO::executeQuery($query);
6a488035 1586
6a488035 1587 while ($dao->fetch()) {
6a488035 1588 $activities[$dao->activity_id]['id'] = $dao->activity_id;
6a488035
TO
1589 $activities[$dao->activity_id]['activity_type_id'] = $dao->activity_type_id;
1590 $activities[$dao->activity_id]['subject'] = $dao->subject;
1591 $activities[$dao->activity_id]['location'] = $dao->location;
1592 $activities[$dao->activity_id]['activity_date_time'] = $dao->activity_date_time;
1593 $activities[$dao->activity_id]['details'] = $dao->details;
1594 $activities[$dao->activity_id]['status_id'] = $dao->status_id;
f9aa1e86
MW
1595 $activities[$dao->activity_id]['activity_name'] = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'activity_type_id', $dao->activity_type_id);
1596 $activities[$dao->activity_id]['status'] = CRM_Core_PseudoConstant::getLabel('CRM_Activity_BAO_Activity', 'activity_status_id', $dao->status_id);
42d30b83
DL
1597
1598 // set to null if not set
1599 if (!isset($activities[$dao->activity_id]['source_contact_id'])) {
1600 $activities[$dao->activity_id]['source_contact_id'] = NULL;
1601 }
6a488035
TO
1602 }
1603 return $activities;
1604 }
1605
1606 /**
57507ae6 1607 * Add activity for Membership/Event/Contribution.
6a488035 1608 *
041ab3d1 1609 * @param object $activity
2719dc91 1610 * particular component object.
041ab3d1
TO
1611 * @param string $activityType
1612 * For Membership Signup or Renewal.
c490a46a 1613 * @param int $targetContactID
d2460a89 1614 * @param array $params
66a1e31f 1615 * Activity params to override.
6a488035 1616 *
59f4c9ee 1617 * @return bool|NULL
6a488035 1618 */
59f4c9ee 1619 public static function addActivity(
2719dc91 1620 $activity,
7d2c3972 1621 $activityType,
d2460a89 1622 $targetContactID = NULL,
96f94695 1623 $params = []
6a488035 1624 ) {
d2460a89 1625 $date = date('YmdHis');
fba045e1 1626 if ($activity->__table == 'civicrm_contribution') {
7808aae6 1627 // create activity record only for Completed Contributions
5b22d1b8
MW
1628 $contributionCompletedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
1629 if ($activity->contribution_status_id != $contributionCompletedStatusId) {
d33f8fc4
JP
1630 //For onbehalf payments, create a scheduled activity.
1631 if (empty($params['on_behalf'])) {
1632 return NULL;
1633 }
1634 $params['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Scheduled');
6a488035
TO
1635 }
1636
b6d493f3
MD
1637 // retrieve existing activity based on source_record_id and activity_type
1638 if (empty($params['id'])) {
96f94695 1639 $params['id'] = CRM_Utils_Array::value('id', civicrm_api3('Activity', 'Get', [
b6d493f3
MD
1640 'source_record_id' => $activity->id,
1641 'activity_type_id' => $activityType,
96f94695 1642 ]));
b6d493f3 1643 }
6150b2a0
MD
1644 if (!empty($params['id'])) {
1645 // CRM-13237 : if activity record found, update it with campaign id of contribution
1646 $params['campaign_id'] = $activity->campaign_id;
1647 }
b6d493f3 1648
f1518315 1649 $date = $activity->receive_date;
6a488035 1650 }
d2460a89 1651
96f94695 1652 $activityParams = [
6a488035
TO
1653 'source_contact_id' => $activity->contact_id,
1654 'source_record_id' => $activity->id,
d66c61b6 1655 'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', $activityType),
6a488035
TO
1656 'activity_date_time' => $date,
1657 'is_test' => $activity->is_test,
d66c61b6 1658 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Completed'),
6a488035
TO
1659 'skipRecentView' => TRUE,
1660 'campaign_id' => $activity->campaign_id,
96f94695 1661 ];
d2460a89
MD
1662 $activityParams = array_merge($activityParams, $params);
1663
1664 if (empty($activityParams['subject'])) {
1665 $activityParams['subject'] = self::getActivitySubject($activity);
1666 }
6a488035 1667
6e143f06
WA
1668 if (!empty($activity->activity_id)) {
1669 $activityParams['id'] = $activity->activity_id;
1670 }
6a488035 1671 // create activity with target contacts
6150b2a0
MD
1672 $id = CRM_Core_Session::getLoggedInContactID();
1673 if ($id) {
1674 $activityParams['source_contact_id'] = $id;
71acd4bf 1675 $activityParams['target_contact_id'][] = $activity->contact_id;
6a488035
TO
1676 }
1677
b870f878 1678 // CRM-14945
1679 if (property_exists($activity, 'details')) {
1680 $activityParams['details'] = $activity->details;
1681 }
6a488035
TO
1682 //CRM-4027
1683 if ($targetContactID) {
71acd4bf 1684 $activityParams['target_contact_id'][] = $targetContactID;
6a488035 1685 }
d66c61b6 1686 // @todo - use api - remove lots of wrangling above. Remove deprecated fatal & let form layer
1687 // deal with any exceptions.
6a488035 1688 if (is_a(self::create($activityParams), 'CRM_Core_Error')) {
fba045e1 1689 throw new CRM_Core_Exception("Failed creating Activity of type $activityType for entity id {$activity->id}");
6a488035
TO
1690 }
1691 }
1692
d2460a89 1693 /**
66a1e31f 1694 * Get activity subject on basis of component object.
d2460a89
MD
1695 *
1696 * @param object $entityObj
66a1e31f 1697 * particular component object.
d2460a89
MD
1698 *
1699 * @return string
a89e0a3e 1700 * @throws \CRM_Core_Exception
d2460a89
MD
1701 */
1702 public static function getActivitySubject($entityObj) {
a89e0a3e 1703 // @todo determine the subject on the appropriate entity rather than from the activity.
d2460a89
MD
1704 switch ($entityObj->__table) {
1705 case 'civicrm_membership':
a89e0a3e 1706 $membershipType = CRM_Core_PseudoConstant::getLabel('CRM_Member_BAO_Membership', 'membership_type_id', $entityObj->membership_type_id);
1707 $subject = $membershipType ?: ts('Membership');
5ab57aa2 1708
d2460a89
MD
1709 if (!CRM_Utils_System::isNull($entityObj->source)) {
1710 $subject .= " - {$entityObj->source}";
1711 }
1712
1713 if ($entityObj->owner_membership_id) {
1714 list($displayName) = CRM_Contact_BAO_Contact::getDisplayAndImage(CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $entityObj->owner_membership_id, 'contact_id'));
1715 $subject .= sprintf(' (by %s)', $displayName);
1716 }
1717
a89e0a3e 1718 $subject .= ' - Status: ' . CRM_Core_PseudoConstant::getLabel('CRM_Member_BAO_Membership', 'status_id', $entityObj->status_id);
d2460a89
MD
1719 return $subject;
1720
1721 case 'civicrm_participant':
1722 $event = CRM_Event_BAO_Event::getEvents(1, $entityObj->event_id, TRUE, FALSE);
1723 $roles = CRM_Event_PseudoConstant::participantRole();
1724 $status = CRM_Event_PseudoConstant::participantStatus();
1725 $subject = $event[$entityObj->event_id];
1726
1727 if (!empty($roles[$entityObj->role_id])) {
1728 $subject .= ' - ' . $roles[$entityObj->role_id];
1729 }
1730 if (!empty($status[$entityObj->status_id])) {
1731 $subject .= ' - ' . $status[$entityObj->status_id];
1732 }
1733
1734 return $subject;
1735
1736 case 'civicrm_contribution':
1737 $subject = CRM_Utils_Money::format($entityObj->total_amount, $entityObj->currency);
1738 if (!CRM_Utils_System::isNull($entityObj->source)) {
1739 $subject .= " - {$entityObj->source}";
1740 }
1741
1ea22892 1742 // Amount and source could exceed max length of subject column.
1743 return CRM_Utils_String::ellipsify($subject, 255);
d2460a89
MD
1744 }
1745 }
1746
6a488035 1747 /**
57507ae6 1748 * Get Parent activity for currently viewed activity.
6a488035 1749 *
041ab3d1
TO
1750 * @param int $activityId
1751 * Current activity id.
6a488035 1752 *
a6c01b45 1753 * @return int
57507ae6 1754 * Id of parent activity otherwise false.
f4b8bef7 1755 * @throws \CRM_Core_Exception
6a488035 1756 */
00be9182 1757 public static function getParentActivity($activityId) {
96f94695 1758 static $parentActivities = [];
6a488035
TO
1759
1760 $activityId = CRM_Utils_Type::escape($activityId, 'Integer');
1761
1762 if (!array_key_exists($activityId, $parentActivities)) {
96f94695 1763 $parentActivities[$activityId] = [];
6a488035
TO
1764
1765 $parentId = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity',
1766 $activityId,
1767 'parent_id'
1768 );
1769
1770 $parentActivities[$activityId] = $parentId ? $parentId : FALSE;
1771 }
1772
1773 return $parentActivities[$activityId];
1774 }
1775
6a488035 1776 /**
db7de9c1 1777 * Get all prior activities of currently viewed activity.
6a488035 1778 *
041ab3d1
TO
1779 * @param $activityID
1780 * Current activity id.
77b97be7
EM
1781 * @param bool $onlyPriorRevisions
1782 *
a6c01b45
CW
1783 * @return array
1784 * prior activities info.
f4b8bef7 1785 * @throws \CRM_Core_Exception
6a488035 1786 */
00be9182 1787 public static function getPriorAcitivities($activityID, $onlyPriorRevisions = FALSE) {
96f94695 1788 static $priorActivities = [];
6a488035
TO
1789
1790 $activityID = CRM_Utils_Type::escape($activityID, 'Integer');
1791 $index = $activityID . '_' . (int) $onlyPriorRevisions;
1792
1793 if (!array_key_exists($index, $priorActivities)) {
96f94695 1794 $priorActivities[$index] = [];
6a488035
TO
1795
1796 $originalID = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity',
1797 $activityID,
1798 'original_id'
1799 );
6ea979d9
CW
1800 if (!$originalID) {
1801 $originalID = $activityID;
1802 }
6a488035
TO
1803 if ($originalID) {
1804 $query = "
1805SELECT c.display_name as name, cl.modified_date as date, ca.id as activityID
1806FROM civicrm_log cl, civicrm_contact c, civicrm_activity ca
1807WHERE (ca.id = %1 OR ca.original_id = %1)
1808AND cl.entity_table = 'civicrm_activity'
1809AND cl.entity_id = ca.id
1810AND cl.modified_id = c.id
1811";
1812 if ($onlyPriorRevisions) {
1813 $query .= " AND ca.id < {$activityID}";
1814 }
1815 $query .= " ORDER BY ca.id DESC";
1816
96f94695 1817 $params = [1 => [$originalID, 'Integer']];
6a488035
TO
1818 $dao = CRM_Core_DAO::executeQuery($query, $params);
1819
1820 while ($dao->fetch()) {
1821 $priorActivities[$index][$dao->activityID]['id'] = $dao->activityID;
1822 $priorActivities[$index][$dao->activityID]['name'] = $dao->name;
1823 $priorActivities[$index][$dao->activityID]['date'] = $dao->date;
6a488035 1824 }
6a488035
TO
1825 }
1826 }
1827 return $priorActivities[$index];
1828 }
1829
1830 /**
db7de9c1 1831 * Find the latest revision of a given activity.
6a488035 1832 *
041ab3d1
TO
1833 * @param int $activityID
1834 * Prior activity id.
6a488035 1835 *
a6c01b45
CW
1836 * @return int
1837 * current activity id.
f4b8bef7 1838 *
1839 * @throws \CRM_Core_Exception
6a488035 1840 */
00be9182 1841 public static function getLatestActivityId($activityID) {
96f94695 1842 static $latestActivityIds = [];
6a488035
TO
1843
1844 $activityID = CRM_Utils_Type::escape($activityID, 'Integer');
1845
1846 if (!array_key_exists($activityID, $latestActivityIds)) {
96f94695 1847 $latestActivityIds[$activityID] = [];
6a488035
TO
1848
1849 $originalID = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity',
1850 $activityID,
1851 'original_id'
1852 );
1853 if ($originalID) {
1854 $activityID = $originalID;
1855 }
96f94695 1856 $params = [1 => [$activityID, 'Integer']];
f4b8bef7 1857 $query = 'SELECT id from civicrm_activity where original_id = %1 and is_current_revision = 1';
6a488035
TO
1858
1859 $latestActivityIds[$activityID] = CRM_Core_DAO::singleValueQuery($query, $params);
1860 }
1861
1862 return $latestActivityIds[$activityID];
1863 }
1864
1865 /**
db7de9c1 1866 * Create a follow up a given activity.
6a488035 1867 *
5a4f6742
CW
1868 * @param int $activityId
1869 * activity id of parent activity.
c490a46a 1870 * @param array $params
77b97be7 1871 *
59f4c9ee 1872 * @return CRM_Activity_BAO_Activity|null|object
f4b8bef7 1873 *
1874 * @throws \CRM_Core_Exception
6a488035 1875 */
00be9182 1876 public static function createFollowupActivity($activityId, $params) {
6a488035 1877 if (!$activityId) {
59f4c9ee 1878 return NULL;
6a488035
TO
1879 }
1880
96f94695 1881 $followupParams = [];
6a488035 1882 $followupParams['parent_id'] = $activityId;
3bdcd4ec 1883 $followupParams['source_contact_id'] = CRM_Core_Session::getLoggedInContactID();
5b22d1b8 1884 $followupParams['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Scheduled');
6a488035
TO
1885
1886 $followupParams['activity_type_id'] = $params['followup_activity_type_id'];
1887 // Get Subject of Follow-up Activiity, CRM-4491
9c1bc317
CW
1888 $followupParams['subject'] = $params['followup_activity_subject'] ?? NULL;
1889 $followupParams['assignee_contact_id'] = $params['followup_assignee_contact_id'] ?? NULL;
6a488035 1890
7808aae6 1891 // Create target contact for followup.
a7488080 1892 if (!empty($params['target_contact_id'])) {
6a488035
TO
1893 $followupParams['target_contact_id'] = $params['target_contact_id'];
1894 }
1895
d7c5e6c3 1896 $followupParams['activity_date_time'] = $params['followup_date'];
6a488035
TO
1897 $followupActivity = self::create($followupParams);
1898
1899 return $followupActivity;
1900 }
1901
1902 /**
100fef9d 1903 * Get Activity specific File according activity type Id.
6a488035 1904 *
041ab3d1
TO
1905 * @param int $activityTypeId
1906 * Activity id.
77b97be7 1907 * @param string $crmDir
6a488035 1908 *
72b3a70c
CW
1909 * @return string|bool
1910 * if file exists returns $activityTypeFile activity filename otherwise false.
6a488035 1911 */
00be9182 1912 public static function getFileForActivityTypeId($activityTypeId, $crmDir = 'Activity') {
6a488035
TO
1913 $activityTypes = CRM_Case_PseudoConstant::caseActivityType(FALSE, TRUE);
1914
1915 if ($activityTypes[$activityTypeId]['name']) {
1916 $activityTypeFile = CRM_Utils_String::munge(ucwords($activityTypes[$activityTypeId]['name']), '', 0);
1917 }
1918 else {
1919 return FALSE;
1920 }
1921
1922 global $civicrm_root;
1923 $config = CRM_Core_Config::singleton();
1924 if (!file_exists(rtrim($civicrm_root, '/') . "/CRM/{$crmDir}/Form/Activity/{$activityTypeFile}.php")) {
1925 if (empty($config->customPHPPathDir)) {
1926 return FALSE;
1927 }
1928 elseif (!file_exists(rtrim($config->customPHPPathDir, '/') . "/CRM/{$crmDir}/Form/Activity/{$activityTypeFile}.php")) {
1929 return FALSE;
1930 }
1931 }
1932
1933 return $activityTypeFile;
1934 }
1935
1936 /**
ee0ce2ef 1937 * Restore the activity.
6a488035 1938 *
041ab3d1 1939 * @param array $params
6a488035 1940 *
ee0ce2ef 1941 * @return CRM_Activity_DAO_Activity
6a488035
TO
1942 */
1943 public static function restoreActivity(&$params) {
1944 $activity = new CRM_Activity_DAO_Activity();
1945 $activity->copyValues($params);
1946
1947 $activity->is_deleted = 0;
1948 $result = $activity->save();
1949
1950 return $result;
1951 }
1952
760ac501 1953 /**
ce9d78e1
CW
1954 * Return list of activity statuses of a given type.
1955 *
1956 * Note: activity status options use the "grouping" field to distinguish status types.
1957 * Types are defined in class constants INCOMPLETE, COMPLETED, CANCELLED
760ac501 1958 *
ce9d78e1 1959 * @param int $type
760ac501
CW
1960 *
1961 * @return array
f4b8bef7 1962 * @throws \CiviCRM_API3_Exception
760ac501 1963 */
ce9d78e1 1964 public static function getStatusesByType($type) {
760ac501 1965 if (!isset(Civi::$statics[__CLASS__][__FUNCTION__])) {
96f94695 1966 $statuses = civicrm_api3('OptionValue', 'get', [
d544ffcd 1967 'option_group_id' => 'activity_status',
96f94695 1968 'return' => ['value', 'name', 'filter'],
1969 'options' => ['limit' => 0],
1970 ]);
ce9d78e1 1971 Civi::$statics[__CLASS__][__FUNCTION__] = $statuses['values'];
760ac501 1972 }
96f94695 1973 $ret = [];
ce9d78e1
CW
1974 foreach (Civi::$statics[__CLASS__][__FUNCTION__] as $status) {
1975 if ($status['filter'] == $type) {
1976 $ret[$status['value']] = $status['name'];
1977 }
1978 }
1979 return $ret;
760ac501
CW
1980 }
1981
1982 /**
1983 * Check if activity is overdue.
1984 *
1985 * @param array $activity
1986 *
1987 * @return bool
f4b8bef7 1988 * @throws \CiviCRM_API3_Exception
760ac501
CW
1989 */
1990 public static function isOverdue($activity) {
ce9d78e1 1991 return array_key_exists($activity['status_id'], self::getStatusesByType(self::INCOMPLETE)) && CRM_Utils_Date::overdue($activity['activity_date_time']);
760ac501
CW
1992 }
1993
6a488035 1994 /**
db7de9c1 1995 * Get the exportable fields for Activities.
6a488035 1996 *
041ab3d1
TO
1997 * @param string $name
1998 * If it is called by case $name = Case else $name = Activity.
6a488035 1999 *
a6c01b45
CW
2000 * @return array
2001 * array of exportable Fields
6a488035 2002 */
dcc79888 2003 public static function exportableFields($name = 'Activity') {
96f94695 2004 self::$_exportableFields[$name] = [];
dcc79888 2005
2006 // TODO: ideally we should retrieve all fields from xml, in this case since activity processing is done
cc81d063
MW
2007 $exportableFields = CRM_Activity_DAO_Activity::export();
2008 $exportableFields['source_contact_id'] = [
2009 'title' => ts('Source Contact ID'),
2010 'type' => CRM_Utils_Type::T_INT,
2011 ];
2012 $exportableFields['source_contact'] = [
2013 'title' => ts('Source Contact'),
2014 'type' => CRM_Utils_Type::T_STRING,
2015 ];
2016
2017 // @todo - remove these - they are added by CRM_Core_DAO::appendPseudoConstantsToFields
2018 // below. That search label stuff is referenced in search builder but is likely just
2019 // a hack that duplicates, maybe differently, other functionality.
2020 $activityFields = [
2021 'activity_type' => [
2022 'title' => ts('Activity Type'),
2023 'name' => 'activity_type',
dcc79888 2024 'type' => CRM_Utils_Type::T_STRING,
cc81d063
MW
2025 'searchByLabel' => TRUE,
2026 ],
2027 'activity_status' => [
2028 'title' => ts('Activity Status'),
2029 'name' => 'activity_status',
2030 'type' => CRM_Utils_Type::T_STRING,
2031 'searchByLabel' => TRUE,
2032 ],
2033 'activity_priority' => [
2034 'title' => ts('Activity Priority'),
2035 'name' => 'activity_priority',
2036 'type' => CRM_Utils_Type::T_STRING,
2037 'searchByLabel' => TRUE,
2038 ],
2039 ];
2040 $fields = array_merge($activityFields, $exportableFields);
cc81d063 2041 $fields['activity_priority_id'] = $fields['priority_id'];
6a488035 2042
cc81d063
MW
2043 if ($name === 'Case') {
2044 // Now add "case_activity" fields
dcc79888 2045 // Set title to activity fields.
cc81d063 2046 $caseActivityFields = [
96f94695 2047 'case_source_contact_id' => [
2048 'title' => ts('Activity Reporter'),
2049 'type' => CRM_Utils_Type::T_STRING,
2050 ],
f046623b 2051 'case_activity_date_time' => [
2052 'title' => ts('Activity Date'),
96f94695 2053 'type' => CRM_Utils_Type::T_DATE,
2054 ],
f046623b 2055 'case_activity_type' => [
96f94695 2056 'title' => ts('Activity Type'),
2057 'type' => CRM_Utils_Type::T_STRING,
2058 ],
96f94695 2059 'case_activity_medium_id' => [
2060 'title' => ts('Activity Medium'),
2061 'type' => CRM_Utils_Type::T_INT,
2062 ],
96f94695 2063 'case_activity_is_auto' => [
dcc79888 2064 'title' => ts('Activity Auto-generated?'),
2065 'type' => CRM_Utils_Type::T_BOOLEAN,
96f94695 2066 ],
2067 ];
cc81d063
MW
2068 $caseStandardFields = ['activity_subject', 'activity_status', 'activity_duration', 'activity_details'];
2069 foreach ($caseStandardFields as $key) {
2070 $caseActivityFields['case_' . $key] = $fields[$key];
2071 }
2072 $fields = $caseActivityFields;
dcc79888 2073 }
cc81d063 2074 // Add custom data
dcc79888 2075 $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Activity'));
6b051312 2076 CRM_Core_DAO::appendPseudoConstantsToFields($fields);
dcc79888 2077 self::$_exportableFields[$name] = $fields;
6a488035
TO
2078 return self::$_exportableFields[$name];
2079 }
2080
2081 /**
63e9c3fd 2082 * Get the allowed profile fields for Activities.
6a488035 2083 *
a6c01b45
CW
2084 * @return array
2085 * array of activity profile Fields
6a488035 2086 */
00be9182 2087 public static function getProfileFields() {
6a488035 2088 $exportableFields = self::exportableFields('Activity');
96f94695 2089 $skipFields = [
4f79a2f5 2090 'activity_id',
2091 'activity_type',
2092 'source_contact_id',
2093 'source_contact',
2094 'activity_campaign',
2095 'activity_is_test',
2096 'is_current_revision',
2097 'activity_is_deleted',
96f94695 2098 ];
6a488035
TO
2099 $config = CRM_Core_Config::singleton();
2100 if (!in_array('CiviCampaign', $config->enableComponents)) {
2101 $skipFields[] = 'activity_engagement_level';
2102 }
2103
2104 foreach ($skipFields as $field) {
2105 if (isset($exportableFields[$field])) {
2106 unset($exportableFields[$field]);
2107 }
2108 }
2109
2110 // hack to use 'activity_type_id' instead of 'activity_type'
2111 $exportableFields['activity_status_id'] = $exportableFields['activity_status'];
2112 unset($exportableFields['activity_status']);
2113
2114 return $exportableFields;
2115 }
2116
2117 /**
63e9c3fd
EM
2118 * This function deletes the activity record related to contact record.
2119 *
2120 * This is conditional on there being no target and assignee record
2121 * with other contacts.
6a488035 2122 *
041ab3d1
TO
2123 * @param int $contactId
2124 * ContactId.
6a488035
TO
2125 *
2126 * @return true/null
6a488035
TO
2127 */
2128 public static function cleanupActivity($contactId) {
2129 $result = NULL;
2130 if (!$contactId) {
2131 return $result;
2132 }
44f817d4 2133 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
2bf96211 2134 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
6a488035
TO
2135
2136 $transaction = new CRM_Core_Transaction();
2137
f1504541
DL
2138 // delete activity if there is no record in civicrm_activity_contact
2139 // pointing to any other contact record
2bf96211 2140 $activityContact = new CRM_Activity_DAO_ActivityContact();
2141 $activityContact->contact_id = $contactId;
2142 $activityContact->record_type_id = $sourceID;
2143 $activityContact->find();
6a488035 2144
2bf96211 2145 while ($activityContact->fetch()) {
f1504541 2146 // delete activity_contact record for the deleted contact
32ecf7bb
BS
2147 $activityContact->delete();
2148
2149 $activityContactOther = new CRM_Activity_DAO_ActivityContact();
2150 $activityContactOther->activity_id = $activityContact->activity_id;
32ecf7bb 2151
83e0a89c 2152 // delete activity only if no other contacts connected
9d5494f7 2153 if (!$activityContactOther->find(TRUE)) {
96f94695 2154 $activityParams = ['id' => $activityContact->activity_id];
32ecf7bb
BS
2155 $result = self::deleteActivity($activityParams);
2156 }
2157
6a488035 2158 }
6a488035
TO
2159
2160 $transaction->commit();
2161
2162 return $result;
2163 }
2164
2165 /**
567b2076 2166 * Does user has sufficient permission for view/edit activity record.
6a488035 2167 *
041ab3d1
TO
2168 * @param int $activityId
2169 * Activity record id.
2170 * @param int $action
2171 * Edit/view.
6a488035 2172 *
59f4c9ee 2173 * @return bool
6a488035
TO
2174 */
2175 public static function checkPermission($activityId, $action) {
3af8de9f 2176
6a488035 2177 if (!$activityId ||
96f94695 2178 !in_array($action, [CRM_Core_Action::UPDATE, CRM_Core_Action::VIEW])
6a488035 2179 ) {
3af8de9f 2180 return FALSE;
6a488035
TO
2181 }
2182
2183 $activity = new CRM_Activity_DAO_Activity();
2184 $activity->id = $activityId;
2185 if (!$activity->find(TRUE)) {
3af8de9f 2186 return FALSE;
6a488035 2187 }
ac4b9bc3 2188
11b18d9d 2189 if (!self::hasPermissionForActivityType($activity->activity_type_id)) {
ff2a3553 2190 // this check is redundant for api access / anything that calls the selectWhereClause
2191 // to determine ACLs.
11b18d9d 2192 return FALSE;
2193 }
ac4b9bc3 2194 // Return early when it is case activity.
2195 // Check for CiviCase related permission.
2196 if (CRM_Case_BAO_Case::isCaseActivity($activityId)) {
2197 return self::isContactPermittedAccessToCaseActivity($activityId, $action, $activity->activity_type_id);
2198 }
2199
7808aae6 2200 // Check for this permission related to contact.
6a488035
TO
2201 $permission = CRM_Core_Permission::VIEW;
2202 if ($action == CRM_Core_Action::UPDATE) {
2203 $permission = CRM_Core_Permission::EDIT;
2204 }
2205
44f817d4 2206 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
034500d4 2207 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
2208 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
2209 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
2210
7808aae6 2211 // Check for source contact.
f3b59360 2212 $sourceContactId = self::getActivityContact($activity->id, $sourceID);
2213 // Account for possibility of activity not having a source contact (as it may have been deleted).
2214 $allow = $sourceContactId ? CRM_Contact_BAO_Contact_Permission::allow($sourceContactId, $permission) : TRUE;
2215 if (!$allow) {
2216 return FALSE;
6a488035
TO
2217 }
2218
7808aae6 2219 // Check for target and assignee contacts.
f3b59360 2220 // First check for supper permission.
2221 $supPermission = 'view all contacts';
2222 if ($action == CRM_Core_Action::UPDATE) {
2223 $supPermission = 'edit all contacts';
2224 }
2225 $allow = CRM_Core_Permission::check($supPermission);
2226
2227 // User might have sufficient permission, through acls.
2228 if (!$allow) {
2229 $allow = TRUE;
2230 // Get the target contacts.
2231 $targetContacts = CRM_Activity_BAO_ActivityContact::retrieveContactIdsByActivityId($activity->id, $targetID);
2232 foreach ($targetContacts as $cnt => $contactId) {
2233 if (!CRM_Contact_BAO_Contact_Permission::allow($contactId, $permission)) {
2234 $allow = FALSE;
2235 break;
2236 }
2237 }
2238
2239 // Get the assignee contacts.
2240 if ($allow) {
2241 $assigneeContacts = CRM_Activity_BAO_ActivityContact::retrieveContactIdsByActivityId($activity->id, $assigneeID);
2242 foreach ($assigneeContacts as $cnt => $contactId) {
6a488035
TO
2243 if (!CRM_Contact_BAO_Contact_Permission::allow($contactId, $permission)) {
2244 $allow = FALSE;
2245 break;
2246 }
2247 }
6a488035
TO
2248 }
2249 }
2250
2251 return $allow;
2252 }
2253
ac4b9bc3 2254 /**
2255 * Check if the logged in user has permission for the given case activity.
2256 *
2257 * @param int $activityId
2258 * @param int $action
2259 * @param int $activityTypeID
2260 *
2261 * @return bool
2262 */
2263 protected static function isContactPermittedAccessToCaseActivity($activityId, $action, $activityTypeID) {
11b18d9d 2264 $oper = 'view';
2265 if ($action == CRM_Core_Action::UPDATE) {
2266 $oper = 'edit';
ac4b9bc3 2267 }
11b18d9d 2268 $allow = CRM_Case_BAO_Case::checkPermission($activityId,
2269 $oper,
2270 $activityTypeID
2271 );
ac4b9bc3 2272
2273 return $allow;
2274 }
2275
15e11313 2276 /**
a2d210b2 2277 * Check if the logged in user has permission to access the given activity type.
2278 *
15e11313 2279 * @param int $activityTypeID
a2d210b2 2280 *
15e11313 2281 * @return bool
2282 */
2283 protected static function hasPermissionForActivityType($activityTypeID) {
a2d210b2 2284 $permittedActivityTypes = self::getPermittedActivityTypes();
2285 return isset($permittedActivityTypes[$activityTypeID]);
2286 }
15e11313 2287
a2d210b2 2288 /**
2289 * Get the activity types the user is permitted to access.
2290 *
2291 * The types are filtered by the components they have access to. ie. a user
2292 * with access CiviContribute but not CiviMember will see contribution related
2293 * activities and activities with no component (e.g meetings) but not member related ones.
2294 *
2295 * @return array
2296 */
ff2a3553 2297 protected static function getPermittedActivityTypes() {
a2d210b2 2298 $userID = (int) CRM_Core_Session::getLoggedInContactID();
2299 if (!isset(Civi::$statics[__CLASS__]['permitted_activity_types'][$userID])) {
2300 $permittedActivityTypes = [];
2301 $components = self::activityComponents(FALSE);
2302 $componentClause = empty($components) ? '' : (' OR component_id IN (' . implode(', ', array_keys($components)) . ')');
2303
2304 $types = CRM_Core_DAO::executeQuery(
2305 "
2306 SELECT option_value.value activity_type_id
2307 FROM civicrm_option_value option_value
2308INNER JOIN civicrm_option_group grp ON (grp.id = option_group_id AND grp.name = 'activity_type')
2309 WHERE component_id IS NULL $componentClause")->fetchAll();
2310 foreach ($types as $type) {
ff2a3553 2311 $permittedActivityTypes[$type['activity_type_id']] = (int) $type['activity_type_id'];
a2d210b2 2312 }
ce0e9bdc 2313 asort($permittedActivityTypes);
a2d210b2 2314 Civi::$statics[__CLASS__]['permitted_activity_types'][$userID] = $permittedActivityTypes;
2315 }
2316 return Civi::$statics[__CLASS__]['permitted_activity_types'][$userID];
15e11313 2317 }
2318
84be264e 2319 /**
2320 * @param $params
2321 * @return array
2322 */
2323 protected static function getActivityParamsForDashboardFunctions($params) {
2324 $activityParams = [
2325 'is_deleted' => 0,
2326 'is_current_revision' => 1,
2327 'is_test' => 0,
6b409353
CW
2328 'contact_id' => $params['contact_id'] ?? NULL,
2329 'activity_date_time' => $params['activity_date_time'] ?? NULL,
84be264e 2330 'check_permissions' => 1,
2331 'options' => [
2975f0aa 2332 'offset' => $params['offset'] ?? 0,
84be264e 2333 ],
2334 ];
2335
2336 if (!empty($params['activity_status_id'])) {
2337 $activityParams['activity_status_id'] = ['IN' => explode(',', $params['activity_status_id'])];
2338 }
2339
2340 $activityParams['activity_type_id'] = self::filterActivityTypes($params);
2341 $enabledComponents = self::activityComponents();
44422cc8 2342 // @todo - this appears to be duplicating the activity api.
2343 if (!in_array('CiviCase', $enabledComponents)) {
2344 $activityParams['case_id'] = ['IS NULL' => 1];
84be264e 2345 }
2346 return $activityParams;
2347 }
2348
55806731 2349 /**
426fe3c7 2350 * Checks if user has permissions to edit inbound e-mails, either basic info
55806731
CR
2351 * or both basic information and content.
2352 *
2353 * @return bool
2354 */
2a7eaaa8 2355 public static function checkEditInboundEmailsPermissions() {
55806731
CR
2356 if (CRM_Core_Permission::check('edit inbound email basic information')
2357 || CRM_Core_Permission::check('edit inbound email basic information and content')
2358 ) {
2359 return TRUE;
2360 }
2361
2362 return FALSE;
2363 }
2364
620d09f0
MWMC
2365 /**
2366 * Get the list of view only activities
2367 *
2368 * @return array
2369 */
2370 public static function getViewOnlyActivityTypeIDs() {
2371 $viewOnlyActivities = [
2372 'Email' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Email'),
2373 ];
2374 if (self::checkEditInboundEmailsPermissions()) {
2375 $viewOnlyActivities['Inbound Email'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Inbound Email');
2376 }
2377 return $viewOnlyActivities;
2378 }
2379
6a488035 2380 /**
db7de9c1 2381 * Wrapper for ajax activity selector.
6a488035 2382 *
041ab3d1
TO
2383 * @param array $params
2384 * Associated array for params record id.
6a488035 2385 *
a6c01b45 2386 * @return array
db7de9c1 2387 * Associated array of contact activities
6a488035
TO
2388 */
2389 public static function getContactActivitySelector(&$params) {
7808aae6 2390 // Format the params.
9d5494f7 2391 $params['offset'] = ($params['page'] - 1) * $params['rp'];
6a488035 2392 $params['rowCount'] = $params['rp'];
9c1bc317 2393 $params['sort'] = $params['sortBy'] ?? NULL;
9d5494f7 2394 $params['caseId'] = NULL;
9c1bc317 2395 $context = $params['context'] ?? NULL;
e5dcfebc 2396 $showContactOverlay = !CRM_Utils_String::startsWith($context, "dashlet");
96f94695 2397 $activityTypeInfo = civicrm_api3('OptionValue', 'get', [
8c99c0bb 2398 'option_group_id' => "activity_type",
96f94695 2399 'options' => ['limit' => 0],
2400 ]);
2401 $activityIcons = [];
8c99c0bb
CW
2402 foreach ($activityTypeInfo['values'] as $type) {
2403 if (!empty($type['icon'])) {
2404 $activityIcons[$type['value']] = $type['icon'];
2405 }
2406 }
c43665cc 2407 CRM_Utils_Date::convertFormDateToApiFormat($params, 'activity_date_time');
6a488035 2408
7808aae6 2409 // Get contact activities.
6e793248 2410 $activities = CRM_Activity_BAO_Activity::getActivities($params);
6a488035 2411
7808aae6 2412 // Add total.
6e793248 2413 $params['total'] = CRM_Activity_BAO_Activity::getActivitiesCount($params);
6a488035 2414
7808aae6 2415 // Format params and add links.
96f94695 2416 $contactActivities = [];
6a488035 2417
3e120a63
RLAR
2418 // View-only activity types
2419 $viewOnlyCaseActivityTypeIDs = array_flip(CRM_Activity_BAO_Activity::getViewOnlyActivityTypeIDs());
2420
6a488035
TO
2421 if (!empty($activities)) {
2422 $activityStatus = CRM_Core_PseudoConstant::activityStatus();
2423
7808aae6 2424 // Check logged in user for permission.
6a488035
TO
2425 $page = new CRM_Core_Page();
2426 CRM_Contact_Page_View::checkUserPermission($page, $params['contact_id']);
96f94695 2427 $permissions = [$page->_permission];
6a488035
TO
2428 if (CRM_Core_Permission::check('delete activities')) {
2429 $permissions[] = CRM_Core_Permission::DELETE;
2430 }
2431
2432 $mask = CRM_Core_Action::mask($permissions);
2433
2434 foreach ($activities as $activityId => $values) {
6e793248 2435 $activity = ['source_contact_name' => '', 'target_contact_name' => ''];
febb6506 2436 $activity['DT_RowId'] = $activityId;
7808aae6 2437 // Add class to this row if overdue.
b62580ac 2438 $activity['DT_RowClass'] = "crm-entity status-id-{$values['status_id']}";
760ac501 2439 if (self::isOverdue($values)) {
7d12de7f
JL
2440 $activity['DT_RowClass'] .= ' status-overdue';
2441 }
2442 else {
2443 $activity['DT_RowClass'] .= ' status-ontime';
2444 }
2445
96f94695 2446 $activity['DT_RowAttr'] = [];
febb6506
JL
2447 $activity['DT_RowAttr']['data-entity'] = 'activity';
2448 $activity['DT_RowAttr']['data-id'] = $activityId;
7d12de7f 2449
13a3d214 2450 $activity['activity_type'] = (!empty($activityIcons[$values['activity_type_id']]) ? '<span class="crm-i ' . $activityIcons[$values['activity_type_id']] . '" aria-hidden="true"></span> ' : '') . $values['activity_type'];
7d12de7f 2451 $activity['subject'] = $values['subject'];
ad280fb6 2452
6a488035 2453 if ($params['contact_id'] == $values['source_contact_id']) {
7d12de7f 2454 $activity['source_contact_name'] = $values['source_contact_name'];
6a488035
TO
2455 }
2456 elseif ($values['source_contact_id']) {
e846bd8d 2457 $srcTypeImage = "";
2458 if ($showContactOverlay) {
2459 $srcTypeImage = CRM_Contact_BAO_Contact_Utils::getImage(
2460 CRM_Contact_BAO_Contact::getContactType($values['source_contact_id']),
2461 FALSE,
2462 $values['source_contact_id']);
2463 }
160db45f 2464 $activity['source_contact_name'] = $srcTypeImage . CRM_Utils_System::href($values['source_contact_name'],
96f94695 2465 'civicrm/contact/view', "reset=1&cid={$values['source_contact_id']}");
6a488035
TO
2466 }
2467 else {
7d12de7f 2468 $activity['source_contact_name'] = '<em>n/a</em>';
6a488035
TO
2469 }
2470
2471 if (isset($values['mailingId']) && !empty($values['mailingId'])) {
7d12de7f 2472 $activity['target_contact'] = CRM_Utils_System::href($values['recipients'],
5a99d240
KJ
2473 'civicrm/mailing/report/event',
2474 "mid={$values['source_record_id']}&reset=1&event=queue&cid={$params['contact_id']}&context=activitySelector");
6a488035 2475 }
a7488080 2476 elseif (!empty($values['recipients'])) {
7d12de7f 2477 $activity['target_contact_name'] = $values['recipients'];
6a488035 2478 }
c2ce41b6 2479 elseif (isset($values['target_contact_count']) && $values['target_contact_count']) {
7d12de7f 2480 $activity['target_contact_name'] = '';
a84a8555 2481 $firstTargetName = reset($values['target_contact_name']);
2482 $firstTargetContactID = key($values['target_contact_name']);
2483
995f30cc
SL
2484 // The first target may not be accessable to the logged in user dev/core#1052
2485 if ($firstTargetName) {
2486 $targetLink = CRM_Utils_System::href($firstTargetName, 'civicrm/contact/view', "reset=1&cid={$firstTargetContactID}");
2487 if ($showContactOverlay) {
2488 $targetTypeImage = CRM_Contact_BAO_Contact_Utils::getImage(
2489 CRM_Contact_BAO_Contact::getContactType($firstTargetContactID),
2490 FALSE,
2491 $firstTargetContactID);
2492 $activity['target_contact_name'] .= "<div>$targetTypeImage $targetLink";
2493 }
2494 else {
2495 $activity['target_contact_name'] .= $targetLink;
2496 }
6a488035 2497
995f30cc
SL
2498 if ($extraCount = $values['target_contact_count'] - 1) {
2499 $activity['target_contact_name'] .= ";<br />" . "(" . ts('%1 more', [1 => $extraCount]) . ")";
2500 }
2501 if ($showContactOverlay) {
2502 $activity['target_contact_name'] .= "</div> ";
2503 }
6a488035
TO
2504 }
2505 }
146058da 2506 elseif (empty($values['target_contact_name'])) {
7d12de7f 2507 $activity['target_contact_name'] = '<em>n/a</em>';
9254ec4e 2508 }
6a488035 2509
ad280fb6 2510 $activity['assignee_contact_name'] = '';
6a488035 2511 if (empty($values['assignee_contact_name'])) {
7d12de7f 2512 $activity['assignee_contact_name'] = '<em>n/a</em>';
6a488035
TO
2513 }
2514 elseif (!empty($values['assignee_contact_name'])) {
2515 $count = 0;
7d12de7f 2516 $activity['assignee_contact_name'] = '';
6a488035
TO
2517 foreach ($values['assignee_contact_name'] as $acID => $acName) {
2518 if ($acID && $count < 5) {
e846bd8d 2519 $assigneeTypeImage = "";
ceb21ebb 2520 $assigneeLink = CRM_Utils_System::href($acName, 'civicrm/contact/view', "reset=1&cid={$acID}");
e846bd8d 2521 if ($showContactOverlay) {
2522 $assigneeTypeImage = CRM_Contact_BAO_Contact_Utils::getImage(
2523 CRM_Contact_BAO_Contact::getContactType($acID),
2524 FALSE,
2525 $acID);
ceb21ebb 2526 $activity['assignee_contact_name'] .= "<div>$assigneeTypeImage $assigneeLink";
e846bd8d 2527 }
ceb21ebb 2528 else {
2529 $activity['assignee_contact_name'] .= $assigneeLink;
2530 }
2531
6a488035
TO
2532 $count++;
2533 if ($count) {
ceb21ebb 2534 $activity['assignee_contact_name'] .= ";&nbsp;";
2535 }
2536 if ($showContactOverlay) {
2537 $activity['assignee_contact_name'] .= "</div> ";
6a488035
TO
2538 }
2539
2540 if ($count == 4) {
7d12de7f 2541 $activity['assignee_contact_name'] .= "(" . ts('more') . ")";
6a488035
TO
2542 break;
2543 }
2544 }
2545 }
2546 }
6a488035 2547
7d12de7f
JL
2548 $activity['activity_date_time'] = CRM_Utils_Date::customFormat($values['activity_date_time']);
2549 $activity['status_id'] = $activityStatus[$values['status_id']];
6a488035 2550
3e120a63 2551 // Get action links.
144a5b07 2552 //
2553 // Note that $viewOnlyCaseActivityTypeIDs, while not a super-heavy
2554 // calculation, makes some sense to calculate outside the loop above.
2555 // We could recalculate it each time inside getActionLinks if we wanted
2556 // to avoid passing it along. Or use caching inside getAcionLinks.
2557 // - Ditto $mask.
2558 $activity['links'] = self::getActionLinks(
2559 $values,
2560 $activityId,
2561 $params['contact_id'],
2562 isset($viewOnlyCaseActivityTypeIDs[$values['activity_type_id']]),
2563 $context,
2564 $mask,
2565 // I think this parameter should be ignored completely for the purpose
2566 // of generating a link but am leaving it as-is for now.
2567 (bool) Civi::settings()->get('civicaseShowCaseActivities')
2568 );
97c7504f 2569
04374d9d 2570 if ($values['is_recurring_activity']) {
053eb755 2571 $activity['is_recurring_activity'] = CRM_Core_BAO_RecurringEntity::getPositionAndCount($values['activity_id'], 'civicrm_activity');
04374d9d 2572 }
7d12de7f
JL
2573
2574 array_push($contactActivities, $activity);
6a488035
TO
2575 }
2576 }
2577
96f94695 2578 $activitiesDT = [];
7d12de7f
JL
2579 $activitiesDT['data'] = $contactActivities;
2580 $activitiesDT['recordsTotal'] = $params['total'];
2581 $activitiesDT['recordsFiltered'] = $params['total'];
2582
2583 return $activitiesDT;
6a488035
TO
2584 }
2585
144a5b07 2586 /**
2587 * Get the right links depending on the activity type and other factors.
2588 * @param array $values
2589 * @param int $activityId
2590 * @param ?int $contactId
2591 * @param bool $isViewOnly Is this a special type that shouldn't be edited
2592 * @param ?string $context
2593 * @param ?int $mask
2594 * @param bool $dontBreakCaseActivities Originally this function was
2595 * part of another function that was only used on the contact's activity
2596 * tab and this parameter would only be false when you're not displaying
2597 * case activities anyway and so was effectively never used. And I'm not
2598 * sure why for the purposes of links you would ever want a case activity
2599 * to link to the regular form, so I think this can be removed, but am
2600 * leaving it as-is for now.
2601 * @return string HTML string
2602 */
2603 public static function getActionLinks(
2604 array $values,
2605 int $activityId,
2606 ?int $contactId,
2607 bool $isViewOnly,
2608 ?string $context,
2609 ?int $mask,
2610 bool $dontBreakCaseActivities = TRUE): string {
2611
2612 $linksToReturn = '';
2613 // If this is a case activity, then we hand off to Case's actionLinks instead.
2614 if (!empty($values['case_id']) && $dontBreakCaseActivities) {
2615 // This activity belongs to a case.
2616 $caseId = current($values['case_id']);
2617
2618 // Get the view and edit (update) links:
2619 $caseActionLinks =
2620 $actionLinks = array_intersect_key(
2621 CRM_Case_Selector_Search::actionLinks(),
2622 array_fill_keys([CRM_Core_Action::VIEW, CRM_Core_Action::UPDATE], NULL));
2623
2624 // Create a Manage Case link (using ADVANCED as can't use two VIEW ones)
2625 $actionLinks[CRM_Core_Action::ADVANCED] = [
2626 "name" => 'Manage Case',
2627 "url" => 'civicrm/contact/view/case',
2628 'qs' => 'reset=1&id=%%caseid%%&cid=%%cid%%&action=view&context=&selectedChild=case',
2629 "title" => ts('Manage Case %1', [1 => $caseId]),
2630 'class' => 'no-popup',
2631 ];
2632
2633 $caseLinkValues = [
2634 'aid' => $activityId,
2635 'caseid' => $caseId,
2636 'cid' => current(CRM_Case_BAO_Case::getCaseClients($caseId) ?? []),
2637 // Unlike other 'context' params, this 'ctx' param is appended raw to the URL.
2638 'cxt' => '',
2639 ];
2640
2641 $caseActivityPermissions = CRM_Core_Action::VIEW | CRM_Core_Action::ADVANCED;
2642 // Allow Edit link if:
2643 // 1. Activity type is NOT view-only type. CRM-5871
2644 // 2. User has edit permission.
2645 if (!$isViewOnly
2646 && CRM_Case_BAO_Case::checkPermission($activityId, 'edit', $values['activity_type_id'], CRM_Core_Session::getLoggedInContactID())) {
2647 // We're allowed to edit.
2648 $caseActivityPermissions |= CRM_Core_Action::UPDATE;
2649 }
2650
2651 $linksToReturn = CRM_Core_Action::formLink($actionLinks,
2652 $caseActivityPermissions,
2653 $caseLinkValues,
2654 ts('more'),
2655 FALSE,
2656 'activity.tab.row',
2657 'Activity',
2658 $values['activity_id']
2659 );
2660 }
2661 else {
2662 // Non-case activity
2663 $actionLinks = CRM_Activity_Selector_Activity::actionLinks(
2664 $values['activity_type_id'] ?? NULL,
2665 $values['source_record_id'] ?? NULL,
2666 !empty($values['mailingId']),
2667 $values['activity_id'] ?? NULL
2668 );
2669 $actionMask = array_sum(array_keys($actionLinks)) & $mask;
2670
2671 $linksToReturn = CRM_Core_Action::formLink($actionLinks,
2672 $actionMask,
2673 [
2674 'id' => $values['activity_id'],
2675 'cid' => $contactId,
2676 'cxt' => $context,
2677 'caseid' => NULL,
2678 ],
2679 ts('more'),
2680 FALSE,
2681 'activity.tab.row',
2682 'Activity',
2683 $values['activity_id']
2684 );
2685 }
2686 return $linksToReturn;
2687 }
2688
ffd93213 2689 /**
63e9c3fd
EM
2690 * Copy custom fields and attachments from an existing activity to another.
2691 *
d3e86119 2692 * @see CRM_Case_Page_AJAX::_convertToCaseActivity()
c490a46a
CW
2693 *
2694 * @param array $params
ffd93213 2695 */
00be9182 2696 public static function copyExtendedActivityData($params) {
6a488035 2697 // attach custom data to the new activity
96f94695 2698 $customParams = $htmlType = [];
6a488035
TO
2699 $customValues = CRM_Core_BAO_CustomValueTable::getEntityValues($params['activityID'], 'Activity');
2700
2701 if (!empty($customValues)) {
2702 $fieldIds = implode(', ', array_keys($customValues));
9d5494f7
TO
2703 $sql = "SELECT id FROM civicrm_custom_field WHERE html_type = 'File' AND id IN ( {$fieldIds} )";
2704 $result = CRM_Core_DAO::executeQuery($sql);
6a488035
TO
2705
2706 while ($result->fetch()) {
2707 $htmlType[] = $result->id;
2708 }
2709
2710 foreach ($customValues as $key => $value) {
59f4c9ee
TO
2711 if ($value !== NULL) {
2712 // CRM-10542
6a488035
TO
2713 if (in_array($key, $htmlType)) {
2714 $fileValues = CRM_Core_BAO_File::path($value, $params['activityID']);
96f94695 2715 $customParams["custom_{$key}_-1"] = [
6a488035 2716 'name' => $fileValues[0],
ee59be7f 2717 'type' => $fileValues[1],
96f94695 2718 ];
6a488035
TO
2719 }
2720 else {
2721 $customParams["custom_{$key}_-1"] = $value;
2722 }
2723 }
2724 }
5fc3ea24 2725 CRM_Core_BAO_CustomValueTable::postProcess($customParams, 'civicrm_activity',
6a488035
TO
2726 $params['mainActivityId'], 'Activity'
2727 );
2728 }
2729
2730 // copy activity attachments ( if any )
2731 CRM_Core_BAO_File::copyEntityFile('civicrm_activity', $params['activityID'], 'civicrm_activity', $params['mainActivityId']);
2732 }
65ebc887 2733
ffd93213 2734 /**
63e9c3fd
EM
2735 * Get activity contact.
2736 *
100fef9d
CW
2737 * @param int $activityId
2738 * @param int $recordTypeID
ffd93213
EM
2739 * @param string $column
2740 *
2741 * @return null
2742 */
65ebc887 2743 public static function getActivityContact($activityId, $recordTypeID = NULL, $column = 'contact_id') {
2744 $activityContact = new CRM_Activity_BAO_ActivityContact();
2745 $activityContact->activity_id = $activityId;
2746 if ($recordTypeID) {
2747 $activityContact->record_type_id = $recordTypeID;
2748 }
2749 if ($activityContact->find(TRUE)) {
b319d00a 2750 return $activityContact->$column;
65ebc887 2751 }
42d30b83
DL
2752 return NULL;
2753 }
2754
ffd93213 2755 /**
567b2076
EM
2756 * Get source contact id.
2757 *
100fef9d 2758 * @param int $activityId
ffd93213
EM
2759 *
2760 * @return null
2761 */
42d30b83
DL
2762 public static function getSourceContactID($activityId) {
2763 static $sourceID = NULL;
2764 if (!$sourceID) {
44f817d4 2765 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
42d30b83
DL
2766 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
2767 }
2768
2769 return self::getActivityContact($activityId, $sourceID);
65ebc887 2770 }
42d30b83 2771
ffd93213 2772 /**
63e9c3fd
EM
2773 * Set api filter.
2774 *
2775 * @todo Document what this is for.
2776 *
c490a46a 2777 * @param array $params
ffd93213 2778 */
00be9182 2779 public function setApiFilter(&$params) {
b53cbfbc 2780 if (!empty($params['target_contact_id'])) {
6e1bb60c 2781 $this->selectAdd();
44f817d4 2782 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
6e1bb60c
N
2783 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
2784 $obj = new CRM_Activity_BAO_ActivityContact();
2785 $params['return.target_contact_id'] = 1;
2786 $this->joinAdd($obj, 'LEFT');
2787 $this->selectAdd('civicrm_activity.*');
2788 $this->whereAdd(" civicrm_activity_contact.contact_id = {$params['target_contact_id']} AND civicrm_activity_contact.record_type_id = {$targetID}");
2789 }
2790 }
2791
2bbb4a91 2792 /**
7808aae6 2793 * Send activity as attachment.
2bbb4a91 2794 *
2795 * @param object $activity
2796 * @param array $mailToContacts
fc110b68 2797 * @param array $params
2bbb4a91 2798 *
bc883279 2799 * @return bool
2bbb4a91 2800 */
96f94695 2801 public static function sendToAssignee($activity, $mailToContacts, $params = []) {
fc110b68 2802 if (!CRM_Utils_Array::crmIsEmptyArray($mailToContacts)) {
9c1bc317
CW
2803 $clientID = $params['client_id'] ?? NULL;
2804 $caseID = $params['case_id'] ?? NULL;
fc110b68 2805
2bbb4a91 2806 $ics = new CRM_Activity_BAO_ICalendar($activity);
2807 $attachments = CRM_Core_BAO_File::getEntityFile('civicrm_activity', $activity->id);
2808 $ics->addAttachment($attachments, $mailToContacts);
2809
fc110b68 2810 $result = CRM_Case_BAO_Case::sendActivityCopy($clientID, $activity->id, $mailToContacts, $attachments, $caseID);
2bbb4a91 2811 $ics->cleanup();
fc110b68 2812 return $result;
2bbb4a91 2813 }
2814 return FALSE;
2815 }
bc883279 2816
1d6f94ab
CW
2817 /**
2818 * @return array
2819 */
2820 public static function getEntityRefFilters() {
2821 return [
2822 ['key' => 'activity_type_id', 'value' => ts('Activity Type')],
2823 ['key' => 'status_id', 'value' => ts('Activity Status')],
2824 ];
2825 }
2826
6a488035 2827}