3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * new version of civicrm apis. See blog post at
30 * http://civicrm.org/node/131
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 $
41 * Create or update a contact (note you should always call this via civicrm_api() & never directly)
43 * @param array $params input parameters
45 * Allowed @params array keys are:
46 * {@getfields contact_create}
49 * @throws API_Exception
50 * @example ContactCreate.php Example of Create Call
52 * @return array API Result Array
57 function civicrm_api3_contact_create($params) {
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);
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,
73 'location_type_id' => ($defLocType->id
) ?
$defLocType->id
: 1,
79 if (!empty($params['home_url'])) {
80 $websiteTypes = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_Website', 'website_type_id');
81 $params['website'] = array(1 => array('website_type_id' => key($websiteTypes),
82 'url' => $params['home_url'],
87 _civicrm_api3_greeting_format_params($params);
91 if (empty($params['contact_type']) && $contactID) {
92 $params['contact_type'] = CRM_Contact_BAO_Contact
::getContactType($contactID);
95 if (!isset($params['contact_sub_type']) && $contactID) {
96 $params['contact_sub_type'] = CRM_Contact_BAO_Contact
::getContactSubType($contactID);
99 _civicrm_api3_custom_format_params($params, $values, $params['contact_type'], $contactID);
101 $params = array_merge($params, $values);
102 //@todo we should just call basic_create here - but need to make contact:create accept 'id' on the bao
103 $contact = _civicrm_api3_contact_update($params, $contactID);
105 if (is_a($contact, 'CRM_Core_Error')) {
106 throw new API_Exception($contact->_errors
[0]['message']);
110 _civicrm_api3_object_to_array_unique_fields($contact, $values[$contact->id
]);
113 return civicrm_api3_create_success($values, $params, 'Contact', 'create');
117 * Adjust Metadata for Create action
119 * @param array $params array or parameters determined by getfields
121 function _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',
127 'type' => CRM_Utils_Type
::T_STRING
,
129 $params['dupe_check'] = array(
130 'title' => 'Check for Duplicates',
131 'description' => 'Throw error if contact create matches dedupe rule',
133 $params['prefix_id']['api.aliases'] = array('individual_prefix', 'individual_prefix_id');
134 $params['suffix_id']['api.aliases'] = array('individual_suffix', 'individual_suffix_id');
138 * Retrieve one or more contacts, given a set of search params
140 * @param array input parameters
142 * @return array API Result Array
143 * (@getfields contact_get}
147 * @example ContactGet.php Standard GET example
150 function civicrm_api3_contact_get($params) {
152 _civicrm_api3_contact_get_supportanomalies($params, $options);
153 $contacts = _civicrm_api3_get_using_query_object('contact', $params, $options);
154 return civicrm_api3_create_success($contacts, $params, 'contact');
162 function civicrm_api3_contact_getcount($params) {
164 _civicrm_api3_contact_get_supportanomalies($params, $options);
165 $count = _civicrm_api3_get_using_query_object('contact', $params, $options,1);
170 * Adjust Metadata for Get action
172 * @param array $params array or parameters determined by getfields
174 function _civicrm_api3_contact_get_spec(&$params) {
175 $params['contact_is_deleted']['api.default'] = 0;
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'));
217 * We are supporting 'showAll' = 'all', 'trash' or 'active' for contact get
219 * - hopefully some day we'll come up with a std syntax for the 3-way-boolean of
222 * We also support 'filter_group_id' & 'filter.group_id'
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)
227 function _civicrm_api3_contact_get_supportanomalies(&$params, &$options) {
228 if (isset($params['showAll'])) {
229 if (strtolower($params['showAll']) == "active") {
230 $params['contact_is_deleted'] = 0;
232 if (strtolower($params['showAll']) == "trash") {
233 $params['contact_is_deleted'] = 1;
235 if (strtolower($params['showAll']) == "all" && isset($params['contact_is_deleted'])) {
236 unset($params['contact_is_deleted']);
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']);
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'];
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;
258 * Delete a contact with given contact id
260 * @param array $params (reference ) input parameters, contact_id element required
262 * @return array API Result Array
265 * @example ContactDelete.php
266 * {@getfields contact_delete}
268 function civicrm_api3_contact_delete($params) {
270 $contactID = CRM_Utils_Array
::value('id', $params);
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.');
276 $restore = !empty($params['restore']) ?
$params['restore'] : FALSE;
277 $skipUndelete = !empty($params['skip_undelete']) ?
$params['skip_undelete'] : FALSE;
280 // restrict permanent delete if a contact has financial trxn associated with it
282 if ($skipUndelete && CRM_Financial_BAO_FinancialItem
::checkContactPresent(array($contactID), $error)) {
283 return civicrm_api3_create_error($error['_qf_default']);
285 if (CRM_Contact_BAO_Contact
::deleteContact($contactID, $restore, $skipUndelete)) {
286 return civicrm_api3_create_success();
289 return civicrm_api3_create_error('Could not delete contact');
296 * @param bool $dupeCheck
297 * @param bool $dupeErrorArray
298 * @param bool $obsoletevalue
299 * @param null $dedupeRuleGroupID
302 * @throws API_Exception
303 * @throws CiviCRM_API3_Exception
305 function _civicrm_api3_contact_check_params( &$params, $dupeCheck = true, $dupeErrorArray = false, $obsoletevalue = true, $dedupeRuleGroupID = null )
308 switch (strtolower(CRM_Utils_Array
::value('contact_type', $params))) {
310 civicrm_api3_verify_mandatory($params, null, array('household_name'));
313 civicrm_api3_verify_mandatory($params, null, array('organization_name'));
316 civicrm_api3_verify_one_mandatory($params, null, array(
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']);
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']));
338 // check for record already existing
339 $dedupeParams = CRM_Dedupe_Finder
::formatParams($params, $params['contact_type']);
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'];
349 $ids = CRM_Dedupe_Finder
::dupesByParams($dedupeParams, $params['contact_type'], 'Unsupervised', array());
351 if (count($ids) >0) {
352 throw new API_Exception("Found matching contacts: ". implode(',',$ids),"duplicate",array("ids"=>$ids));
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'],
362 $dedupParams = CRM_Dedupe_Finder
::formatParams($organizationParams, 'Organization');
364 $dedupParams['check_permission'] = FALSE;
365 $dupeIds = CRM_Dedupe_Finder
::dupesByParams($dedupParams, 'Organization', 'Supervised');
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');
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.');
378 $params['employer_id'] = $dupeIds[0];
381 $result = civicrm_api3('contact', 'create', array(
382 'organization_name' => $params['current_employer'],
383 'contact_type' => 'Organization'
385 $params['employer_id'] = $result['id'];
393 * Takes an associative array and creates a contact object and all the associated
394 * derived objects (i.e. individual, location, email, phone etc)
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
399 * @return object CRM_Contact_BAO_Contact object
403 function _civicrm_api3_contact_update($params, $contactID = NULL) {
404 //@todo - doesn't contact create support 'id' which is already set- check & remove
406 $params['contact_id'] = $contactID;
409 return CRM_Contact_BAO_Contact
::create($params);
413 * Validate the addressee or email or postal greetings
415 * @param array $params Associative array of property name/value
416 * pairs to insert in new contact.
418 * @throws API_Exception
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') {
430 $formatParams = FALSE;
431 // unset display value from params.
432 if (isset($params["{$key}{$greeting}_display"])) {
433 unset($params["{$key}{$greeting}_display"]);
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;
444 if (!$formatParams) {
450 'contact_type' => $params['contact_type'],
451 'greeting_type' => "{$key}{$greeting}",
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);
459 if (!$greetingId && $greetingVal) {
460 $params["{$key}{$greeting}_id"] = CRM_Utils_Array
::key($params["{$key}{$greeting}"], $greetings);
463 if ($customGreeting && $greetingId &&
464 ($greetingId != array_search('Customized', $greetings))
466 throw new API_Exception(ts('Provide either %1 greeting id and/or %1 greeting or custom %1 greeting',
471 if ($greetingVal && $greetingId &&
472 ($greetingId != CRM_Utils_Array
::key($greetingVal, $greetings))
474 throw new API_Exception(ts('Mismatch in %1 greeting id and %1 greeting',
481 if (!array_key_exists($greetingId, $greetings)) {
482 throw new API_Exception(ts('Invalid %1 greeting Id', array(1 => $key)));
485 if (!$customGreeting && ($greetingId == array_search('Customized', $greetings))) {
486 throw new API_Exception(ts('Please provide a custom value for %1 greeting',
491 elseif ($greetingVal) {
493 if (!in_array($greetingVal, $greetings)) {
494 throw new API_Exception(ts('Invalid %1 greeting', array(1 => $key)));
497 $greetingId = CRM_Utils_Array
::key($greetingVal, $greetings);
500 if ($customGreeting) {
501 $greetingId = CRM_Utils_Array
::key('Customized', $greetings);
504 $customValue = isset($params['contact_id']) ?
505 CRM_Core_DAO
::getFieldValue(
506 'CRM_Contact_DAO_Contact',
507 $params['contact_id'],
508 "{$key}{$greeting}_custom"
512 if (array_key_exists("{$key}{$greeting}_id", $params) && empty($params["{$key}{$greeting}_id"])) {
515 elseif (array_key_exists("{$key}{$greeting}", $params) && empty($params["{$key}{$greeting}"])) {
518 elseif ($customValue && array_key_exists("{$key}{$greeting}_custom", $params)
519 && empty($params["{$key}{$greeting}_custom"])
524 $params["{$key}{$greeting}_id"] = $greetingId;
526 if (!$customValue && !$customGreeting && array_key_exists("{$key}{$greeting}_custom", $params)) {
527 unset($params["{$key}{$greeting}_custom"]);
531 $params["{$key}{$greeting}_id"] = '';
532 $params["{$key}{$greeting}_custom"] = '';
535 if (isset($params["{$key}{$greeting}"])) {
536 unset($params["{$key}{$greeting}"]);
542 * Old contact quick search api
546 * {@example ContactGetquick.php 0}
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');
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'
560 // get the option values for contact autocomplete
561 $acOptions = CRM_Core_OptionGroup
::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
564 foreach ($acpref as $value) {
565 if ($value && !empty($acOptions[$value])) {
566 $list[$value] = $acOptions[$value];
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') {
576 // phone_numeric should be phone
577 $searchField = str_replace('_numeric', '', $field_name);
578 if(!in_array($searchField, $list)) {
579 $list[] = $searchField;
583 $select = $actualSelectElements = array('sort_name');
586 foreach ($list as $value) {
587 $suffix = substr($value, 0, 2) . substr($value, -1);
589 case 'street_address':
592 $selectText = $value;
597 $actualSelectElements[] = $select[] = ($value == 'address') ?
$selectText : $value;
598 if ($value == 'phone') {
599 $actualSelectElements[] = $select[] = 'phone_ext';
601 $from[$value] = "LEFT JOIN civicrm_{$value} {$suffix} ON ( cc.id = {$suffix}.contact_id AND {$suffix}.is_primary = 1 ) ";
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) ';
611 $from[$value] = " LEFT JOIN civicrm_{$value} {$suffix} ON ( sts.{$value}_id = {$suffix}.id ) ";
615 if ($value != 'id') {
617 if (!empty($params['field_name']) && $params['field_name'] == 'value') {
618 $suffix = CRM_Utils_String
::munge(CRM_Utils_Array
::value('table_name', $params, 'cc'));
620 $actualSelectElements[] = $select[] = $suffix . '.' . $value;
626 $config = CRM_Core_Config
::singleton();
628 $select = implode(', ', $select);
629 if (!empty($select)) {
630 $select = ", $select";
632 $actualSelectElements = implode(', ', $actualSelectElements);
633 $selectAliases = $from;
634 unset($selectAliases['address']);
635 $selectAliases = implode(', ', array_keys($selectAliases));
636 if (!empty($selectAliases)) {
637 $selectAliases = ", $selectAliases";
639 $from = implode(' ', $from);
640 $limit = (int) CRM_Utils_Array
::value('limit', $params);
641 $limit = $limit > 0 ?
$limit : 10;
643 // add acl clause here
644 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission
::cacheClause('cc');
647 $where .= " AND $aclWhere ";
650 if (!empty($params['org'])) {
651 $where .= " AND contact_type = \"Organization\"";
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'],
661 if ($config->includeWildCardInName
) {
662 $strSearch = "%$name%";
665 $strSearch = "$name%";
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'");
672 $currEmpDetails = array(
674 'data' => $dao->data
,
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}'";
686 if (!empty($params['contact_type'])) {
687 $contactType = CRM_Utils_Type
::escape($params['contact_type'], 'String');
688 $where .= " AND cc.contact_type LIKE '{$contactType}'";
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'];
696 if (!empty($params['cid'])) {
697 $where .= " AND cc.id <> " . (int) $params['cid'];
700 //contact's based of relationhip type
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');
708 if ($config->includeWildCardInName
) {
709 $strSearch = "%$name%";
712 $strSearch = "$name%";
714 $includeEmailFrom = $includeNickName = $exactIncludeNickName = '';
715 if ($config->includeNickNameInName
) {
716 $includeNickName = " OR nick_name LIKE '$strSearch'";
717 $exactIncludeNickName = " OR nick_name LIKE '$name'";
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')";
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;
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 )";
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} ";
739 $whereClause = " WHERE ( sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
740 $exactWhereClause = " WHERE ( sort_name LIKE '$name' $exactIncludeNickName ) {$where} ";
744 $additionalFrom = '';
747 INNER JOIN civicrm_relationship_type r ON (
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 )
754 // check if only CMS users are requested
755 if (!empty($params['cmsuser'])) {
757 INNER JOIN civicrm_uf_match um ON (um.contact_id=cc.id)
762 $orderByOuter = "ORDER BY exactFirst";
763 if ($config->includeOrderByClause
) {
764 $orderByInner = "ORDER BY sort_name";
765 $orderByOuter .= ", sort_name";
770 SELECT DISTINCT(id), data, sort_name {$selectAliases}
772 ( SELECT 0 as exactFirst, cc.id as id, CONCAT_WS( ' :: ', {$actualSelectElements} ) as data {$select}
773 FROM civicrm_contact cc {$from}
775 {$additionalFrom} {$includeEmailFrom}
779 ( SELECT 1 as exactFirst, cc.id as id, CONCAT_WS( ' :: ', {$actualSelectElements} ) as data {$select}
780 FROM civicrm_contact cc {$from}
782 {$additionalFrom} {$includeEmailFrom}
790 // send query to hook to be modified if needed
791 CRM_Utils_Hook
::contactListQuery($query,
793 empty($params['context']) ?
NULL : CRM_Utils_Type
::escape($params['context'], 'String'),
794 empty($params['id']) ?
NULL : $params['id']
797 $dao = CRM_Core_DAO
::executeQuery($query);
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: '';
806 $t['data'] = $dao->data
;
808 if (!empty($params['org']) &&
809 !empty($currEmpDetails) &&
810 $dao->id
== $currEmpDetails['id']
812 $listCurrentEmployer = FALSE;
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(
822 'data' => $currEmpDetails['data'],
823 'id' => $currEmpDetails['id']
828 $contactList = array(
838 return civicrm_api3_create_success($contactList, $params);
842 * Merges given pair of duplicate contacts.
844 * @param array $params input parameters
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.}
853 * @return array API Result Array
858 function civicrm_api3_contact_merge($params) {
859 $mode = CRM_Utils_Array
::value('mode', $params, 'safe');
860 $autoFlip = CRM_Utils_Array
::value('auto_flip', $params, TRUE);
862 $dupePairs = array(array('srcID' => CRM_Utils_Array
::value('main_id', $params),
863 'dstID' => CRM_Utils_Array
::value('other_id', $params),
865 $result = CRM_Dedupe_Merger
::merge($dupePairs, array(), $mode, $autoFlip);
867 if ($result['is_error'] == 0) {
868 return civicrm_api3_create_success();
871 return civicrm_api3_create_error($result['messages']);
878 function _civicrm_api3_contact_proximity_spec(&$params) {
879 $params['latitude']['api.required'] = 1;
880 $params['latitude']['title'] = 'Latitude';
881 $params['longitude']['api.required'] = 1;
882 $params['longitude']['title'] = 'Longitude';
883 $params['unit']['api.default'] = 'meter';
884 $params['unit']['title'] = 'Unit of Measurement';
893 function civicrm_api3_contact_proximity($params) {
894 $latitude = CRM_Utils_Array
::value('latitude', $params);
895 $longitude = CRM_Utils_Array
::value('longitude', $params);
896 $distance = CRM_Utils_Array
::value('distance', $params);
898 $unit = CRM_Utils_Array
::value('unit', $params);
900 // check and ensure that lat/long and distance are floats
902 !CRM_Utils_Rule
::numeric($latitude) ||
903 !CRM_Utils_Rule
::numeric($longitude) ||
904 !CRM_Utils_Rule
::numeric($distance)
906 throw new Exception(ts('Latitude, Longitude and Distance should exist and be numeric'));
909 if ($unit == "mile") {
910 $conversionFactor = 1609.344;
913 $conversionFactor = 1000;
916 $distance = $distance * $conversionFactor;
918 $whereClause = CRM_Contact_BAO_ProximityQuery
::where($latitude, $longitude, $distance);
921 SELECT civicrm_contact.id as contact_id,
922 civicrm_contact.display_name as display_name
924 LEFT JOIN civicrm_address ON civicrm_contact.id = civicrm_address.contact_id
928 $dao = CRM_Core_DAO
::executeQuery($query);
930 while ($dao->fetch()) {
931 $contacts[] = $dao->toArray();
934 return civicrm_api3_create_success($contacts, $params, 'contact', 'get_by_location', $dao);
939 * @see _civicrm_api3_generic_getlist_params
941 * @param $request array
943 function _civicrm_api3_contact_getlist_params(&$request) {
944 // get the autocomplete options from settings
945 $acpref = explode(CRM_Core_DAO
::VALUE_SEPARATOR
,
946 CRM_Core_BAO_Setting
::getItem(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
947 'contact_autocomplete_options'
951 // get the option values for contact autocomplete
952 $acOptions = CRM_Core_OptionGroup
::values('contact_autocomplete_options', FALSE, FALSE, FALSE, NULL, 'name');
955 foreach ($acpref as $value) {
956 if ($value && !empty($acOptions[$value])) {
957 $list[] = $acOptions[$value];
960 // If we are doing quicksearch by a field other than name, make sure that field is added to results
961 $field_name = CRM_Utils_String
::munge($request['search_field']);
962 // Unique name contact_id = id
963 if ($field_name == 'contact_id') {
966 // phone_numeric should be phone
967 $searchField = str_replace('_numeric', '', $field_name);
968 if(!in_array($searchField, $list)) {
969 $list[] = $searchField;
971 $request['description_field'] = $list;
972 $list[] = 'contact_type';
973 $request['params']['return'] = array_unique(array_merge($list, $request['extra']));
974 $request['params']['options']['sort'] = 'sort_name';
975 // Contact api doesn't support array(LIKE => 'foo') syntax
976 if (!empty($request['input'])) {
977 $request['params'][$request['search_field']] = $request['input'];
982 * @see _civicrm_api3_generic_getlist_output
984 * @param $result array
985 * @param $request array
989 function _civicrm_api3_contact_getlist_output($result, $request) {
991 if (!empty($result['values'])) {
992 $addressFields = array_intersect(array('street_address', 'city', 'state_province', 'country'), $request['params']['return']);
993 foreach ($result['values'] as $row) {
995 'id' => $row[$request['id_field']],
996 'label' => $row[$request['label_field']],
997 'description' => array(),
999 foreach ($request['description_field'] as $item) {
1000 if (!strpos($item, '_name') && !in_array($item, $addressFields) && !empty($row[$item])) {
1001 $data['description'][] = $row[$item];
1005 foreach($addressFields as $item) {
1006 if (!empty($row[$item])) {
1007 $address[] = $row[$item];
1011 $data['description'][] = implode(' ', $address);
1013 if (!empty($request['image_field'])) {
1014 $data['image'] = isset($row[$request['image_field']]) ?
$row[$request['image_field']] : '';
1017 $data['icon_class'] = $row['contact_type'];
1019 foreach ($request['extra'] as $field) {
1020 $data['extra'][$field] = isset($row[$field]) ?
$row[$field] : NULL;