Merge pull request #2966 from eileenmcnaughton/patch-2
[civicrm-core.git] / api / v3 / Activity.php
CommitLineData
6a488035
TO
1<?php
2// $Id$
3
4/*
5 +--------------------------------------------------------------------+
232624b1 6 | CiviCRM version 4.4 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | Copyright CiviCRM LLC (c) 2004-2013 |
9 +--------------------------------------------------------------------+
10 | This file is a part of CiviCRM. |
11 | |
12 | CiviCRM is free software; you can copy, modify, and distribute it |
13 | under the terms of the GNU Affero General Public License |
14 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
15 | |
16 | CiviCRM is distributed in the hope that it will be useful, but |
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
19 | See the GNU Affero General Public License for more details. |
20 | |
21 | You should have received a copy of the GNU Affero General Public |
22 | License and the CiviCRM Licensing Exception along |
23 | with this program; if not, contact CiviCRM LLC |
24 | at info[AT]civicrm[DOT]org. If you have questions about the |
25 | GNU Affero General Public License or the licensing of CiviCRM, |
26 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
27 +--------------------------------------------------------------------+
28 */
29
30/**
31 * File for the CiviCRM APIv3 activity functions
32 *
33 * @package CiviCRM_APIv3
34 * @subpackage API_Activity
35 * @copyright CiviCRM LLC (c) 2004-2013
36 * @version $Id: Activity.php 30486 2010-11-02 16:12:09Z shot $
37 *
38 */
39
40
41/**
42 * Creates or updates an Activity. See the example for usage
43 *
44 * @param array $params Associative array of property name/value
45 * pairs for the activity.
46 * {@getfields activity_create}
47 *
48 * @return array Array containing 'is_error' to denote success or failure and details of the created activity
49 *
50 * @example ActivityCreate.php Standard create example
51 * @example Activity/ContactRefCustomField.php Create example including setting a contact reference custom field
52 * {@example ActivityCreate.php 0}
53 *
54 */
55function civicrm_api3_activity_create($params) {
56
57 if (!CRM_Utils_Array::value('id', $params)) {
58 // an update does not require any mandatory parameters
59 civicrm_api3_verify_one_mandatory($params,
60 NULL,
61 array(
62 'activity_name', 'activity_type_id', 'activity_label',
63 )
64 );
65 }
66
67 $errors = array();
68
69 // check for various error and required conditions
70 // note that almost all the processing in there should be managed by the wrapper layer
71 // & should be removed - needs testing
72 $errors = _civicrm_api3_activity_check_params($params);
73
74 // this should not be required as should throw exception rather than return errors -
75 //needs testing
76 if (!empty($errors)) {
77 return $errors;
78 }
79
80
81 // processing for custom data
82 $values = array();
83 _civicrm_api3_custom_format_params($params, $values, 'Activity');
84
85 if (!empty($values['custom'])) {
86 $params['custom'] = $values['custom'];
87 }
88
89 // this should be set as a default rather than hard coded
90 // needs testing
91 $params['skipRecentView'] = TRUE;
92
93 // If this is a case activity, see if there is an existing activity
94 // and set it as an old revision. Also retrieve details we'll need.
95 // this handling should all be moved to the BAO layer
96 $case_id = '';
97 $createRevision = FALSE;
98 $oldActivityValues = array();
99 if (CRM_Utils_Array::value('case_id', $params)) {
100 $case_id = $params['case_id'];
101 if (CRM_Utils_Array::value('id', $params)) {
102 $oldActivityParams = array('id' => $params['id']);
103 if (!$oldActivityValues) {
104 CRM_Activity_BAO_Activity::retrieve($oldActivityParams, $oldActivityValues);
105 }
106 if (empty($oldActivityValues)) {
107 return civicrm_api3_create_error(ts("Unable to locate existing activity."), NULL, CRM_Core_DAO::$_nullObject);
108 }
109 else {
110 $activityDAO = new CRM_Activity_DAO_Activity();
111 $activityDAO->id = $params['id'];
112 $activityDAO->is_current_revision = 0;
113 if (!$activityDAO->save()) {
114 return civicrm_api3_create_error(ts("Unable to revision existing case activity."), NULL, $activityDAO);
115 }
116 $createRevision = TRUE;
117 }
118 }
119 }
120
121 $deleteActivityAssignment = FALSE;
122 if (isset($params['assignee_contact_id'])) {
123 $deleteActivityAssignment = TRUE;
124 }
125
126 $deleteActivityTarget = FALSE;
127 if (isset($params['target_contact_id'])) {
128 $deleteActivityTarget = TRUE;
129 }
130
131 // this should all be handled at the BAO layer
132 $params['deleteActivityAssignment'] = CRM_Utils_Array::value('deleteActivityAssignment', $params, $deleteActivityAssignment);
133 $params['deleteActivityTarget'] = CRM_Utils_Array::value('deleteActivityTarget', $params, $deleteActivityTarget);
134
135 if ($case_id && $createRevision) {
136 // This is very similar to the copy-to-case action.
137 if (!CRM_Utils_Array::crmIsEmptyArray($oldActivityValues['target_contact'])) {
138 $oldActivityValues['targetContactIds'] = implode(',', array_unique($oldActivityValues['target_contact']));
139 }
140 if (!CRM_Utils_Array::crmIsEmptyArray($oldActivityValues['assignee_contact'])) {
141 $oldActivityValues['assigneeContactIds'] = implode(',', array_unique($oldActivityValues['assignee_contact']));
142 }
143 $oldActivityValues['mode'] = 'copy';
144 $oldActivityValues['caseID'] = $case_id;
145 $oldActivityValues['activityID'] = $oldActivityValues['id'];
146 $oldActivityValues['contactID'] = $oldActivityValues['source_contact_id'];
147
148 $copyToCase = CRM_Activity_Page_AJAX::_convertToCaseActivity($oldActivityValues);
149 if (empty($copyToCase['error_msg'])) {
150 // now fix some things that are different from copy-to-case
151 // then fall through to the create below to update with the passed in params
152 $params['id'] = $copyToCase['newId'];
153 $params['is_auto'] = 0;
154 $params['original_id'] = empty($oldActivityValues['original_id']) ? $oldActivityValues['id'] : $oldActivityValues['original_id'];
155 }
156 else {
157 return civicrm_api3_create_error(ts("Unable to create new revision of case activity."), NULL, CRM_Core_DAO::$_nullObject);
158 }
159 }
160
161 // create activity
162 $activityBAO = CRM_Activity_BAO_Activity::create($params);
163
164 if (isset($activityBAO->id)) {
165 if ($case_id && !$createRevision) {
166 // If this is a brand new case activity we need to add this
167 $caseActivityParams = array('activity_id' => $activityBAO->id, 'case_id' => $case_id);
168 CRM_Case_BAO_Case::processCaseActivity($caseActivityParams);
169 }
170
171 _civicrm_api3_object_to_array($activityBAO, $activityArray[$activityBAO->id]);
172 return civicrm_api3_create_success($activityArray, $params, 'activity', 'get', $activityBAO);
173 }
174}
11e09c59
TO
175
176/**
6a488035
TO
177 * Specify Meta data for create. Note that this data is retrievable via the getfields function
178 * and is used for pre-filling defaults and ensuring mandatory requirements are met.
179 * @param array $params (reference) array of parameters determined by getfields
180 */
181function _civicrm_api3_activity_create_spec(&$params) {
182
183 //default for source_contact_id = currently logged in user
184 $params['source_contact_id']['api.default'] = 'user_contact_id';
185
67744c4e
CW
186 $params['status_id']['api.aliases'] = array('activity_status');
187
6a488035
TO
188 $params['assignee_contact_id'] = array(
189 'name' => 'assignee_id',
190 'title' => 'assigned to',
191 'type' => 1,
2f3d72cf 192 'FKClassName' => 'CRM_Activity_DAO_ActivityContact',
6a488035
TO
193 );
194 $params['target_contact_id'] = array(
195 'name' => 'target_id',
196 'title' => 'Activity Target',
197 'type' => 1,
2f3d72cf 198 'FKClassName' => 'CRM_Activity_DAO_ActivityContact',
6a488035 199 );
2f3d72cf 200
201 $params['source_contact_id'] = array(
202 'name' => 'source_contact_id',
203 'title' => 'Activity Source Contact',
204 'type' => 1,
205 'FKClassName' => 'CRM_Activity_DAO_ActivityContact',
206 'api.default' => 'user_contact_id',
207 );
208
6a488035
TO
209}
210
211/**
212 * Gets a CiviCRM activity according to parameters
213 *
214 * @param array $params Associative array of property name/value
215 * pairs for the activity.
216 *
217 * @return array
218 *
219 * {@getfields activity_get}
220 * @example ActivityGet.php Basic example
221 * @example Activity/DateTimeHigh.php Example get with date filtering
222 * {@example ActivityGet.php 0}
223 */
224function civicrm_api3_activity_get($params) {
225 if (!empty($params['contact_id'])) {
226 $activities = CRM_Activity_BAO_Activity::getContactActivity($params['contact_id']);
227 //BAO function doesn't actually return a contact ID - hack api for now & add to test so when api re-write happens it won't get missed
228 foreach ($activities as $key => $activityArray) {
229 $activities[$key]['id'] = $key;
230 }
231 }
232 else {
233 $activities = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, FALSE);
234 }
e2e3c1ce
EM
235 $options = _civicrm_api3_get_options_from_params($params, FALSE,'activity','get');
236 if($options['is_count']) {
237 return civicrm_api3_create_success($activities, $params, 'activity', 'get');
238 }
6a488035 239
ab5fa8f2
TO
240 $activities = _civicrm_api3_activity_get_formatResult($params, $activities);
241 //legacy custom data get - so previous formatted response is still returned too
242 return civicrm_api3_create_success($activities, $params, 'activity', 'get');
243}
244
245/**
246 * Given a list of activities, append any extra data requested about the activities
247 *
248 * NOTE: Called by civicrm-core and CiviHR
249 *
250 * @param array $params API request parameters
251 * @param array $activities
252 * @return array new activities list
253 */
254function _civicrm_api3_activity_get_formatResult($params, $activities) {
6a488035
TO
255 $returns = CRM_Utils_Array::value('return', $params, array());
256 if (!is_array($returns)) {
257 $returns = str_replace(' ', '', $returns);
258 $returns = explode(',', $returns);
259 }
260 $returns = array_fill_keys($returns, 1);
261
262 foreach ($params as $n => $v) {
263 if (substr($n, 0, 7) == 'return.') {
264 $returnkey = substr($n, 7);
265 $returns[$returnkey] = $v;
266 }
267 }
2f3d72cf 268 $returns['source_contact_id'] = 1;
6a488035
TO
269 foreach ($returns as $n => $v) {
270 switch ($n) {
271 case 'assignee_contact_id':
272 foreach ($activities as $key => $activityArray) {
273 $activities[$key]['assignee_contact_id'] = CRM_Activity_BAO_ActivityAssignment::retrieveAssigneeIdsByActivityId($activityArray['id']);
274 }
275 break;
276 case 'target_contact_id':
277 foreach ($activities as $key => $activityArray) {
278 $activities[$key]['target_contact_id'] = CRM_Activity_BAO_ActivityTarget::retrieveTargetIdsByActivityId($activityArray['id']);
279 }
280 break;
42d30b83
DL
281 case 'source_contact_id':
282 foreach ($activities as $key => $activityArray) {
283 $activities[$key]['source_contact_id'] = CRM_Activity_BAO_Activity::getSourceContactID($activityArray['id']);
284 }
285 break;
6a488035
TO
286 default:
287 if (substr($n, 0, 6) == 'custom') {
288 $returnProperties[$n] = $v;
289 }
290 }
291 }
292 if (!empty($activities) && (!empty($returnProperties) || !empty($params['contact_id']))) {
293 foreach ($activities as $activityId => $values) {
6a488035
TO
294 _civicrm_api3_custom_data_get($activities[$activityId], 'Activity', $activityId, NULL, $values['activity_type_id']);
295 }
ab5fa8f2 296 return $activities;
6a488035 297 }
ab5fa8f2 298 return $activities;
6a488035
TO
299}
300
2f3d72cf 301
6a488035
TO
302/**
303 * Delete a specified Activity.
304 *
305 * @param array $params array holding 'id' of activity to be deleted
306 * {@getfields activity_delete}
307 *
308 * @return void|CRM_Core_Error An error if 'activityName or ID' is invalid,
309 * permissions are insufficient, etc. or CiviCRM success array
310 *
311 *
312 *
313 * @example ActivityDelete.php Standard Delete Example
314 *
315 *
316 */
317function civicrm_api3_activity_delete($params) {
318
319 if (CRM_Activity_BAO_Activity::deleteActivity($params)) {
320 return civicrm_api3_create_success(1, $params, 'activity', 'delete');
321 }
322 else {
323 return civicrm_api3_create_error('Could not delete activity');
324 }
325}
326
327/**
328 * Function to check for required params
329 *
330 * @param array $params associated array of fields
331 * @param boolean $addMode true for add mode
332 *
333 * @return array $error array with errors
334 */
335function _civicrm_api3_activity_check_params(&$params) {
336
337 $contactIDFields = array_intersect_key($params,
42d30b83
DL
338 array(
339 'source_contact_id' => 1,
340 'assignee_contact_id' => 1,
341 'target_contact_id' => 1,
342 )
6a488035 343 );
42d30b83
DL
344
345 // this should be handled by wrapper layer & probably the api would already manage it
346 //correctly by doing post validation - ie. a failure should result in a roll-back = an error
347 // needs testing
6a488035
TO
348 if (!empty($contactIDFields)) {
349 $contactIds = array();
350 foreach ($contactIDFields as $fieldname => $contactfield) {
351 if (empty($contactfield)) {
352 continue;
353 }
354 if (is_array($contactfield)) {
355 foreach ($contactfield as $contactkey => $contactvalue) {
356 $contactIds[$contactvalue] = $contactvalue;
357 }
358 }
359 else {
360 $contactIds[$contactfield] = $contactfield;
361 }
362 }
363
364
365 $sql = '
366SELECT count(*)
367 FROM civicrm_contact
368 WHERE id IN (' . implode(', ', $contactIds) . ' )';
369 if (count($contactIds) != CRM_Core_DAO::singleValueQuery($sql)) {
370 return civicrm_api3_create_error('Invalid ' . ' Contact Id');
371 }
372 }
373
374
375 $activityIds = array('activity' => CRM_Utils_Array::value('id', $params),
42d30b83
DL
376 'parent' => CRM_Utils_Array::value('parent_id', $params),
377 'original' => CRM_Utils_Array::value('original_id', $params),
6a488035
TO
378 );
379
380 foreach ($activityIds as $id => $value) {
381 if ($value &&
382 !CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity', $value, 'id')
383 ) {
384 return civicrm_api3_create_error('Invalid ' . ucfirst($id) . ' Id');
385 }
386 }
387 // this should be handled by wrapper layer & probably the api would already manage it
388 //correctly by doing pseudoconstant validation
389 // needs testing
390 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'name', TRUE);
391 $activityName = CRM_Utils_Array::value('activity_name', $params);
392 $activityName = ucfirst($activityName);
393 $activityLabel = CRM_Utils_Array::value('activity_label', $params);
394 if ($activityLabel) {
395 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'label', TRUE);
396 }
397
398 $activityTypeId = CRM_Utils_Array::value('activity_type_id', $params);
399
400 if ($activityName || $activityLabel) {
401 $activityTypeIdInList = array_search(($activityName ? $activityName : $activityLabel), $activityTypes);
402
403 if (!$activityTypeIdInList) {
404 $errorString = $activityName ? "Invalid Activity Name : $activityName" : "Invalid Activity Type Label";
405 throw new Exception($errorString);
406 }
407 elseif ($activityTypeId && ($activityTypeId != $activityTypeIdInList)) {
408 return civicrm_api3_create_error('Mismatch in Activity');
409 }
410 $params['activity_type_id'] = $activityTypeIdInList;
411 }
412 elseif ($activityTypeId &&
413 !array_key_exists($activityTypeId, $activityTypes)
414 ) {
415 return civicrm_api3_create_error('Invalid Activity Type ID');
416 }
417
6a488035
TO
418 // check for activity duration minutes
419 // this should be validated @ the wrapper layer not here
420 // needs testing
421 if (isset($params['duration_minutes']) && !is_numeric($params['duration_minutes'])) {
422 return civicrm_api3_create_error('Invalid Activity Duration (in minutes)');
423 }
424
425
426 //if adding a new activity & date_time not set make it now
427 // this should be managed by the wrapper layer & setting ['api.default'] in speces
428 // needs testing
429 if (!CRM_Utils_Array::value('id', $params) &&
430 !CRM_Utils_Array::value('activity_date_time', $params)
431 ) {
432 $params['activity_date_time'] = CRM_Utils_Date::processDate(date('Y-m-d H:i:s'));
433 }
434
435 return NULL;
436}
437