Merge pull request #3679 from yashodha/CRM-14951
[civicrm-core.git] / api / v3 / Contact.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
731a0992 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 * new version of civicrm apis. See blog post at
30 * http://civicrm.org/node/131
31 * @todo Write sth
32 *
33 * @package CiviCRM_APIv3
34 * @subpackage API_Contact
731a0992 35 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
36 * $Id: Contact.php 30879 2010-11-22 15:45:55Z shot $
37 *
38 */
39
40/**
41 * Create or update a contact (note you should always call this via civicrm_api() & never directly)
42 *
77b97be7 43 * @param array $params input parameters
6a488035
TO
44 *
45 * Allowed @params array keys are:
46 * {@getfields contact_create}
47 *
48 *
77b97be7 49 * @throws API_Exception
6a488035
TO
50 * @example ContactCreate.php Example of Create Call
51 *
52 * @return array API Result Array
53 *
54 * @static void
55 * @access public
56 */
57function civicrm_api3_contact_create($params) {
58
59 $contactID = CRM_Utils_Array::value('contact_id', $params, CRM_Utils_Array::value('id', $params));
60 $dupeCheck = CRM_Utils_Array::value('dupe_check', $params, FALSE);
61 $values = _civicrm_api3_contact_check_params($params, $dupeCheck);
62 if ($values) {
63 return $values;
64 }
65
66 if (!$contactID) {
67 // If we get here, we're ready to create a new contact
68 if (($email = CRM_Utils_Array::value('email', $params)) && !is_array($params['email'])) {
69 $defLocType = CRM_Core_BAO_LocationType::getDefault();
70 $params['email'] = array(
71 1 => array('email' => $email,
72 'is_primary' => 1,
73 'location_type_id' => ($defLocType->id) ? $defLocType->id : 1,
74 ),
75 );
76 }
77 }
78
79 if (!empty($params['home_url'])) {
cbf48754 80 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
6a488035
TO
81 $params['website'] = array(1 => array('website_type_id' => key($websiteTypes),
82 'url' => $params['home_url'],
83 ),
84 );
85 }
86
6ecbca5b 87 _civicrm_api3_greeting_format_params($params);
6a488035
TO
88
89 $values = array();
6a488035 90
6ecbca5b 91 if (empty($params['contact_type']) && $contactID) {
92 $params['contact_type'] = CRM_Contact_BAO_Contact::getContactType($contactID);
6a488035
TO
93 }
94
6ecbca5b 95 if (!isset($params['contact_sub_type']) && $contactID) {
96 $params['contact_sub_type'] = CRM_Contact_BAO_Contact::getContactSubType($contactID);
6a488035
TO
97 }
98
6ecbca5b 99 _civicrm_api3_custom_format_params($params, $values, $params['contact_type'], $contactID);
6a488035
TO
100
101 $params = array_merge($params, $values);
6ecbca5b 102 //@todo we should just call basic_create here - but need to make contact:create accept 'id' on the bao
6a488035
TO
103 $contact = _civicrm_api3_contact_update($params, $contactID);
104
105 if (is_a($contact, 'CRM_Core_Error')) {
6ecbca5b 106 throw new API_Exception($contact->_errors[0]['message']);
6a488035
TO
107 }
108 else {
109 $values = array();
110 _civicrm_api3_object_to_array_unique_fields($contact, $values[$contact->id]);
111 }
112
113 return civicrm_api3_create_success($values, $params, 'Contact', 'create');
114}
115
11e09c59 116/**
6a488035
TO
117 * Adjust Metadata for Create action
118 *
119 * @param array $params array or parameters determined by getfields
120 */
121function _civicrm_api3_contact_create_spec(&$params) {
122 $params['contact_type']['api.required'] = 1;
123 $params['id']['api.aliases'] = array('contact_id');
124 $params['current_employer'] = array(
125 'title' => 'Current Employer',
126 'description' => 'Name of Current Employer',
9c5991b3 127 'type' => CRM_Utils_Type::T_STRING,
6a488035 128 );
0391dc25 129 $params['dupe_check'] = array(
130 'title' => 'Check for Duplicates',
131 'description' => 'Throw error if contact create matches dedupe rule',
132 );
6ecbca5b 133 $params['prefix_id']['api.aliases'] = array('individual_prefix', 'individual_prefix_id');
134 $params['suffix_id']['api.aliases'] = array('individual_suffix', 'individual_suffix_id');
6a488035
TO
135}
136
137/**
138 * Retrieve one or more contacts, given a set of search params
139 *
140 * @param array input parameters
141 *
142 * @return array API Result Array
143 * (@getfields contact_get}
144 * @static void
145 * @access public
146 *
147 * @example ContactGet.php Standard GET example
148 *
149 */
150function civicrm_api3_contact_get($params) {
151 $options = array();
152 _civicrm_api3_contact_get_supportanomalies($params, $options);
153 $contacts = _civicrm_api3_get_using_query_object('contact', $params, $options);
6ecbca5b 154 return civicrm_api3_create_success($contacts, $params, 'contact');
6a488035
TO
155}
156
aa1b1481
EM
157/**
158 * @param $params
159 *
160 * @return int
161 */
6a488035
TO
162function civicrm_api3_contact_getcount($params) {
163 $options = array();
164 _civicrm_api3_contact_get_supportanomalies($params, $options);
165 $count = _civicrm_api3_get_using_query_object('contact', $params, $options,1);
972322c5 166 return (int) $count;
6a488035 167}
11e09c59
TO
168
169/**
6a488035
TO
170 * Adjust Metadata for Get action
171 *
172 * @param array $params array or parameters determined by getfields
173 */
174function _civicrm_api3_contact_get_spec(&$params) {
175 $params['contact_is_deleted']['api.default'] = 0;
176
177 //we declare all these pseudofields as there are other undocumented fields accessible
178 // via the api - but if check permissions is set we only allow declared fields
179 $params['address_id']['title'] = 'Primary Address ID';
180 $params['street_address']['title'] = 'Primary Address Street Address';
181 $params['supplemental_address_1']['title'] = 'Primary Address Supplemental Address 1';
182 $params['supplemental_address_2']['title'] = 'Primary Address Supplemental Address 2';
23c2fe57 183 $params['current_employer']['title'] = 'Current Employer';
6a488035
TO
184 $params['city']['title'] = 'Primary Address City';
185 $params['postal_code_suffix']['title'] = 'Primary Address Post Code Suffix';
186 $params['postal_code']['title'] = 'Primary Address Post Code';
187 $params['geo_code_1']['title'] = 'Primary Address Latitude';
188 $params['geo_code_2']['title'] = 'Primary Address Longitude';
189 $params['state_province_id']['title'] = 'Primary Address State Province ID';
190 $params['state_province_name']['title'] = 'Primary Address State Province Name';
191 $params['state_province']['title'] = 'Primary Address State Province';
41847fb4 192 $params['country_id']['title'] = 'Primary Address Country ID';
6a488035
TO
193 $params['country']['title'] = 'Primary Address country';
194 $params['worldregion_id']['title'] = 'Primary Address World Region ID';
195 $params['worldregion']['title'] = 'Primary Address World Region';
196 $params['phone_id']['title'] = 'Primary Phone ID';
7d4ceb59 197 $params['phone']['title'] = 'Primary Phone';
6a488035
TO
198 $params['phone_type_id']['title'] = 'Primary Phone Type ID';
199 $params['provider_id']['title'] = 'Primary Phone Provider ID';
200 $params['email_id']['title'] = 'Primary Email ID';
201 $params['email']['title'] = 'Primary Email';
c2280651 202 $params['gender_id']['title'] = 'Gender ID';
203 $params['gender']['title'] = 'Gender';
6a488035
TO
204 $params['on_hold']['title'] = 'Primary Email On Hold';
205 $params['im']['title'] = 'Primary Instant Messanger';
206 $params['im_id']['title'] = 'Primary Instant Messanger ID';
207 $params['group_id']['title'] = 'Group Memberships (filter)';
208 $params['group']['title'] = 'Group Memberships (filter, array)';
209 $params['tag']['title'] = 'Assigned tags (filter, array)';
9f60788a
EM
210 $params['birth_date_low'] = array('name' => 'birth_date_low', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Birthdate is equal to or greater than'));
211 $params['birth_date_high'] = array('name' => 'birth_date_high', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Birthdate is equal to or less than'));
212 $params['deceased_date_low'] = array('name' => 'deceased_date_low','type' => CRM_Utils_Type::T_DATE, 'title' => ts('Deceased Date is equal to or greater than'));
213 $params['deceased_date_high'] = array('name' => 'deceased_date_high', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Deceased Date is equal to or less than'));
6a488035
TO
214}
215
11e09c59 216/**
6a488035
TO
217 * We are supporting 'showAll' = 'all', 'trash' or 'active' for contact get
218 * and for getcount
219 * - hopefully some day we'll come up with a std syntax for the 3-way-boolean of
220 * 0, 1 or not set
221 *
222 * We also support 'filter_group_id' & 'filter.group_id'
223 *
224 * @param array $params as passed into api get or getcount function
225 * @param array $options array of options (so we can modify the filter)
226 */
227function _civicrm_api3_contact_get_supportanomalies(&$params, &$options) {
228 if (isset($params['showAll'])) {
229 if (strtolower($params['showAll']) == "active") {
230 $params['contact_is_deleted'] = 0;
231 }
232 if (strtolower($params['showAll']) == "trash") {
233 $params['contact_is_deleted'] = 1;
234 }
235 if (strtolower($params['showAll']) == "all" && isset($params['contact_is_deleted'])) {
236 unset($params['contact_is_deleted']);
237 }
238 }
239 // support for group filters
240 if (array_key_exists('filter_group_id', $params)) {
241 $params['filter.group_id'] = $params['filter_group_id'];
242 unset($params['filter_group_id']);
243 }
244 // filter.group_id works both for 1,2,3 and array (1,2,3)
245 if (array_key_exists('filter.group_id', $params)) {
246 if (is_array($params['filter.group_id'])) {
247 $groups = $params['filter.group_id'];
248 }
249 else $groups = explode(',', $params['filter.group_id']);
250 unset($params['filter.group_id']);
251 $groups = array_flip($groups);
252 $groups[key($groups)] = 1;
253 $options['input_params']['group'] = $groups;
254 }
255}
256
257/**
258 * Delete a contact with given contact id
259 *
260 * @param array $params (reference ) input parameters, contact_id element required
261 *
262 * @return array API Result Array
263 * @access public
264 *
265 * @example ContactDelete.php
266 * {@getfields contact_delete}
267 */
268function civicrm_api3_contact_delete($params) {
269
270 $contactID = CRM_Utils_Array::value('id', $params);
271
272 $session = CRM_Core_Session::singleton();
273 if ($contactID == $session->get('userID')) {
274 return civicrm_api3_create_error('This contact record is linked to the currently logged in user account - and cannot be deleted.');
275 }
0d8afee2
CW
276 $restore = !empty($params['restore']) ? $params['restore'] : FALSE;
277 $skipUndelete = !empty($params['skip_undelete']) ? $params['skip_undelete'] : FALSE;
f182074e
PN
278
279 // CRM-12929
280 // restrict permanent delete if a contact has financial trxn associated with it
281 $error = NULL;
282 if ($skipUndelete && CRM_Financial_BAO_FinancialItem::checkContactPresent(array($contactID), $error)) {
ad3f841d 283 return civicrm_api3_create_error($error['_qf_default']);
f182074e 284 }
6a488035
TO
285 if (CRM_Contact_BAO_Contact::deleteContact($contactID, $restore, $skipUndelete)) {
286 return civicrm_api3_create_success();
287 }
288 else {
289 return civicrm_api3_create_error('Could not delete contact');
290 }
291}
292
293
aa1b1481
EM
294/**
295 * @param $params
296 * @param bool $dupeCheck
297 * @param bool $dupeErrorArray
298 * @param bool $obsoletevalue
299 * @param null $dedupeRuleGroupID
300 *
301 * @return null
302 * @throws API_Exception
303 * @throws CiviCRM_API3_Exception
304 */
6a488035
TO
305function _civicrm_api3_contact_check_params( &$params, $dupeCheck = true, $dupeErrorArray = false, $obsoletevalue = true, $dedupeRuleGroupID = null )
306{
307
308 switch (strtolower(CRM_Utils_Array::value('contact_type', $params))) {
309 case 'household':
310 civicrm_api3_verify_mandatory($params, null, array('household_name'));
311 break;
312 case 'organization':
313 civicrm_api3_verify_mandatory($params, null, array('organization_name'));
314 break;
315 case 'individual':
316 civicrm_api3_verify_one_mandatory($params, null, array(
317 'first_name',
318 'last_name',
319 'email',
320 'display_name',
321 )
322 );
323 break;
324 }
325
fe18a93c
CW
326 // Fixme: This really needs to be handled at a lower level. @See CRM-13123
327 if (isset($params['preferred_communication_method'])) {
328 $params['preferred_communication_method'] = CRM_Utils_Array::implodePadded($params['preferred_communication_method']);
329 }
330
8cc574cf 331 if (!empty($params['contact_sub_type']) && !empty($params['contact_type'])) {
6a488035 332 if (!(CRM_Contact_BAO_ContactType::isExtendsContactType($params['contact_sub_type'], $params['contact_type']))) {
6ecbca5b 333 throw new API_Exception("Invalid or Mismatched Contact SubType: " . implode(', ', (array)$params['contact_sub_type']));
6a488035
TO
334 }
335 }
336
337 if ($dupeCheck) {
338 // check for record already existing
339 $dedupeParams = CRM_Dedupe_Finder::formatParams($params, $params['contact_type']);
340
341 // CRM-6431
342 // setting 'check_permission' here means that the dedupe checking will be carried out even if the
343 // person does not have permission to carry out de-dupes
344 // this is similar to the front end form
345 if (isset($params['check_permission'])) {
346 $dedupeParams['check_permission'] = $params['check_permission'];
347 }
348
67cfa333 349 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams, $params['contact_type'], 'Unsupervised', array());
6a488035
TO
350
351 if (count($ids) >0) {
352 throw new API_Exception("Found matching contacts: ". implode(',',$ids),"duplicate",array("ids"=>$ids));
353 }
354 }
355
8d99ab37 356 // The BAO no longer supports the legacy param "current_employer" so here is a shim for api backward-compatability
6a488035 357 if (!empty($params['current_employer'])) {
8d99ab37
CW
358 $organizationParams = array(
359 'organization_name' => $params['current_employer'],
360 );
6a488035
TO
361
362 $dedupParams = CRM_Dedupe_Finder::formatParams($organizationParams, 'Organization');
363
364 $dedupParams['check_permission'] = FALSE;
365 $dupeIds = CRM_Dedupe_Finder::dupesByParams($dedupParams, 'Organization', 'Supervised');
366
367 // check for mismatch employer name and id
368 if (!empty($params['employer_id']) && !in_array($params['employer_id'], $dupeIds)) {
369 throw new API_Exception('Employer name and Employer id Mismatch');
370 }
371
372 // show error if multiple organisation with same name exist
373 if (empty($params['employer_id']) && (count($dupeIds) > 1)) {
374 throw new API_Exception('Found more than one Organisation with same Name.');
375 }
8d99ab37
CW
376
377 if ($dupeIds) {
378 $params['employer_id'] = $dupeIds[0];
379 }
380 else {
381 $result = civicrm_api3('contact', 'create', array(
382 'organization_name' => $params['current_employer'],
383 'contact_type' => 'Organization'
384 ));
385 $params['employer_id'] = $result['id'];
386 }
6a488035
TO
387 }
388
389 return NULL;
390}
391
392/**
393 * Takes an associative array and creates a contact object and all the associated
394 * derived objects (i.e. individual, location, email, phone etc)
395 *
396 * @param array $params (reference ) an assoc array of name/value pairs
397 * @param int $contactID if present the contact with that ID is updated
398 *
399 * @return object CRM_Contact_BAO_Contact object
400 * @access public
401 * @static
402 */
403function _civicrm_api3_contact_update($params, $contactID = NULL) {
6ecbca5b 404 //@todo - doesn't contact create support 'id' which is already set- check & remove
6a488035
TO
405 if ($contactID) {
406 $params['contact_id'] = $contactID;
407 }
408
6ecbca5b 409 return CRM_Contact_BAO_Contact::create($params);
6a488035
TO
410}
411
412/**
413 * Validate the addressee or email or postal greetings
414 *
7c285037 415 * @param array $params Associative array of property name/value
6a488035
TO
416 * pairs to insert in new contact.
417 *
77b97be7 418 * @throws API_Exception
6a488035
TO
419 *
420 * @access public
421 */
422function _civicrm_api3_greeting_format_params($params) {
423 $greetingParams = array('', '_id', '_custom');
424 foreach (array('email', 'postal', 'addressee') as $key) {
425 $greeting = '_greeting';
426 if ($key == 'addressee') {
427 $greeting = '';
428 }
429
430 $formatParams = FALSE;
431 // unset display value from params.
432 if (isset($params["{$key}{$greeting}_display"])) {
433 unset($params["{$key}{$greeting}_display"]);
434 }
435
436 // check if greetings are present in present
437 foreach ($greetingParams as $greetingValues) {
438 if (array_key_exists("{$key}{$greeting}{$greetingValues}", $params)) {
439 $formatParams = TRUE;
440 break;
441 }
442 }
443
444 if (!$formatParams) {
445 continue;
446 }
447
448 $nullValue = FALSE;
449 $filter = array(
450 'contact_type' => $params['contact_type'],
451 'greeting_type' => "{$key}{$greeting}",
452 );
453
454 $greetings = CRM_Core_PseudoConstant::greeting($filter);
455 $greetingId = CRM_Utils_Array::value("{$key}{$greeting}_id", $params);
456 $greetingVal = CRM_Utils_Array::value("{$key}{$greeting}", $params);
457 $customGreeting = CRM_Utils_Array::value("{$key}{$greeting}_custom", $params);
458
459 if (!$greetingId && $greetingVal) {
460 $params["{$key}{$greeting}_id"] = CRM_Utils_Array::key($params["{$key}{$greeting}"], $greetings);
461 }
462
463 if ($customGreeting && $greetingId &&
464 ($greetingId != array_search('Customized', $greetings))
465 ) {
6ecbca5b 466 throw new API_Exception(ts('Provide either %1 greeting id and/or %1 greeting or custom %1 greeting',
6a488035
TO
467 array(1 => $key)
468 ));
469 }
470
471 if ($greetingVal && $greetingId &&
472 ($greetingId != CRM_Utils_Array::key($greetingVal, $greetings))
473 ) {
6ecbca5b 474 throw new API_Exception(ts('Mismatch in %1 greeting id and %1 greeting',
6a488035
TO
475 array(1 => $key)
476 ));
477 }
478
479 if ($greetingId) {
480
481 if (!array_key_exists($greetingId, $greetings)) {
6ecbca5b 482 throw new API_Exception(ts('Invalid %1 greeting Id', array(1 => $key)));
6a488035
TO
483 }
484
485 if (!$customGreeting && ($greetingId == array_search('Customized', $greetings))) {
6ecbca5b 486 throw new API_Exception(ts('Please provide a custom value for %1 greeting',
6a488035
TO
487 array(1 => $key)
488 ));
489 }
490 }
491 elseif ($greetingVal) {
492
493 if (!in_array($greetingVal, $greetings)) {
6ecbca5b 494 throw new API_Exception(ts('Invalid %1 greeting', array(1 => $key)));
6a488035
TO
495 }
496
497 $greetingId = CRM_Utils_Array::key($greetingVal, $greetings);
498 }
499
500 if ($customGreeting) {
501 $greetingId = CRM_Utils_Array::key('Customized', $greetings);
502 }
503
ad3f841d
DL
504 $customValue = isset($params['contact_id']) ?
505 CRM_Core_DAO::getFieldValue(
506 'CRM_Contact_DAO_Contact',
507 $params['contact_id'],
508 "{$key}{$greeting}_custom"
509 ) :
510 FALSE;
6a488035
TO
511
512 if (array_key_exists("{$key}{$greeting}_id", $params) && empty($params["{$key}{$greeting}_id"])) {
513 $nullValue = TRUE;
514 }
515 elseif (array_key_exists("{$key}{$greeting}", $params) && empty($params["{$key}{$greeting}"])) {
516 $nullValue = TRUE;
517 }
518 elseif ($customValue && array_key_exists("{$key}{$greeting}_custom", $params)
519 && empty($params["{$key}{$greeting}_custom"])
520 ) {
521 $nullValue = TRUE;
522 }
523
524 $params["{$key}{$greeting}_id"] = $greetingId;
525
526 if (!$customValue && !$customGreeting && array_key_exists("{$key}{$greeting}_custom", $params)) {
527 unset($params["{$key}{$greeting}_custom"]);
528 }
529
530 if ($nullValue) {
531 $params["{$key}{$greeting}_id"] = '';
532 $params["{$key}{$greeting}_custom"] = '';
533 }
534
535 if (isset($params["{$key}{$greeting}"])) {
536 unset($params["{$key}{$greeting}"]);
537 }
538 }
539}
540
541/**
03f32517 542 * Old contact quick search api
6a488035 543 *
03f32517 544 * @deprecated
6a488035
TO
545 *
546 * {@example ContactGetquick.php 0}
547 *
548 */
6a488035
TO
549function civicrm_api3_contact_getquick($params) {
550 civicrm_api3_verify_mandatory($params, NULL, array('name'));
aca85468 551 $name = CRM_Utils_Type::escape(CRM_Utils_Array::value('name', $params), 'String');
6a488035
TO
552
553 // get the autocomplete options from settings
554 $acpref = explode(CRM_Core_DAO::VALUE_SEPARATOR,
555 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
556 'contact_autocomplete_options'
557 )
558 );
559
560 // get the option values for contact autocomplete
561 $acOptions = CRM_Core_OptionGroup::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
562
563 $list = array();
564 foreach ($acpref as $value) {
8cc574cf 565 if ($value && !empty($acOptions[$value])) {
6a488035
TO
566 $list[$value] = $acOptions[$value];
567 }
568 }
569 // If we are doing quicksearch by a field other than name, make sure that field is added to results
570 if (!empty($params['field_name'])) {
1aba4d9a 571 $field_name = CRM_Utils_String::munge($params['field_name']);
5d8ba7a7 572 // Unique name contact_id = id
1aba4d9a
CW
573 if ($field_name == 'contact_id') {
574 $field_name = 'id';
5d8ba7a7 575 }
6a488035 576 // phone_numeric should be phone
1aba4d9a 577 $searchField = str_replace('_numeric', '', $field_name);
6a488035
TO
578 if(!in_array($searchField, $list)) {
579 $list[] = $searchField;
580 }
581 }
582
583 $select = $actualSelectElements = array('sort_name');
584 $where = '';
585 $from = array();
586 foreach ($list as $value) {
587 $suffix = substr($value, 0, 2) . substr($value, -1);
588 switch ($value) {
589 case 'street_address':
590 case 'city':
591 case 'postal_code':
592 $selectText = $value;
593 $value = "address";
594 $suffix = 'sts';
595 case 'phone':
596 case 'email':
597 $actualSelectElements[] = $select[] = ($value == 'address') ? $selectText : $value;
aebdef3c
JL
598 if ($value == 'phone') {
599 $actualSelectElements[] = $select[] = 'phone_ext';
600 }
6a488035
TO
601 $from[$value] = "LEFT JOIN civicrm_{$value} {$suffix} ON ( cc.id = {$suffix}.contact_id AND {$suffix}.is_primary = 1 ) ";
602 break;
603
604 case 'country':
605 case 'state_province':
606 $select[] = "{$suffix}.name as {$value}";
607 $actualSelectElements[] = "{$suffix}.name";
608 if (!in_array('address', $from)) {
609 $from['address'] = 'LEFT JOIN civicrm_address sts ON ( cc.id = sts.contact_id AND sts.is_primary = 1) ';
610 }
611 $from[$value] = " LEFT JOIN civicrm_{$value} {$suffix} ON ( sts.{$value}_id = {$suffix}.id ) ";
612 break;
613
614 default:
615 if ($value != 'id') {
616 $suffix = 'cc';
617 if (!empty($params['field_name']) && $params['field_name'] == 'value') {
133da98d 618 $suffix = CRM_Utils_String::munge(CRM_Utils_Array::value('table_name', $params, 'cc'));
6a488035
TO
619 }
620 $actualSelectElements[] = $select[] = $suffix . '.' . $value;
621 }
622 break;
623 }
624 }
625
626 $config = CRM_Core_Config::singleton();
627 $as = $select;
628 $select = implode(', ', $select);
629 if (!empty($select)) {
630 $select = ", $select";
631 }
632 $actualSelectElements = implode(', ', $actualSelectElements);
633 $selectAliases = $from;
634 unset($selectAliases['address']);
635 $selectAliases = implode(', ', array_keys($selectAliases));
636 if (!empty($selectAliases)) {
637 $selectAliases = ", $selectAliases";
638 }
639 $from = implode(' ', $from);
133da98d
CW
640 $limit = (int) CRM_Utils_Array::value('limit', $params);
641 $limit = $limit > 0 ? $limit : 10;
6a488035
TO
642
643 // add acl clause here
644 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
645
646 if ($aclWhere) {
647 $where .= " AND $aclWhere ";
648 }
649
a7488080 650 if (!empty($params['org'])) {
6a488035
TO
651 $where .= " AND contact_type = \"Organization\"";
652
653 // CRM-7157, hack: get current employer details when
654 // employee_id is present.
655 $currEmpDetails = array();
a7488080 656 if (!empty($params['employee_id'])) {
6a488035 657 if ($currentEmployer = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
133da98d 658 (int) $params['employee_id'],
6a488035
TO
659 'employer_id'
660 )) {
661 if ($config->includeWildCardInName) {
662 $strSearch = "%$name%";
663 }
664 else {
665 $strSearch = "$name%";
666 }
667
668 // get current employer details
669 $dao = CRM_Core_DAO::executeQuery("SELECT cc.id as id, CONCAT_WS( ' :: ', {$actualSelectElements} ) as data, sort_name
670 FROM civicrm_contact cc {$from} WHERE cc.contact_type = \"Organization\" AND cc.id = {$currentEmployer} AND cc.sort_name LIKE '$strSearch'");
671 if ($dao->fetch()) {
672 $currEmpDetails = array(
673 'id' => $dao->id,
674 'data' => $dao->data,
675 );
676 }
677 }
678 }
679 }
680
a7488080 681 if (!empty($params['contact_sub_type'])) {
69164898
N
682 $contactSubType = CRM_Utils_Type::escape($params['contact_sub_type'], 'String');
683 $where .= " AND cc.contact_sub_type = '{$contactSubType}'";
684 }
685
e1b717cb
P
686 if (!empty($params['contact_type'])) {
687 $contactType = CRM_Utils_Type::escape($params['contact_type'], 'String');
688 $where .= " AND cc.contact_type LIKE '{$contactType}'";
689 }
690
6a488035 691 //set default for current_employer or return contact with particular id
a7488080 692 if (!empty($params['id'])) {
1aba4d9a 693 $where .= " AND cc.id = " . (int) $params['id'];
6a488035
TO
694 }
695
a7488080 696 if (!empty($params['cid'])) {
1aba4d9a 697 $where .= " AND cc.id <> " . (int) $params['cid'];
6a488035
TO
698 }
699
700 //contact's based of relationhip type
701 $relType = NULL;
a7488080 702 if (!empty($params['rel'])) {
6a488035
TO
703 $relation = explode('_', CRM_Utils_Array::value('rel', $params));
704 $relType = CRM_Utils_Type::escape($relation[0], 'Integer');
705 $rel = CRM_Utils_Type::escape($relation[2], 'String');
706 }
707
708 if ($config->includeWildCardInName) {
709 $strSearch = "%$name%";
710 }
711 else {
712 $strSearch = "$name%";
713 }
714 $includeEmailFrom = $includeNickName = $exactIncludeNickName = '';
715 if ($config->includeNickNameInName) {
716 $includeNickName = " OR nick_name LIKE '$strSearch'";
717 $exactIncludeNickName = " OR nick_name LIKE '$name'";
718 }
719
720 //CRM-10687
721 if (!empty($params['field_name']) && !empty($params['table_name'])) {
1aba4d9a 722 $table_name = CRM_Utils_String::munge($params['table_name']);
6a488035
TO
723 $whereClause = " WHERE ( $table_name.$field_name LIKE '$strSearch')";
724 $exactWhereClause = " WHERE ( $table_name.$field_name = '$name')";
725 // Search by id should be exact
726 if ($field_name == 'id' || $field_name == 'external_identifier') {
727 $whereClause = $exactWhereClause;
728 }
729 }
730 else {
731 if ($config->includeEmailInName) {
732 if (!in_array('email', $list)) {
733 $includeEmailFrom = "LEFT JOIN civicrm_email eml ON ( cc.id = eml.contact_id AND eml.is_primary = 1 )";
734 }
735 $whereClause = " WHERE ( email LIKE '$strSearch' OR sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
736 $exactWhereClause = " WHERE ( email LIKE '$name' OR sort_name LIKE '$name' $exactIncludeNickName ) {$where} ";
737 }
738 else {
739 $whereClause = " WHERE ( sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
740 $exactWhereClause = " WHERE ( sort_name LIKE '$name' $exactIncludeNickName ) {$where} ";
741 }
742 }
743
744 $additionalFrom = '';
745 if ($relType) {
746 $additionalFrom = "
747 INNER JOIN civicrm_relationship_type r ON (
748 r.id = {$relType}
749 AND ( cc.contact_type = r.contact_type_{$rel} OR r.contact_type_{$rel} IS NULL )
750 AND ( cc.contact_sub_type = r.contact_sub_type_{$rel} OR r.contact_sub_type_{$rel} IS NULL )
751 )";
752 }
753
754 // check if only CMS users are requested
a7488080 755 if (!empty($params['cmsuser'])) {
6a488035
TO
756 $additionalFrom = "
757 INNER JOIN civicrm_uf_match um ON (um.contact_id=cc.id)
758 ";
759 }
760
51e61eae
ARW
761 $orderByInner = "";
762 $orderByOuter = "ORDER BY exactFirst";
763 if ($config->includeOrderByClause) {
764 $orderByInner = "ORDER BY sort_name";
765 $orderByOuter .= ", sort_name";
766 }
767
6a488035
TO
768 //CRM-5954
769 $query = "
770 SELECT DISTINCT(id), data, sort_name {$selectAliases}
771 FROM (
772 ( SELECT 0 as exactFirst, cc.id as id, CONCAT_WS( ' :: ', {$actualSelectElements} ) as data {$select}
773 FROM civicrm_contact cc {$from}
774 {$aclFrom}
775 {$additionalFrom} {$includeEmailFrom}
776 {$exactWhereClause}
777 LIMIT 0, {$limit} )
778 UNION
779 ( SELECT 1 as exactFirst, cc.id as id, CONCAT_WS( ' :: ', {$actualSelectElements} ) as data {$select}
780 FROM civicrm_contact cc {$from}
781 {$aclFrom}
782 {$additionalFrom} {$includeEmailFrom}
783 {$whereClause}
51e61eae 784 {$orderByInner}
6a488035
TO
785 LIMIT 0, {$limit} )
786) t
51e61eae 787{$orderByOuter}
6a488035
TO
788LIMIT 0, {$limit}
789 ";
790 // send query to hook to be modified if needed
791 CRM_Utils_Hook::contactListQuery($query,
792 $name,
133da98d
CW
793 empty($params['context']) ? NULL : CRM_Utils_Type::escape($params['context'], 'String'),
794 empty($params['id']) ? NULL : $params['id']
6a488035
TO
795 );
796
797 $dao = CRM_Core_DAO::executeQuery($query);
798
799 $contactList = array();
800 $listCurrentEmployer = TRUE;
801 while ($dao->fetch()) {
802 $t = array('id' => $dao->id);
803 foreach ($as as $k) {
804 $t[$k] = isset($dao->$k)? $dao->$k: '';
805 }
806 $t['data'] = $dao->data;
807 $contactList[] = $t;
a7488080 808 if (!empty($params['org']) &&
6a488035
TO
809 !empty($currEmpDetails) &&
810 $dao->id == $currEmpDetails['id']
811 ) {
812 $listCurrentEmployer = FALSE;
813 }
814 }
815
816 //return organization name if doesn't exist in db
817 if (empty($contactList)) {
a7488080 818 if (!empty($params['org'])) {
6a488035
TO
819 if ($listCurrentEmployer && !empty($currEmpDetails)) {
820 $contactList = array(
821 array(
822 'data' => $currEmpDetails['data'],
823 'id' => $currEmpDetails['id']
824 )
825 );
826 }
827 else {
828 $contactList = array(
829 array(
830 'data' => $name,
831 'id' => $name
832 )
833 );
834 }
835 }
836 }
837
838 return civicrm_api3_create_success($contactList, $params);
839}
840
841/**
842 * Merges given pair of duplicate contacts.
843 *
844 * @param array $params input parameters
845 *
846 * Allowed @params array keys are:
847 * {int main_id main contact id with whom merge has to happen}
848 * {int other_id duplicate contact which would be deleted after merge operation}
849 * {string mode helps decide how to behave when there are conflicts.
850 * A 'safe' value skips the merge if there are no conflicts. Does a force merge otherwise.}
851 * {boolean auto_flip wether to let api decide which contact to retain and which to delete.}
852 *
853 * @return array API Result Array
854 *
855 * @static void
856 * @access public
857 */
858function civicrm_api3_contact_merge($params) {
859 $mode = CRM_Utils_Array::value('mode', $params, 'safe');
860 $autoFlip = CRM_Utils_Array::value('auto_flip', $params, TRUE);
861
862 $dupePairs = array(array('srcID' => CRM_Utils_Array::value('main_id', $params),
863 'dstID' => CRM_Utils_Array::value('other_id', $params),
864 ));
865 $result = CRM_Dedupe_Merger::merge($dupePairs, array(), $mode, $autoFlip);
866
867 if ($result['is_error'] == 0) {
868 return civicrm_api3_create_success();
869 }
870 else {
871 return civicrm_api3_create_error($result['messages']);
872 }
873}
874
aa1b1481
EM
875/**
876 * @param $params
877 */
6a488035
TO
878function _civicrm_api3_contact_proximity_spec(&$params) {
879 $params['latitude']['api.required'] = 1;
880 $params['longitude']['api.required'] = 1;
881 $params['unit']['api.default'] = 'meter';
882}
883
aa1b1481
EM
884/**
885 * @param $params
886 *
887 * @return array
888 * @throws Exception
889 */
6a488035
TO
890function civicrm_api3_contact_proximity($params) {
891 $latitude = CRM_Utils_Array::value('latitude', $params);
892 $longitude = CRM_Utils_Array::value('longitude', $params);
893 $distance = CRM_Utils_Array::value('distance', $params);
894
895 $unit = CRM_Utils_Array::value('unit', $params);
896
897 // check and ensure that lat/long and distance are floats
898 if (
899 !CRM_Utils_Rule::numeric($latitude) ||
900 !CRM_Utils_Rule::numeric($longitude) ||
901 !CRM_Utils_Rule::numeric($distance)
902 ) {
903 throw new Exception(ts('Latitude, Longitude and Distance should exist and be numeric'));
904 }
905
906 if ($unit == "mile") {
907 $conversionFactor = 1609.344;
908 }
909 else {
910 $conversionFactor = 1000;
911 }
912 //Distance in meters
913 $distance = $distance * $conversionFactor;
914
915 $whereClause = CRM_Contact_BAO_ProximityQuery::where($latitude, $longitude, $distance);
916
917 $query = "
918SELECT civicrm_contact.id as contact_id,
919 civicrm_contact.display_name as display_name
920FROM civicrm_contact
921LEFT JOIN civicrm_address ON civicrm_contact.id = civicrm_address.contact_id
922WHERE $whereClause
923";
924
925 $dao = CRM_Core_DAO::executeQuery($query);
926 $contacts = array();
927 while ($dao->fetch()) {
928 $contacts[] = $dao->toArray();
929 }
930
931 return civicrm_api3_create_success($contacts, $params, 'contact', 'get_by_location', $dao);
932}
933
ff88d165
CW
934
935/**
a6c6059d 936 * @see _civicrm_api3_generic_getlist_params
ff88d165
CW
937 *
938 * @param $request array
939 */
940function _civicrm_api3_contact_getlist_params(&$request) {
941 // get the autocomplete options from settings
942 $acpref = explode(CRM_Core_DAO::VALUE_SEPARATOR,
943 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
944 'contact_autocomplete_options'
945 )
946 );
947
948 // get the option values for contact autocomplete
949 $acOptions = CRM_Core_OptionGroup::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
950
951 $list = array();
952 foreach ($acpref as $value) {
953 if ($value && !empty($acOptions[$value])) {
954 $list[] = $acOptions[$value];
955 }
956 }
957 // If we are doing quicksearch by a field other than name, make sure that field is added to results
958 $field_name = CRM_Utils_String::munge($request['search_field']);
959 // Unique name contact_id = id
960 if ($field_name == 'contact_id') {
961 $field_name = 'id';
962 }
963 // phone_numeric should be phone
964 $searchField = str_replace('_numeric', '', $field_name);
965 if(!in_array($searchField, $list)) {
966 $list[] = $searchField;
967 }
8250601e 968 $request['description_field'] = $list;
54bee7df 969 $list[] = 'contact_type';
8250601e 970 $request['params']['return'] = array_unique(array_merge($list, $request['extra']));
ff88d165
CW
971 $request['params']['options']['sort'] = 'sort_name';
972 // Contact api doesn't support array(LIKE => 'foo') syntax
609a8c53
CW
973 if (!empty($request['input'])) {
974 $request['params'][$request['search_field']] = $request['input'];
975 }
ff88d165
CW
976}
977
978/**
a6c6059d 979 * @see _civicrm_api3_generic_getlist_output
ff88d165
CW
980 *
981 * @param $result array
982 * @param $request array
983 *
984 * @return array
985 */
986function _civicrm_api3_contact_getlist_output($result, $request) {
987 $output = array();
988 if (!empty($result['values'])) {
88881f79 989 $addressFields = array_intersect(array('street_address', 'city', 'state_province', 'country'), $request['params']['return']);
ff88d165
CW
990 foreach ($result['values'] as $row) {
991 $data = array(
992 'id' => $row[$request['id_field']],
993 'label' => $row[$request['label_field']],
88881f79 994 'description' => array(),
ff88d165 995 );
8250601e
CW
996 foreach ($request['description_field'] as $item) {
997 if (!strpos($item, '_name') && !in_array($item, $addressFields) && !empty($row[$item])) {
88881f79 998 $data['description'][] = $row[$item];
ff88d165
CW
999 }
1000 }
88881f79
CW
1001 $address = array();
1002 foreach($addressFields as $item) {
1003 if (!empty($row[$item])) {
1004 $address[] = $row[$item];
1005 }
1006 }
1007 if ($address) {
1008 $data['description'][] = implode(' ', $address);
1009 }
ff88d165
CW
1010 if (!empty($request['image_field'])) {
1011 $data['image'] = isset($row[$request['image_field']]) ? $row[$request['image_field']] : '';
54bee7df
CW
1012 }
1013 else {
1014 $data['icon_class'] = $row['contact_type'];
1015 }
8250601e
CW
1016 foreach ($request['extra'] as $field) {
1017 $data['extra'][$field] = isset($row[$field]) ? $row[$field] : NULL;
1018 }
ff88d165
CW
1019 $output[] = $data;
1020 }
1021 }
1022 return $output;
1023}