Merge pull request #14402 from eileenmcnaughton/phpcs
[civicrm-core.git] / api / v3 / Contact.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 +--------------------------------------------------------------------+
e70a7fc0 26 */
6a488035
TO
27
28/**
c28e1768 29 * This api exposes CiviCRM contacts.
244bbdd8 30 *
c28e1768
CW
31 * Contacts are the main entity in CiviCRM and this api is more robust than most.
32 * - Get action allows all params supported by advanced search.
b081365f 33 * - Create action allows creating several related entities at once (e.g. email).
c28e1768
CW
34 * - Create allows checking for duplicate contacts.
35 * Use getfields to list the full range of parameters and options supported by each action.
6a488035
TO
36 *
37 * @package CiviCRM_APIv3
6a488035
TO
38 */
39
40/**
244bbdd8 41 * Create or update a Contact.
6a488035 42 *
cf470720
TO
43 * @param array $params
44 * Input parameters.
6a488035 45 *
77b97be7 46 * @throws API_Exception
6a488035 47 *
a6c01b45 48 * @return array
72b3a70c 49 * API Result Array
6a488035
TO
50 */
51function civicrm_api3_contact_create($params) {
6a488035 52 $contactID = CRM_Utils_Array::value('contact_id', $params, CRM_Utils_Array::value('id', $params));
c16ed19b
CW
53
54 if ($contactID && !empty($params['check_permissions']) && !CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) {
55 throw new \Civi\API\Exception\UnauthorizedException('Permission denied to modify contact record');
56 }
57
fedc3428 58 if (!empty($params['dupe_check'])) {
59ca5f92 59 $ids = CRM_Contact_BAO_Contact::getDuplicateContacts($params, $params['contact_type'], 'Unsupervised', [], $params['check_permission']);
fedc3428 60 if (count($ids) > 0) {
59ca5f92 61 throw new API_Exception("Found matching contacts: " . implode(',', $ids), "duplicate", ["ids" => $ids]);
fedc3428 62 }
63 }
64
65 $values = _civicrm_api3_contact_check_params($params);
6a488035
TO
66 if ($values) {
67 return $values;
68 }
69
d4463076
TO
70 if (array_key_exists('api_key', $params) && !empty($params['check_permissions'])) {
71 if (CRM_Core_Permission::check('edit api keys') || CRM_Core_Permission::check('administer CiviCRM')) {
72 // OK
73 }
74 elseif ($contactID && CRM_Core_Permission::check('edit own api keys') && CRM_Core_Session::singleton()->get('userID') == $contactID) {
75 // OK
76 }
77 else {
78 throw new \Civi\API\Exception\UnauthorizedException('Permission denied to modify api key');
79 }
80 }
81
6a488035
TO
82 if (!$contactID) {
83 // If we get here, we're ready to create a new contact
84 if (($email = CRM_Utils_Array::value('email', $params)) && !is_array($params['email'])) {
85 $defLocType = CRM_Core_BAO_LocationType::getDefault();
59ca5f92 86 $params['email'] = [
87 1 => [
d5cc0fc2 88 'email' => $email,
6a488035
TO
89 'is_primary' => 1,
90 'location_type_id' => ($defLocType->id) ? $defLocType->id : 1,
59ca5f92 91 ],
92 ];
6a488035
TO
93 }
94 }
95
96 if (!empty($params['home_url'])) {
cbf48754 97 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
59ca5f92 98 $params['website'] = [
99 1 => [
d5cc0fc2 100 'website_type_id' => key($websiteTypes),
6a488035 101 'url' => $params['home_url'],
59ca5f92 102 ],
103 ];
6a488035
TO
104 }
105
6ecbca5b 106 _civicrm_api3_greeting_format_params($params);
6a488035 107
59ca5f92 108 $values = [];
6a488035 109
6ecbca5b 110 if (empty($params['contact_type']) && $contactID) {
111 $params['contact_type'] = CRM_Contact_BAO_Contact::getContactType($contactID);
6a488035
TO
112 }
113
6ecbca5b 114 if (!isset($params['contact_sub_type']) && $contactID) {
115 $params['contact_sub_type'] = CRM_Contact_BAO_Contact::getContactSubType($contactID);
6a488035
TO
116 }
117
6ecbca5b 118 _civicrm_api3_custom_format_params($params, $values, $params['contact_type'], $contactID);
6a488035
TO
119
120 $params = array_merge($params, $values);
6ecbca5b 121 //@todo we should just call basic_create here - but need to make contact:create accept 'id' on the bao
6a488035
TO
122 $contact = _civicrm_api3_contact_update($params, $contactID);
123
124 if (is_a($contact, 'CRM_Core_Error')) {
6ecbca5b 125 throw new API_Exception($contact->_errors[0]['message']);
6a488035
TO
126 }
127 else {
59ca5f92 128 $values = [];
6a488035
TO
129 _civicrm_api3_object_to_array_unique_fields($contact, $values[$contact->id]);
130 }
131
c10bca20
TO
132 $values = _civicrm_api3_contact_formatResult($params, $values);
133
6a488035
TO
134 return civicrm_api3_create_success($values, $params, 'Contact', 'create');
135}
136
11e09c59 137/**
0aa0303c 138 * Adjust Metadata for Create action.
6a488035 139 *
cf470720 140 * @param array $params
b081365f 141 * Array of parameters determined by getfields.
6a488035
TO
142 */
143function _civicrm_api3_contact_create_spec(&$params) {
144 $params['contact_type']['api.required'] = 1;
59ca5f92 145 $params['id']['api.aliases'] = ['contact_id'];
146 $params['current_employer'] = [
6a488035
TO
147 'title' => 'Current Employer',
148 'description' => 'Name of Current Employer',
9c5991b3 149 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 150 ];
151 $params['dupe_check'] = [
0391dc25 152 'title' => 'Check for Duplicates',
153 'description' => 'Throw error if contact create matches dedupe rule',
d142432b 154 'type' => CRM_Utils_Type::T_BOOLEAN,
59ca5f92 155 ];
156 $params['skip_greeting_processing'] = [
d29b0fe7 157 'title' => 'Skip Greeting processing',
158 'description' => 'Do not process greetings, (these can be done by scheduled job and there may be a preference to do so for performance reasons)',
159 'type' => CRM_Utils_Type::T_BOOLEAN,
160 'api.default' => 0,
59ca5f92 161 ];
162 $params['prefix_id']['api.aliases'] = [
163 'individual_prefix',
164 'individual_prefix_id',
165 ];
166 $params['suffix_id']['api.aliases'] = [
167 'individual_suffix',
168 'individual_suffix_id',
169 ];
170 $params['gender_id']['api.aliases'] = ['gender'];
6a488035
TO
171}
172
173/**
61fe4988
EM
174 * Retrieve one or more contacts, given a set of search params.
175 *
176 * @param array $params
6a488035 177 *
a6c01b45 178 * @return array
72b3a70c 179 * API Result Array
6a488035
TO
180 */
181function civicrm_api3_contact_get($params) {
59ca5f92 182 $options = [];
6a488035 183 _civicrm_api3_contact_get_supportanomalies($params, $options);
244bbdd8 184 $contacts = _civicrm_api3_get_using_query_object('Contact', $params, $options);
c10bca20 185 $contacts = _civicrm_api3_contact_formatResult($params, $contacts);
244bbdd8 186 return civicrm_api3_create_success($contacts, $params, 'Contact');
6a488035
TO
187}
188
c10bca20
TO
189/**
190 * Filter the result.
191 *
192 * @param array $result
193 *
194 * @return array
195 * @throws \CRM_Core_Exception
196 */
197function _civicrm_api3_contact_formatResult($params, $result) {
59ca5f92 198 $apiKeyPerms = ['edit api keys', 'administer CiviCRM'];
199 $allowApiKey = empty($params['check_permissions']) || CRM_Core_Permission::check([$apiKeyPerms]);
c10bca20
TO
200 if (!$allowApiKey) {
201 if (is_array($result)) {
202 // Single-value $result
203 if (isset($result['api_key'])) {
204 unset($result['api_key']);
205 }
206
207 // Multi-value $result
208 foreach ($result as $key => $row) {
209 if (is_array($row)) {
210 unset($result[$key]['api_key']);
211 }
212 }
213 }
214 }
215 return $result;
216}
217
aa1b1481 218/**
244bbdd8 219 * Get number of contacts matching the supplied criteria.
61fe4988 220 *
c490a46a 221 * @param array $params
aa1b1481
EM
222 *
223 * @return int
224 */
6a488035 225function civicrm_api3_contact_getcount($params) {
59ca5f92 226 $options = [];
6a488035 227 _civicrm_api3_contact_get_supportanomalies($params, $options);
244bbdd8 228 $count = _civicrm_api3_get_using_query_object('Contact', $params, $options, 1);
972322c5 229 return (int) $count;
6a488035 230}
11e09c59
TO
231
232/**
9d32e6f7 233 * Adjust Metadata for Get action.
6a488035 234 *
cf470720 235 * @param array $params
b081365f 236 * Array of parameters determined by getfields.
6a488035
TO
237 */
238function _civicrm_api3_contact_get_spec(&$params) {
239 $params['contact_is_deleted']['api.default'] = 0;
240
9d32e6f7 241 // We declare all these pseudoFields as there are other undocumented fields accessible
6a488035 242 // via the api - but if check permissions is set we only allow declared fields
59ca5f92 243 $params['address_id'] = [
d142432b
EM
244 'title' => 'Primary Address ID',
245 'type' => CRM_Utils_Type::T_INT,
59ca5f92 246 ];
247 $params['street_address'] = [
d142432b
EM
248 'title' => 'Primary Address Street Address',
249 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 250 ];
251 $params['supplemental_address_1'] = [
d142432b
EM
252 'title' => 'Primary Address Supplemental Address 1',
253 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 254 ];
255 $params['supplemental_address_2'] = [
d142432b
EM
256 'title' => 'Primary Address Supplemental Address 2',
257 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 258 ];
259 $params['supplemental_address_3'] = [
207f62c6
AS
260 'title' => 'Primary Address Supplemental Address 3',
261 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 262 ];
263 $params['current_employer'] = [
d142432b
EM
264 'title' => 'Current Employer',
265 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 266 ];
267 $params['city'] = [
d142432b
EM
268 'title' => 'Primary Address City',
269 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 270 ];
271 $params['postal_code_suffix'] = [
d142432b
EM
272 'title' => 'Primary Address Post Code Suffix',
273 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 274 ];
275 $params['postal_code'] = [
d142432b
EM
276 'title' => 'Primary Address Post Code',
277 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 278 ];
279 $params['geo_code_1'] = [
d142432b
EM
280 'title' => 'Primary Address Latitude',
281 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 282 ];
283 $params['geo_code_2'] = [
d142432b
EM
284 'title' => 'Primary Address Longitude',
285 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 286 ];
287 $params['state_province_id'] = [
d142432b
EM
288 'title' => 'Primary Address State Province ID',
289 'type' => CRM_Utils_Type::T_INT,
59ca5f92 290 'pseudoconstant' => [
3493947a 291 'table' => 'civicrm_state_province',
59ca5f92 292 ],
293 ];
294 $params['state_province_name'] = [
d142432b
EM
295 'title' => 'Primary Address State Province Name',
296 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 297 'pseudoconstant' => [
3493947a 298 'table' => 'civicrm_state_province',
59ca5f92 299 ],
300 ];
301 $params['state_province'] = [
d142432b
EM
302 'title' => 'Primary Address State Province',
303 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 304 'pseudoconstant' => [
3493947a 305 'table' => 'civicrm_state_province',
59ca5f92 306 ],
307 ];
308 $params['country_id'] = [
d142432b
EM
309 'title' => 'Primary Address Country ID',
310 'type' => CRM_Utils_Type::T_INT,
59ca5f92 311 'pseudoconstant' => [
3493947a 312 'table' => 'civicrm_country',
59ca5f92 313 ],
314 ];
315 $params['country'] = [
d142432b
EM
316 'title' => 'Primary Address country',
317 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 318 'pseudoconstant' => [
3493947a 319 'table' => 'civicrm_country',
59ca5f92 320 ],
321 ];
322 $params['worldregion_id'] = [
d142432b
EM
323 'title' => 'Primary Address World Region ID',
324 'type' => CRM_Utils_Type::T_INT,
59ca5f92 325 'pseudoconstant' => [
3493947a 326 'table' => 'civicrm_world_region',
59ca5f92 327 ],
328 ];
329 $params['worldregion'] = [
d142432b
EM
330 'title' => 'Primary Address World Region',
331 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 332 'pseudoconstant' => [
3493947a 333 'table' => 'civicrm_world_region',
59ca5f92 334 ],
335 ];
336 $params['phone_id'] = [
d142432b
EM
337 'title' => 'Primary Phone ID',
338 'type' => CRM_Utils_Type::T_INT,
59ca5f92 339 ];
340 $params['phone'] = [
d142432b
EM
341 'title' => 'Primary Phone',
342 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 343 ];
344 $params['phone_type_id'] = [
d142432b
EM
345 'title' => 'Primary Phone Type ID',
346 'type' => CRM_Utils_Type::T_INT,
59ca5f92 347 ];
348 $params['provider_id'] = [
d142432b
EM
349 'title' => 'Primary Phone Provider ID',
350 'type' => CRM_Utils_Type::T_INT,
59ca5f92 351 ];
352 $params['email_id'] = [
d142432b
EM
353 'title' => 'Primary Email ID',
354 'type' => CRM_Utils_Type::T_INT,
59ca5f92 355 ];
356 $params['email'] = [
d142432b
EM
357 'title' => 'Primary Email',
358 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 359 ];
360 $params['on_hold'] = [
d142432b
EM
361 'title' => 'Primary Email On Hold',
362 'type' => CRM_Utils_Type::T_BOOLEAN,
59ca5f92 363 ];
364 $params['im'] = [
d142432b
EM
365 'title' => 'Primary Instant Messenger',
366 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 367 ];
368 $params['im_id'] = [
d142432b
EM
369 'title' => 'Primary Instant Messenger ID',
370 'type' => CRM_Utils_Type::T_INT,
59ca5f92 371 ];
372 $params['group'] = [
985f4890 373 'title' => 'Group',
59ca5f92 374 'pseudoconstant' => [
985f4890 375 'table' => 'civicrm_group',
59ca5f92 376 ],
377 ];
378 $params['tag'] = [
985f4890 379 'title' => 'Tags',
59ca5f92 380 'pseudoconstant' => [
985f4890 381 'table' => 'civicrm_tag',
59ca5f92 382 ],
383 ];
384 $params['uf_user'] = [
8d475ce9
CW
385 'title' => 'CMS User',
386 'type' => CRM_Utils_Type::T_BOOLEAN,
59ca5f92 387 ];
388 $params['birth_date_low'] = [
389 'name' => 'birth_date_low',
390 'type' => CRM_Utils_Type::T_DATE,
391 'title' => ts('Birth Date is equal to or greater than'),
392 ];
393 $params['birth_date_high'] = [
394 'name' => 'birth_date_high',
395 'type' => CRM_Utils_Type::T_DATE,
396 'title' => ts('Birth Date is equal to or less than'),
397 ];
398 $params['deceased_date_low'] = [
399 'name' => 'deceased_date_low',
400 'type' => CRM_Utils_Type::T_DATE,
401 'title' => ts('Deceased Date is equal to or greater than'),
402 ];
403 $params['deceased_date_high'] = [
404 'name' => 'deceased_date_high',
405 'type' => CRM_Utils_Type::T_DATE,
406 'title' => ts('Deceased Date is equal to or less than'),
407 ];
6a488035
TO
408}
409
11e09c59 410/**
9d32e6f7
EM
411 * Support for historical oddities.
412 *
244bbdd8 413 * We are supporting 'showAll' = 'all', 'trash' or 'active' for Contact get
6a488035
TO
414 * and for getcount
415 * - hopefully some day we'll come up with a std syntax for the 3-way-boolean of
416 * 0, 1 or not set
417 *
418 * We also support 'filter_group_id' & 'filter.group_id'
419 *
cf470720
TO
420 * @param array $params
421 * As passed into api get or getcount function.
422 * @param array $options
423 * Array of options (so we can modify the filter).
6a488035
TO
424 */
425function _civicrm_api3_contact_get_supportanomalies(&$params, &$options) {
426 if (isset($params['showAll'])) {
427 if (strtolower($params['showAll']) == "active") {
428 $params['contact_is_deleted'] = 0;
429 }
430 if (strtolower($params['showAll']) == "trash") {
431 $params['contact_is_deleted'] = 1;
432 }
433 if (strtolower($params['showAll']) == "all" && isset($params['contact_is_deleted'])) {
434 unset($params['contact_is_deleted']);
435 }
436 }
437 // support for group filters
438 if (array_key_exists('filter_group_id', $params)) {
439 $params['filter.group_id'] = $params['filter_group_id'];
440 unset($params['filter_group_id']);
441 }
442 // filter.group_id works both for 1,2,3 and array (1,2,3)
443 if (array_key_exists('filter.group_id', $params)) {
444 if (is_array($params['filter.group_id'])) {
445 $groups = $params['filter.group_id'];
446 }
4f99ca55
TO
447 else {
448 $groups = explode(',', $params['filter.group_id']);
35671d00 449 }
6a488035 450 unset($params['filter.group_id']);
6a488035 451 $options['input_params']['group'] = $groups;
51c4748e
SL
452 }
453 if (isset($params['group'])) {
454 $groups = $params['group'];
f639bf2f
PN
455 $groupsByTitle = CRM_Core_PseudoConstant::group();
456 $groupsByName = CRM_Contact_BAO_GroupContact::buildOptions('group_id', 'validate');
457 $allGroups = array_merge(array_flip($groupsByTitle), array_flip($groupsByName));
51c4748e 458 if (is_array($groups) && in_array(key($groups), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
0c66b30c 459 // Get the groups array.
51c4748e 460 $groupsArray = $groups[key($groups)];
0c66b30c 461 foreach ($groupsArray as &$group) {
f639bf2f
PN
462 if (!is_numeric($group) && !empty($allGroups[$group])) {
463 $group = $allGroups[$group];
51c4748e
SL
464 }
465 }
0c66b30c 466 // Now reset the $groups array with the ids not the titles.
56272bee 467 $groups[key($groups)] = $groupsArray;
51c4748e 468 }
0c66b30c 469 // handle format like 'group' => array('title1', 'title2').
51c4748e
SL
470 elseif (is_array($groups)) {
471 foreach ($groups as $k => &$group) {
f639bf2f
PN
472 if (!is_numeric($group) && !empty($allGroups[$group])) {
473 $group = $allGroups[$group];
51c4748e 474 }
f639bf2f 475 if (!is_numeric($k) && !empty($allGroups[$k])) {
b6b28d93 476 unset($groups[$k]);
f639bf2f 477 $groups[$allGroups[$k]] = $group;
b6b28d93 478 }
51c4748e
SL
479 }
480 }
59ca5f92 481 elseif (!is_numeric($groups) && !empty($allGroups[$groups])) {
f639bf2f 482 $groups = $allGroups[$groups];
51c4748e
SL
483 }
484 $params['group'] = $groups;
6a488035
TO
485 }
486}
487
488/**
244bbdd8 489 * Delete a Contact with given contact_id.
6a488035 490 *
cf470720 491 * @param array $params
c23f45d3 492 * input parameters per getfields
6a488035 493 *
c16ed19b 494 * @throws \Civi\API\Exception\UnauthorizedException
a6c01b45 495 * @return array
72b3a70c 496 * API Result Array
6a488035
TO
497 */
498function civicrm_api3_contact_delete($params) {
6a488035
TO
499 $contactID = CRM_Utils_Array::value('id', $params);
500
c16ed19b
CW
501 if (!empty($params['check_permissions']) && !CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::DELETE)) {
502 throw new \Civi\API\Exception\UnauthorizedException('Permission denied to modify contact record');
503 }
504
6a488035
TO
505 $session = CRM_Core_Session::singleton();
506 if ($contactID == $session->get('userID')) {
507 return civicrm_api3_create_error('This contact record is linked to the currently logged in user account - and cannot be deleted.');
508 }
0d8afee2
CW
509 $restore = !empty($params['restore']) ? $params['restore'] : FALSE;
510 $skipUndelete = !empty($params['skip_undelete']) ? $params['skip_undelete'] : FALSE;
f182074e
PN
511
512 // CRM-12929
513 // restrict permanent delete if a contact has financial trxn associated with it
514 $error = NULL;
59ca5f92 515 if ($skipUndelete && CRM_Financial_BAO_FinancialItem::checkContactPresent([$contactID], $error)) {
ad3f841d 516 return civicrm_api3_create_error($error['_qf_default']);
f182074e 517 }
fa6448fa
EM
518 if (CRM_Contact_BAO_Contact::deleteContact($contactID, $restore, $skipUndelete,
519 CRM_Utils_Array::value('check_permissions', $params))) {
6a488035
TO
520 return civicrm_api3_create_success();
521 }
522 else {
523 return civicrm_api3_create_error('Could not delete contact');
524 }
525}
526
aa1b1481 527/**
9d32e6f7
EM
528 * Check parameters passed in.
529 *
530 * This function is on it's way out.
531 *
c490a46a 532 * @param array $params
aa1b1481
EM
533 *
534 * @return null
535 * @throws API_Exception
536 * @throws CiviCRM_API3_Exception
537 */
fedc3428 538function _civicrm_api3_contact_check_params(&$params) {
6a488035
TO
539
540 switch (strtolower(CRM_Utils_Array::value('contact_type', $params))) {
541 case 'household':
59ca5f92 542 civicrm_api3_verify_mandatory($params, NULL, ['household_name']);
6a488035 543 break;
35671d00 544
6a488035 545 case 'organization':
59ca5f92 546 civicrm_api3_verify_mandatory($params, NULL, ['organization_name']);
6a488035 547 break;
35671d00 548
6a488035 549 case 'individual':
59ca5f92 550 civicrm_api3_verify_one_mandatory($params, NULL, [
7c31ae57
SL
551 'first_name',
552 'last_name',
553 'email',
554 'display_name',
555 ]);
35671d00 556 break;
6a488035
TO
557 }
558
8cc574cf 559 if (!empty($params['contact_sub_type']) && !empty($params['contact_type'])) {
35671d00
TO
560 if (!(CRM_Contact_BAO_ContactType::isExtendsContactType($params['contact_sub_type'], $params['contact_type']))) {
561 throw new API_Exception("Invalid or Mismatched Contact Subtype: " . implode(', ', (array) $params['contact_sub_type']));
6a488035 562 }
35671d00 563 }
6a488035 564
8d99ab37 565 // The BAO no longer supports the legacy param "current_employer" so here is a shim for api backward-compatability
6a488035 566 if (!empty($params['current_employer'])) {
59ca5f92 567 $organizationParams = [
8d99ab37 568 'organization_name' => $params['current_employer'],
59ca5f92 569 ];
6a488035 570
59ca5f92 571 $dupeIds = CRM_Contact_BAO_Contact::getDuplicateContacts($organizationParams, 'Organization', 'Supervised', [], FALSE);
6a488035
TO
572
573 // check for mismatch employer name and id
574 if (!empty($params['employer_id']) && !in_array($params['employer_id'], $dupeIds)) {
575 throw new API_Exception('Employer name and Employer id Mismatch');
576 }
577
578 // show error if multiple organisation with same name exist
579 if (empty($params['employer_id']) && (count($dupeIds) > 1)) {
580 throw new API_Exception('Found more than one Organisation with same Name.');
581 }
8d99ab37
CW
582
583 if ($dupeIds) {
584 $params['employer_id'] = $dupeIds[0];
585 }
586 else {
59ca5f92 587 $result = civicrm_api3('Contact', 'create', [
8d99ab37 588 'organization_name' => $params['current_employer'],
21dfd5f5 589 'contact_type' => 'Organization',
59ca5f92 590 ]);
8d99ab37
CW
591 $params['employer_id'] = $result['id'];
592 }
6a488035
TO
593 }
594
595 return NULL;
596}
597
598/**
244bbdd8 599 * Helper function for Contact create.
6a488035 600 *
cf470720
TO
601 * @param array $params
602 * (reference ) an assoc array of name/value pairs.
603 * @param int $contactID
604 * If present the contact with that ID is updated.
6a488035 605 *
54f1aa2a 606 * @return CRM_Contact_BAO_Contact|CRM_Core_Error
6a488035
TO
607 */
608function _civicrm_api3_contact_update($params, $contactID = NULL) {
6ecbca5b 609 //@todo - doesn't contact create support 'id' which is already set- check & remove
6a488035
TO
610 if ($contactID) {
611 $params['contact_id'] = $contactID;
612 }
613
6ecbca5b 614 return CRM_Contact_BAO_Contact::create($params);
6a488035
TO
615}
616
617/**
9d32e6f7 618 * Validate the addressee or email or postal greetings.
6a488035 619 *
cf470720 620 * @param array $params
9d32e6f7 621 * Array per getfields metadata.
6a488035 622 *
77b97be7 623 * @throws API_Exception
6a488035
TO
624 */
625function _civicrm_api3_greeting_format_params($params) {
59ca5f92 626 $greetingParams = ['', '_id', '_custom'];
627 foreach (['email', 'postal', 'addressee'] as $key) {
6a488035
TO
628 $greeting = '_greeting';
629 if ($key == 'addressee') {
630 $greeting = '';
631 }
632
633 $formatParams = FALSE;
22242c87 634 // Unset display value from params.
6a488035
TO
635 if (isset($params["{$key}{$greeting}_display"])) {
636 unset($params["{$key}{$greeting}_display"]);
637 }
638
639 // check if greetings are present in present
640 foreach ($greetingParams as $greetingValues) {
641 if (array_key_exists("{$key}{$greeting}{$greetingValues}", $params)) {
642 $formatParams = TRUE;
643 break;
644 }
645 }
646
647 if (!$formatParams) {
648 continue;
649 }
650
651 $nullValue = FALSE;
59ca5f92 652 $filter = [
6a488035 653 'greeting_type' => "{$key}{$greeting}",
59ca5f92 654 ];
6a488035 655
59ca5f92 656 $greetings = CRM_Core_PseudoConstant::greeting($filter);
657 $greetingId = CRM_Utils_Array::value("{$key}{$greeting}_id", $params);
658 $greetingVal = CRM_Utils_Array::value("{$key}{$greeting}", $params);
6a488035
TO
659 $customGreeting = CRM_Utils_Array::value("{$key}{$greeting}_custom", $params);
660
661 if (!$greetingId && $greetingVal) {
662 $params["{$key}{$greeting}_id"] = CRM_Utils_Array::key($params["{$key}{$greeting}"], $greetings);
663 }
664
665 if ($customGreeting && $greetingId &&
666 ($greetingId != array_search('Customized', $greetings))
667 ) {
6ecbca5b 668 throw new API_Exception(ts('Provide either %1 greeting id and/or %1 greeting or custom %1 greeting',
59ca5f92 669 [1 => $key]
670 ));
6a488035
TO
671 }
672
673 if ($greetingVal && $greetingId &&
674 ($greetingId != CRM_Utils_Array::key($greetingVal, $greetings))
675 ) {
6ecbca5b 676 throw new API_Exception(ts('Mismatch in %1 greeting id and %1 greeting',
59ca5f92 677 [1 => $key]
678 ));
6a488035
TO
679 }
680
681 if ($greetingId) {
6a488035 682 if (!$customGreeting && ($greetingId == array_search('Customized', $greetings))) {
6ecbca5b 683 throw new API_Exception(ts('Please provide a custom value for %1 greeting',
59ca5f92 684 [1 => $key]
685 ));
6a488035
TO
686 }
687 }
688 elseif ($greetingVal) {
689
690 if (!in_array($greetingVal, $greetings)) {
59ca5f92 691 throw new API_Exception(ts('Invalid %1 greeting', [1 => $key]));
6a488035
TO
692 }
693
694 $greetingId = CRM_Utils_Array::key($greetingVal, $greetings);
695 }
696
697 if ($customGreeting) {
698 $greetingId = CRM_Utils_Array::key('Customized', $greetings);
699 }
700
35671d00 701 $customValue = isset($params['contact_id']) ? CRM_Core_DAO::getFieldValue(
59ca5f92 702 'CRM_Contact_DAO_Contact',
703 $params['contact_id'],
704 "{$key}{$greeting}_custom"
705 ) : FALSE;
6a488035
TO
706
707 if (array_key_exists("{$key}{$greeting}_id", $params) && empty($params["{$key}{$greeting}_id"])) {
708 $nullValue = TRUE;
709 }
710 elseif (array_key_exists("{$key}{$greeting}", $params) && empty($params["{$key}{$greeting}"])) {
711 $nullValue = TRUE;
712 }
713 elseif ($customValue && array_key_exists("{$key}{$greeting}_custom", $params)
714 && empty($params["{$key}{$greeting}_custom"])
715 ) {
716 $nullValue = TRUE;
717 }
718
719 $params["{$key}{$greeting}_id"] = $greetingId;
720
721 if (!$customValue && !$customGreeting && array_key_exists("{$key}{$greeting}_custom", $params)) {
722 unset($params["{$key}{$greeting}_custom"]);
723 }
724
725 if ($nullValue) {
726 $params["{$key}{$greeting}_id"] = '';
727 $params["{$key}{$greeting}_custom"] = '';
728 }
729
730 if (isset($params["{$key}{$greeting}"])) {
731 unset($params["{$key}{$greeting}"]);
732 }
733 }
734}
735
2baa1e00 736/**
737 * Adjust Metadata for Get action.
738 *
739 * @param array $params
740 * Array of parameters determined by getfields.
741 */
742function _civicrm_api3_contact_getquick_spec(&$params) {
743 $params['name']['api.required'] = TRUE;
744 $params['name']['title'] = ts('String to search on');
745 $params['name']['type'] = CRM_Utils_Type::T_STRING;
746 $params['field']['type'] = CRM_Utils_Type::T_STRING;
747 $params['field']['title'] = ts('Field to search on');
59ca5f92 748 $params['field']['options'] = [
2baa1e00 749 '',
750 'id',
751 'contact_id',
752 'external_identifier',
753 'first_name',
754 'last_name',
755 'job_title',
756 'postal_code',
757 'street_address',
758 'email',
759 'city',
760 'phone_numeric',
59ca5f92 761 ];
2baa1e00 762 $params['table_name']['type'] = CRM_Utils_Type::T_STRING;
763 $params['table_name']['title'] = ts('Table alias to search on');
764 $params['table_name']['api.default'] = 'cc';
765}
766
6a488035 767/**
244bbdd8 768 * Old Contact quick search api.
6a488035 769 *
03f32517 770 * @deprecated
6a488035 771 *
d0997921 772 * @param array $params
9d32e6f7 773 *
645ee340
EM
774 * @return array
775 * @throws \API_Exception
6a488035 776 */
6a488035 777function civicrm_api3_contact_getquick($params) {
aca85468 778 $name = CRM_Utils_Type::escape(CRM_Utils_Array::value('name', $params), 'String');
2baa1e00 779 $table_name = CRM_Utils_String::munge($params['table_name']);
6a488035
TO
780 // get the autocomplete options from settings
781 $acpref = explode(CRM_Core_DAO::VALUE_SEPARATOR,
782 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
783 'contact_autocomplete_options'
784 )
785 );
786
4235341b
CW
787 $table_names = [
788 'email' => 'eml',
789 'phone_numeric' => 'phe',
790 'street_address' => 'sts',
791 'city' => 'sts',
792 'postal_code' => 'sts',
793 ];
794
6a488035
TO
795 // get the option values for contact autocomplete
796 $acOptions = CRM_Core_OptionGroup::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
797
59ca5f92 798 $list = $from = [];
6a488035 799 foreach ($acpref as $value) {
8cc574cf 800 if ($value && !empty($acOptions[$value])) {
6a488035
TO
801 $list[$value] = $acOptions[$value];
802 }
803 }
804 // If we are doing quicksearch by a field other than name, make sure that field is added to results
805 if (!empty($params['field_name'])) {
1aba4d9a 806 $field_name = CRM_Utils_String::munge($params['field_name']);
5d8ba7a7 807 // Unique name contact_id = id
1aba4d9a
CW
808 if ($field_name == 'contact_id') {
809 $field_name = 'id';
5d8ba7a7 810 }
4235341b
CW
811 if (isset($table_names[$field_name])) {
812 $table_name = $table_names[$field_name];
813 }
814 elseif (strpos($field_name, 'custom_') === 0) {
1f8ac3d2 815 $customField = civicrm_api3('CustomField', 'getsingle', [
4235341b 816 'id' => substr($field_name, 7),
59ca5f92 817 'return' => [
818 'custom_group_id.table_name',
819 'column_name',
820 'data_type',
821 'option_group_id',
822 'html_type',
823 ],
4235341b 824 ]);
1f8ac3d2
CW
825 $field_name = $customField['column_name'];
826 $table_name = CRM_Utils_String::munge($customField['custom_group_id.table_name']);
4235341b 827 $from[$field_name] = "LEFT JOIN `$table_name` ON cc.id = `$table_name`.entity_id";
1f8ac3d2
CW
828 if (CRM_Core_BAO_CustomField::hasOptions($customField)) {
829 $customOptionsWhere = [];
830 $customFieldOptions = CRM_Contact_BAO_Contact::buildOptions('custom_' . $customField['id'], 'search');
831 $isMultivalueField = CRM_Core_BAO_CustomField::isSerialized($customField);
832 $sep = CRM_Core_DAO::VALUE_SEPARATOR;
833 foreach ($customFieldOptions as $optionKey => $optionLabel) {
834 if (mb_stripos($optionLabel, $name) !== FALSE) {
835 $customOptionsWhere[$optionKey] = "$table_name.$field_name " . ($isMultivalueField ? "LIKE '%{$sep}{$optionKey}{$sep}%'" : "= '$optionKey'");
836 }
837 }
838 }
4235341b 839 }
6a488035 840 // phone_numeric should be phone
1aba4d9a 841 $searchField = str_replace('_numeric', '', $field_name);
22e263ad 842 if (!in_array($searchField, $list)) {
6a488035
TO
843 $list[] = $searchField;
844 }
845 }
2baa1e00 846 else {
847 // Set field name to first name for exact match checking.
848 $field_name = 'sort_name';
849 }
6a488035 850
59ca5f92 851 $select = $actualSelectElements = ['sort_name'];
852 $where = '';
6a488035
TO
853 foreach ($list as $value) {
854 $suffix = substr($value, 0, 2) . substr($value, -1);
855 switch ($value) {
856 case 'street_address':
857 case 'city':
858 case 'postal_code':
859 $selectText = $value;
59ca5f92 860 $value = "address";
861 $suffix = 'sts';
6a488035
TO
862 case 'phone':
863 case 'email':
864 $actualSelectElements[] = $select[] = ($value == 'address') ? $selectText : $value;
aebdef3c
JL
865 if ($value == 'phone') {
866 $actualSelectElements[] = $select[] = 'phone_ext';
867 }
6a488035
TO
868 $from[$value] = "LEFT JOIN civicrm_{$value} {$suffix} ON ( cc.id = {$suffix}.contact_id AND {$suffix}.is_primary = 1 ) ";
869 break;
870
871 case 'country':
872 case 'state_province':
873 $select[] = "{$suffix}.name as {$value}";
874 $actualSelectElements[] = "{$suffix}.name";
875 if (!in_array('address', $from)) {
876 $from['address'] = 'LEFT JOIN civicrm_address sts ON ( cc.id = sts.contact_id AND sts.is_primary = 1) ';
877 }
878 $from[$value] = " LEFT JOIN civicrm_{$value} {$suffix} ON ( sts.{$value}_id = {$suffix}.id ) ";
879 break;
880
881 default:
4235341b
CW
882 if ($value == 'id') {
883 $actualSelectElements[] = 'cc.id';
884 }
885 elseif ($value != 'sort_name') {
6a488035 886 $suffix = 'cc';
4235341b
CW
887 if ($field_name == $value) {
888 $suffix = $table_name;
6a488035
TO
889 }
890 $actualSelectElements[] = $select[] = $suffix . '.' . $value;
891 }
892 break;
893 }
894 }
895
896 $config = CRM_Core_Config::singleton();
59ca5f92 897 $as = $select;
6a488035
TO
898 $select = implode(', ', $select);
899 if (!empty($select)) {
900 $select = ", $select";
901 }
902 $actualSelectElements = implode(', ', $actualSelectElements);
6a488035 903 $from = implode(' ', $from);
133da98d 904 $limit = (int) CRM_Utils_Array::value('limit', $params);
89595c92 905 $limit = $limit > 0 ? $limit : Civi::settings()->get('search_autocomplete_count');
6a488035
TO
906
907 // add acl clause here
908 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
909
910 if ($aclWhere) {
911 $where .= " AND $aclWhere ";
912 }
613643e0 913 $isPrependWildcard = \Civi::settings()->get('includeWildCardInName');
6a488035 914
a7488080 915 if (!empty($params['org'])) {
6a488035
TO
916 $where .= " AND contact_type = \"Organization\"";
917
918 // CRM-7157, hack: get current employer details when
919 // employee_id is present.
59ca5f92 920 $currEmpDetails = [];
a7488080 921 if (!empty($params['employee_id'])) {
6a488035 922 if ($currentEmployer = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
59ca5f92 923 (int) $params['employee_id'],
924 'employer_id'
925 )) {
613643e0 926 if ($isPrependWildcard) {
6a488035
TO
927 $strSearch = "%$name%";
928 }
929 else {
930 $strSearch = "$name%";
931 }
932
933 // get current employer details
934 $dao = CRM_Core_DAO::executeQuery("SELECT cc.id as id, CONCAT_WS( ' :: ', {$actualSelectElements} ) as data, sort_name
935 FROM civicrm_contact cc {$from} WHERE cc.contact_type = \"Organization\" AND cc.id = {$currentEmployer} AND cc.sort_name LIKE '$strSearch'");
936 if ($dao->fetch()) {
59ca5f92 937 $currEmpDetails = [
6a488035
TO
938 'id' => $dao->id,
939 'data' => $dao->data,
59ca5f92 940 ];
6a488035
TO
941 }
942 }
943 }
944 }
945
a7488080 946 if (!empty($params['contact_sub_type'])) {
69164898
N
947 $contactSubType = CRM_Utils_Type::escape($params['contact_sub_type'], 'String');
948 $where .= " AND cc.contact_sub_type = '{$contactSubType}'";
949 }
950
e1b717cb
P
951 if (!empty($params['contact_type'])) {
952 $contactType = CRM_Utils_Type::escape($params['contact_type'], 'String');
953 $where .= " AND cc.contact_type LIKE '{$contactType}'";
954 }
955
244bbdd8 956 // Set default for current_employer or return contact with particular id
a7488080 957 if (!empty($params['id'])) {
1aba4d9a 958 $where .= " AND cc.id = " . (int) $params['id'];
6a488035
TO
959 }
960
a7488080 961 if (!empty($params['cid'])) {
1aba4d9a 962 $where .= " AND cc.id <> " . (int) $params['cid'];
6a488035
TO
963 }
964
244bbdd8 965 // Contact's based of relationhip type
6a488035 966 $relType = NULL;
a7488080 967 if (!empty($params['rel'])) {
6a488035 968 $relation = explode('_', CRM_Utils_Array::value('rel', $params));
59ca5f92 969 $relType = CRM_Utils_Type::escape($relation[0], 'Integer');
970 $rel = CRM_Utils_Type::escape($relation[2], 'String');
6a488035
TO
971 }
972
613643e0 973 if ($isPrependWildcard) {
6a488035
TO
974 $strSearch = "%$name%";
975 }
976 else {
977 $strSearch = "$name%";
978 }
1f8ac3d2 979 $includeEmailFrom = $includeNickName = '';
6a488035
TO
980 if ($config->includeNickNameInName) {
981 $includeNickName = " OR nick_name LIKE '$strSearch'";
6a488035
TO
982 }
983
1f8ac3d2
CW
984 if (isset($customOptionsWhere)) {
985 $customOptionsWhere = $customOptionsWhere ?: [0];
986 $whereClause = " WHERE (" . implode(' OR ', $customOptionsWhere) . ") $where";
987 }
d976e590 988 elseif (!empty($params['field_name']) && !empty($params['table_name']) && $params['field_name'] != 'sort_name') {
8d3b1aa6 989 $whereClause = " WHERE ( $table_name.$field_name LIKE '$strSearch') {$where}";
6a488035
TO
990 // Search by id should be exact
991 if ($field_name == 'id' || $field_name == 'external_identifier') {
613643e0 992 $whereClause = " WHERE ( $table_name.$field_name = '$name') {$where}";
6a488035
TO
993 }
994 }
995 else {
a5728a28 996 $whereClause = " WHERE ( sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
6a488035
TO
997 if ($config->includeEmailInName) {
998 if (!in_array('email', $list)) {
999 $includeEmailFrom = "LEFT JOIN civicrm_email eml ON ( cc.id = eml.contact_id AND eml.is_primary = 1 )";
1000 }
36575b09 1001 $emailWhere = " WHERE email LIKE '$strSearch'";
6a488035
TO
1002 }
1003 }
1004
1005 $additionalFrom = '';
1006 if ($relType) {
1007 $additionalFrom = "
1008 INNER JOIN civicrm_relationship_type r ON (
1009 r.id = {$relType}
1010 AND ( cc.contact_type = r.contact_type_{$rel} OR r.contact_type_{$rel} IS NULL )
1011 AND ( cc.contact_sub_type = r.contact_sub_type_{$rel} OR r.contact_sub_type_{$rel} IS NULL )
1012 )";
1013 }
1014
1015 // check if only CMS users are requested
a7488080 1016 if (!empty($params['cmsuser'])) {
6a488035
TO
1017 $additionalFrom = "
1018 INNER JOIN civicrm_uf_match um ON (um.contact_id=cc.id)
1019 ";
1020 }
613643e0 1021 $orderBy = _civicrm_api3_quicksearch_get_order_by($name, $isPrependWildcard, $field_name);
51e61eae 1022
6a488035
TO
1023 //CRM-5954
1024 $query = "
1f8ac3d2 1025 SELECT DISTINCT(id), data, sort_name, exactFirst
6a488035 1026 FROM (
2baa1e00 1027 ( SELECT IF($table_name.$field_name = '{$name}', 0, 1) as exactFirst, cc.id as id, CONCAT_WS( ' :: ',
1028 {$actualSelectElements} )
1029 as data
1030 {$select}
6a488035
TO
1031 FROM civicrm_contact cc {$from}
1032 {$aclFrom}
a5728a28 1033 {$additionalFrom}
6a488035 1034 {$whereClause}
613643e0 1035 {$orderBy}
6a488035 1036 LIMIT 0, {$limit} )
6a488035 1037 ";
a5728a28 1038
1039 if (!empty($emailWhere)) {
1040 $query .= "
1041 UNION (
1042 SELECT IF($table_name.$field_name = '{$name}', 0, 1) as exactFirst, cc.id as id, CONCAT_WS( ' :: ',
1043 {$actualSelectElements} )
1044 as data
1045 {$select}
1046 FROM civicrm_contact cc {$from}
1047 {$aclFrom}
1048 {$additionalFrom} {$includeEmailFrom}
c37a2d66 1049 {$emailWhere} AND cc.is_deleted = 0 " . ($aclWhere ? " AND $aclWhere " : '') . "
613643e0 1050 {$orderBy}
a5728a28 1051 LIMIT 0, {$limit}
1052 )
1053 ";
1054 }
36575b09 1055 $query .= ") t
613643e0 1056 {$orderBy}
2baa1e00 1057 LIMIT 0, {$limit}
1058 ";
1059
6a488035
TO
1060 // send query to hook to be modified if needed
1061 CRM_Utils_Hook::contactListQuery($query,
1062 $name,
133da98d
CW
1063 empty($params['context']) ? NULL : CRM_Utils_Type::escape($params['context'], 'String'),
1064 empty($params['id']) ? NULL : $params['id']
6a488035
TO
1065 );
1066
1067 $dao = CRM_Core_DAO::executeQuery($query);
1068
59ca5f92 1069 $contactList = [];
6a488035
TO
1070 $listCurrentEmployer = TRUE;
1071 while ($dao->fetch()) {
59ca5f92 1072 $t = ['id' => $dao->id];
6a488035 1073 foreach ($as as $k) {
35671d00 1074 $t[$k] = isset($dao->$k) ? $dao->$k : '';
6a488035
TO
1075 }
1076 $t['data'] = $dao->data;
1f8ac3d2
CW
1077 // Replace keys with values when displaying fields from an option list
1078 if (!empty($customOptionsWhere)) {
1079 $data = explode(' :: ', $dao->data);
1080 $pos = count($data) - 1;
1081 $customValue = array_intersect(CRM_Utils_Array::explodePadded($data[$pos]), array_keys($customOptionsWhere));
1082 $data[$pos] = implode(', ', array_intersect_key($customFieldOptions, array_flip($customValue)));
1083 $t['data'] = implode(' :: ', $data);
1084 }
6a488035 1085 $contactList[] = $t;
a7488080 1086 if (!empty($params['org']) &&
6a488035
TO
1087 !empty($currEmpDetails) &&
1088 $dao->id == $currEmpDetails['id']
1089 ) {
1090 $listCurrentEmployer = FALSE;
1091 }
1092 }
1093
1094 //return organization name if doesn't exist in db
1095 if (empty($contactList)) {
a7488080 1096 if (!empty($params['org'])) {
6a488035 1097 if ($listCurrentEmployer && !empty($currEmpDetails)) {
59ca5f92 1098 $contactList = [
1099 [
d5cc0fc2 1100 'data' => $currEmpDetails['data'],
59ca5f92 1101 'id' => $currEmpDetails['id'],
1102 ],
1103 ];
6a488035
TO
1104 }
1105 else {
59ca5f92 1106 $contactList = [
1107 [
6a488035 1108 'data' => $name,
59ca5f92 1109 'id' => $name,
1110 ],
1111 ];
6a488035
TO
1112 }
1113 }
1114 }
1115
244bbdd8 1116 return civicrm_api3_create_success($contactList, $params, 'Contact', 'getquick');
a14e9d08
CW
1117}
1118
613643e0 1119/**
1120 * Get the order by string for the quicksearch query.
1121 *
1122 * Get the order by string. The string might be
1123 * - sort name if there is no search value provided and the site is configured
1124 * to search by sort name
1125 * - empty if there is no search value provided and the site is not configured
1126 * to search by sort name
1127 * - exactFirst and then sort name if a search value is provided and the site is configured
1128 * to search by sort name
1129 * - exactFirst if a search value is provided and the site is not configured
1130 * to search by sort name
1131 *
1132 * exactFirst means 'yes if the search value exactly matches the searched field. else no'.
1133 * It is intended to prioritise exact matches for the entered string so on a first name search
1134 * for 'kath' contacts with a first name of exactly Kath rise to the top.
1135 *
1136 * On short strings it is expensive. Per CRM-19547 there is still an open question
1137 * as to whether we should only do exactMatch on a minimum length or on certain fields.
1138 *
1139 * However, we have mitigated this somewhat by not doing an exact match search on
1140 * empty strings, non-wildcard sort-name searches and email searches where there is
1141 * no @ after the first character.
1142 *
1143 * For the user it is further mitigated by the fact they just don't know the
1144 * slower queries are firing. If they type 'smit' slowly enough 4 queries will trigger
1145 * but if the first 3 are slow the first result they see may be off the 4th query.
1146 *
1147 * @param string $name
1148 * @param bool $isPrependWildcard
1149 * @param string $field_name
1150 *
1151 * @return string
1152 */
1153function _civicrm_api3_quicksearch_get_order_by($name, $isPrependWildcard, $field_name) {
1154 $skipExactMatch = ($name === '%');
1155 if ($field_name === 'email' && !strpos('@', $name)) {
1156 $skipExactMatch = TRUE;
1157 }
1158
1159 if (!\Civi::settings()->get('includeOrderByClause')) {
1160 return $skipExactMatch ? '' : "ORDER BY exactFirst";
1161 }
1162 if ($skipExactMatch || (!$isPrependWildcard && $field_name === 'sort_name')) {
1163 // If there is no wildcard then sorting by exactFirst would have the same
1164 // effect as just a sort_name search, but slower.
1165 return "ORDER BY sort_name";
1166 }
1167
1168 return "ORDER BY exactFirst, sort_name";
1169}
1170
a14e9d08 1171/**
35823763
EM
1172 * Declare deprecated api functions.
1173 *
a14e9d08 1174 * @deprecated api notice
a6c01b45 1175 * @return array
16b10e64 1176 * Array of deprecated actions
a14e9d08
CW
1177 */
1178function _civicrm_api3_contact_deprecation() {
59ca5f92 1179 return ['getquick' => 'The "getquick" action is deprecated in favor of "getlist".'];
6a488035
TO
1180}
1181
1182/**
1183 * Merges given pair of duplicate contacts.
1184 *
cf470720 1185 * @param array $params
b081365f
CW
1186 * Allowed array keys are:
1187 * -int main_id: main contact id with whom merge has to happen
1188 * -int other_id: duplicate contact which would be deleted after merge operation
1189 * -string mode: "safe" skips the merge if there are no conflicts. Does a force merge otherwise.
6a488035 1190 *
a6c01b45 1191 * @return array
72b3a70c 1192 * API Result Array
fedc3428 1193 * @throws API_Exception
6a488035
TO
1194 */
1195function civicrm_api3_contact_merge($params) {
8b5445c8 1196 if (($result = CRM_Dedupe_Merger::merge(
1197 [['srcID' => $params['to_remove_id'], 'dstID' => $params['to_keep_id']]],
1198 [],
1199 $params['mode'],
1200 FALSE,
1201 CRM_Utils_Array::value('check_permissions', $params)
1202 )) != FALSE) {
1203
12d73bba 1204 return civicrm_api3_create_success($result, $params);
6a488035 1205 }
fedc3428 1206 throw new API_Exception('Merge failed');
12d73bba 1207}
1208
1209/**
5ea06a7b 1210 * Adjust metadata for contact_merge api function.
12d73bba 1211 *
1212 * @param array $params
1213 */
1214function _civicrm_api3_contact_merge_spec(&$params) {
59ca5f92 1215 $params['to_remove_id'] = [
12d73bba 1216 'title' => 'ID of the contact to merge & remove',
1217 'description' => ts('Wow - these 2 params are the logical reverse of what I expect - but what to do?'),
1218 'api.required' => 1,
1219 'type' => CRM_Utils_Type::T_INT,
59ca5f92 1220 'api.aliases' => ['main_id'],
1221 ];
1222 $params['to_keep_id'] = [
12d73bba 1223 'title' => 'ID of the contact to keep',
1224 'description' => ts('Wow - these 2 params are the logical reverse of what I expect - but what to do?'),
1225 'api.required' => 1,
1226 'type' => CRM_Utils_Type::T_INT,
59ca5f92 1227 'api.aliases' => ['other_id'],
1228 ];
1229 $params['mode'] = [
5ea06a7b 1230 // @todo need more detail on what this means.
1231 'title' => 'Dedupe mode',
1232 'api.default' => 'safe',
59ca5f92 1233 ];
6a488035
TO
1234}
1235
734cd0d5 1236/**
1237 * Get the ultimate contact a contact was merged to.
1238 *
1239 * @param array $params
1240 *
1241 * @return array
1242 * API Result Array
1243 * @throws API_Exception
1244 */
1245function civicrm_api3_contact_getmergedto($params) {
1246 $contactID = _civicrm_api3_contact_getmergedto($params);
1247 if ($contactID) {
1248 $values = [$contactID => ['id' => $contactID]];
1249 }
1250 else {
1251 $values = [];
1252 }
1253 return civicrm_api3_create_success($values, $params);
1254}
1255
1256/**
1257 * Get the contact our contact was finally merged to.
1258 *
1259 * If the contact has been merged multiple times the crucial parent activity will have
1260 * wound up on the ultimate contact so we can figure out the final resting place of the
1261 * contact with only 2 activities even if 50 merges took place.
1262 *
1263 * @param array $params
1264 *
1265 * @return int|false
1266 */
1267function _civicrm_api3_contact_getmergedto($params) {
1268 $contactID = FALSE;
1269 $deleteActivity = civicrm_api3('ActivityContact', 'get', [
1270 'contact_id' => $params['contact_id'],
1271 'activity_id.activity_type_id' => 'Contact Deleted By Merge',
1272 'is_deleted' => 0,
1273 'is_test' => $params['is_test'],
1274 'record_type_id' => 'Activity Targets',
1275 'return' => ['activity_id.parent_id'],
1276 'sequential' => 1,
1277 'options' => [
1278 'limit' => 1,
59ca5f92 1279 'sort' => 'activity_id.activity_date_time DESC',
734cd0d5 1280 ],
1281 ])['values'];
1282 if (!empty($deleteActivity)) {
1283 $contactID = civicrm_api3('ActivityContact', 'getvalue', [
1284 'activity_id' => $deleteActivity[0]['activity_id.parent_id'],
1285 'record_type_id' => 'Activity Targets',
1286 'return' => 'contact_id',
1287 ]);
1288 }
1289 return $contactID;
1290}
1291
1292/**
1293 * Adjust metadata for contact_merge api function.
1294 *
1295 * @param array $params
1296 */
1297function _civicrm_api3_contact_getmergedto_spec(&$params) {
1298 $params['contact_id'] = [
1299 'title' => ts('ID of contact to find ultimate contact for'),
1300 'type' => CRM_Utils_Type::T_INT,
1301 'api.required' => TRUE,
1302 ];
1303 $params['is_test'] = [
1304 'title' => ts('Get test deletions rather than live?'),
1305 'type' => CRM_Utils_Type::T_BOOLEAN,
1306 'api.default' => 0,
1307 ];
1308}
1309
1310/**
1311 * Get the ultimate contact a contact was merged to.
1312 *
1313 * @param array $params
1314 *
1315 * @return array
1316 * API Result Array
1317 * @throws API_Exception
1318 */
1319function civicrm_api3_contact_getmergedfrom($params) {
1320 $contacts = _civicrm_api3_contact_getmergedfrom($params);
1321 return civicrm_api3_create_success($contacts, $params);
1322}
1323
1324/**
1325 * Get all the contacts merged into our contact.
1326 *
1327 * @param array $params
1328 *
1329 * @return array
1330 */
1331function _civicrm_api3_contact_getmergedfrom($params) {
1332 $activities = [];
1333 $deleteActivities = civicrm_api3('ActivityContact', 'get', [
1334 'contact_id' => $params['contact_id'],
1335 'activity_id.activity_type_id' => 'Contact Merged',
1336 'is_deleted' => 0,
1337 'is_test' => $params['is_test'],
1338 'record_type_id' => 'Activity Targets',
1339 'return' => 'activity_id',
1340 ])['values'];
1341
1342 foreach ($deleteActivities as $deleteActivity) {
1343 $activities[] = $deleteActivity['activity_id'];
1344 }
1345 if (empty($activities)) {
1346 return [];
1347 }
1348
1349 $activityContacts = civicrm_api3('ActivityContact', 'get', [
1350 'activity_id.parent_id' => ['IN' => $activities],
1351 'record_type_id' => 'Activity Targets',
1352 'return' => 'contact_id',
1353 ])['values'];
1354 $contacts = [];
1355 foreach ($activityContacts as $activityContact) {
1356 $contacts[$activityContact['contact_id']] = ['id' => $activityContact['contact_id']];
1357 }
1358 return $contacts;
1359}
1360
1361/**
1362 * Adjust metadata for contact_merge api function.
1363 *
1364 * @param array $params
1365 */
1366function _civicrm_api3_contact_getmergedfrom_spec(&$params) {
1367 $params['contact_id'] = [
1368 'title' => ts('ID of contact to find ultimate contact for'),
1369 'type' => CRM_Utils_Type::T_INT,
1370 'api.required' => TRUE,
1371 ];
1372 $params['is_test'] = [
1373 'title' => ts('Get test deletions rather than live?'),
1374 'type' => CRM_Utils_Type::T_BOOLEAN,
1375 'api.default' => 0,
1376 ];
1377}
1378
aa1b1481 1379/**
9d32e6f7
EM
1380 * Adjust metadata for contact_proximity api function.
1381 *
c490a46a 1382 * @param array $params
aa1b1481 1383 */
6a488035 1384function _civicrm_api3_contact_proximity_spec(&$params) {
59ca5f92 1385 $params['latitude'] = [
d142432b
EM
1386 'title' => 'Latitude',
1387 'api.required' => 1,
1388 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 1389 ];
1390 $params['longitude'] = [
d142432b
EM
1391 'title' => 'Longitude',
1392 'api.required' => 1,
1393 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 1394 ];
d142432b 1395
59ca5f92 1396 $params['unit'] = [
d142432b
EM
1397 'title' => 'Unit of Measurement',
1398 'api.default' => 'meter',
1399 'type' => CRM_Utils_Type::T_STRING,
59ca5f92 1400 ];
6a488035
TO
1401}
1402
aa1b1481 1403/**
9d32e6f7
EM
1404 * Get contacts by proximity.
1405 *
c490a46a 1406 * @param array $params
aa1b1481
EM
1407 *
1408 * @return array
1409 * @throws Exception
1410 */
6a488035 1411function civicrm_api3_contact_proximity($params) {
59ca5f92 1412 $latitude = CRM_Utils_Array::value('latitude', $params);
6a488035 1413 $longitude = CRM_Utils_Array::value('longitude', $params);
59ca5f92 1414 $distance = CRM_Utils_Array::value('distance', $params);
6a488035
TO
1415
1416 $unit = CRM_Utils_Array::value('unit', $params);
1417
1418 // check and ensure that lat/long and distance are floats
1419 if (
1420 !CRM_Utils_Rule::numeric($latitude) ||
1421 !CRM_Utils_Rule::numeric($longitude) ||
1422 !CRM_Utils_Rule::numeric($distance)
1423 ) {
1424 throw new Exception(ts('Latitude, Longitude and Distance should exist and be numeric'));
1425 }
1426
1427 if ($unit == "mile") {
1428 $conversionFactor = 1609.344;
1429 }
1430 else {
1431 $conversionFactor = 1000;
1432 }
1433 //Distance in meters
1434 $distance = $distance * $conversionFactor;
1435
1436 $whereClause = CRM_Contact_BAO_ProximityQuery::where($latitude, $longitude, $distance);
1437
1438 $query = "
1439SELECT civicrm_contact.id as contact_id,
1440 civicrm_contact.display_name as display_name
1441FROM civicrm_contact
1442LEFT JOIN civicrm_address ON civicrm_contact.id = civicrm_address.contact_id
1443WHERE $whereClause
1444";
1445
1446 $dao = CRM_Core_DAO::executeQuery($query);
59ca5f92 1447 $contacts = [];
6a488035
TO
1448 while ($dao->fetch()) {
1449 $contacts[] = $dao->toArray();
1450 }
1451
244bbdd8 1452 return civicrm_api3_create_success($contacts, $params, 'Contact', 'get_by_location', $dao);
6a488035
TO
1453}
1454
ff88d165 1455/**
22242c87
EM
1456 * Get parameters for getlist function.
1457 *
a6c6059d 1458 * @see _civicrm_api3_generic_getlist_params
ff88d165 1459 *
8c6b335b 1460 * @param array $request
ff88d165
CW
1461 */
1462function _civicrm_api3_contact_getlist_params(&$request) {
1463 // get the autocomplete options from settings
1464 $acpref = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1465 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
1466 'contact_autocomplete_options'
1467 )
1468 );
1469
1470 // get the option values for contact autocomplete
1471 $acOptions = CRM_Core_OptionGroup::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
1472
59ca5f92 1473 $list = [];
ff88d165
CW
1474 foreach ($acpref as $value) {
1475 if ($value && !empty($acOptions[$value])) {
1476 $list[] = $acOptions[$value];
1477 }
1478 }
1479 // If we are doing quicksearch by a field other than name, make sure that field is added to results
1480 $field_name = CRM_Utils_String::munge($request['search_field']);
1481 // Unique name contact_id = id
1482 if ($field_name == 'contact_id') {
1483 $field_name = 'id';
1484 }
1485 // phone_numeric should be phone
1486 $searchField = str_replace('_numeric', '', $field_name);
22e263ad 1487 if (!in_array($searchField, $list)) {
ff88d165
CW
1488 $list[] = $searchField;
1489 }
8250601e 1490 $request['description_field'] = $list;
54bee7df 1491 $list[] = 'contact_type';
8250601e 1492 $request['params']['return'] = array_unique(array_merge($list, $request['extra']));
ff88d165
CW
1493 $request['params']['options']['sort'] = 'sort_name';
1494 // Contact api doesn't support array(LIKE => 'foo') syntax
609a8c53 1495 if (!empty($request['input'])) {
fd816db5 1496 $request['params'][$request['search_field']] = $request['input'];
81b7bb6f
CW
1497 // Temporarily override wildcard setting
1498 if (Civi::settings()->get('includeWildCardInName') != $request['add_wildcard']) {
1499 Civi::$statics['civicrm_api3_contact_getlist']['override_wildcard'] = !$request['add_wildcard'];
1500 Civi::settings()->set('includeWildCardInName', $request['add_wildcard']);
1501 }
609a8c53 1502 }
ff88d165
CW
1503}
1504
1505/**
22242c87
EM
1506 * Get output for getlist function.
1507 *
a6c6059d 1508 * @see _civicrm_api3_generic_getlist_output
ff88d165 1509 *
8c6b335b
CW
1510 * @param array $result
1511 * @param array $request
ff88d165
CW
1512 *
1513 * @return array
1514 */
1515function _civicrm_api3_contact_getlist_output($result, $request) {
59ca5f92 1516 $output = [];
ff88d165 1517 if (!empty($result['values'])) {
59ca5f92 1518 $addressFields = array_intersect([
1519 'street_address',
1520 'city',
1521 'state_province',
1522 'country',
1523 ],
dc64d047 1524 $request['params']['return']);
ff88d165 1525 foreach ($result['values'] as $row) {
59ca5f92 1526 $data = [
ff88d165
CW
1527 'id' => $row[$request['id_field']],
1528 'label' => $row[$request['label_field']],
59ca5f92 1529 'description' => [],
1530 ];
8250601e
CW
1531 foreach ($request['description_field'] as $item) {
1532 if (!strpos($item, '_name') && !in_array($item, $addressFields) && !empty($row[$item])) {
88881f79 1533 $data['description'][] = $row[$item];
ff88d165
CW
1534 }
1535 }
59ca5f92 1536 $address = [];
22e263ad 1537 foreach ($addressFields as $item) {
88881f79
CW
1538 if (!empty($row[$item])) {
1539 $address[] = $row[$item];
1540 }
1541 }
1542 if ($address) {
1543 $data['description'][] = implode(' ', $address);
1544 }
ff88d165
CW
1545 if (!empty($request['image_field'])) {
1546 $data['image'] = isset($row[$request['image_field']]) ? $row[$request['image_field']] : '';
54bee7df
CW
1547 }
1548 else {
1549 $data['icon_class'] = $row['contact_type'];
1550 }
ff88d165
CW
1551 $output[] = $data;
1552 }
1553 }
81b7bb6f
CW
1554 // Restore wildcard override by _civicrm_api3_contact_getlist_params
1555 if (isset(Civi::$statics['civicrm_api3_contact_getlist']['override_wildcard'])) {
1556 Civi::settings()->set('includeWildCardInName', Civi::$statics['civicrm_api3_contact_getlist']['override_wildcard']);
1557 unset(Civi::$statics['civicrm_api3_contact_getlist']['override_wildcard']);
1558 }
ff88d165
CW
1559 return $output;
1560}
eb5f7260 1561
1562/**
1563 * Check for duplicate contacts.
1564 *
1565 * @param array $params
1566 * Params per getfields metadata.
1567 *
1568 * @return array
1569 * API formatted array
1570 */
1571function civicrm_api3_contact_duplicatecheck($params) {
fedc3428 1572 $dupes = CRM_Contact_BAO_Contact::getDuplicateContacts(
1573 $params['match'],
1574 $params['match']['contact_type'],
d6def514 1575 $params['rule_type'],
1e8be62b 1576 CRM_Utils_Array::value('exclude', $params, []),
fedc3428 1577 CRM_Utils_Array::value('check_permissions', $params),
1578 CRM_Utils_Array::value('dedupe_rule_id', $params)
1579 );
59ca5f92 1580 $values = [];
d6def514 1581 if ($dupes && !empty($params['return'])) {
59ca5f92 1582 return civicrm_api3('Contact', 'get', [
d6def514 1583 'return' => $params['return'],
59ca5f92 1584 'id' => ['IN' => $dupes],
d6def514
CW
1585 'options' => CRM_Utils_Array::value('options', $params),
1586 'sequential' => CRM_Utils_Array::value('sequential', $params),
1587 'check_permissions' => CRM_Utils_Array::value('check_permissions', $params),
59ca5f92 1588 ]);
d6def514
CW
1589 }
1590 foreach ($dupes as $dupe) {
59ca5f92 1591 $values[$dupe] = ['id' => $dupe];
d6def514 1592 }
eb5f7260 1593 return civicrm_api3_create_success($values, $params, 'Contact', 'duplicatecheck');
1594}
1595
1596/**
1597 * Declare metadata for contact dedupe function.
1598 *
1599 * @param $params
1600 */
1601function _civicrm_api3_contact_duplicatecheck_spec(&$params) {
59ca5f92 1602 $params['dedupe_rule_id'] = [
eb5f7260 1603 'title' => 'Dedupe Rule ID (optional)',
1604 'description' => 'This will default to the built in unsupervised rule',
1605 'type' => CRM_Utils_Type::T_INT,
59ca5f92 1606 ];
1607 $params['rule_type'] = [
d6def514
CW
1608 'title' => 'Dedupe Rule Type',
1609 'description' => 'If no rule id specified, pass "Unsupervised" or "Supervised"',
1610 'type' => CRM_Utils_Type::T_STRING,
1611 'api.default' => 'Unsupervised',
59ca5f92 1612 ];
eb5f7260 1613 // @todo declare 'match' parameter. We don't have a standard for type = array yet.
1614}