Short array syntax - auto-convert api dir
[civicrm-core.git] / api / v3 / Activity.php
CommitLineData
6a488035 1<?php
6a488035
TO
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 +--------------------------------------------------------------------+
26 */
27
28/**
244bbdd8 29 * This api exposes CiviCRM Activity records.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
34
35/**
61fe4988 36 * Creates or updates an Activity.
6a488035 37 *
cf470720 38 * @param array $params
c28e1768 39 * Array per getfields documentation.
6a488035 40 *
77b97be7 41 * @throws API_Exception
a6c01b45 42 * @return array
00f8641b 43 * API result array
6a488035
TO
44 */
45function civicrm_api3_activity_create($params) {
c16b4619 46 $isNew = empty($params['id']);
6a488035 47
a7488080 48 if (empty($params['id'])) {
6a488035
TO
49 // an update does not require any mandatory parameters
50 civicrm_api3_verify_one_mandatory($params,
51 NULL,
cf8f0fff 52 [
7cdbcb16
TO
53 'activity_name',
54 'activity_type_id',
55 'activity_label',
cf8f0fff 56 ]
6a488035
TO
57 );
58 }
59
6a488035
TO
60 // check for various error and required conditions
61 // note that almost all the processing in there should be managed by the wrapper layer
62 // & should be removed - needs testing
63 $errors = _civicrm_api3_activity_check_params($params);
64
65 // this should not be required as should throw exception rather than return errors -
66 //needs testing
67 if (!empty($errors)) {
68 return $errors;
69 }
70
6a488035 71 // processing for custom data
cf8f0fff 72 $values = $activityArray = [];
6a488035
TO
73 _civicrm_api3_custom_format_params($params, $values, 'Activity');
74
75 if (!empty($values['custom'])) {
76 $params['custom'] = $values['custom'];
77 }
78
79 // this should be set as a default rather than hard coded
80 // needs testing
81 $params['skipRecentView'] = TRUE;
82
83 // If this is a case activity, see if there is an existing activity
84 // and set it as an old revision. Also retrieve details we'll need.
85 // this handling should all be moved to the BAO layer
7cdbcb16
TO
86 $case_id = '';
87 $createRevision = FALSE;
cf8f0fff 88 $oldActivityValues = [];
e96d5fa3
CW
89 // Lookup case id if not supplied
90 if (!isset($params['case_id']) && !empty($params['id'])) {
91 $params['case_id'] = CRM_Core_DAO::singleValueQuery("SELECT case_id FROM civicrm_case_activity WHERE activity_id = " . (int) $params['id']);
92 }
a7488080 93 if (!empty($params['case_id'])) {
6a488035 94 $case_id = $params['case_id'];
c16b4619 95 if (!empty($params['id']) && Civi::settings()->get('civicaseActivityRevisions')) {
cf8f0fff 96 $oldActivityParams = ['id' => $params['id']];
6a488035
TO
97 if (!$oldActivityValues) {
98 CRM_Activity_BAO_Activity::retrieve($oldActivityParams, $oldActivityValues);
99 }
100 if (empty($oldActivityValues)) {
10114f2d 101 throw new API_Exception(ts("Unable to locate existing activity."));
6a488035
TO
102 }
103 else {
104 $activityDAO = new CRM_Activity_DAO_Activity();
105 $activityDAO->id = $params['id'];
106 $activityDAO->is_current_revision = 0;
107 if (!$activityDAO->save()) {
10114f2d 108 throw new API_Exception(ts("Unable to revision existing case activity."));
6a488035
TO
109 }
110 $createRevision = TRUE;
111 }
112 }
113 }
114
115 $deleteActivityAssignment = FALSE;
116 if (isset($params['assignee_contact_id'])) {
117 $deleteActivityAssignment = TRUE;
118 }
119
120 $deleteActivityTarget = FALSE;
121 if (isset($params['target_contact_id'])) {
122 $deleteActivityTarget = TRUE;
123 }
124
125 // this should all be handled at the BAO layer
126 $params['deleteActivityAssignment'] = CRM_Utils_Array::value('deleteActivityAssignment', $params, $deleteActivityAssignment);
127 $params['deleteActivityTarget'] = CRM_Utils_Array::value('deleteActivityTarget', $params, $deleteActivityTarget);
128
129 if ($case_id && $createRevision) {
130 // This is very similar to the copy-to-case action.
131 if (!CRM_Utils_Array::crmIsEmptyArray($oldActivityValues['target_contact'])) {
132 $oldActivityValues['targetContactIds'] = implode(',', array_unique($oldActivityValues['target_contact']));
133 }
134 if (!CRM_Utils_Array::crmIsEmptyArray($oldActivityValues['assignee_contact'])) {
135 $oldActivityValues['assigneeContactIds'] = implode(',', array_unique($oldActivityValues['assignee_contact']));
136 }
137 $oldActivityValues['mode'] = 'copy';
138 $oldActivityValues['caseID'] = $case_id;
139 $oldActivityValues['activityID'] = $oldActivityValues['id'];
140 $oldActivityValues['contactID'] = $oldActivityValues['source_contact_id'];
141
142 $copyToCase = CRM_Activity_Page_AJAX::_convertToCaseActivity($oldActivityValues);
143 if (empty($copyToCase['error_msg'])) {
144 // now fix some things that are different from copy-to-case
145 // then fall through to the create below to update with the passed in params
146 $params['id'] = $copyToCase['newId'];
147 $params['is_auto'] = 0;
148 $params['original_id'] = empty($oldActivityValues['original_id']) ? $oldActivityValues['id'] : $oldActivityValues['original_id'];
149 }
150 else {
10114f2d 151 throw new API_Exception(ts("Unable to create new revision of case activity."));
6a488035
TO
152 }
153 }
154
155 // create activity
156 $activityBAO = CRM_Activity_BAO_Activity::create($params);
157
158 if (isset($activityBAO->id)) {
c16b4619 159 if ($case_id && $isNew && !$createRevision) {
18e0f096
CW
160 // If this is a brand new case activity, add to case(s)
161 foreach ((array) $case_id as $singleCaseId) {
cf8f0fff 162 $caseActivityParams = ['activity_id' => $activityBAO->id, 'case_id' => $singleCaseId];
18e0f096
CW
163 CRM_Case_BAO_Case::processCaseActivity($caseActivityParams);
164 }
6a488035
TO
165 }
166
167 _civicrm_api3_object_to_array($activityBAO, $activityArray[$activityBAO->id]);
244bbdd8 168 return civicrm_api3_create_success($activityArray, $params, 'Activity', 'get', $activityBAO);
6a488035
TO
169 }
170}
11e09c59
TO
171
172/**
61fe4988
EM
173 * Specify Meta data for create.
174 *
175 * Note that this data is retrievable via the getfields function and is used for pre-filling defaults and
176 * ensuring mandatory requirements are met.
177 *
cf470720 178 * @param array $params
c28e1768 179 * Array of parameters determined by getfields.
6a488035
TO
180 */
181function _civicrm_api3_activity_create_spec(&$params) {
182
cf8f0fff 183 $params['status_id']['api.aliases'] = ['activity_status'];
67744c4e 184
cf8f0fff 185 $params['assignee_contact_id'] = [
6a488035 186 'name' => 'assignee_id',
0a24dc9a
CW
187 'title' => 'Activity Assignee',
188 'description' => 'Contact(s) assigned to this activity.',
6a488035 189 'type' => 1,
7e61908b 190 'FKClassName' => 'CRM_Contact_DAO_Contact',
0a24dc9a 191 'FKApiName' => 'Contact',
cf8f0fff
CW
192 ];
193 $params['target_contact_id'] = [
6a488035
TO
194 'name' => 'target_id',
195 'title' => 'Activity Target',
0a24dc9a 196 'description' => 'Contact(s) participating in this activity.',
6a488035 197 'type' => 1,
7e61908b 198 'FKClassName' => 'CRM_Contact_DAO_Contact',
0a24dc9a 199 'FKApiName' => 'Contact',
cf8f0fff 200 ];
2f3d72cf 201
cf8f0fff 202 $params['source_contact_id'] = [
7cdbcb16
TO
203 'name' => 'source_contact_id',
204 'title' => 'Activity Source Contact',
0a24dc9a 205 'description' => 'Person who created this activity. Defaults to current user.',
7cdbcb16 206 'type' => 1,
7e61908b 207 'FKClassName' => 'CRM_Contact_DAO_Contact',
7cdbcb16 208 'api.default' => 'user_contact_id',
0a24dc9a 209 'FKApiName' => 'Contact',
c442f1b6 210 'api.required' => TRUE,
cf8f0fff 211 ];
0a24dc9a 212
cf8f0fff 213 $params['case_id'] = [
0a24dc9a
CW
214 'name' => 'case_id',
215 'title' => 'Case ID',
216 'description' => 'For creating an activity as part of a case.',
217 'type' => 1,
218 'FKClassName' => 'CRM_Case_DAO_Case',
219 'FKApiName' => 'Case',
cf8f0fff 220 ];
2f3d72cf 221
6a488035
TO
222}
223
1196e086
CW
224/**
225 * Specify Metadata for get.
226 *
227 * @param array $params
228 */
229function _civicrm_api3_activity_get_spec(&$params) {
cf8f0fff 230 $params['tag_id'] = [
1196e086
CW
231 'title' => 'Tags',
232 'description' => 'Find activities with specified tags.',
760ac501 233 'type' => CRM_Utils_Type::T_INT,
1196e086
CW
234 'FKClassName' => 'CRM_Core_DAO_Tag',
235 'FKApiName' => 'Tag',
40875a91 236 'supports_joins' => TRUE,
cf8f0fff
CW
237 ];
238 $params['file_id'] = [
40875a91
CW
239 'title' => 'Attached Files',
240 'description' => 'Find activities with attached files.',
760ac501 241 'type' => CRM_Utils_Type::T_INT,
40875a91
CW
242 'FKClassName' => 'CRM_Core_DAO_File',
243 'FKApiName' => 'File',
cf8f0fff
CW
244 ];
245 $params['case_id'] = [
1196e086
CW
246 'title' => 'Cases',
247 'description' => 'Find activities within specified cases.',
760ac501 248 'type' => CRM_Utils_Type::T_INT,
1196e086
CW
249 'FKClassName' => 'CRM_Case_DAO_Case',
250 'FKApiName' => 'Case',
2c9e4446 251 'supports_joins' => TRUE,
cf8f0fff
CW
252 ];
253 $params['contact_id'] = [
526e0834
CW
254 'title' => 'Activity Contact ID',
255 'description' => 'Find activities involving this contact (as target, source, OR assignee).',
760ac501 256 'type' => CRM_Utils_Type::T_INT,
526e0834
CW
257 'FKClassName' => 'CRM_Contact_DAO_Contact',
258 'FKApiName' => 'Contact',
cf8f0fff
CW
259 ];
260 $params['target_contact_id'] = [
1196e086
CW
261 'title' => 'Target Contact ID',
262 'description' => 'Find activities with specified target contact.',
760ac501 263 'type' => CRM_Utils_Type::T_INT,
1196e086
CW
264 'FKClassName' => 'CRM_Contact_DAO_Contact',
265 'FKApiName' => 'Contact',
cf8f0fff
CW
266 ];
267 $params['source_contact_id'] = [
1196e086
CW
268 'title' => 'Source Contact ID',
269 'description' => 'Find activities with specified source contact.',
760ac501 270 'type' => CRM_Utils_Type::T_INT,
1196e086
CW
271 'FKClassName' => 'CRM_Contact_DAO_Contact',
272 'FKApiName' => 'Contact',
cf8f0fff
CW
273 ];
274 $params['assignee_contact_id'] = [
1196e086
CW
275 'title' => 'Assignee Contact ID',
276 'description' => 'Find activities with specified assignee contact.',
760ac501 277 'type' => CRM_Utils_Type::T_INT,
1196e086
CW
278 'FKClassName' => 'CRM_Contact_DAO_Contact',
279 'FKApiName' => 'Contact',
cf8f0fff
CW
280 ];
281 $params['is_overdue'] = [
760ac501
CW
282 'title' => 'Is Activity Overdue',
283 'description' => 'Incomplete activities with a past date.',
284 'type' => CRM_Utils_Type::T_BOOLEAN,
cf8f0fff 285 ];
1196e086
CW
286}
287
6a488035 288/**
61fe4988 289 * Gets a CiviCRM activity according to parameters.
6a488035 290 *
cf470720 291 * @param array $params
61fe4988 292 * Array per getfields documentation.
6a488035 293 *
bbd2743b 294 * @return array API result array
00f8641b 295 * API result array
bbd2743b 296 *
297 * @throws \API_Exception
298 * @throws \CiviCRM_API3_Exception
299 * @throws \Civi\API\Exception\UnauthorizedException
6a488035
TO
300 */
301function civicrm_api3_activity_get($params) {
760ac501 302 $options = _civicrm_api3_get_options_from_params($params, FALSE, 'Activity', 'get');
526e0834 303 $sql = CRM_Utils_SQL_Select::fragment();
d544ffcd 304
d544ffcd
CW
305 _civicrm_api3_activity_get_extraFilters($params, $sql);
306
307 // Handle is_overdue sort
308 if (!empty($options['sort'])) {
309 $sort = explode(', ', $options['sort']);
310
311 foreach ($sort as $index => &$sortString) {
312 // Get sort field and direction
313 list($sortField, $dir) = array_pad(explode(' ', $sortString), 2, 'ASC');
314 if ($sortField == 'is_overdue') {
315 $incomplete = implode(',', array_keys(CRM_Activity_BAO_Activity::getStatusesByType(CRM_Activity_BAO_Activity::INCOMPLETE)));
316 $sql->orderBy("IF((a.activity_date_time >= NOW() OR a.status_id NOT IN ($incomplete)), 0, 1) $dir", NULL, $index);
317 // Replace the sort with a placeholder which will be ignored by sql
318 $sortString = '(1)';
319 }
320 }
321 $params['options']['sort'] = implode(', ', $sort);
322 }
323
324 // Ensure there's enough data for calculating is_overdue
325 if (!empty($options['return']['is_overdue']) && (empty($options['return']['status_id']) || empty($options['return']['activity_date_time']))) {
326 $options['return']['status_id'] = $options['return']['activity_date_time'] = 1;
327 $params['return'] = array_keys($options['return']);
328 }
329
330 $activities = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, FALSE, 'Activity', $sql);
84be264e 331 if ($options['is_count']) {
332 return civicrm_api3_create_success($activities, $params, 'Activity', 'get');
333 }
334
d544ffcd
CW
335 $activities = _civicrm_api3_activity_get_formatResult($params, $activities, $options);
336 //legacy custom data get - so previous formatted response is still returned too
337 return civicrm_api3_create_success($activities, $params, 'Activity', 'get');
338}
339
340/**
341 * Support filters beyond what basic_get can do.
342 *
343 * @param array $params
344 * @param CRM_Utils_SQL_Select $sql
345 * @throws \CiviCRM_API3_Exception
346 * @throws \Exception
347 */
348function _civicrm_api3_activity_get_extraFilters(&$params, &$sql) {
349 // Filter by activity contacts
cf8f0fff 350 $activityContactOptions = [
d544ffcd 351 'contact_id' => NULL,
550dcde8 352 'target_contact_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Targets'),
353 'source_contact_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Source'),
354 'assignee_contact_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_ActivityContact', 'record_type_id', 'Activity Assignees'),
cf8f0fff 355 ];
526e0834
CW
356 foreach ($activityContactOptions as $activityContactName => $activityContactValue) {
357 if (!empty($params[$activityContactName])) {
526e0834 358 if (!is_array($params[$activityContactName])) {
cf8f0fff 359 $params[$activityContactName] = ['=' => $params[$activityContactName]];
526e0834
CW
360 }
361 $clause = \CRM_Core_DAO::createSQLFilter('contact_id', $params[$activityContactName]);
362 $typeClause = $activityContactValue ? 'record_type_id = #typeId AND ' : '';
363 $sql->where("a.id IN (SELECT activity_id FROM civicrm_activity_contact WHERE $typeClause !clause)",
cf8f0fff 364 ['#typeId' => $activityContactValue, '!clause' => $clause]
526e0834 365 );
6a488035
TO
366 }
367 }
749522a2 368
760ac501 369 // Handle is_overdue filter
d544ffcd 370 // Boolean calculated field - does not support operators
760ac501 371 if (isset($params['is_overdue'])) {
ce9d78e1 372 $incomplete = implode(',', array_keys(CRM_Activity_BAO_Activity::getStatusesByType(CRM_Activity_BAO_Activity::INCOMPLETE)));
760ac501
CW
373 if ($params['is_overdue']) {
374 $sql->where('a.activity_date_time < NOW()');
ce9d78e1 375 $sql->where("a.status_id IN ($incomplete)");
760ac501
CW
376 }
377 else {
ce9d78e1 378 $sql->where("(a.activity_date_time >= NOW() OR a.status_id NOT IN ($incomplete))");
760ac501
CW
379 }
380 }
381
749522a2
TO
382 // Define how to handle filters on some related entities.
383 // Subqueries are nice in (a) avoiding duplicates and (b) when the result
384 // list is expected to be bite-sized. Joins are nice (a) with larger
385 // datasets and (b) checking for non-existent relations.
cf8f0fff
CW
386 $rels = [
387 'tag_id' => [
749522a2
TO
388 'subquery' => 'a.id IN (SELECT entity_id FROM civicrm_entity_tag WHERE entity_table = "civicrm_activity" AND !clause)',
389 'join' => '!joinType civicrm_entity_tag !alias ON (!alias.entity_table = "civicrm_activity" AND !alias.entity_id = a.id)',
390 'column' => 'tag_id',
cf8f0fff
CW
391 ],
392 'file_id' => [
749522a2
TO
393 'subquery' => 'a.id IN (SELECT entity_id FROM civicrm_entity_file WHERE entity_table = "civicrm_activity" AND !clause)',
394 'join' => '!joinType civicrm_entity_file !alias ON (!alias.entity_table = "civicrm_activity" AND !alias.entity_id = a.id)',
395 'column' => 'file_id',
cf8f0fff
CW
396 ],
397 'case_id' => [
749522a2
TO
398 'subquery' => 'a.id IN (SELECT activity_id FROM civicrm_case_activity WHERE !clause)',
399 'join' => '!joinType civicrm_case_activity !alias ON (!alias.activity_id = a.id)',
400 'column' => 'case_id',
cf8f0fff
CW
401 ],
402 ];
749522a2
TO
403 foreach ($rels as $filter => $relSpec) {
404 if (!empty($params[$filter])) {
405 if (!is_array($params[$filter])) {
cf8f0fff 406 $params[$filter] = ['=' => $params[$filter]];
749522a2
TO
407 }
408 // $mode is one of ('LEFT JOIN', 'INNER JOIN', 'SUBQUERY')
409 $mode = isset($params[$filter]['IS NULL']) ? 'LEFT JOIN' : 'SUBQUERY';
410 if ($mode === 'SUBQUERY') {
411 $clause = \CRM_Core_DAO::createSQLFilter($relSpec['column'], $params[$filter]);
412 if ($clause) {
cf8f0fff 413 $sql->where($relSpec['subquery'], ['!clause' => $clause]);
749522a2
TO
414 }
415 }
416 else {
417 $alias = 'actjoin_' . $filter;
418 $clause = \CRM_Core_DAO::createSQLFilter($alias . "." . $relSpec['column'], $params[$filter]);
419 if ($clause) {
cf8f0fff 420 $sql->join($alias, $relSpec['join'], ['!alias' => $alias, 'joinType' => $mode]);
749522a2
TO
421 $sql->where($clause);
422 }
423 }
0298287b 424 }
6a488035 425 }
ab5fa8f2
TO
426}
427
428/**
61fe4988 429 * Given a list of activities, append any extra data requested about the activities.
ab5fa8f2 430 *
b081365f 431 * @note Called by civicrm-core and CiviHR
ab5fa8f2 432 *
cf470720
TO
433 * @param array $params
434 * API request parameters.
ab5fa8f2 435 * @param array $activities
cdacd6ab 436 * @param array $options
437 * Options array (pre-processed to extract 'return' from params).
61fe4988 438 *
a6c01b45 439 * @return array
72b3a70c 440 * new activities list
ab5fa8f2 441 */
bc4b6f0f 442function _civicrm_api3_activity_get_formatResult($params, $activities, $options) {
30db5cbf
CW
443 if (!$activities) {
444 return $activities;
445 }
446
bc4b6f0f 447 $returns = $options['return'];
6a488035 448 foreach ($params as $n => $v) {
cdacd6ab 449 // @todo - the per-parsing on options should have already done this.
6a488035
TO
450 if (substr($n, 0, 7) == 'return.') {
451 $returnkey = substr($n, 7);
452 $returns[$returnkey] = $v;
453 }
454 }
0298287b 455
cdacd6ab 456 _civicrm_api3_activity_fill_activity_contact_names($activities, $params, $returns);
db6e8cb4 457
cf8f0fff
CW
458 $tagGet = ['tag_id', 'entity_id'];
459 $caseGet = $caseIds = [];
40875a91
CW
460 foreach (array_keys($returns) as $key) {
461 if (strpos($key, 'tag_id.') === 0) {
462 $tagGet[] = $key;
463 $returns['tag_id'] = 1;
464 }
2c9e4446
CW
465 if (strpos($key, 'case_id.') === 0) {
466 $caseGet[] = str_replace('case_id.', '', $key);
467 $returns['case_id'] = 1;
468 }
40875a91
CW
469 }
470
6a488035
TO
471 foreach ($returns as $n => $v) {
472 switch ($n) {
473 case 'assignee_contact_id':
6a488035 474 case 'target_contact_id':
cdacd6ab 475 foreach ($activities as &$activity) {
476 if (!isset($activity[$n])) {
477 $activity[$n] = [];
db6e8cb4 478 }
6a488035 479 }
35671d00 480
42d30b83 481 case 'source_contact_id':
42d30b83 482 break;
35671d00 483
30db5cbf 484 case 'tag_id':
cf8f0fff 485 $tags = civicrm_api3('EntityTag', 'get', [
30db5cbf 486 'entity_table' => 'civicrm_activity',
cf8f0fff 487 'entity_id' => ['IN' => array_keys($activities)],
40875a91 488 'return' => $tagGet,
cf8f0fff
CW
489 'options' => ['limit' => 0],
490 ]);
30db5cbf 491 foreach ($tags['values'] as $tag) {
40875a91
CW
492 $key = (int) $tag['entity_id'];
493 unset($tag['entity_id'], $tag['id']);
494 $activities[$key]['tag_id'][$tag['tag_id']] = $tag;
495 }
496 break;
497
498 case 'file_id':
499 $dao = CRM_Core_DAO::executeQuery("SELECT entity_id, file_id FROM civicrm_entity_file WHERE entity_table = 'civicrm_activity' AND entity_id IN (%1)",
cf8f0fff 500 [1 => [implode(',', array_keys($activities)), 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES]]);
40875a91
CW
501 while ($dao->fetch()) {
502 $activities[$dao->entity_id]['file_id'][] = $dao->file_id;
30db5cbf
CW
503 }
504 break;
505
bc4b6f0f
CW
506 case 'case_id':
507 $dao = CRM_Core_DAO::executeQuery("SELECT activity_id, case_id FROM civicrm_case_activity WHERE activity_id IN (%1)",
cf8f0fff 508 [1 => [implode(',', array_keys($activities)), 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES]]);
bc4b6f0f 509 while ($dao->fetch()) {
18e0f096 510 $activities[$dao->activity_id]['case_id'][] = $dao->case_id;
2c9e4446 511 $caseIds[$dao->case_id] = $dao->case_id;
bc4b6f0f
CW
512 }
513 break;
514
760ac501
CW
515 case 'is_overdue':
516 foreach ($activities as $key => $activityArray) {
517 $activities[$key]['is_overdue'] = (int) CRM_Activity_BAO_Activity::isOverdue($activityArray);
518 }
519 break;
520
6a488035
TO
521 default:
522 if (substr($n, 0, 6) == 'custom') {
523 $returnProperties[$n] = $v;
524 }
2c9e4446
CW
525 }
526 }
527
528 // Fetch case fields via the join syntax
529 // Note this is limited to the first case if the activity belongs to more than one
530 if ($caseGet && $caseIds) {
cf8f0fff
CW
531 $cases = civicrm_api3('Case', 'get', [
532 'id' => ['IN' => $caseIds],
533 'options' => ['limit' => 0],
2c9e4446
CW
534 'check_permissions' => !empty($params['check_permissions']),
535 'return' => $caseGet,
cf8f0fff 536 ]);
2c9e4446
CW
537 foreach ($activities as &$activity) {
538 if (!empty($activity['case_id'])) {
539 $case = CRM_Utils_Array::value($activity['case_id'][0], $cases['values']);
540 if ($case) {
541 foreach ($case as $key => $value) {
542 if ($key != 'id') {
543 $activity['case_id.' . $key] = $value;
544 }
545 }
546 }
547 }
6a488035
TO
548 }
549 }
526e0834 550
40875a91 551 // Legacy extras
526e0834
CW
552 if (!empty($params['contact_id'])) {
553 $statusOptions = CRM_Activity_BAO_Activity::buildOptions('status_id', 'get');
554 $typeOptions = CRM_Activity_BAO_Activity::buildOptions('activity_type_id', 'validate');
555 foreach ($activities as $key => &$activityArray) {
556 if (!empty($activityArray['status_id'])) {
557 $activityArray['status'] = $statusOptions[$activityArray['status_id']];
558 }
559 if (!empty($activityArray['activity_type_id'])) {
560 $activityArray['activity_name'] = $typeOptions[$activityArray['activity_type_id']];
561 }
562 }
563 }
564
30db5cbf 565 if (!empty($returnProperties) || !empty($params['contact_id'])) {
6a488035 566 foreach ($activities as $activityId => $values) {
10114f2d 567 //@todo - should possibly load activity type id if not loaded (update with id)
e9ff5391 568 _civicrm_api3_custom_data_get($activities[$activityId], CRM_Utils_Array::value('check_permissions', $params), 'Activity', $activityId, NULL, CRM_Utils_Array::value('activity_type_id', $values));
6a488035
TO
569 }
570 }
ab5fa8f2 571 return $activities;
6a488035 572}
cdacd6ab 573
574/**
575 * Append activity contact details to activity results.
576 *
577 * Adds id & name of activity contacts to results array if check_permissions
578 * does not block access to them.
579 *
580 * For historical reasons source_contact_id is always added & is not an array.
581 * The others are added depending on requested return params.
582 *
583 * @param array $activities
584 * @param array $params
585 * @param array $returns
586 */
587function _civicrm_api3_activity_fill_activity_contact_names(&$activities, $params, $returns) {
588 $contactTypes = array_flip(CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate'));
589 $assigneeType = $contactTypes['Activity Assignees'];
590 $targetType = $contactTypes['Activity Targets'];
591 $sourceType = $contactTypes['Activity Source'];
592 $typeMap = [
593 $assigneeType => 'assignee',
594 $sourceType => 'source',
595 $targetType => 'target'
596 ];
597
598 $activityContactTypes = [$sourceType];
599
600 if (!empty($returns['target_contact_name']) || !empty($returns['target_contact_id'])) {
601 $activityContactTypes[] = $targetType;
602 }
603 if (!empty($returns['assignee_contact_name']) || (!empty($returns['assignee_contact_id']))) {
604 $activityContactTypes[] = $assigneeType;
605 }
606 $activityContactParams = [
607 'activity_id' => ['IN' => array_keys($activities)],
608 'return' => [
609 'activity_id',
610 'record_type_id',
611 'contact_id.display_name',
612 'contact_id'
613 ],
614 'check_permissions' => !empty($params['check_permissions']),
615 ];
616 if (count($activityContactTypes) < 3) {
617 $activityContactParams['record_type_id'] = ['IN' => $activityContactTypes];
618 }
619 $activityContacts = civicrm_api3('ActivityContact', 'get', $activityContactParams)['values'];
620 foreach ($activityContacts as $activityContact) {
621 $contactID = $activityContact['contact_id'];
622 $recordType = $typeMap[$activityContact['record_type_id']];
623 if (in_array($recordType, ['target', 'assignee'])) {
624 $activities[$activityContact['activity_id']][$recordType . '_contact_id'][] = $contactID;
625 $activities[$activityContact['activity_id']][$recordType . '_contact_name'][$contactID] = isset($activityContact['contact_id.display_name']) ? $activityContact['contact_id.display_name'] : '';
626 }
627 else {
628 $activities[$activityContact['activity_id']]['source_contact_id'] = $contactID;
629 $activities[$activityContact['activity_id']]['source_contact_name'] = isset($activityContact['contact_id.display_name']) ? $activityContact['contact_id.display_name'] : '';
630 }
631 }
632}
6a488035 633
2f3d72cf 634
6a488035
TO
635/**
636 * Delete a specified Activity.
637 *
cf470720
TO
638 * @param array $params
639 * Array holding 'id' of activity to be deleted.
6a488035 640 *
10114f2d 641 * @throws API_Exception
6a488035 642 *
61fe4988 643 * @return array
00f8641b 644 * API result array
6a488035
TO
645 */
646function civicrm_api3_activity_delete($params) {
647
648 if (CRM_Activity_BAO_Activity::deleteActivity($params)) {
244bbdd8 649 return civicrm_api3_create_success(1, $params, 'Activity', 'delete');
6a488035
TO
650 }
651 else {
df1dded9 652 throw new API_Exception('Could not delete Activity: ' . (int) $params['id']);
6a488035
TO
653 }
654}
655
656/**
61fe4988 657 * Check for required params.
6a488035 658 *
cf470720
TO
659 * @param array $params
660 * Associated array of fields.
10114f2d
EM
661 *
662 * @throws API_Exception
663 * @throws Exception
a6c01b45 664 * @return array
72b3a70c 665 * array with errors
6a488035
TO
666 */
667function _civicrm_api3_activity_check_params(&$params) {
cf8f0fff 668 $activityIds = [
7cdbcb16
TO
669 'activity' => CRM_Utils_Array::value('id', $params),
670 'parent' => CRM_Utils_Array::value('parent_id', $params),
671 'original' => CRM_Utils_Array::value('original_id', $params),
cf8f0fff 672 ];
6a488035
TO
673
674 foreach ($activityIds as $id => $value) {
675 if ($value &&
676 !CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity', $value, 'id')
677 ) {
10114f2d 678 throw new API_Exception('Invalid ' . ucfirst($id) . ' Id');
6a488035
TO
679 }
680 }
681 // this should be handled by wrapper layer & probably the api would already manage it
682 //correctly by doing pseudoconstant validation
683 // needs testing
a60ed840 684 $activityTypes = CRM_Activity_BAO_Activity::buildOptions('activity_type_id', 'validate');
7cdbcb16
TO
685 $activityName = CRM_Utils_Array::value('activity_name', $params);
686 $activityName = ucfirst($activityName);
6a488035
TO
687 $activityLabel = CRM_Utils_Array::value('activity_label', $params);
688 if ($activityLabel) {
a60ed840 689 $activityTypes = CRM_Activity_BAO_Activity::buildOptions('activity_type_id', 'create');
6a488035
TO
690 }
691
692 $activityTypeId = CRM_Utils_Array::value('activity_type_id', $params);
693
694 if ($activityName || $activityLabel) {
695 $activityTypeIdInList = array_search(($activityName ? $activityName : $activityLabel), $activityTypes);
696
697 if (!$activityTypeIdInList) {
35671d00 698 $errorString = $activityName ? "Invalid Activity Name : $activityName" : "Invalid Activity Type Label";
6a488035
TO
699 throw new Exception($errorString);
700 }
701 elseif ($activityTypeId && ($activityTypeId != $activityTypeIdInList)) {
10114f2d 702 throw new API_Exception('Mismatch in Activity');
6a488035
TO
703 }
704 $params['activity_type_id'] = $activityTypeIdInList;
705 }
706 elseif ($activityTypeId &&
707 !array_key_exists($activityTypeId, $activityTypes)
708 ) {
10114f2d 709 throw new API_Exception('Invalid Activity Type ID');
6a488035
TO
710 }
711
6a488035
TO
712 // check for activity duration minutes
713 // this should be validated @ the wrapper layer not here
714 // needs testing
715 if (isset($params['duration_minutes']) && !is_numeric($params['duration_minutes'])) {
10114f2d 716 throw new API_Exception('Invalid Activity Duration (in minutes)');
6a488035
TO
717 }
718
6a488035
TO
719 //if adding a new activity & date_time not set make it now
720 // this should be managed by the wrapper layer & setting ['api.default'] in speces
721 // needs testing
8cc574cf 722 if (empty($params['id']) && empty($params['activity_date_time'])) {
6a488035
TO
723 $params['activity_date_time'] = CRM_Utils_Date::processDate(date('Y-m-d H:i:s'));
724 }
725
726 return NULL;
727}
728
dabf9814 729/**
61fe4988
EM
730 * Get parameters for activity list.
731 *
7cdbcb16 732 * @see _civicrm_api3_generic_getlist_params
dabf9814 733 *
7cdbcb16
TO
734 * @param array $request
735 * API request.
dabf9814
CW
736 */
737function _civicrm_api3_activity_getlist_params(&$request) {
cf8f0fff 738 $fieldsToReturn = [
7cdbcb16
TO
739 'activity_date_time',
740 'activity_type_id',
741 'subject',
742 'source_contact_id',
cf8f0fff 743 ];
dabf9814
CW
744 $request['params']['return'] = array_unique(array_merge($fieldsToReturn, $request['extra']));
745 $request['params']['options']['sort'] = 'activity_date_time DESC';
cf8f0fff 746 $request['params'] += [
dabf9814
CW
747 'is_current_revision' => 1,
748 'is_deleted' => 0,
cf8f0fff 749 ];
dabf9814
CW
750}
751
752/**
61fe4988
EM
753 * Get output for activity list.
754 *
dabf9814
CW
755 * @see _civicrm_api3_generic_getlist_output
756 *
8c6b335b
CW
757 * @param array $result
758 * @param array $request
dabf9814
CW
759 *
760 * @return array
761 */
762function _civicrm_api3_activity_getlist_output($result, $request) {
cf8f0fff 763 $output = [];
dabf9814
CW
764 if (!empty($result['values'])) {
765 foreach ($result['values'] as $row) {
cf8f0fff 766 $data = [
dabf9814
CW
767 'id' => $row[$request['id_field']],
768 'label' => $row[$request['label_field']] ? $row[$request['label_field']] : ts('(no subject)'),
cf8f0fff 769 'description' => [
7cdbcb16 770 CRM_Core_Pseudoconstant::getLabel('CRM_Activity_BAO_Activity', 'activity_type_id', $row['activity_type_id']),
cf8f0fff
CW
771 ],
772 ];
dabf9814
CW
773 if (!empty($row['activity_date_time'])) {
774 $data['description'][0] .= ': ' . CRM_Utils_Date::customFormat($row['activity_date_time']);
775 }
776 if (!empty($row['source_contact_id'])) {
cf8f0fff 777 $data['description'][] = ts('By %1', [
7cdbcb16 778 1 => CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $row['source_contact_id'], 'display_name'),
cf8f0fff 779 ]);
dabf9814 780 }
8a938c69
CW
781 // Add repeating info
782 $repeat = CRM_Core_BAO_RecurringEntity::getPositionAndCount($row['id'], 'civicrm_activity');
783 $data['extra']['is_recur'] = FALSE;
784 if ($repeat) {
cf8f0fff 785 $data['suffix'] = ts('(%1 of %2)', [1 => $repeat[0], 2 => $repeat[1]]);
8a938c69
CW
786 $data['extra']['is_recur'] = TRUE;
787 }
dabf9814
CW
788 $output[] = $data;
789 }
790 }
791 return $output;
792}