Merge pull request #4923 from colemanw/invoice_id
[civicrm-core.git] / api / v3 / Contact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
35 * @copyright CiviCRM LLC (c) 2004-2014
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 *
43 * @param array $params
44 * Input parameters.
45 *
46 * Allowed @params array keys are:
47 * {@getfields contact_create}
48 *
49 *
50 * @throws API_Exception
51 * @example ContactCreate.php Example of Create Call
52 *
53 * @return array
54 * API Result Array
55 *
56 */
57 function 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(
72 'email' => $email,
73 'is_primary' => 1,
74 'location_type_id' => ($defLocType->id) ? $defLocType->id : 1,
75 ),
76 );
77 }
78 }
79
80 if (!empty($params['home_url'])) {
81 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
82 $params['website'] = array(
83 1 => array(
84 'website_type_id' => key($websiteTypes),
85 'url' => $params['home_url'],
86 ),
87 );
88 }
89
90 _civicrm_api3_greeting_format_params($params);
91
92 $values = array();
93
94 if (empty($params['contact_type']) && $contactID) {
95 $params['contact_type'] = CRM_Contact_BAO_Contact::getContactType($contactID);
96 }
97
98 if (!isset($params['contact_sub_type']) && $contactID) {
99 $params['contact_sub_type'] = CRM_Contact_BAO_Contact::getContactSubType($contactID);
100 }
101
102 _civicrm_api3_custom_format_params($params, $values, $params['contact_type'], $contactID);
103
104 $params = array_merge($params, $values);
105 //@todo we should just call basic_create here - but need to make contact:create accept 'id' on the bao
106 $contact = _civicrm_api3_contact_update($params, $contactID);
107
108 if (is_a($contact, 'CRM_Core_Error')) {
109 throw new API_Exception($contact->_errors[0]['message']);
110 }
111 else {
112 $values = array();
113 _civicrm_api3_object_to_array_unique_fields($contact, $values[$contact->id]);
114 }
115
116 return civicrm_api3_create_success($values, $params, 'Contact', 'create');
117 }
118
119 /**
120 * Adjust Metadata for Create action
121 *
122 * @param array $params
123 * Array or parameters determined by getfields.
124 */
125 function _civicrm_api3_contact_create_spec(&$params) {
126 $params['contact_type']['api.required'] = 1;
127 $params['id']['api.aliases'] = array('contact_id');
128 $params['current_employer'] = array(
129 'title' => 'Current Employer',
130 'description' => 'Name of Current Employer',
131 'type' => CRM_Utils_Type::T_STRING,
132 );
133 $params['dupe_check'] = array(
134 'title' => 'Check for Duplicates',
135 'description' => 'Throw error if contact create matches dedupe rule',
136 );
137 $params['prefix_id']['api.aliases'] = array('individual_prefix', 'individual_prefix_id');
138 $params['suffix_id']['api.aliases'] = array('individual_suffix', 'individual_suffix_id');
139 }
140
141 /**
142 * Retrieve one or more contacts, given a set of search params
143 *
144 * @param array input parameters
145 *
146 * @return array
147 * API Result Array
148 */
149 function civicrm_api3_contact_get($params) {
150 $options = array();
151 _civicrm_api3_contact_get_supportanomalies($params, $options);
152 $contacts = _civicrm_api3_get_using_query_object('contact', $params, $options);
153 return civicrm_api3_create_success($contacts, $params, 'contact');
154 }
155
156 /**
157 * @param array $params
158 *
159 * @return int
160 */
161 function civicrm_api3_contact_getcount($params) {
162 $options = array();
163 _civicrm_api3_contact_get_supportanomalies($params, $options);
164 $count = _civicrm_api3_get_using_query_object('contact', $params, $options, 1);
165 return (int) $count;
166 }
167
168 /**
169 * Adjust Metadata for Get action
170 *
171 * @param array $params
172 * Array or parameters determined by getfields.
173 */
174 function _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';
183 $params['current_employer']['title'] = 'Current Employer';
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';
192 $params['country_id']['title'] = 'Primary Address Country ID';
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';
197 $params['phone']['title'] = 'Primary Phone';
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';
202 $params['gender_id']['title'] = 'Gender ID';
203 $params['gender']['title'] = 'Gender';
204 $params['on_hold']['title'] = 'Primary Email On Hold';
205 $params['im']['title'] = 'Primary Instant Messenger';
206 $params['im_id']['title'] = 'Primary Instant Messenger 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)';
210 $params['birth_date_low'] = array('name' => 'birth_date_low', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Birth Date is equal to or greater than'));
211 $params['birth_date_high'] = array('name' => 'birth_date_high', 'type' => CRM_Utils_Type::T_DATE, 'title' => ts('Birth Date 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'));
214 }
215
216 /**
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
225 * As passed into api get or getcount function.
226 * @param array $options
227 * Array of options (so we can modify the filter).
228 */
229 function _civicrm_api3_contact_get_supportanomalies(&$params, &$options) {
230 if (isset($params['showAll'])) {
231 if (strtolower($params['showAll']) == "active") {
232 $params['contact_is_deleted'] = 0;
233 }
234 if (strtolower($params['showAll']) == "trash") {
235 $params['contact_is_deleted'] = 1;
236 }
237 if (strtolower($params['showAll']) == "all" && isset($params['contact_is_deleted'])) {
238 unset($params['contact_is_deleted']);
239 }
240 }
241 // support for group filters
242 if (array_key_exists('filter_group_id', $params)) {
243 $params['filter.group_id'] = $params['filter_group_id'];
244 unset($params['filter_group_id']);
245 }
246 // filter.group_id works both for 1,2,3 and array (1,2,3)
247 if (array_key_exists('filter.group_id', $params)) {
248 if (is_array($params['filter.group_id'])) {
249 $groups = $params['filter.group_id'];
250 }
251 else {
252 $groups = explode(',', $params['filter.group_id']);
253 }
254 unset($params['filter.group_id']);
255 $groups = array_flip($groups);
256 $groups[key($groups)] = 1;
257 $options['input_params']['group'] = $groups;
258 }
259 }
260
261 /**
262 * Delete a contact with given contact id
263 *
264 * @param array $params
265 * input parameters per getfields
266 *
267 * @return array
268 * API Result Array
269 */
270 function civicrm_api3_contact_delete($params) {
271
272 $contactID = CRM_Utils_Array::value('id', $params);
273
274 $session = CRM_Core_Session::singleton();
275 if ($contactID == $session->get('userID')) {
276 return civicrm_api3_create_error('This contact record is linked to the currently logged in user account - and cannot be deleted.');
277 }
278 $restore = !empty($params['restore']) ? $params['restore'] : FALSE;
279 $skipUndelete = !empty($params['skip_undelete']) ? $params['skip_undelete'] : FALSE;
280
281 // CRM-12929
282 // restrict permanent delete if a contact has financial trxn associated with it
283 $error = NULL;
284 if ($skipUndelete && CRM_Financial_BAO_FinancialItem::checkContactPresent(array($contactID), $error)) {
285 return civicrm_api3_create_error($error['_qf_default']);
286 }
287 if (CRM_Contact_BAO_Contact::deleteContact($contactID, $restore, $skipUndelete)) {
288 return civicrm_api3_create_success();
289 }
290 else {
291 return civicrm_api3_create_error('Could not delete contact');
292 }
293 }
294
295
296 /**
297 * @param array $params
298 * @param bool $dupeCheck
299 *
300 * @return null
301 * @throws API_Exception
302 * @throws CiviCRM_API3_Exception
303 */
304 function _civicrm_api3_contact_check_params(&$params, $dupeCheck) {
305
306 switch (strtolower(CRM_Utils_Array::value('contact_type', $params))) {
307 case 'household':
308 civicrm_api3_verify_mandatory($params, NULL, array('household_name'));
309 break;
310
311 case 'organization':
312 civicrm_api3_verify_mandatory($params, NULL, array('organization_name'));
313 break;
314
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
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
331 if (!empty($params['contact_sub_type']) && !empty($params['contact_type'])) {
332 if (!(CRM_Contact_BAO_ContactType::isExtendsContactType($params['contact_sub_type'], $params['contact_type']))) {
333 throw new API_Exception("Invalid or Mismatched Contact Subtype: " . implode(', ', (array) $params['contact_sub_type']));
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
349 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams, $params['contact_type'], 'Unsupervised', array());
350
351 if (count($ids) > 0) {
352 throw new API_Exception("Found matching contacts: " . implode(',', $ids), "duplicate", array("ids" => $ids));
353 }
354 }
355
356 // The BAO no longer supports the legacy param "current_employer" so here is a shim for api backward-compatability
357 if (!empty($params['current_employer'])) {
358 $organizationParams = array(
359 'organization_name' => $params['current_employer'],
360 );
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 }
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 }
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
397 * (reference ) an assoc array of name/value pairs.
398 * @param int $contactID
399 * If present the contact with that ID is updated.
400 *
401 * @return CRM_Contact_BAO_Contact|CRM_Core_Error
402 */
403 function _civicrm_api3_contact_update($params, $contactID = NULL) {
404 //@todo - doesn't contact create support 'id' which is already set- check & remove
405 if ($contactID) {
406 $params['contact_id'] = $contactID;
407 }
408
409 return CRM_Contact_BAO_Contact::create($params);
410 }
411
412 /**
413 * Validate the addressee or email or postal greetings
414 *
415 * @param array $params
416 * Associative array of property name/value.
417 * pairs to insert in new contact.
418 *
419 * @throws API_Exception
420 *
421 */
422 function _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 ) {
466 throw new API_Exception(ts('Provide either %1 greeting id and/or %1 greeting or custom %1 greeting',
467 array(1 => $key)
468 ));
469 }
470
471 if ($greetingVal && $greetingId &&
472 ($greetingId != CRM_Utils_Array::key($greetingVal, $greetings))
473 ) {
474 throw new API_Exception(ts('Mismatch in %1 greeting id and %1 greeting',
475 array(1 => $key)
476 ));
477 }
478
479 if ($greetingId) {
480
481 if (!array_key_exists($greetingId, $greetings)) {
482 throw new API_Exception(ts('Invalid %1 greeting Id', array(1 => $key)));
483 }
484
485 if (!$customGreeting && ($greetingId == array_search('Customized', $greetings))) {
486 throw new API_Exception(ts('Please provide a custom value for %1 greeting',
487 array(1 => $key)
488 ));
489 }
490 }
491 elseif ($greetingVal) {
492
493 if (!in_array($greetingVal, $greetings)) {
494 throw new API_Exception(ts('Invalid %1 greeting', array(1 => $key)));
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
504 $customValue = isset($params['contact_id']) ? CRM_Core_DAO::getFieldValue(
505 'CRM_Contact_DAO_Contact',
506 $params['contact_id'],
507 "{$key}{$greeting}_custom"
508 ) : FALSE;
509
510 if (array_key_exists("{$key}{$greeting}_id", $params) && empty($params["{$key}{$greeting}_id"])) {
511 $nullValue = TRUE;
512 }
513 elseif (array_key_exists("{$key}{$greeting}", $params) && empty($params["{$key}{$greeting}"])) {
514 $nullValue = TRUE;
515 }
516 elseif ($customValue && array_key_exists("{$key}{$greeting}_custom", $params)
517 && empty($params["{$key}{$greeting}_custom"])
518 ) {
519 $nullValue = TRUE;
520 }
521
522 $params["{$key}{$greeting}_id"] = $greetingId;
523
524 if (!$customValue && !$customGreeting && array_key_exists("{$key}{$greeting}_custom", $params)) {
525 unset($params["{$key}{$greeting}_custom"]);
526 }
527
528 if ($nullValue) {
529 $params["{$key}{$greeting}_id"] = '';
530 $params["{$key}{$greeting}_custom"] = '';
531 }
532
533 if (isset($params["{$key}{$greeting}"])) {
534 unset($params["{$key}{$greeting}"]);
535 }
536 }
537 }
538
539 /**
540 * Old contact quick search api
541 *
542 * @deprecated
543 *
544 * {@example ContactGetquick.php 0}
545 * @param array $params
546 * @return array
547 * @throws \API_Exception
548 */
549 function civicrm_api3_contact_getquick($params) {
550 civicrm_api3_verify_mandatory($params, NULL, array('name'));
551 $name = CRM_Utils_Type::escape(CRM_Utils_Array::value('name', $params), 'String');
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) {
565 if ($value && !empty($acOptions[$value])) {
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'])) {
571 $field_name = CRM_Utils_String::munge($params['field_name']);
572 // Unique name contact_id = id
573 if ($field_name == 'contact_id') {
574 $field_name = 'id';
575 }
576 // phone_numeric should be phone
577 $searchField = str_replace('_numeric', '', $field_name);
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;
598 if ($value == 'phone') {
599 $actualSelectElements[] = $select[] = 'phone_ext';
600 }
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') {
618 $suffix = CRM_Utils_String::munge(CRM_Utils_Array::value('table_name', $params, 'cc'));
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);
640 $limit = (int) CRM_Utils_Array::value('limit', $params);
641 $limit = $limit > 0 ? $limit : 10;
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
650 if (!empty($params['org'])) {
651 $where .= " AND contact_type = \"Organization\"";
652
653 // CRM-7157, hack: get current employer details when
654 // employee_id is present.
655 $currEmpDetails = array();
656 if (!empty($params['employee_id'])) {
657 if ($currentEmployer = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
658 (int) $params['employee_id'],
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
681 if (!empty($params['contact_sub_type'])) {
682 $contactSubType = CRM_Utils_Type::escape($params['contact_sub_type'], 'String');
683 $where .= " AND cc.contact_sub_type = '{$contactSubType}'";
684 }
685
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
691 //set default for current_employer or return contact with particular id
692 if (!empty($params['id'])) {
693 $where .= " AND cc.id = " . (int) $params['id'];
694 }
695
696 if (!empty($params['cid'])) {
697 $where .= " AND cc.id <> " . (int) $params['cid'];
698 }
699
700 //contact's based of relationhip type
701 $relType = NULL;
702 if (!empty($params['rel'])) {
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'])) {
722 $table_name = CRM_Utils_String::munge($params['table_name']);
723 $whereClause = " WHERE ( $table_name.$field_name LIKE '$strSearch') {$where}";
724 $exactWhereClause = " WHERE ( $table_name.$field_name = '$name') {$where}";
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
755 if (!empty($params['cmsuser'])) {
756 $additionalFrom = "
757 INNER JOIN civicrm_uf_match um ON (um.contact_id=cc.id)
758 ";
759 }
760
761 $orderByInner = "";
762 $orderByOuter = "ORDER BY exactFirst";
763 if ($config->includeOrderByClause) {
764 $orderByInner = "ORDER BY sort_name";
765 $orderByOuter .= ", sort_name";
766 }
767
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}
784 {$orderByInner}
785 LIMIT 0, {$limit} )
786 ) t
787 {$orderByOuter}
788 LIMIT 0, {$limit}
789 ";
790 // send query to hook to be modified if needed
791 CRM_Utils_Hook::contactListQuery($query,
792 $name,
793 empty($params['context']) ? NULL : CRM_Utils_Type::escape($params['context'], 'String'),
794 empty($params['id']) ? NULL : $params['id']
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;
808 if (!empty($params['org']) &&
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)) {
818 if (!empty($params['org'])) {
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, 'contact', 'getquick');
839 }
840
841 /**
842 * @deprecated api notice
843 * @return array
844 * Array of deprecated actions
845 */
846 function _civicrm_api3_contact_deprecation() {
847 return array('getquick' => 'The "getquick" action is deprecated in favor of "getlist".');
848 }
849
850 /**
851 * Merges given pair of duplicate contacts.
852 *
853 * @param array $params
854 * Input parameters.
855 *
856 * Allowed @params array keys are:
857 * {int main_id main contact id with whom merge has to happen}
858 * {int other_id duplicate contact which would be deleted after merge operation}
859 * {string mode helps decide how to behave when there are conflicts.
860 * A 'safe' value skips the merge if there are no conflicts. Does a force merge otherwise.}
861 * {boolean auto_flip wether to let api decide which contact to retain and which to delete.}
862 *
863 * @return array
864 * API Result Array
865 *
866 */
867 function civicrm_api3_contact_merge($params) {
868 $mode = CRM_Utils_Array::value('mode', $params, 'safe');
869 $autoFlip = CRM_Utils_Array::value('auto_flip', $params, TRUE);
870
871 $dupePairs = array(array(
872 'srcID' => CRM_Utils_Array::value('main_id', $params),
873 'dstID' => CRM_Utils_Array::value('other_id', $params),
874 ));
875 $result = CRM_Dedupe_Merger::merge($dupePairs, array(), $mode, $autoFlip);
876
877 if ($result['is_error'] == 0) {
878 return civicrm_api3_create_success();
879 }
880 else {
881 return civicrm_api3_create_error($result['messages']);
882 }
883 }
884
885 /**
886 * @param array $params
887 */
888 function _civicrm_api3_contact_proximity_spec(&$params) {
889 $params['latitude']['api.required'] = 1;
890 $params['latitude']['title'] = 'Latitude';
891 $params['longitude']['api.required'] = 1;
892 $params['longitude']['title'] = 'Longitude';
893 $params['unit']['api.default'] = 'meter';
894 $params['unit']['title'] = 'Unit of Measurement';
895 }
896
897 /**
898 * @param array $params
899 *
900 * @return array
901 * @throws Exception
902 */
903 function civicrm_api3_contact_proximity($params) {
904 $latitude = CRM_Utils_Array::value('latitude', $params);
905 $longitude = CRM_Utils_Array::value('longitude', $params);
906 $distance = CRM_Utils_Array::value('distance', $params);
907
908 $unit = CRM_Utils_Array::value('unit', $params);
909
910 // check and ensure that lat/long and distance are floats
911 if (
912 !CRM_Utils_Rule::numeric($latitude) ||
913 !CRM_Utils_Rule::numeric($longitude) ||
914 !CRM_Utils_Rule::numeric($distance)
915 ) {
916 throw new Exception(ts('Latitude, Longitude and Distance should exist and be numeric'));
917 }
918
919 if ($unit == "mile") {
920 $conversionFactor = 1609.344;
921 }
922 else {
923 $conversionFactor = 1000;
924 }
925 //Distance in meters
926 $distance = $distance * $conversionFactor;
927
928 $whereClause = CRM_Contact_BAO_ProximityQuery::where($latitude, $longitude, $distance);
929
930 $query = "
931 SELECT civicrm_contact.id as contact_id,
932 civicrm_contact.display_name as display_name
933 FROM civicrm_contact
934 LEFT JOIN civicrm_address ON civicrm_contact.id = civicrm_address.contact_id
935 WHERE $whereClause
936 ";
937
938 $dao = CRM_Core_DAO::executeQuery($query);
939 $contacts = array();
940 while ($dao->fetch()) {
941 $contacts[] = $dao->toArray();
942 }
943
944 return civicrm_api3_create_success($contacts, $params, 'contact', 'get_by_location', $dao);
945 }
946
947
948 /**
949 * @see _civicrm_api3_generic_getlist_params
950 *
951 * @param $request
952 * Array.
953 */
954 function _civicrm_api3_contact_getlist_params(&$request) {
955 // get the autocomplete options from settings
956 $acpref = explode(CRM_Core_DAO::VALUE_SEPARATOR,
957 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
958 'contact_autocomplete_options'
959 )
960 );
961
962 // get the option values for contact autocomplete
963 $acOptions = CRM_Core_OptionGroup::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
964
965 $list = array();
966 foreach ($acpref as $value) {
967 if ($value && !empty($acOptions[$value])) {
968 $list[] = $acOptions[$value];
969 }
970 }
971 // If we are doing quicksearch by a field other than name, make sure that field is added to results
972 $field_name = CRM_Utils_String::munge($request['search_field']);
973 // Unique name contact_id = id
974 if ($field_name == 'contact_id') {
975 $field_name = 'id';
976 }
977 // phone_numeric should be phone
978 $searchField = str_replace('_numeric', '', $field_name);
979 if (!in_array($searchField, $list)) {
980 $list[] = $searchField;
981 }
982 $request['description_field'] = $list;
983 $list[] = 'contact_type';
984 $request['params']['return'] = array_unique(array_merge($list, $request['extra']));
985 $request['params']['options']['sort'] = 'sort_name';
986 // Contact api doesn't support array(LIKE => 'foo') syntax
987 if (!empty($request['input'])) {
988 $request['params'][$request['search_field']] = $request['input'];
989 }
990 }
991
992 /**
993 * @see _civicrm_api3_generic_getlist_output
994 *
995 * @param $result
996 * Array.
997 * @param $request
998 * Array.
999 *
1000 * @return array
1001 */
1002 function _civicrm_api3_contact_getlist_output($result, $request) {
1003 $output = array();
1004 if (!empty($result['values'])) {
1005 $addressFields = array_intersect(array('street_address', 'city', 'state_province', 'country'), $request['params']['return']);
1006 foreach ($result['values'] as $row) {
1007 $data = array(
1008 'id' => $row[$request['id_field']],
1009 'label' => $row[$request['label_field']],
1010 'description' => array(),
1011 );
1012 foreach ($request['description_field'] as $item) {
1013 if (!strpos($item, '_name') && !in_array($item, $addressFields) && !empty($row[$item])) {
1014 $data['description'][] = $row[$item];
1015 }
1016 }
1017 $address = array();
1018 foreach ($addressFields as $item) {
1019 if (!empty($row[$item])) {
1020 $address[] = $row[$item];
1021 }
1022 }
1023 if ($address) {
1024 $data['description'][] = implode(' ', $address);
1025 }
1026 if (!empty($request['image_field'])) {
1027 $data['image'] = isset($row[$request['image_field']]) ? $row[$request['image_field']] : '';
1028 }
1029 else {
1030 $data['icon_class'] = $row['contact_type'];
1031 }
1032 foreach ($request['extra'] as $field) {
1033 $data['extra'][$field] = isset($row[$field]) ? $row[$field] : NULL;
1034 }
1035 $output[] = $data;
1036 }
1037 }
1038 return $output;
1039 }