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