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