Merge pull request #4893 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Contact / Page / AJAX.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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 *
33 */
34
35 /**
36 * This class contains all contact related functions that are called using AJAX (jQuery)
37 */
38 class CRM_Contact_Page_AJAX {
39 /**
40 * When a user chooses a username, CHECK_USERNAME_TTL
41 * is the time window in which they can check usernames
42 * (without reloading the overall form).
43 */
44 const CHECK_USERNAME_TTL = 10800; // 3hr; 3*60*60
45
46 const AUTOCOMPLETE_TTL = 21600; // 6hr; 6*60*60
47
48 /**
49 * @deprecated
50 */
51 public static function getContactList() {
52 // if context is 'customfield'
53 if (CRM_Utils_Array::value('context', $_GET) == 'customfield') {
54 return self::contactReference();
55 }
56
57 $params = array('version' => 3, 'check_permissions' => TRUE);
58
59 // String params
60 // FIXME: param keys don't match input keys, using this array to translate
61 $whitelist = array(
62 's' => 'name',
63 'fieldName' => 'field_name',
64 'tableName' => 'table_name',
65 'context' => 'context',
66 'rel' => 'rel',
67 'contact_sub_type' => 'contact_sub_type',
68 'contact_type' => 'contact_type',
69 );
70 foreach ($whitelist as $key => $param) {
71 if (!empty($_GET[$key])) {
72 $params[$param] = $_GET[$key];
73 }
74 }
75
76 //CRM-10687: Allow quicksearch by multiple fields
77 if (!empty($params['field_name'])) {
78 if ($params['field_name'] == 'phone_numeric') {
79 $params['name'] = preg_replace('/[^\d]/', '', $params['name']);
80 }
81 if (!$params['name']) {
82 CRM_Utils_System::civiExit();
83 }
84 }
85
86 // Numeric params
87 $whitelist = array(
88 'limit',
89 'org',
90 'employee_id',
91 'cid',
92 'id',
93 'cmsuser',
94 );
95 foreach ($whitelist as $key) {
96 if (!empty($_GET[$key]) && is_numeric($_GET[$key])) {
97 $params[$key] = $_GET[$key];
98 }
99 }
100
101 $result = civicrm_api('Contact', 'getquick', $params);
102 CRM_Core_Page_AJAX::autocompleteResults(CRM_Utils_Array::value('values', $result), 'data');
103 }
104
105 /**
106 * Ajax callback for custom fields of type ContactReference
107 *
108 * Todo: Migrate contact reference fields to use EntityRef
109 */
110 public static function contactReference() {
111 $name = CRM_Utils_Array::value('term', $_GET);
112 $name = CRM_Utils_Type::escape($name, 'String');
113 $cfID = CRM_Utils_Type::escape($_GET['id'], 'Positive');
114
115 // check that this is a valid, active custom field of Contact Reference type
116 $params = array('id' => $cfID);
117 $returnProperties = array('filter', 'data_type', 'is_active');
118 $cf = array();
119 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $cf, $returnProperties);
120 if (!$cf['id'] || !$cf['is_active'] || $cf['data_type'] != 'ContactReference') {
121 CRM_Utils_System::civiExit('error');
122 }
123
124 if (!empty($cf['filter'])) {
125 $filterParams = array();
126 parse_str($cf['filter'], $filterParams);
127
128 $action = CRM_Utils_Array::value('action', $filterParams);
129
130 if (!empty($action) &&
131 !in_array($action, array('get', 'lookup'))
132 ) {
133 CRM_Utils_System::civiExit('error');
134 }
135 }
136
137 $list = array_keys(CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
138 'contact_reference_options'
139 ), '1');
140
141 $return = array_unique(array_merge(array('sort_name'), $list));
142
143 $limit = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'search_autocomplete_count', NULL, 10);
144
145 $params = array('offset' => 0, 'rowCount' => $limit, 'version' => 3);
146 foreach ($return as $fld) {
147 $params["return.{$fld}"] = 1;
148 }
149
150 if (!empty($action)) {
151 $excludeGet = array('reset', 'key', 'className', 'fnName', 'json', 'reset', 'context', 'timestamp', 'limit', 'id', 's', 'q', 'action');
152 foreach ($_GET as $param => $val) {
153 if (empty($val) ||
154 in_array($param, $excludeGet) ||
155 strpos($param, 'return.') !== FALSE ||
156 strpos($param, 'api.') !== FALSE
157 ) {
158 continue;
159 }
160 $params[$param] = $val;
161 }
162 }
163
164 if ($name) {
165 $params['sort_name'] = $name;
166 }
167
168 $params['sort'] = 'sort_name';
169
170 // tell api to skip permission chk. dgg
171 $params['check_permissions'] = 0;
172
173 // add filter variable to params
174 if (!empty($filterParams)) {
175 $params = array_merge($params, $filterParams);
176 }
177
178 $contact = civicrm_api('Contact', 'Get', $params);
179
180 if (!empty($contact['is_error'])) {
181 CRM_Utils_System::civiExit('error');
182 }
183
184 $contactList = array();
185 foreach ($contact['values'] as $value) {
186 $view = array();
187 foreach ($return as $fld) {
188 if (!empty($value[$fld])) {
189 $view[] = $value[$fld];
190 }
191 }
192 $contactList[] = array('id' => $value['id'], 'text' => implode(' :: ', $view));
193 }
194
195 CRM_Utils_System::civiExit(json_encode($contactList));
196 }
197
198 /**
199 * Fetch PCP ID by PCP Supporter sort_name, also displays PCP title and associated Contribution Page title
200 */
201 public static function getPCPList() {
202 $name = CRM_Utils_Array::value('s', $_GET);
203 $name = CRM_Utils_Type::escape($name, 'String');
204 $limit = '10';
205
206 $where = ' AND pcp.page_id = cp.id AND pcp.contact_id = cc.id';
207
208 $config = CRM_Core_Config::singleton();
209 if ($config->includeWildCardInName) {
210 $strSearch = "%$name%";
211 }
212 else {
213 $strSearch = "$name%";
214 }
215 $includeEmailFrom = $includeNickName = '';
216 if ($config->includeNickNameInName) {
217 $includeNickName = " OR nick_name LIKE '$strSearch'";
218 }
219 if ($config->includeEmailInName) {
220 $includeEmailFrom = "LEFT JOIN civicrm_email eml ON ( cc.id = eml.contact_id AND eml.is_primary = 1 )";
221 $whereClause = " WHERE ( email LIKE '$strSearch' OR sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
222 }
223 else {
224 $whereClause = " WHERE ( sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
225 }
226
227 if (!empty($_GET['limit'])) {
228 $limit = CRM_Utils_Type::escape($_GET['limit'], 'Positive');
229 }
230
231 $select = 'cc.sort_name, pcp.title, cp.title';
232 $query = "
233 SELECT id, data
234 FROM (
235 SELECT pcp.id as id, CONCAT_WS( ' :: ', {$select} ) as data, sort_name
236 FROM civicrm_pcp pcp, civicrm_contribution_page cp, civicrm_contact cc
237 {$includeEmailFrom}
238 {$whereClause} AND pcp.page_type = 'contribute'
239 UNION ALL
240 SELECT pcp.id as id, CONCAT_WS( ' :: ', {$select} ) as data, sort_name
241 FROM civicrm_pcp pcp, civicrm_event cp, civicrm_contact cc
242 {$includeEmailFrom}
243 {$whereClause} AND pcp.page_type = 'event'
244 LIMIT 0, {$limit}
245 ) t
246 ORDER BY sort_name
247 ";
248
249 $dao = CRM_Core_DAO::executeQuery($query);
250 $results = array();
251 while ($dao->fetch()) {
252 $results[] = array('id' => $dao->id, 'text' => $dao->data);
253 }
254 CRM_Utils_JSON::output($results);
255 }
256
257 public static function relationship() {
258 $relType = CRM_Utils_Request::retrieve('rel_type', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
259 $relContactID = CRM_Utils_Request::retrieve('rel_contact', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
260 $relationshipID = CRM_Utils_Array::value('rel_id', $_REQUEST); // this used only to determine add or update mode
261 $caseID = CRM_Utils_Request::retrieve('case_id', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
262
263 // check if there are multiple clients for this case, if so then we need create
264 // relationship and also activities for each contacts
265
266 // get case client list
267 $clientList = CRM_Case_BAO_Case::getCaseClients($caseID);
268
269 $ret = array('is_error' => 0);
270
271 foreach ($clientList as $sourceContactID) {
272 $relationParams = array(
273 'relationship_type_id' => $relType . '_a_b',
274 'contact_check' => array($relContactID => 1),
275 'is_active' => 1,
276 'case_id' => $caseID,
277 'start_date' => date("Ymd"),
278 );
279
280 $relationIds = array('contact' => $sourceContactID);
281
282 // check if we are editing/updating existing relationship
283 if ($relationshipID && $relationshipID != 'null') {
284 // here we need to retrieve appropriate relationshipID based on client id and relationship type id
285 $caseRelationships = new CRM_Contact_DAO_Relationship();
286 $caseRelationships->case_id = $caseID;
287 $caseRelationships->relationship_type_id = $relType;
288 $caseRelationships->contact_id_a = $sourceContactID;
289 $caseRelationships->find();
290
291 while ($caseRelationships->fetch()) {
292 $relationIds['relationship'] = $caseRelationships->id;
293 $relationIds['contactTarget'] = $relContactID;
294 }
295 $caseRelationships->free();
296 }
297
298 // create new or update existing relationship
299 $return = CRM_Contact_BAO_Relationship::createMultiple($relationParams, $relationIds);
300
301 if (!empty($return[4][0])) {
302 $relationshipID = $return[4][0];
303
304 //create an activity for case role assignment.CRM-4480
305 CRM_Case_BAO_Case::createCaseRoleActivity($caseID, $relationshipID, $relContactID);
306 }
307 else {
308 $ret = array(
309 'is_error' => 1,
310 'error_message' => ts('The relationship type definition for the case role is not valid for the client and / or staff contact types. You can review and edit relationship types at <a href="%1">Administer >> Option Lists >> Relationship Types</a>.',
311 array(1 => CRM_Utils_System::url('civicrm/admin/reltype', 'reset=1'))),
312 );
313 }
314 }
315
316 CRM_Utils_JSON::output($ret);
317 }
318
319 /**
320 * Fetch the custom field help
321 */
322 public static function customField() {
323 $fieldId = CRM_Utils_Type::escape($_REQUEST['id'], 'Integer');
324 $params = array('id' => $fieldId);
325 $returnProperties = array('help_pre', 'help_post');
326 $values = array();
327
328 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $values, $returnProperties);
329 CRM_Utils_JSON::output($values);
330 }
331
332 public static function groupTree() {
333 $gids = CRM_Utils_Type::escape($_GET['gids'], 'String');
334 echo CRM_Contact_BAO_GroupNestingCache::json($gids);
335 CRM_Utils_System::civiExit();
336 }
337
338 /**
339 * @deprecated
340 * Old quicksearch function. No longer used in core.
341 * @todo: Remove this function and associated menu entry in CiviCRM 5
342 */
343 public static function search() {
344 $json = TRUE;
345 $name = CRM_Utils_Array::value('name', $_GET, '');
346 if (!array_key_exists('name', $_GET)) {
347 $name = CRM_Utils_Array::value('s', $_GET) . '%';
348 $json = FALSE;
349 }
350 $name = CRM_Utils_Type::escape($name, 'String');
351 $whereIdClause = '';
352 if (!empty($_GET['id'])) {
353 $json = TRUE;
354 if (is_numeric($_GET['id'])) {
355 $id = CRM_Utils_Type::escape($_GET['id'], 'Integer');
356 $whereIdClause = " AND civicrm_contact.id = {$id}";
357 }
358 else {
359 $name = $_GET['id'];
360 }
361 }
362
363 $elements = array();
364 if ($name || isset($id)) {
365 $name = $name . '%';
366
367 //contact's based of relationhip type
368 $relType = NULL;
369 if (isset($_GET['rel'])) {
370 $relation = explode('_', $_GET['rel']);
371 $relType = CRM_Utils_Type::escape($relation[0], 'Integer');
372 $rel = CRM_Utils_Type::escape($relation[2], 'String');
373 }
374
375 //shared household info
376 $shared = NULL;
377 if (isset($_GET['sh'])) {
378 $shared = CRM_Utils_Type::escape($_GET['sh'], 'Integer');
379 if ($shared == 1) {
380 $contactType = 'Household';
381 $cName = 'household_name';
382 }
383 else {
384 $contactType = 'Organization';
385 $cName = 'organization_name';
386 }
387 }
388
389 // contacts of type household
390 $hh = $addStreet = $addCity = NULL;
391 if (isset($_GET['hh'])) {
392 $hh = CRM_Utils_Type::escape($_GET['hh'], 'Integer');
393 }
394
395 //organization info
396 $organization = $street = $city = NULL;
397 if (isset($_GET['org'])) {
398 $organization = CRM_Utils_Type::escape($_GET['org'], 'Integer');
399 }
400
401 if (isset($_GET['org']) || isset($_GET['hh'])) {
402 $json = FALSE;
403 $splitName = explode(' :: ', $name);
404 if ($splitName) {
405 $contactName = trim(CRM_Utils_Array::value('0', $splitName));
406 $street = trim(CRM_Utils_Array::value('1', $splitName));
407 $city = trim(CRM_Utils_Array::value('2', $splitName));
408 }
409 else {
410 $contactName = $name;
411 }
412
413 if ($street) {
414 $addStreet = "AND civicrm_address.street_address LIKE '$street%'";
415 }
416 if ($city) {
417 $addCity = "AND civicrm_address.city LIKE '$city%'";
418 }
419 }
420
421 if ($organization) {
422
423 $query = "
424 SELECT CONCAT_WS(' :: ',sort_name,LEFT(street_address,25),city) 'sort_name',
425 civicrm_contact.id 'id'
426 FROM civicrm_contact
427 LEFT JOIN civicrm_address ON ( civicrm_contact.id = civicrm_address.contact_id
428 AND civicrm_address.is_primary=1
429 )
430 WHERE civicrm_contact.contact_type='Organization' AND organization_name LIKE '%$contactName%'
431 {$addStreet} {$addCity} {$whereIdClause}
432 ORDER BY organization_name ";
433 }
434 elseif ($shared) {
435 $query = "
436 SELECT CONCAT_WS(':::' , sort_name, supplemental_address_1, sp.abbreviation, postal_code, cc.name )'sort_name' , civicrm_contact.id 'id' , civicrm_contact.display_name 'disp' FROM civicrm_contact LEFT JOIN civicrm_address ON (civicrm_contact.id =civicrm_address.contact_id AND civicrm_address.is_primary =1 )LEFT JOIN civicrm_state_province sp ON (civicrm_address.state_province_id =sp.id )LEFT JOIN civicrm_country cc ON (civicrm_address.country_id =cc.id )WHERE civicrm_contact.contact_type ='{$contactType}' AND {$cName} LIKE '%$name%' {$whereIdClause} ORDER BY {$cName} ";
437 }
438 elseif ($hh) {
439 $query = "
440 SELECT CONCAT_WS(' :: ' , sort_name, LEFT(street_address,25),city) 'sort_name' , location_type_id 'location_type_id', is_primary 'is_primary', is_billing 'is_billing', civicrm_contact.id 'id'
441 FROM civicrm_contact
442 LEFT JOIN civicrm_address ON (civicrm_contact.id =civicrm_address.contact_id AND civicrm_address.is_primary =1 )
443 WHERE civicrm_contact.contact_type ='Household'
444 AND household_name LIKE '%$contactName%' {$addStreet} {$addCity} {$whereIdClause} ORDER BY household_name ";
445 }
446 elseif ($relType) {
447 if (!empty($_GET['case'])) {
448 $query = "
449 SELECT distinct(c.id), c.sort_name
450 FROM civicrm_contact c
451 LEFT JOIN civicrm_relationship ON civicrm_relationship.contact_id_{$rel} = c.id
452 WHERE c.sort_name LIKE '%$name%'
453 AND civicrm_relationship.relationship_type_id = $relType
454 GROUP BY sort_name
455 ";
456 }
457 }
458 else {
459
460 $query = "
461 SELECT sort_name, id
462 FROM civicrm_contact
463 WHERE sort_name LIKE '%$name'
464 {$whereIdClause}
465 ORDER BY sort_name ";
466 }
467
468 $limit = 10;
469 if (isset($_GET['limit'])) {
470 $limit = CRM_Utils_Type::escape($_GET['limit'], 'Positive');
471 }
472
473 $query .= " LIMIT 0,{$limit}";
474
475 $dao = CRM_Core_DAO::executeQuery($query);
476
477 if ($shared) {
478 while ($dao->fetch()) {
479 echo $dao->sort_name;
480 CRM_Utils_System::civiExit();
481 }
482 }
483 else {
484 while ($dao->fetch()) {
485 if ($json) {
486 $elements[] = array(
487 'name' => addslashes($dao->sort_name),
488 'id' => $dao->id,
489 );
490 }
491 else {
492 echo $elements = "$dao->sort_name|$dao->id|$dao->location_type_id|$dao->is_primary|$dao->is_billing\n";
493 }
494 }
495 //for adding new household address / organization
496 if (empty($elements) && !$json && ($hh || $organization)) {
497 echo CRM_Utils_Array::value('s', $_GET);
498 }
499 }
500 }
501
502 if (isset($_GET['sh'])) {
503 echo "";
504 CRM_Utils_System::civiExit();
505 }
506
507 if (empty($elements)) {
508 $name = str_replace('%', '', $name);
509 $elements[] = array(
510 'name' => $name,
511 'id' => $name,
512 );
513 }
514
515 if ($json) {
516 echo json_encode($elements);
517 }
518 CRM_Utils_System::civiExit();
519 }
520
521 /**
522 * Delete custom value
523 */
524 public static function deleteCustomValue() {
525 $customValueID = CRM_Utils_Type::escape($_REQUEST['valueID'], 'Positive');
526 $customGroupID = CRM_Utils_Type::escape($_REQUEST['groupID'], 'Positive');
527
528 CRM_Core_BAO_CustomValue::deleteCustomValue($customValueID, $customGroupID);
529 $contactId = CRM_Utils_Array::value('contactId', $_REQUEST);
530 if ($contactId) {
531 echo CRM_Contact_BAO_Contact::getCountComponent('custom_' . $_REQUEST['groupID'], $contactId);
532 }
533
534 // reset the group contact cache for this group
535 CRM_Contact_BAO_GroupContactCache::remove();
536 CRM_Utils_System::civiExit();
537 }
538
539 /**
540 * Perform enable / disable actions on record.
541 */
542 public static function enableDisable() {
543 $op = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
544 $recordID = CRM_Utils_Type::escape($_REQUEST['recordID'], 'Positive');
545 $recordBAO = CRM_Utils_Type::escape($_REQUEST['recordBAO'], 'String');
546
547 $isActive = NULL;
548 if ($op == 'disable-enable') {
549 $isActive = TRUE;
550 }
551 elseif ($op == 'enable-disable') {
552 $isActive = FALSE;
553 }
554 $status = array('status' => 'record-updated-fail');
555 if (isset($isActive)) {
556 // first munge and clean the recordBAO and get rid of any non alpha numeric characters
557 $recordBAO = CRM_Utils_String::munge($recordBAO);
558 $recordClass = explode('_', $recordBAO);
559
560 // make sure recordClass is namespaced (we cant check CRM since extensions can also use this)
561 // but it should be at least 3 levels deep
562 if (count($recordClass) >= 3) {
563 require_once str_replace('_', DIRECTORY_SEPARATOR, $recordBAO) . ".php";
564 $method = 'setIsActive';
565
566 if (method_exists($recordBAO, $method)) {
567 $updated = call_user_func_array(array($recordBAO, $method),
568 array($recordID, $isActive)
569 );
570 if ($updated) {
571 $status = array('status' => 'record-updated-success');
572 }
573
574 // call hook enableDisable
575 CRM_Utils_Hook::enableDisable($recordBAO, $recordID, $isActive);
576 }
577 }
578 CRM_Utils_JSON::output($status);
579 }
580 }
581
582 /**
583 * check the CMS username
584 */
585 static public function checkUserName() {
586 $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), array('for', 'ts'));
587 if (
588 CRM_Utils_Time::getTimeRaw() > $_REQUEST['ts'] + self::CHECK_USERNAME_TTL
589 || $_REQUEST['for'] != 'civicrm/ajax/cmsuser'
590 || !$signer->validate($_REQUEST['sig'], $_REQUEST)
591 ) {
592 $user = array('name' => 'error');
593 echo json_encode($user);
594 CRM_Utils_System::civiExit();
595 }
596
597 $config = CRM_Core_Config::singleton();
598 $username = trim($_REQUEST['cms_name']);
599
600 $params = array('name' => $username);
601
602 $errors = array();
603 $config->userSystem->checkUserNameEmailExists($params, $errors);
604
605 if (isset($errors['cms_name']) || isset($errors['name'])) {
606 //user name is not availble
607 $user = array('name' => 'no');
608 echo json_encode($user);
609 }
610 else {
611 //user name is available
612 $user = array('name' => 'yes');
613 echo json_encode($user);
614 }
615 CRM_Utils_System::civiExit();
616 }
617
618 /**
619 * Function to get email address of a contact
620 */
621 public static function getContactEmail() {
622 if (!empty($_REQUEST['contact_id'])) {
623 $contactID = CRM_Utils_Type::escape($_REQUEST['contact_id'], 'Positive');
624 if (!CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) {
625 return;
626 }
627 list($displayName,
628 $userEmail
629 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactID);
630 if ($userEmail) {
631 echo $userEmail;
632 }
633 }
634 else {
635 $noemail = CRM_Utils_Array::value('noemail', $_GET);
636 $queryString = NULL;
637 $name = CRM_Utils_Array::value('name', $_GET);
638 if ($name) {
639 $name = CRM_Utils_Type::escape($name, 'String');
640 if ($noemail) {
641 $queryString = " cc.sort_name LIKE '%$name%'";
642 }
643 else {
644 $queryString = " ( cc.sort_name LIKE '%$name%' OR ce.email LIKE '%$name%' ) ";
645 }
646 }
647 else {
648 $cid = CRM_Utils_Array::value('cid', $_GET);
649 if ($cid) {
650 //check cid for interger
651 $contIDS = explode(',', $cid);
652 foreach ($contIDS as $contID) {
653 CRM_Utils_Type::escape($contID, 'Integer');
654 }
655 $queryString = " cc.id IN ( $cid )";
656 }
657 }
658
659 if ($queryString) {
660 $offset = CRM_Utils_Array::value('offset', $_GET, 0);
661 $rowCount = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'search_autocomplete_count', NULL, 10);
662
663 $offset = CRM_Utils_Type::escape($offset, 'Int');
664
665 // add acl clause here
666 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
667 if ($aclWhere) {
668 $aclWhere = " AND $aclWhere";
669 }
670 if ($noemail) {
671 $query = "
672 SELECT sort_name name, cc.id
673 FROM civicrm_contact cc
674 {$aclFrom}
675 WHERE cc.is_deceased = 0 AND {$queryString}
676 {$aclWhere}
677 LIMIT {$offset}, {$rowCount}
678 ";
679
680 // send query to hook to be modified if needed
681 CRM_Utils_Hook::contactListQuery($query,
682 $name,
683 CRM_Utils_Array::value('context', $_GET),
684 CRM_Utils_Array::value('cid', $_GET)
685 );
686
687 $dao = CRM_Core_DAO::executeQuery($query);
688 while ($dao->fetch()) {
689 $result[] = array(
690 'id' => $dao->id,
691 'text' => $dao->name,
692 );
693 }
694 }
695 else {
696 $query = "
697 SELECT sort_name name, ce.email, cc.id
698 FROM civicrm_email ce INNER JOIN civicrm_contact cc ON cc.id = ce.contact_id
699 {$aclFrom}
700 WHERE ce.on_hold = 0 AND cc.is_deceased = 0 AND cc.do_not_email = 0 AND {$queryString}
701 {$aclWhere}
702 LIMIT {$offset}, {$rowCount}
703 ";
704
705 // send query to hook to be modified if needed
706 CRM_Utils_Hook::contactListQuery($query,
707 $name,
708 CRM_Utils_Array::value('context', $_GET),
709 CRM_Utils_Array::value('cid', $_GET)
710 );
711
712 $dao = CRM_Core_DAO::executeQuery($query);
713
714 while ($dao->fetch()) {
715 //working here
716 $result[] = array(
717 'text' => '"' . $dao->name . '" <' . $dao->email . '>',
718 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>',
719 );
720 }
721 }
722 if ($result) {
723 echo json_encode($result);
724 }
725 }
726 }
727 CRM_Utils_System::civiExit();
728 }
729
730 public static function getContactPhone() {
731
732 $queryString = NULL;
733 //check for mobile type
734 $phoneTypes = CRM_Core_OptionGroup::values('phone_type', TRUE, FALSE, FALSE, NULL, 'name');
735 $mobileType = CRM_Utils_Array::value('Mobile', $phoneTypes);
736
737 $name = CRM_Utils_Array::value('name', $_GET);
738 if ($name) {
739 $name = CRM_Utils_Type::escape($name, 'String');
740 $queryString = " ( cc.sort_name LIKE '%$name%' OR cp.phone LIKE '%$name%' ) ";
741 }
742 else {
743 $cid = CRM_Utils_Array::value('cid', $_GET);
744 if ($cid) {
745 //check cid for interger
746 $contIDS = explode(',', $cid);
747 foreach ($contIDS as $contID) {
748 CRM_Utils_Type::escape($contID, 'Integer');
749 }
750 $queryString = " cc.id IN ( $cid )";
751 }
752 }
753
754 if ($queryString) {
755 $offset = CRM_Utils_Array::value('offset', $_GET, 0);
756 $rowCount = CRM_Utils_Array::value('rowcount', $_GET, 20);
757
758 $offset = CRM_Utils_Type::escape($offset, 'Int');
759 $rowCount = CRM_Utils_Type::escape($rowCount, 'Int');
760
761 // add acl clause here
762 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
763 if ($aclWhere) {
764 $aclWhere = " AND $aclWhere";
765 }
766
767 $query = "
768 SELECT sort_name name, cp.phone, cc.id
769 FROM civicrm_phone cp INNER JOIN civicrm_contact cc ON cc.id = cp.contact_id
770 {$aclFrom}
771 WHERE cc.is_deceased = 0 AND cc.do_not_sms = 0 AND cp.phone_type_id = {$mobileType} AND {$queryString}
772 {$aclWhere}
773 LIMIT {$offset}, {$rowCount}
774 ";
775
776 // send query to hook to be modified if needed
777 CRM_Utils_Hook::contactListQuery($query,
778 $name,
779 CRM_Utils_Array::value('context', $_GET),
780 CRM_Utils_Array::value('cid', $_GET)
781 );
782
783 $dao = CRM_Core_DAO::executeQuery($query);
784
785 while ($dao->fetch()) {
786 $result[] = array(
787 'text' => '"' . $dao->name . '" (' . $dao->phone . ')',
788 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->phone}" : '"' . $dao->name . '" <' . $dao->phone . '>',
789 );
790 }
791 }
792
793 if ($result) {
794 echo json_encode($result);
795 }
796 CRM_Utils_System::civiExit();
797 }
798
799
800 public static function buildSubTypes() {
801 $parent = CRM_Utils_Array::value('parentId', $_REQUEST);
802
803 switch ($parent) {
804 case 1:
805 $contactType = 'Individual';
806 break;
807
808 case 2:
809 $contactType = 'Household';
810 break;
811
812 case 4:
813 $contactType = 'Organization';
814 break;
815 }
816
817 $subTypes = CRM_Contact_BAO_ContactType::subTypePairs($contactType, FALSE, NULL);
818 asort($subTypes);
819 CRM_Utils_JSON::output($subTypes);
820 }
821
822 public static function buildDedupeRules() {
823 $parent = CRM_Utils_Array::value('parentId', $_REQUEST);
824
825 switch ($parent) {
826 case 1:
827 $contactType = 'Individual';
828 break;
829
830 case 2:
831 $contactType = 'Household';
832 break;
833
834 case 4:
835 $contactType = 'Organization';
836 break;
837 }
838
839 $dedupeRules = CRM_Dedupe_BAO_RuleGroup::getByType($contactType);
840
841 CRM_Utils_JSON::output($dedupeRules);
842 }
843
844 /**
845 * Function used for CiviCRM dashboard operations
846 */
847 public static function dashboard() {
848 $operation = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
849
850 switch ($operation) {
851 case 'get_widgets_by_column':
852 // This would normally be coming from either the database (this user's settings) or a default/initial dashboard configuration.
853 // get contact id of logged in user
854
855 $dashlets = CRM_Core_BAO_Dashboard::getContactDashlets();
856 break;
857
858 case 'get_widget':
859 $dashletID = CRM_Utils_Type::escape($_GET['id'], 'Positive');
860
861 $dashlets = CRM_Core_BAO_Dashboard::getDashletInfo($dashletID);
862 break;
863
864 case 'save_columns':
865 CRM_Core_BAO_Dashboard::saveDashletChanges($_REQUEST['columns']);
866 CRM_Utils_System::civiExit();
867 case 'delete_dashlet':
868 $dashletID = CRM_Utils_Type::escape($_REQUEST['dashlet_id'], 'Positive');
869 CRM_Core_BAO_Dashboard::deleteDashlet($dashletID);
870 CRM_Utils_System::civiExit();
871 }
872
873 CRM_Utils_JSON::output($dashlets);
874 }
875
876 /**
877 * Retrieve signature based on email id
878 */
879 public static function getSignature() {
880 $emailID = CRM_Utils_Type::escape($_REQUEST['emailID'], 'Positive');
881 $query = "SELECT signature_text, signature_html FROM civicrm_email WHERE id = {$emailID}";
882 $dao = CRM_Core_DAO::executeQuery($query);
883
884 $signatures = array();
885 while ($dao->fetch()) {
886 $signatures = array(
887 'signature_text' => $dao->signature_text,
888 'signature_html' => $dao->signature_html,
889 );
890 }
891
892 CRM_Utils_JSON::output($signatures);
893 }
894
895 /**
896 * Process dupes.
897 */
898 public static function processDupes() {
899 $oper = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
900 $cid = CRM_Utils_Type::escape($_REQUEST['cid'], 'Positive');
901 $oid = CRM_Utils_Type::escape($_REQUEST['oid'], 'Positive');
902
903 if (!$oper || !$cid || !$oid) {
904 return;
905 }
906
907 $exception = new CRM_Dedupe_DAO_Exception();
908 $exception->contact_id1 = $cid;
909 $exception->contact_id2 = $oid;
910 //make sure contact2 > contact1.
911 if ($cid > $oid) {
912 $exception->contact_id1 = $oid;
913 $exception->contact_id2 = $cid;
914 }
915 $exception->find(TRUE);
916 $status = NULL;
917 if ($oper == 'dupe-nondupe') {
918 $status = $exception->save();
919 }
920 if ($oper == 'nondupe-dupe') {
921 $status = $exception->delete();
922 }
923
924 CRM_Utils_JSON::output(array('status' => ($status) ? $oper : $status));
925 }
926
927 public static function getDedupes() {
928
929 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
930 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
931 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
932 $sort = 'sort_name';
933 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
934
935 $gid = isset($_REQUEST['gid']) ? CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer') : 0;
936 $rgid = isset($_REQUEST['rgid']) ? CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer') : 0;
937 $contactType = '';
938 if ($rgid) {
939 $contactType = CRM_Core_DAO::getFieldValue('CRM_Dedupe_DAO_RuleGroup', $rgid, 'contact_type');
940 }
941
942 $cacheKeyString = "merge {$contactType}_{$rgid}_{$gid}";
943 $searchRows = array();
944 $selectorElements = array('src', 'dst', 'weight', 'actions');
945
946 $join = "LEFT JOIN civicrm_dedupe_exception de ON ( pn.entity_id1 = de.contact_id1 AND
947 pn.entity_id2 = de.contact_id2 )";
948 $where = "de.id IS NULL";
949
950 $iFilteredTotal = $iTotal = CRM_Core_BAO_PrevNextCache::getCount($cacheKeyString, $join, $where);
951 $mainContacts = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString, $join, $where, $offset, $rowCount);
952
953 foreach ($mainContacts as $mainId => $main) {
954 $searchRows[$mainId]['src'] = CRM_Utils_System::href($main['srcName'], 'civicrm/contact/view', "reset=1&cid={$main['srcID']}");
955 $searchRows[$mainId]['dst'] = CRM_Utils_System::href($main['dstName'], 'civicrm/contact/view', "reset=1&cid={$main['dstID']}");
956 $searchRows[$mainId]['weight'] = CRM_Utils_Array::value('weight', $main);
957
958 if (!empty($main['canMerge'])) {
959 $mergeParams = "reset=1&cid={$main['srcID']}&oid={$main['dstID']}&action=update&rgid={$rgid}";
960 if ($gid) {
961 $mergeParams .= "&gid={$gid}";
962 }
963
964 $searchRows[$mainId]['actions'] = CRM_Utils_System::href(ts('merge'), 'civicrm/contact/merge', $mergeParams);
965 $searchRows[$mainId]['actions'] .= "&nbsp;|&nbsp; <a id='notDuplicate' href='#' onClick=\"processDupes( {$main['srcID']}, {$main['dstID']}, 'dupe-nondupe', 'dupe-listing'); return false;\">" . ts('not a duplicate') . "</a>";
966 }
967 else {
968 $searchRows[$mainId]['actions'] = '<em>' . ts('Insufficient access rights - cannot merge') . '</em>';
969 }
970 }
971
972 echo CRM_Utils_JSON::encodeDataTableSelector($searchRows, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
973
974 CRM_Utils_System::civiExit();
975 }
976
977 /**
978 * Retrieve a PDF Page Format for the PDF Letter form
979 */
980 public function pdfFormat() {
981 $formatId = CRM_Utils_Type::escape($_REQUEST['formatId'], 'Integer');
982
983 $pdfFormat = CRM_Core_BAO_PdfFormat::getById($formatId);
984
985 CRM_Utils_JSON::output($pdfFormat);
986 }
987
988 /**
989 * Retrieve Paper Size dimensions
990 */
991 public static function paperSize() {
992 $paperSizeName = CRM_Utils_Type::escape($_REQUEST['paperSizeName'], 'String');
993
994 $paperSize = CRM_Core_BAO_PaperSize::getByName($paperSizeName);
995
996 CRM_Utils_JSON::output($paperSize);
997 }
998
999 public static function selectUnselectContacts() {
1000 $name = CRM_Utils_Array::value('name', $_REQUEST);
1001 $cacheKey = CRM_Utils_Array::value('qfKey', $_REQUEST);
1002 $state = CRM_Utils_Array::value('state', $_REQUEST, 'checked');
1003 $variableType = CRM_Utils_Array::value('variableType', $_REQUEST, 'single');
1004
1005 $actionToPerform = CRM_Utils_Array::value('action', $_REQUEST, 'select');
1006
1007 if ($variableType == 'multiple') {
1008 // action post value only works with multiple type variable
1009 if ($name) {
1010 //multiple names like mark_x_1-mark_x_2 where 1,2 are cids
1011 $elements = explode('-', $name);
1012 foreach ($elements as $key => $element) {
1013 $elements[$key] = self::_convertToId($element);
1014 }
1015 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform, $elements);
1016 }
1017 else {
1018 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform);
1019 }
1020 }
1021 elseif ($variableType == 'single') {
1022 $cId = self::_convertToId($name);
1023 $action = ($state == 'checked') ? 'select' : 'unselect';
1024 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $action, $cId);
1025 }
1026 $contactIds = CRM_Core_BAO_PrevNextCache::getSelection($cacheKey);
1027 $countSelectionCids = count($contactIds[$cacheKey]);
1028
1029 $arrRet = array('getCount' => $countSelectionCids);
1030 CRM_Utils_JSON::output($arrRet);
1031 }
1032
1033 /**
1034 * @param string $name
1035 *
1036 * @return string
1037 */
1038 public static function _convertToId($name) {
1039 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
1040 $cId = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
1041 }
1042 return $cId;
1043 }
1044
1045 public static function getAddressDisplay() {
1046 $contactId = CRM_Utils_Array::value('contact_id', $_REQUEST);
1047 if (!$contactId) {
1048 $addressVal["error_message"] = "no contact id found";
1049 }
1050 else {
1051 $entityBlock =
1052 array(
1053 'contact_id' => $contactId,
1054 'entity_id' => $contactId,
1055 );
1056 $addressVal = CRM_Core_BAO_Address::getValues($entityBlock);
1057 }
1058
1059 CRM_Utils_JSON::output($addressVal);
1060 }
1061
1062 /**
1063 * Retrieve contact relationships
1064 */
1065 public static function getContactRelationships() {
1066 $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
1067 $context = CRM_Utils_Type::escape($_GET['context'], 'String');
1068
1069 $sortMapper = array(
1070 0 => 'relation',
1071 1 => 'sort_name',
1072 2 => 'start_date',
1073 3 => 'end_date',
1074 4 => 'city',
1075 5 => 'state',
1076 6 => 'email',
1077 7 => 'phone',
1078 8 => 'links',
1079 9 => '',
1080 10 => '',
1081 );
1082
1083 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
1084 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
1085 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
1086 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : NULL;
1087 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
1088
1089 $params = $_POST;
1090 if ($sort && $sortOrder) {
1091 $params['sortBy'] = $sort . ' ' . $sortOrder;
1092 }
1093
1094 $params['page'] = ($offset / $rowCount) + 1;
1095 $params['rp'] = $rowCount;
1096
1097 $params['contact_id'] = $contactID;
1098 $params['context'] = $context;
1099
1100 // get the contact relationships
1101 $relationships = CRM_Contact_BAO_Relationship::getContactRelationshipSelector($params);
1102
1103 $iFilteredTotal = $iTotal = $params['total'];
1104 $selectorElements = array(
1105 'relation',
1106 'name',
1107 'start_date',
1108 'end_date',
1109 'city',
1110 'state',
1111 'email',
1112 'phone',
1113 'links',
1114 'id',
1115 'is_active',
1116 );
1117
1118 echo CRM_Utils_JSON::encodeDataTableSelector($relationships, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
1119 CRM_Utils_System::civiExit();
1120 }
1121 }