Merge branch '4.7.28-rc' into master
[civicrm-core.git] / api / v3 / Case.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
1f4ea726 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 +--------------------------------------------------------------------+
e70a7fc0 26 */
6a488035
TO
27
28/**
b081365f 29 * This api exposes CiviCRM Case objects.
6a488035
TO
30 * Developed by woolman.org
31 *
32 * @package CiviCRM_APIv3
6a488035
TO
33 */
34
35
36/**
244bbdd8 37 * Open a new case, add client and manager roles, and standard timeline.
6a488035 38 *
6c552737 39 * @param array $params
37b8953e 40 *
b081365f 41 * @code
791a8dc4 42 * //REQUIRED for create:
6a488035
TO
43 * 'case_type_id' => int OR
44 * 'case_type' => str (provide one or the other)
45 * 'contact_id' => int // case client
46 * 'subject' => str
791a8dc4
MW
47 * //REQUIRED for update:
48 * 'id' => case Id
6a488035
TO
49 *
50 * //OPTIONAL
51 * 'medium_id' => int // see civicrm option values for possibilities
52 * 'creator_id' => int // case manager, default to the logged in user
53 * 'status_id' => int // defaults to 1 "ongoing"
54 * 'location' => str
55 * 'start_date' => str datestamp // defaults to: date('YmdHis')
56 * 'duration' => int // in minutes
57 * 'details' => str // html format
b081365f 58 * @endcode
6a488035 59 *
784e85a1 60 * @throws API_Exception
a6c01b45 61 * @return array
72b3a70c 62 * api result array
6a488035
TO
63 */
64function civicrm_api3_case_create($params) {
6a488035
TO
65 _civicrm_api3_case_format_params($params);
66
da4d8910
MW
67 if (empty($params['id'])) {
68 // Creating a new case, so make sure we have the necessary parameters
2a3c0d28 69 civicrm_api3_verify_mandatory($params, NULL, array(
da4d8910
MW
70 'contact_id',
71 'subject',
18174a47 72 array('case_type', 'case_type_id'),
2a3c0d28 73 )
da4d8910 74 );
6a488035 75 }
da4d8910
MW
76 else {
77 // Update an existing case
78 // FIXME: Some of this logic should move to the BAO object?
79 // FIXME: Should we check if case with ID actually exists?
80 if (!isset($params['case_id']) && isset($params['id'])) {
81 $params['case_id'] = $params['id'];
82 }
6a488035 83
da4d8910 84 if (array_key_exists('creator_id', $params)) {
ef76301b 85 throw new API_Exception('You cannot update creator id');
da4d8910
MW
86 }
87
2a3c0d28 88 $mergedCaseId = $origContactIds = array();
da4d8910
MW
89
90 // get original contact id and creator id of case
91 if (!empty($params['contact_id'])) {
92 $origContactIds = CRM_Case_BAO_Case::retrieveContactIdsByCaseId($params['id']);
f37c1b47 93 $origContactId = CRM_Utils_Array::first($origContactIds);
da4d8910
MW
94 }
95
2a3c0d28 96 // FIXME: Refactor as separate method to get contactId
da4d8910
MW
97 if (count($origContactIds) > 1) {
98 // check valid orig contact id
2a3c0d28
MW
99 if (empty($params['orig_contact_id'])) {
100 throw new API_Exception('Case is linked with more than one contact id. Provide the required params orig_contact_id to be replaced');
101 }
da4d8910
MW
102 if (!empty($params['orig_contact_id']) && !in_array($params['orig_contact_id'], $origContactIds)) {
103 throw new API_Exception('Invalid case contact id (orig_contact_id)');
104 }
da4d8910
MW
105 $origContactId = $params['orig_contact_id'];
106 }
6a488035 107
da4d8910
MW
108 // check for same contact id for edit Client
109 if (!empty($params['contact_id']) && !in_array($params['contact_id'], $origContactIds)) {
2a3c0d28 110 $mergedCaseId = CRM_Case_BAO_Case::mergeCases($params['contact_id'], $params['case_id'], $origContactId, NULL, TRUE);
da4d8910
MW
111 }
112
113 // If we merged cases then update the merged case
2a3c0d28
MW
114 if (!empty($mergedCaseId[0])) {
115 $params['id'] = $mergedCaseId[0];
da4d8910
MW
116 }
117 }
118
119 // Create/update the case
120 $caseBAO = CRM_Case_BAO_Case::create($params);
6a488035
TO
121
122 if (!$caseBAO) {
784e85a1 123 throw new API_Exception('Case not created. Please check input params.');
6a488035
TO
124 }
125
6e36c320 126 if (isset($params['contact_id']) && !isset($params['id'])) {
791a8dc4
MW
127 foreach ((array) $params['contact_id'] as $cid) {
128 $contactParams = array('case_id' => $caseBAO->id, 'contact_id' => $cid);
129 CRM_Case_BAO_CaseContact::create($contactParams);
130 }
6a488035
TO
131 }
132
da4d8910 133 if (!isset($params['id'])) {
2a3c0d28
MW
134 // As the API was not passed an id we have created a new case.
135 // Only run the xmlProcessor for new cases to get all configuration for the new case.
da4d8910
MW
136 _civicrm_api3_case_create_xmlProcessor($params, $caseBAO);
137 }
138
139 // return case
140 $values = array();
141 _civicrm_api3_object_to_array($caseBAO, $values[$caseBAO->id]);
142
da4d8910
MW
143 return civicrm_api3_create_success($values, $params, 'Case', 'create', $caseBAO);
144}
145
2a3c0d28
MW
146/**
147 * When creating a new case, run the xmlProcessor to get all necessary params/configuration
148 * for the new case, as cases use an xml file to store their configuration.
149 * @param $params
150 * @param $caseBAO
151 */
da4d8910
MW
152function _civicrm_api3_case_create_xmlProcessor($params, $caseBAO) {
153 // Format params for xmlProcessor
ebf4aeaa
MW
154 if (isset($caseBAO->id)) {
155 $params['id'] = $caseBAO->id;
156 }
da4d8910 157
6a488035
TO
158 // Initialize XML processor with $params
159 $xmlProcessor = new CRM_Case_XMLProcessor_Process();
160 $xmlProcessorParams = array(
2a3c0d28
MW
161 'clientID' => CRM_Utils_Array::value('contact_id', $params),
162 'creatorID' => CRM_Utils_Array::value('creator_id', $params),
6a488035
TO
163 'standardTimeline' => 1,
164 'activityTypeName' => 'Open Case',
2a3c0d28
MW
165 'caseID' => CRM_Utils_Array::value('id', $params),
166 'subject' => CRM_Utils_Array::value('subject', $params),
167 'location' => CRM_Utils_Array::value('location', $params),
168 'activity_date_time' => CRM_Utils_Array::value('start_date', $params),
169 'duration' => CRM_Utils_Array::value('duration', $params),
170 'medium_id' => CRM_Utils_Array::value('medium_id', $params),
171 'details' => CRM_Utils_Array::value('details', $params),
6a488035
TO
172 'custom' => array(),
173 );
174
175 // Do it! :-D
176 $xmlProcessor->run($params['case_type'], $xmlProcessorParams);
6a488035
TO
177}
178
11e09c59 179/**
2fb1dd66 180 * Adjust Metadata for Get Action.
6a488035 181 *
cf470720 182 * @param array $params
2fb1dd66 183 * Parameters determined by getfields.
6a488035
TO
184 */
185function _civicrm_api3_case_get_spec(&$params) {
d142432b
EM
186 $params['contact_id'] = array(
187 'api.aliases' => array('client_id'),
188 'title' => 'Case Client',
48bdb3cd 189 'description' => 'Contact id of one or more clients to retrieve cases for',
d142432b 190 'type' => CRM_Utils_Type::T_INT,
48bdb3cd
CW
191 );
192 $params['activity_id'] = array(
193 'title' => 'Case Activity',
194 'description' => 'Id of an activity in the case',
195 'type' => CRM_Utils_Type::T_INT,
d142432b 196 );
9ef16723
CW
197 $params['tag_id'] = array(
198 'title' => 'Tags',
199 'description' => 'Find activities with specified tags.',
200 'type' => 1,
201 'FKClassName' => 'CRM_Core_DAO_Tag',
202 'FKApiName' => 'Tag',
203 'supports_joins' => TRUE,
204 );
6a488035
TO
205}
206
11e09c59 207/**
2fb1dd66 208 * Adjust Metadata for Create Action.
6a488035 209 *
cf470720 210 * @param array $params
b081365f 211 * Array of parameters determined by getfields.
6a488035
TO
212 */
213function _civicrm_api3_case_create_spec(&$params) {
d142432b
EM
214 $params['contact_id'] = array(
215 'api.aliases' => array('client_id'),
216 'title' => 'Case Client',
48bdb3cd 217 'description' => 'Contact id of case client(s)',
d142432b
EM
218 'api.required' => 1,
219 'type' => CRM_Utils_Type::T_INT,
6e36c320 220 'FKApiName' => 'Contact',
d142432b 221 );
6a488035 222 $params['status_id']['api.default'] = 1;
8ae90f85 223 $params['status_id']['api.aliases'] = array('case_status');
941feb14
EM
224 $params['creator_id']['api.default'] = 'user_contact_id';
225 $params['creator_id']['type'] = CRM_Utils_Type::T_INT;
b05e6d0d 226 $params['creator_id']['title'] = 'Case Created By';
ca11b9da 227 $params['start_date']['api.default'] = 'now';
16c0ec8d
CW
228 $params['medium_id'] = array(
229 'name' => 'medium_id',
230 'title' => 'Activity Medium',
d142432b 231 'type' => CRM_Utils_Type::T_INT,
16c0ec8d 232 );
6a488035
TO
233}
234
11e09c59 235/**
2fb1dd66 236 * Adjust Metadata for Update action.
6a488035 237 *
cf470720 238 * @param array $params
b081365f 239 * Array of parameters determined by getfields.
6a488035
TO
240 */
241function _civicrm_api3_case_update_spec(&$params) {
242 $params['id']['api.required'] = 1;
243}
244
11e09c59 245/**
c1a920f1 246 * Adjust Metadata for Delete action.
6a488035 247 *
cf470720 248 * @param array $params
b081365f 249 * Array of parameters determined by getfields.
6a488035
TO
250 */
251function _civicrm_api3_case_delete_spec(&$params) {
252 $params['id']['api.required'] = 1;
253}
254
6a488035 255/**
211e2fca 256 * Get details of a particular case, or search for cases, depending on params.
6a488035
TO
257 *
258 * Please provide one (and only one) of the four get/search parameters:
259 *
6c552737
TO
260 * @param array $params
261 * 'id' => if set, will get all available info about a case, including contacts and activities
6a488035 262 *
6c552737
TO
263 * // if no case_id provided, this function will use one of the following search parameters:
264 * 'client_id' => finds all cases with a specific client
265 * 'activity_id' => returns the case containing a specific activity
266 * 'contact_id' => finds all cases associated with a contact (in any role, not just client)
09f6c512
CW
267 * $params CRM_Utils_SQL_Select $sql
268 * Other apis wishing to wrap & extend this one can pass in a $sql object with extra clauses
6a488035 269 *
77b97be7 270 * @throws API_Exception
a6c01b45 271 * @return array
72b3a70c 272 * (get mode, case_id provided): Array with case details, case roles, case activity ids, (search mode, case_id not provided): Array of cases found
6a488035 273 */
09f6c512 274function civicrm_api3_case_get($params, $sql = NULL) {
6a488035 275 $options = _civicrm_api3_get_options_from_params($params);
09f6c512
CW
276 if (!is_a($sql, 'CRM_Utils_SQL_Select')) {
277 $sql = CRM_Utils_SQL_Select::fragment();
278 }
48bdb3cd
CW
279
280 // Add clause to search by client
6a488035 281 if (!empty($params['contact_id'])) {
9808e205
CW
282 // Legacy support - this field historically supports a nonstandard format of array(1,2,3) as a synonym for array('IN' => array(1,2,3))
283 if (is_array($params['contact_id'])) {
284 $operator = CRM_Utils_Array::first(array_keys($params['contact_id']));
285 if (!in_array($operator, \CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
286 $params['contact_id'] = array('IN' => $params['contact_id']);
6a488035
TO
287 }
288 }
9808e205
CW
289 else {
290 $params['contact_id'] = array('=' => $params['contact_id']);
291 }
292 $clause = CRM_Core_DAO::createSQLFilter('contact_id', $params['contact_id']);
293 $sql->where("a.id IN (SELECT case_id FROM civicrm_case_contact WHERE $clause)");
6a488035
TO
294 }
295
242220e2
CW
296 // Order by case contact (primary client)
297 // Ex: "contact_id", "contact_id.display_name", "contact_id.sort_name DESC".
298 if (!empty($options['sort']) && strpos($options['sort'], 'contact_id') !== FALSE) {
299 $sort = explode(', ', $options['sort']);
300 $contactSort = NULL;
4c6cc364 301 foreach ($sort as $index => &$sortString) {
242220e2
CW
302 if (strpos($sortString, 'contact_id') === 0) {
303 $contactSort = $sortString;
4c6cc364 304 $sortString = '(1)';
242220e2
CW
305 // Get sort field and direction
306 list($sortField, $dir) = array_pad(explode(' ', $contactSort), 2, 'ASC');
307 list(, $sortField) = array_pad(explode('.', $sortField), 2, 'id');
308 // Validate inputs
309 if (!array_key_exists($sortField, CRM_Contact_DAO_Contact::fieldKeys()) || ($dir != 'ASC' && $dir != 'DESC')) {
310 throw new API_Exception("Unknown field specified for sort. Cannot order by '$contactSort'");
311 }
4c6cc364 312 $sql->orderBy("case_contact.$sortField $dir", NULL, $index);
242220e2
CW
313 }
314 }
315 // Remove contact sort params so the basic_get function doesn't see them
316 $params['options']['sort'] = implode(', ', $sort);
317 unset($params['option_sort'], $params['option.sort'], $params['sort']);
318 // Add necessary joins to the first case client
319 if ($contactSort) {
320 $sql->join('ccc', 'LEFT JOIN (SELECT * FROM civicrm_case_contact WHERE id IN (SELECT MIN(id) FROM civicrm_case_contact GROUP BY case_id)) AS ccc ON ccc.case_id = a.id');
7a51786d 321 $sql->join('case_contact', 'LEFT JOIN civicrm_contact AS case_contact ON ccc.contact_id = case_contact.id AND case_contact.is_deleted <> 1');
242220e2
CW
322 }
323 }
324
48bdb3cd 325 // Add clause to search by activity
6a488035 326 if (!empty($params['activity_id'])) {
48bdb3cd 327 if (!CRM_Utils_Rule::positiveInteger($params['activity_id'])) {
784e85a1 328 throw new API_Exception('Invalid parameter: activity_id. Must provide a numeric value.');
6a488035 329 }
48bdb3cd
CW
330 $activityId = $params['activity_id'];
331 $originalId = CRM_Core_DAO::getFieldValue('CRM_Activity_BAO_Activity', $activityId, 'original_id');
332 if ($originalId) {
333 $activityId .= ',' . $originalId;
6a488035 334 }
48bdb3cd
CW
335 $sql
336 ->join('civicrm_case_activity', 'INNER JOIN civicrm_case_activity ON civicrm_case_activity.case_id = a.id')
337 ->where("civicrm_case_activity.activity_id IN ($activityId)");
6a488035 338 }
f21557af 339
9ef16723
CW
340 // Clause to search by tag
341 if (!empty($params['tag_id'])) {
342 $dummySpec = array();
343 _civicrm_api3_validate_integer($params, 'tag_id', $dummySpec, 'Case');
344 if (!is_array($params['tag_id'])) {
345 $params['tag_id'] = array('=' => $params['tag_id']);
346 }
347 $clause = \CRM_Core_DAO::createSQLFilter('tag_id', $params['tag_id']);
348 if ($clause) {
349 $sql->where('a.id IN (SELECT entity_id FROM civicrm_entity_tag WHERE entity_table = "civicrm_case" AND !clause)', array('!clause' => $clause));
350 }
351 }
352
353 $cases = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), array('sequential' => 0) + $params, TRUE, 'Case', $sql);
a54ac083 354
9ef16723 355 if (empty($options['is_count']) && !empty($cases['values'])) {
abd06efc 356 // For historic reasons we return these by default only when fetching a case by id
10befc1f 357 if (!empty($params['id']) && is_numeric($params['id']) && empty($options['return'])) {
abd06efc
CW
358 $options['return'] = array(
359 'contacts' => 1,
360 'activities' => 1,
361 'contact_id' => 1,
362 );
363 }
e01eccc0 364
9ef16723
CW
365 _civicrm_api3_case_read($cases['values'], $options);
366
367 // We disabled sequential to keep the list indexed for case_read(). Now add it back.
368 if (!empty($params['sequential'])) {
369 $cases['values'] = array_values($cases['values']);
abd06efc 370 }
35671d00 371 }
f21557af 372
9ef16723 373 return $cases;
6a488035
TO
374}
375
376/**
35823763
EM
377 * Deprecated API.
378 *
379 * Use activity API instead.
9657ccf2
EM
380 *
381 * @param array $params
382 *
383 * @throws API_Exception
384 * @return array
6a488035
TO
385 */
386function civicrm_api3_case_activity_create($params) {
a14e9d08
CW
387 require_once "api/v3/Activity.php";
388 return civicrm_api3_activity_create($params) + array(
389 'deprecated' => CRM_Utils_Array::value('activity_create', _civicrm_api3_case_deprecation()),
390 );
ae76ce5e
CW
391}
392
393/**
394 * Add a timeline to a case.
395 *
396 * @param array $params
397 *
398 * @throws API_Exception
399 * @return array
400 */
401function civicrm_api3_case_addtimeline($params) {
402 $caseType = CRM_Case_BAO_Case::getCaseType($params['case_id'], 'name');
403 $xmlProcessor = new CRM_Case_XMLProcessor_Process();
404 $xmlProcessorParams = array(
405 'clientID' => CRM_Case_BAO_Case::getCaseClients($params['case_id']),
406 'creatorID' => $params['creator_id'],
407 'standardTimeline' => 0,
408 'activity_date_time' => $params['activity_date_time'],
409 'caseID' => $params['case_id'],
410 'caseType' => $caseType,
411 'activitySetName' => $params['timeline'],
412 );
413 $xmlProcessor->run($caseType, $xmlProcessorParams);
414 return civicrm_api3_create_success();
415}
416
417/**
418 * Adjust Metadata for addtimeline action.
419 *
420 * @param array $params
421 * Array of parameters determined by getfields.
422 */
423function _civicrm_api3_case_addtimeline_spec(&$params) {
424 $params['case_id'] = array(
425 'title' => 'Case ID',
426 'description' => 'Id of case to update',
427 'type' => CRM_Utils_Type::T_INT,
428 'api.required' => 1,
429 );
430 $params['timeline'] = array(
431 'title' => 'Timeline',
432 'description' => 'Name of activity set',
433 'type' => CRM_Utils_Type::T_STRING,
434 'api.required' => 1,
435 );
436 $params['activity_date_time'] = array(
437 'api.default' => 'now',
438 'title' => 'Activity date time',
439 'description' => 'Timeline start date',
440 'type' => CRM_Utils_Type::T_DATE,
441 );
442 $params['creator_id'] = array(
443 'api.default' => 'user_contact_id',
444 'title' => 'Activity creator',
445 'description' => 'Contact id of timeline creator',
446 'type' => CRM_Utils_Type::T_INT,
447 );
a14e9d08
CW
448}
449
a6bc7218
CW
450/**
451 * Merge 2 cases.
452 *
453 * @param array $params
454 *
455 * @throws API_Exception
456 * @return array
457 */
458function civicrm_api3_case_merge($params) {
459 $clients1 = CRM_Case_BAO_Case::getCaseClients($params['case_id_1']);
460 $clients2 = CRM_Case_BAO_Case::getCaseClients($params['case_id_2']);
461 CRM_Case_BAO_Case::mergeCases($clients1[0], $params['case_id_1'], $clients2[0], $params['case_id_2']);
462 return civicrm_api3_create_success();
463}
464
465/**
466 * Adjust Metadata for merge action.
467 *
468 * @param array $params
469 * Array of parameters determined by getfields.
470 */
471function _civicrm_api3_case_merge_spec(&$params) {
472 $params['case_id_1'] = array(
473 'title' => 'Case ID 1',
474 'description' => 'Id of main case',
475 'type' => CRM_Utils_Type::T_INT,
476 'api.required' => 1,
477 );
478 $params['case_id_2'] = array(
479 'title' => 'Case ID 2',
480 'description' => 'Id of second case',
481 'type' => CRM_Utils_Type::T_INT,
482 'api.required' => 1,
483 );
484}
485
a14e9d08 486/**
35823763
EM
487 * Declare deprecated api functions.
488 *
a14e9d08 489 * @deprecated api notice
a6c01b45 490 * @return array
16b10e64 491 * Array of deprecated actions
a14e9d08
CW
492 */
493function _civicrm_api3_case_deprecation() {
494 return array('activity_create' => 'Case api "activity_create" action is deprecated. Use the activity api instead.');
6a488035
TO
495}
496
497/**
3755d879 498 * @deprecated Update a specified case. Use civicrm_api3_case_create() instead.
6a488035 499 *
6c552737
TO
500 * @param array $params
501 * //REQUIRED:
502 * 'case_id' => int
6a488035 503 *
6c552737
TO
504 * //OPTIONAL
505 * 'status_id' => int
506 * 'start_date' => str datestamp
507 * 'contact_id' => int // case client
6a488035 508 *
784e85a1 509 * @throws API_Exception
a6c01b45 510 * @return array
72b3a70c 511 * api result array
6a488035
TO
512 */
513function civicrm_api3_case_update($params) {
e720ce6e
CB
514 if (!isset($params['case_id']) && isset($params['id'])) {
515 $params['case_id'] = $params['id'];
516 }
517
6a488035
TO
518 //check parameters
519 civicrm_api3_verify_mandatory($params, NULL, array('id'));
520
784e85a1 521 // return error if modifying creator id
6a488035 522 if (array_key_exists('creator_id', $params)) {
784e85a1 523 throw new API_Exception(ts('You cannot update creator id'));
6a488035
TO
524 }
525
784e85a1 526 $mCaseId = $origContactIds = array();
6a488035
TO
527
528 // get original contact id and creator id of case
529 if (!empty($params['contact_id'])) {
c2e81506 530 $origContactIds = CRM_Case_BAO_Case::retrieveContactIdsByCaseId($params['id']);
f37c1b47 531 $origContactId = CRM_Utils_Array::first($origContactIds);
6a488035
TO
532 }
533
534 if (count($origContactIds) > 1) {
535 // check valid orig contact id
536 if (!empty($params['orig_contact_id']) && !in_array($params['orig_contact_id'], $origContactIds)) {
784e85a1 537 throw new API_Exception('Invalid case contact id (orig_contact_id)');
6a488035
TO
538 }
539 elseif (empty($params['orig_contact_id'])) {
784e85a1 540 throw new API_Exception('Case is linked with more than one contact id. Provide the required params orig_contact_id to be replaced');
6a488035
TO
541 }
542 $origContactId = $params['orig_contact_id'];
543 }
544
545 // check for same contact id for edit Client
546 if (!empty($params['contact_id']) && !in_array($params['contact_id'], $origContactIds)) {
547 $mCaseId = CRM_Case_BAO_Case::mergeCases($params['contact_id'], $params['case_id'], $origContactId, NULL, TRUE);
548 }
549
550 if (!empty($mCaseId[0])) {
c2e81506 551 $params['id'] = $mCaseId[0];
6a488035
TO
552 }
553
554 $dao = new CRM_Case_BAO_Case();
555 $dao->id = $params['id'];
556
557 $dao->copyValues($params);
558 $dao->save();
559
560 $case = array();
6a488035
TO
561 _civicrm_api3_object_to_array($dao, $case);
562
a54ac083 563 return civicrm_api3_create_success(array($dao->id => $case), $params, 'Case', 'update', $dao);
6a488035
TO
564}
565
566/**
567 * Delete a specified case.
568 *
6c552737 569 * @param array $params
37b8953e 570 *
244bbdd8 571 * @code
6c552737
TO
572 * //REQUIRED:
573 * 'id' => int
6a488035 574 *
6c552737
TO
575 * //OPTIONAL
576 * 'move_to_trash' => bool (defaults to false)
244bbdd8 577 * @endcode
6a488035 578 *
77b97be7 579 * @throws API_Exception
8572e6de 580 * @return mixed
6a488035
TO
581 */
582function civicrm_api3_case_delete($params) {
583 //check parameters
584 civicrm_api3_verify_mandatory($params, NULL, array('id'));
585
586 if (CRM_Case_BAO_Case::deleteCase($params['id'], CRM_Utils_Array::value('move_to_trash', $params, FALSE))) {
244bbdd8 587 return civicrm_api3_create_success($params, $params, 'Case', 'delete');
6a488035
TO
588 }
589 else {
784e85a1 590 throw new API_Exception('Could not delete case.');
6a488035
TO
591 }
592}
593
8572e6de
CW
594/**
595 * Case.restore API specification
596 *
597 * @param array $spec description of fields supported by this API call
598 * @return void
599 */
600function _civicrm_api3_case_restore_spec(&$spec) {
601 $result = civicrm_api3('Case', 'getfields', array('api_action' => 'delete'));
602 $spec = array('id' => $result['values']['id']);
603}
604
605/**
606 * Restore a specified case from the trash.
607 *
608 * @param array $params
609 * @throws API_Exception
610 * @return mixed
611 */
612function civicrm_api3_case_restore($params) {
613 if (CRM_Case_BAO_Case::restoreCase($params['id'])) {
614 return civicrm_api3_create_success($params, $params, 'Case', 'restore');
615 }
616 else {
617 throw new API_Exception('Could not restore case.');
618 }
619}
620
6a488035 621/**
9ef16723 622 * Augment case results with extra data.
6a488035 623 *
9ef16723 624 * @param array $cases
e9ff5391 625 * @param array $options
6a488035 626 */
9ef16723
CW
627function _civicrm_api3_case_read(&$cases, $options) {
628 foreach ($cases as &$case) {
629 if (empty($options['return']) || !empty($options['return']['contact_id'])) {
630 // Legacy support for client_id - TODO: in apiv4 remove 'client_id'
631 $case['client_id'] = $case['contact_id'] = CRM_Case_BAO_Case::retrieveContactIdsByCaseId($case['id']);
632 }
633 if (!empty($options['return']['contacts'])) {
634 //get case contacts
635 $contacts = CRM_Case_BAO_Case::getcontactNames($case['id']);
636 $relations = CRM_Case_BAO_Case::getRelatedContacts($case['id']);
637 $case['contacts'] = array_unique(array_merge($contacts, $relations), SORT_REGULAR);
638 }
639 if (!empty($options['return']['activities'])) {
640 // add case activities array - we'll populate them in bulk below
641 $case['activities'] = array();
642 }
643 // Properly render this joined field
644 if (!empty($options['return']['case_type_id.definition'])) {
645 if (!empty($case['case_type_id.definition'])) {
646 list($xml) = CRM_Utils_XML::parseString($case['case_type_id.definition']);
647 }
648 else {
649 $caseTypeId = !empty($case['case_type_id']) ? $case['case_type_id'] : CRM_Core_DAO::getFieldValue('CRM_Case_DAO_Case', $case['id'], 'case_type_id');
650 $caseTypeName = !empty($case['case_type_id.name']) ? $case['case_type_id.name'] : CRM_Core_DAO::getFieldValue('CRM_Case_DAO_CaseType', $caseTypeId, 'name');
651 $xml = CRM_Case_XMLRepository::singleton()->retrieve($caseTypeName);
652 }
653 $case['case_type_id.definition'] = array();
654 if ($xml) {
655 $case['case_type_id.definition'] = CRM_Case_BAO_CaseType::convertXmlToDefinition($xml);
656 }
657 }
a54ac083 658 }
9ef16723 659 // Bulk-load activities
a54ac083 660 if (!empty($options['return']['activities'])) {
9ef16723
CW
661 $query = "SELECT case_id, activity_id FROM civicrm_case_activity WHERE case_id IN (%1)";
662 $params = array(1 => array(implode(',', array_keys($cases)), 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES));
663 $dao = CRM_Core_DAO::executeQuery($query, $params);
a54ac083 664 while ($dao->fetch()) {
9ef16723 665 $cases[$dao->case_id]['activities'][] = $dao->activity_id;
6a488035 666 }
6a488035 667 }
9ef16723
CW
668 // Bulk-load tags. Supports joins onto the tag entity.
669 $tagGet = array('tag_id', 'entity_id');
670 foreach (array_keys($options['return']) as $key) {
671 if (strpos($key, 'tag_id.') === 0) {
672 $tagGet[] = $key;
673 $options['return']['tag_id'] = 1;
69f9c562 674 }
9ef16723
CW
675 }
676 if (!empty($options['return']['tag_id'])) {
677 $tags = civicrm_api3('EntityTag', 'get', array(
678 'entity_table' => 'civicrm_case',
679 'entity_id' => array('IN' => array_keys($cases)),
680 'return' => $tagGet,
681 'options' => array('limit' => 0),
682 ));
683 foreach ($tags['values'] as $tag) {
684 $key = (int) $tag['entity_id'];
685 unset($tag['entity_id'], $tag['id']);
686 $cases[$key]['tag_id'][$tag['tag_id']] = $tag;
69f9c562
CW
687 }
688 }
6a488035
TO
689}
690
691/**
61fe4988 692 * Internal function to format create params for processing.
9657ccf2
EM
693 *
694 * @param array $params
6a488035
TO
695 */
696function _civicrm_api3_case_format_params(&$params) {
2a3c0d28
MW
697 // Format/include custom params
698 $values = array();
699 _civicrm_api3_custom_format_params($params, $values, 'Case');
700 $params = array_merge($params, $values);
ebf4aeaa 701
2a3c0d28
MW
702 if (empty($params['case_type_id']) && empty($params['case_type'])) {
703 return;
704 }
705
706 // figure out case_type_id from case_type and vice-versa
707 $caseTypes = CRM_Case_PseudoConstant::caseType('name', FALSE);
708 if (empty($params['case_type_id'])) {
709 $params['case_type_id'] = array_search($params['case_type'], $caseTypes);
710
711 // DEPRECATED: lookup by label for backward compatibility
712 if (!$params['case_type_id']) {
713 $caseTypeLabels = CRM_Case_PseudoConstant::caseType('title', FALSE);
714 $params['case_type_id'] = array_search($params['case_type'], $caseTypeLabels);
61fe4988 715 $params['case_type'] = $caseTypes[$params['case_type_id']];
3f25e694 716 }
6a488035 717 }
2a3c0d28
MW
718 elseif (empty($params['case_type'])) {
719 $params['case_type'] = $caseTypes[$params['case_type_id']];
720 }
6a488035 721}
ff9340a4 722
da4d8910 723
ff9340a4
CW
724/**
725 * It actually works a lot better to use the CaseContact api instead of the Case api
726 * for entityRef fields so we can perform the necessary joins,
727 * so we pass off getlist requests to the CaseContact api.
728 *
729 * @param array $params
730 * @return mixed
731 */
732function civicrm_api3_case_getList($params) {
733 require_once 'api/v3/Generic/Getlist.php';
734 require_once 'api/v3/CaseContact.php';
09d55aa3 735 //CRM:19956 - Assign case_id param if both id and case_id is passed to retrieve the case
736 if (!empty($params['id']) && !empty($params['params']) && !empty($params['params']['case_id'])) {
737 $params['params']['case_id'] = array('IN' => $params['id']);
738 unset($params['id']);
739 }
ff9340a4
CW
740 $params['id_field'] = 'case_id';
741 $params['label_field'] = $params['search_field'] = 'contact_id.sort_name';
742 $params['description_field'] = array(
743 'case_id',
744 'case_id.case_type_id.title',
745 'case_id.subject',
746 'case_id.status_id',
747 'case_id.start_date',
748 );
749 $apiRequest = array(
09d55aa3 750 'version' => 3,
ff9340a4
CW
751 'entity' => 'CaseContact',
752 'action' => 'getlist',
753 'params' => $params,
754 );
755 return civicrm_api3_generic_getList($apiRequest);
756}
757
758/**
759 * Needed due to the above override
760 * @param $params
761 * @param $apiRequest
762 */
763function _civicrm_api3_case_getlist_spec(&$params, $apiRequest) {
764 require_once 'api/v3/Generic/Getlist.php';
765 _civicrm_api3_generic_getlist_spec($params, $apiRequest);
766}