1. flipping dupe pairs for a row or selections. 2. store meaningful - conflict labels...
[civicrm-core.git] / CRM / Contact / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 *
33 */
34
35/**
36 * This class contains all contact related functions that are called using AJAX (jQuery)
37 */
38class CRM_Contact_Page_AJAX {
272081ca
TO
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
b1dba111
TO
46 const AUTOCOMPLETE_TTL = 21600; // 6hr; 6*60*60
47
06508628 48 /**
06508628
CW
49 * Ajax callback for custom fields of type ContactReference
50 *
51 * Todo: Migrate contact reference fields to use EntityRef
52 */
00be9182 53 public static function contactReference() {
06508628 54 $name = CRM_Utils_Array::value('term', $_GET);
6a488035
TO
55 $name = CRM_Utils_Type::escape($name, 'String');
56 $cfID = CRM_Utils_Type::escape($_GET['id'], 'Positive');
57
58 // check that this is a valid, active custom field of Contact Reference type
06508628 59 $params = array('id' => $cfID);
6a488035 60 $returnProperties = array('filter', 'data_type', 'is_active');
06508628 61 $cf = array();
6a488035 62 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $cf, $returnProperties);
a4cce21a 63 if (!$cf['id'] || !$cf['is_active'] || $cf['data_type'] != 'ContactReference') {
06508628 64 CRM_Utils_System::civiExit('error');
6a488035
TO
65 }
66
9624538c 67 if (!empty($cf['filter'])) {
6a488035
TO
68 $filterParams = array();
69 parse_str($cf['filter'], $filterParams);
70
71 $action = CRM_Utils_Array::value('action', $filterParams);
72
73 if (!empty($action) &&
74 !in_array($action, array('get', 'lookup'))
75 ) {
06508628 76 CRM_Utils_System::civiExit('error');
6a488035
TO
77 }
78 }
79
80 $list = array_keys(CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
353ffa53
TO
81 'contact_reference_options'
82 ), '1');
6a488035
TO
83
84 $return = array_unique(array_merge(array('sort_name'), $list));
85
06508628 86 $limit = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'search_autocomplete_count', NULL, 10);
6a488035
TO
87
88 $params = array('offset' => 0, 'rowCount' => $limit, 'version' => 3);
89 foreach ($return as $fld) {
90 $params["return.{$fld}"] = 1;
91 }
92
93 if (!empty($action)) {
353ffa53
TO
94 $excludeGet = array(
95 'reset',
96 'key',
97 'className',
98 'fnName',
99 'json',
100 'reset',
101 'context',
102 'timestamp',
103 'limit',
104 'id',
105 's',
106 'q',
408b79bf 107 'action',
353ffa53 108 );
6a488035
TO
109 foreach ($_GET as $param => $val) {
110 if (empty($val) ||
111 in_array($param, $excludeGet) ||
112 strpos($param, 'return.') !== FALSE ||
113 strpos($param, 'api.') !== FALSE
114 ) {
115 continue;
116 }
117 $params[$param] = $val;
118 }
119 }
120
121 if ($name) {
122 $params['sort_name'] = $name;
123 }
124
125 $params['sort'] = 'sort_name';
126
127 // tell api to skip permission chk. dgg
128 $params['check_permissions'] = 0;
129
130 // add filter variable to params
131 if (!empty($filterParams)) {
132 $params = array_merge($params, $filterParams);
133 }
134
135 $contact = civicrm_api('Contact', 'Get', $params);
136
a7488080 137 if (!empty($contact['is_error'])) {
06508628 138 CRM_Utils_System::civiExit('error');
6a488035
TO
139 }
140
d6408252 141 $contactList = array();
6a488035
TO
142 foreach ($contact['values'] as $value) {
143 $view = array();
144 foreach ($return as $fld) {
a7488080 145 if (!empty($value[$fld])) {
6a488035
TO
146 $view[] = $value[$fld];
147 }
148 }
06508628 149 $contactList[] = array('id' => $value['id'], 'text' => implode(' :: ', $view));
6a488035
TO
150 }
151
8be1a839 152 CRM_Utils_JSON::output($contactList);
6a488035
TO
153 }
154
155 /**
100fef9d 156 * Fetch PCP ID by PCP Supporter sort_name, also displays PCP title and associated Contribution Page title
6a488035 157 */
00be9182 158 public static function getPCPList() {
7d86179d 159 $name = CRM_Utils_Array::value('term', $_GET);
353ffa53 160 $name = CRM_Utils_Type::escape($name, 'String');
8da35492 161 $limit = $max = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'search_autocomplete_count', NULL, 10);
6a488035
TO
162
163 $where = ' AND pcp.page_id = cp.id AND pcp.contact_id = cc.id';
164
165 $config = CRM_Core_Config::singleton();
166 if ($config->includeWildCardInName) {
167 $strSearch = "%$name%";
168 }
169 else {
170 $strSearch = "$name%";
171 }
172 $includeEmailFrom = $includeNickName = '';
173 if ($config->includeNickNameInName) {
174 $includeNickName = " OR nick_name LIKE '$strSearch'";
175 }
176 if ($config->includeEmailInName) {
177 $includeEmailFrom = "LEFT JOIN civicrm_email eml ON ( cc.id = eml.contact_id AND eml.is_primary = 1 )";
178 $whereClause = " WHERE ( email LIKE '$strSearch' OR sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
179 }
180 else {
181 $whereClause = " WHERE ( sort_name LIKE '$strSearch' $includeNickName ) {$where} ";
182 }
183
8da35492 184 $offset = $count = 0;
4feb1cad
CW
185 if (!empty($_GET['page_num'])) {
186 $page = (int) $_GET['page_num'];
8da35492
CW
187 $offset = $limit * ($page - 1);
188 $limit++;
6a488035
TO
189 }
190
191 $select = 'cc.sort_name, pcp.title, cp.title';
192 $query = "
193 SELECT id, data
194 FROM (
195 SELECT pcp.id as id, CONCAT_WS( ' :: ', {$select} ) as data, sort_name
196 FROM civicrm_pcp pcp, civicrm_contribution_page cp, civicrm_contact cc
197 {$includeEmailFrom}
900e6829 198 {$whereClause} AND pcp.page_type = 'contribute'
199 UNION ALL
200 SELECT pcp.id as id, CONCAT_WS( ' :: ', {$select} ) as data, sort_name
201 FROM civicrm_pcp pcp, civicrm_event cp, civicrm_contact cc
202 {$includeEmailFrom}
203 {$whereClause} AND pcp.page_type = 'event'
6a488035
TO
204 ) t
205 ORDER BY sort_name
8da35492 206 LIMIT $offset, $limit
6a488035
TO
207 ";
208
209 $dao = CRM_Core_DAO::executeQuery($query);
8da35492 210 $output = array('results' => array(), 'more' => FALSE);
6a488035 211 while ($dao->fetch()) {
8da35492
CW
212 if (++$count > $max) {
213 $output['more'] = TRUE;
214 }
215 else {
216 $output['results'][] = array('id' => $dao->id, 'text' => $dao->data);
217 }
6a488035 218 }
8da35492 219 CRM_Utils_JSON::output($output);
6a488035
TO
220 }
221
00be9182 222 public static function relationship() {
c91df8b4
CW
223 $relType = CRM_Utils_Request::retrieve('rel_type', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
224 $relContactID = CRM_Utils_Request::retrieve('rel_contact', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
225 $relationshipID = CRM_Utils_Array::value('rel_id', $_REQUEST); // this used only to determine add or update mode
226 $caseID = CRM_Utils_Request::retrieve('case_id', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
6a488035 227
14a679f1
KJ
228 // check if there are multiple clients for this case, if so then we need create
229 // relationship and also activities for each contacts
6a488035 230
14a679f1
KJ
231 // get case client list
232 $clientList = CRM_Case_BAO_Case::getCaseClients($caseID);
6a488035 233
c91df8b4
CW
234 $ret = array('is_error' => 0);
235
22e263ad 236 foreach ($clientList as $sourceContactID) {
14a679f1
KJ
237 $relationParams = array(
238 'relationship_type_id' => $relType . '_a_b',
239 'contact_check' => array($relContactID => 1),
240 'is_active' => 1,
241 'case_id' => $caseID,
242 'start_date' => date("Ymd"),
6a488035
TO
243 );
244
14a679f1
KJ
245 $relationIds = array('contact' => $sourceContactID);
246
247 // check if we are editing/updating existing relationship
248 if ($relationshipID && $relationshipID != 'null') {
249 // here we need to retrieve appropriate relationshipID based on client id and relationship type id
250 $caseRelationships = new CRM_Contact_DAO_Relationship();
251 $caseRelationships->case_id = $caseID;
252 $caseRelationships->relationship_type_id = $relType;
253 $caseRelationships->contact_id_a = $sourceContactID;
254 $caseRelationships->find();
255
22e263ad 256 while ($caseRelationships->fetch()) {
14a679f1
KJ
257 $relationIds['relationship'] = $caseRelationships->id;
258 $relationIds['contactTarget'] = $relContactID;
259 }
260 $caseRelationships->free();
261 }
262
263 // create new or update existing relationship
2da59b29 264 $return = CRM_Contact_BAO_Relationship::legacyCreateMultiple($relationParams, $relationIds);
14a679f1 265
a7488080 266 if (!empty($return[4][0])) {
14a679f1 267 $relationshipID = $return[4][0];
14a679f1
KJ
268
269 //create an activity for case role assignment.CRM-4480
270 CRM_Case_BAO_Case::createCaseRoleActivity($caseID, $relationshipID, $relContactID);
271 }
c91df8b4
CW
272 else {
273 $ret = array(
274 'is_error' => 1,
275 '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>.',
21dfd5f5 276 array(1 => CRM_Utils_System::url('civicrm/admin/reltype', 'reset=1'))),
c91df8b4
CW
277 );
278 }
6a488035 279 }
6a488035 280
ecdef330 281 CRM_Utils_JSON::output($ret);
6a488035
TO
282 }
283
284 /**
fe482240 285 * Fetch the custom field help.
6a488035 286 */
00be9182 287 public static function customField() {
353ffa53
TO
288 $fieldId = CRM_Utils_Type::escape($_REQUEST['id'], 'Integer');
289 $params = array('id' => $fieldId);
6a488035 290 $returnProperties = array('help_pre', 'help_post');
353ffa53 291 $values = array();
6a488035
TO
292
293 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $values, $returnProperties);
ecdef330 294 CRM_Utils_JSON::output($values);
6a488035
TO
295 }
296
00be9182 297 public static function groupTree() {
d42a224c 298 CRM_Utils_System::setHttpHeader('Content-Type', 'application/json');
6a488035
TO
299 $gids = CRM_Utils_Type::escape($_GET['gids'], 'String');
300 echo CRM_Contact_BAO_GroupNestingCache::json($gids);
301 CRM_Utils_System::civiExit();
302 }
303
6a488035 304 /**
fe482240 305 * Delete custom value.
6a488035 306 */
00be9182 307 public static function deleteCustomValue() {
d42a224c 308 CRM_Utils_System::setHttpHeader('Content-Type', 'text/plain');
6a488035
TO
309 $customValueID = CRM_Utils_Type::escape($_REQUEST['valueID'], 'Positive');
310 $customGroupID = CRM_Utils_Type::escape($_REQUEST['groupID'], 'Positive');
311
312 CRM_Core_BAO_CustomValue::deleteCustomValue($customValueID, $customGroupID);
a4cce21a
JM
313 $contactId = CRM_Utils_Array::value('contactId', $_REQUEST);
314 if ($contactId) {
6a488035
TO
315 echo CRM_Contact_BAO_Contact::getCountComponent('custom_' . $_REQUEST['groupID'], $contactId);
316 }
317
318 // reset the group contact cache for this group
319 CRM_Contact_BAO_GroupContactCache::remove();
320 CRM_Utils_System::civiExit();
321 }
322
6a488035 323 /**
fe482240 324 * check the CMS username.
ce80b209 325 */
6a488035 326 static public function checkUserName() {
272081ca
TO
327 $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), array('for', 'ts'));
328 if (
329 CRM_Utils_Time::getTimeRaw() > $_REQUEST['ts'] + self::CHECK_USERNAME_TTL
330 || $_REQUEST['for'] != 'civicrm/ajax/cmsuser'
331 || !$signer->validate($_REQUEST['sig'], $_REQUEST)
332 ) {
333 $user = array('name' => 'error');
8be1a839 334 CRM_Utils_JSON::output($user);
272081ca
TO
335 }
336
6a488035
TO
337 $config = CRM_Core_Config::singleton();
338 $username = trim($_REQUEST['cms_name']);
339
340 $params = array('name' => $username);
341
342 $errors = array();
343 $config->userSystem->checkUserNameEmailExists($params, $errors);
344
345 if (isset($errors['cms_name']) || isset($errors['name'])) {
b44e3f84 346 //user name is not available
6a488035 347 $user = array('name' => 'no');
8be1a839 348 CRM_Utils_JSON::output($user);
6a488035
TO
349 }
350 else {
351 //user name is available
352 $user = array('name' => 'yes');
8be1a839 353 CRM_Utils_JSON::output($user);
6a488035 354 }
8be1a839
TO
355
356 // Not reachable: JSON::output() above exits.
6a488035
TO
357 CRM_Utils_System::civiExit();
358 }
359
360 /**
fe482240 361 * Function to get email address of a contact.
6a488035 362 */
00be9182 363 public static function getContactEmail() {
a7488080 364 if (!empty($_REQUEST['contact_id'])) {
6a488035 365 $contactID = CRM_Utils_Type::escape($_REQUEST['contact_id'], 'Positive');
8c0ea1d7
TO
366 if (!CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) {
367 return;
368 }
6a488035
TO
369 list($displayName,
370 $userEmail
353ffa53 371 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactID);
effdc2d9 372
d42a224c 373 CRM_Utils_System::setHttpHeader('Content-Type', 'text/plain');
6a488035
TO
374 if ($userEmail) {
375 echo $userEmail;
376 }
377 }
378 else {
379 $noemail = CRM_Utils_Array::value('noemail', $_GET);
380 $queryString = NULL;
a4cce21a
JM
381 $name = CRM_Utils_Array::value('name', $_GET);
382 if ($name) {
6a488035
TO
383 $name = CRM_Utils_Type::escape($name, 'String');
384 if ($noemail) {
385 $queryString = " cc.sort_name LIKE '%$name%'";
386 }
387 else {
388 $queryString = " ( cc.sort_name LIKE '%$name%' OR ce.email LIKE '%$name%' ) ";
389 }
390 }
a4cce21a 391 else {
d75f2f47
EM
392 $cid = CRM_Utils_Array::value('cid', $_GET);
393 if ($cid) {
b44e3f84 394 //check cid for integer
a4cce21a
JM
395 $contIDS = explode(',', $cid);
396 foreach ($contIDS as $contID) {
397 CRM_Utils_Type::escape($contID, 'Integer');
398 }
399 $queryString = " cc.id IN ( $cid )";
d75f2f47 400 }
6a488035
TO
401 }
402
403 if ($queryString) {
404 $offset = CRM_Utils_Array::value('offset', $_GET, 0);
cac1236c 405 $rowCount = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'search_autocomplete_count', NULL, 10);
6a488035 406
bf00d1b6 407 $offset = CRM_Utils_Type::escape($offset, 'Int');
bf00d1b6 408
6a488035
TO
409 // add acl clause here
410 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
411 if ($aclWhere) {
412 $aclWhere = " AND $aclWhere";
413 }
414 if ($noemail) {
415 $query = "
416SELECT sort_name name, cc.id
417FROM civicrm_contact cc
418 {$aclFrom}
419WHERE cc.is_deceased = 0 AND {$queryString}
420 {$aclWhere}
421LIMIT {$offset}, {$rowCount}
422";
423
424 // send query to hook to be modified if needed
425 CRM_Utils_Hook::contactListQuery($query,
426 $name,
427 CRM_Utils_Array::value('context', $_GET),
428 CRM_Utils_Array::value('cid', $_GET)
429 );
430
431 $dao = CRM_Core_DAO::executeQuery($query);
432 while ($dao->fetch()) {
433 $result[] = array(
6a488035 434 'id' => $dao->id,
cac1236c 435 'text' => $dao->name,
6a488035
TO
436 );
437 }
438 }
439 else {
440 $query = "
441SELECT sort_name name, ce.email, cc.id
442FROM civicrm_email ce INNER JOIN civicrm_contact cc ON cc.id = ce.contact_id
443 {$aclFrom}
444WHERE ce.on_hold = 0 AND cc.is_deceased = 0 AND cc.do_not_email = 0 AND {$queryString}
445 {$aclWhere}
446LIMIT {$offset}, {$rowCount}
447";
448
449 // send query to hook to be modified if needed
450 CRM_Utils_Hook::contactListQuery($query,
451 $name,
452 CRM_Utils_Array::value('context', $_GET),
453 CRM_Utils_Array::value('cid', $_GET)
454 );
455
6a488035
TO
456 $dao = CRM_Core_DAO::executeQuery($query);
457
458 while ($dao->fetch()) {
ce80b209 459 //working here
6a488035 460 $result[] = array(
cac1236c 461 'text' => '"' . $dao->name . '" <' . $dao->email . '>',
6a488035
TO
462 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>',
463 );
464 }
465 }
6a488035 466 if ($result) {
8be1a839 467 CRM_Utils_JSON::output($result);
6a488035
TO
468 }
469 }
470 }
471 CRM_Utils_System::civiExit();
472 }
473
00be9182 474 public static function getContactPhone() {
6a488035
TO
475
476 $queryString = NULL;
477 //check for mobile type
478 $phoneTypes = CRM_Core_OptionGroup::values('phone_type', TRUE, FALSE, FALSE, NULL, 'name');
479 $mobileType = CRM_Utils_Array::value('Mobile', $phoneTypes);
480
a4cce21a
JM
481 $name = CRM_Utils_Array::value('name', $_GET);
482 if ($name) {
6a488035
TO
483 $name = CRM_Utils_Type::escape($name, 'String');
484 $queryString = " ( cc.sort_name LIKE '%$name%' OR cp.phone LIKE '%$name%' ) ";
485 }
a4cce21a 486 else {
d75f2f47
EM
487 $cid = CRM_Utils_Array::value('cid', $_GET);
488 if ($cid) {
b44e3f84 489 //check cid for integer
a4cce21a
JM
490 $contIDS = explode(',', $cid);
491 foreach ($contIDS as $contID) {
492 CRM_Utils_Type::escape($contID, 'Integer');
493 }
494 $queryString = " cc.id IN ( $cid )";
6a488035 495 }
6a488035
TO
496 }
497
498 if ($queryString) {
499 $offset = CRM_Utils_Array::value('offset', $_GET, 0);
500 $rowCount = CRM_Utils_Array::value('rowcount', $_GET, 20);
501
bf00d1b6
DL
502 $offset = CRM_Utils_Type::escape($offset, 'Int');
503 $rowCount = CRM_Utils_Type::escape($rowCount, 'Int');
504
6a488035
TO
505 // add acl clause here
506 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
507 if ($aclWhere) {
508 $aclWhere = " AND $aclWhere";
509 }
510
511 $query = "
512SELECT sort_name name, cp.phone, cc.id
513FROM civicrm_phone cp INNER JOIN civicrm_contact cc ON cc.id = cp.contact_id
514 {$aclFrom}
515WHERE cc.is_deceased = 0 AND cc.do_not_sms = 0 AND cp.phone_type_id = {$mobileType} AND {$queryString}
516 {$aclWhere}
517LIMIT {$offset}, {$rowCount}
518";
519
520 // send query to hook to be modified if needed
521 CRM_Utils_Hook::contactListQuery($query,
522 $name,
523 CRM_Utils_Array::value('context', $_GET),
524 CRM_Utils_Array::value('cid', $_GET)
525 );
526
527 $dao = CRM_Core_DAO::executeQuery($query);
528
529 while ($dao->fetch()) {
530 $result[] = array(
b792e485 531 'text' => '"' . $dao->name . '" (' . $dao->phone . ')',
6a488035
TO
532 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->phone}" : '"' . $dao->name . '" <' . $dao->phone . '>',
533 );
534 }
535 }
536
537 if ($result) {
8be1a839 538 CRM_Utils_JSON::output($result);
6a488035
TO
539 }
540 CRM_Utils_System::civiExit();
541 }
542
543
00be9182 544 public static function buildSubTypes() {
6a488035
TO
545 $parent = CRM_Utils_Array::value('parentId', $_REQUEST);
546
547 switch ($parent) {
548 case 1:
549 $contactType = 'Individual';
550 break;
551
552 case 2:
553 $contactType = 'Household';
554 break;
555
556 case 4:
557 $contactType = 'Organization';
558 break;
559 }
560
561 $subTypes = CRM_Contact_BAO_ContactType::subTypePairs($contactType, FALSE, NULL);
562 asort($subTypes);
ecdef330 563 CRM_Utils_JSON::output($subTypes);
6a488035
TO
564 }
565
00be9182 566 public static function buildDedupeRules() {
6a488035
TO
567 $parent = CRM_Utils_Array::value('parentId', $_REQUEST);
568
569 switch ($parent) {
570 case 1:
571 $contactType = 'Individual';
572 break;
573
574 case 2:
575 $contactType = 'Household';
576 break;
577
578 case 4:
579 $contactType = 'Organization';
580 break;
581 }
582
583 $dedupeRules = CRM_Dedupe_BAO_RuleGroup::getByType($contactType);
584
ecdef330 585 CRM_Utils_JSON::output($dedupeRules);
6a488035
TO
586 }
587
588 /**
fe482240 589 * Function used for CiviCRM dashboard operations.
6a488035 590 */
00be9182 591 public static function dashboard() {
6a488035
TO
592 $operation = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
593
594 switch ($operation) {
595 case 'get_widgets_by_column':
596 // This would normally be coming from either the database (this user's settings) or a default/initial dashboard configuration.
597 // get contact id of logged in user
598
599 $dashlets = CRM_Core_BAO_Dashboard::getContactDashlets();
600 break;
601
602 case 'get_widget':
603 $dashletID = CRM_Utils_Type::escape($_GET['id'], 'Positive');
604
605 $dashlets = CRM_Core_BAO_Dashboard::getDashletInfo($dashletID);
606 break;
607
608 case 'save_columns':
609 CRM_Core_BAO_Dashboard::saveDashletChanges($_REQUEST['columns']);
610 CRM_Utils_System::civiExit();
611 case 'delete_dashlet':
612 $dashletID = CRM_Utils_Type::escape($_REQUEST['dashlet_id'], 'Positive');
613 CRM_Core_BAO_Dashboard::deleteDashlet($dashletID);
614 CRM_Utils_System::civiExit();
615 }
616
ecdef330 617 CRM_Utils_JSON::output($dashlets);
6a488035
TO
618 }
619
620 /**
fe482240 621 * Retrieve signature based on email id.
6a488035 622 */
00be9182 623 public static function getSignature() {
6a488035 624 $emailID = CRM_Utils_Type::escape($_REQUEST['emailID'], 'Positive');
353ffa53
TO
625 $query = "SELECT signature_text, signature_html FROM civicrm_email WHERE id = {$emailID}";
626 $dao = CRM_Core_DAO::executeQuery($query);
6a488035
TO
627
628 $signatures = array();
629 while ($dao->fetch()) {
630 $signatures = array(
631 'signature_text' => $dao->signature_text,
632 'signature_html' => $dao->signature_html,
633 );
634 }
635
ecdef330 636 CRM_Utils_JSON::output($signatures);
6a488035
TO
637 }
638
639 /**
100fef9d 640 * Process dupes.
6a488035 641 */
00be9182 642 public static function processDupes() {
6a488035 643 $oper = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
353ffa53
TO
644 $cid = CRM_Utils_Type::escape($_REQUEST['cid'], 'Positive');
645 $oid = CRM_Utils_Type::escape($_REQUEST['oid'], 'Positive');
6a488035
TO
646
647 if (!$oper || !$cid || !$oid) {
648 return;
649 }
650
651 $exception = new CRM_Dedupe_DAO_Exception();
652 $exception->contact_id1 = $cid;
653 $exception->contact_id2 = $oid;
654 //make sure contact2 > contact1.
655 if ($cid > $oid) {
656 $exception->contact_id1 = $oid;
657 $exception->contact_id2 = $cid;
658 }
659 $exception->find(TRUE);
660 $status = NULL;
661 if ($oper == 'dupe-nondupe') {
662 $status = $exception->save();
663 }
664 if ($oper == 'nondupe-dupe') {
665 $status = $exception->delete();
666 }
667
ecdef330 668 CRM_Utils_JSON::output(array('status' => ($status) ? $oper : $status));
6a488035
TO
669 }
670
63ef778e 671 static function getDedupes() {
672 $offset = isset($_REQUEST['start']) ? CRM_Utils_Type::escape($_REQUEST['start'], 'Integer') : 0;
673 $rowCount = isset($_REQUEST['length']) ? CRM_Utils_Type::escape($_REQUEST['length'], 'Integer') : 25;
6a488035 674
63ef778e 675 $gid = isset($_REQUEST['gid']) ? CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer') : 0;
676 $rgid = isset($_REQUEST['rgid']) ? CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer') : 0;
677 $selected = isset($_REQUEST['selected']) ? CRM_Utils_Type::escape($_REQUEST['selected'], 'Integer') : 0;
678 if ($rowCount < 0) {
679 $rowCount = 0;
680 }
6a488035
TO
681 $contactType = '';
682 if ($rgid) {
683 $contactType = CRM_Core_DAO::getFieldValue('CRM_Dedupe_DAO_RuleGroup', $rgid, 'contact_type');
684 }
685
63ef778e 686 $cacheKeyString = "merge {$contactType}_{$rgid}_{$gid}";
687 $searchRows = array();
688 $selectorElements = array('is_selected', 'is_selected_input', 'src_image', 'src', 'src_email', 'src_street', 'src_postcode', 'dst_image', 'dst', 'dst_email', 'dst_street', 'dst_postcode', 'conflicts', 'weight', 'actions');
6a488035 689
63ef778e 690 foreach ($_REQUEST['columns'] as $columnInfo) {
691 if (!empty($columnInfo['search']['value'])) {
692 ${$columnInfo['data']} = CRM_Utils_Type::escape($columnInfo['search']['value'], 'String');
693 }
694 }
695 $join = '';
696 $where = array();
697 $searchData = CRM_Utils_Array::value('search', $_REQUEST);
698 if ($src || !empty($searchData['value']) ) {
699 $src = $src ? $src : $searchData['value'];
700 $where[] = " cc1.display_name LIKE '%{$src}%'";
701 }
702 if ($dst || !empty($searchData['value'])) {
703 $dst = $dst ? $dst : $searchData['value'];
704 $where[] = " cc2.display_name LIKE '%{$dst}%'";
705 }
706 if ($src_email || !empty($searchData['value'])) {
707 $src_email = $src_email ? $src_email : $searchData['value'];
708 $where[] = " (ce1.is_primary = 1 AND ce1.email LIKE '%{$src_email}%')";
709 }
710 if ($dst_email || !empty($searchData['value'])) {
711 $dst_email = $dst_email ? $dst_email : $searchData['value'];
712 $where[] = " (ce2.is_primary = 1 AND ce2.email LIKE '%{$dst_email}%')";
713 }
714 if ($src_postcode || !empty($searchData['value'])) {
715 $src_postcode = $src_postcode ? $src_postcode : $searchData['value'];
716 $where[] = " (ca1.is_primary = 1 AND ca1.postal_code LIKE '%{$src_postcode}%')";
717 }
718 if ($dst_postcode || !empty($searchData['value'])) {
719 $dst_postcode = $dst_postcode ? $dst_postcode : $searchData['value'];
720 $where[] = " (ca2.is_primary = 1 AND ca2.postal_code LIKE '%{$dst_postcode}%')";
721 }
722 if ($src_street || !empty($searchData['value'])) {
723 $src_street = $src_street ? $src_street : $searchData['value'];
724 $where[] = " (ca1.is_primary = 1 AND ca1.street_address LIKE '%{$src_street}%')";
725 }
726 if ($dst_street || !empty($searchData['value'])) {
727 $dst_street = $dst_street ? $dst_street : $searchData['value'];
728 $where[] = " (ca2.is_primary = 1 AND ca2.street_address LIKE '%{$dst_street}%')";
729 }
730 if (!empty($searchData['value'])) {
731 $whereClause = ' ( '.implode(' OR ', $where).' ) ';
732 }
733 else {
734 if (!empty($where)) {
735 $whereClause = implode(' AND ', $where);
736 }
737 }
738 $whereClause .= $whereClause ? ' AND de.id IS NULL' : ' de.id IS NULL';
739
740 if ($selected) {
741 $whereClause .= ' AND pn.is_selected = 1';
742 }
743 $join .= " LEFT JOIN civicrm_dedupe_exception de ON ( pn.entity_id1 = de.contact_id1 AND pn.entity_id2 = de.contact_id2 )";
744
745
746 $select = array(
747 'cc1.contact_type' => 'src_contact_type',
748 'cc1.display_name' => 'src_display_name',
749 'cc1.contact_sub_type'=> 'src_contact_sub_type',
750 'cc2.contact_type' => 'dst_contact_type',
751 'cc2.display_name' => 'dst_display_name',
752 'cc2.contact_sub_type'=> 'dst_contact_sub_type',
753 'ce1.email' => 'src_email',
754 'ce2.email' => 'dst_email',
755 'ca1.postal_code' => 'src_postcode',
756 'ca2.postal_code' => 'dst_postcode',
757 'ca1.street_address' => 'src_street',
758 'ca2.street_address' => 'dst_street'
759 );
760
761 if($select) {
762 $join .= " INNER JOIN civicrm_contact cc1 ON cc1.id = pn.entity_id1";
763 $join .= " INNER JOIN civicrm_contact cc2 ON cc2.id = pn.entity_id2";
764 $join .= " LEFT JOIN civicrm_email ce1 ON (ce1.contact_id = pn.entity_id1 AND ce1.is_primary = 1 )";
765 $join .= " LEFT JOIN civicrm_email ce2 ON (ce2.contact_id = pn.entity_id2 AND ce2.is_primary = 1 )";
766 $join .= " LEFT JOIN civicrm_address ca1 ON (ca1.contact_id = pn.entity_id1 AND ca1.is_primary = 1 )";
767 $join .= " LEFT JOIN civicrm_address ca2 ON (ca2.contact_id = pn.entity_id2 AND ca2.is_primary = 1 )";
768 }
769 $iTotal = CRM_Core_BAO_PrevNextCache::getCount($cacheKeyString, $join, $whereClause);
770 foreach ($_REQUEST['order'] as $orderInfo) {
771 if (!empty($orderInfo['column'])) {
772 $orderColumnNumber = $orderInfo['column'];
773 $dir = $orderInfo['dir'];
774 }
775 }
776 $columnDetails = CRM_Utils_Array::value($orderColumnNumber, $_REQUEST['columns']);
777 if(!empty($columnDetails)) {
778 switch ($columnDetails['data']) {
779 case 'src':
780 $whereClause .= " ORDER BY cc1.display_name {$dir}";
781 break;
782 case 'src_email':
783 $whereClause .= " ORDER BY ce1.email {$dir}";
784 break;
785 case 'src_street':
786 $whereClause .= " ORDER BY ca1.street_address {$dir}";
787 break;
788 case 'src_postcode':
789 $whereClause .= " ORDER BY ca1.postal_code {$dir}";
790 break;
791 case 'dst':
792 $whereClause .= " ORDER BY cc2.display_name {$dir}";
793 break;
794 case 'dst_email':
795 $whereClause .= " ORDER BY ce2.email {$dir}";
796 break;
797 case 'dst_street':
798 $whereClause .= " ORDER BY ca2.street_address {$dir}";
799 break;
800 case 'dst_postcode':
801 $whereClause .= " ORDER BY ca2.postal_code {$dir}";
802 break;
803 default:
804 break;
805 }
806 }
6a488035 807
63ef778e 808 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString, $join, $whereClause, $offset, $rowCount, $select);
809 $iFilteredTotal = CRM_Core_DAO::singleValueQuery("SELECT FOUND_ROWS()");
6a488035 810
63ef778e 811 $count = 0;
812 foreach ($dupePairs as $key => $pairInfo) {
813 $pair =& $pairInfo['data'];
814 $srcContactSubType = CRM_Utils_Array::value('src_contact_sub_type', $pairInfo);
815 $dstContactSubType = CRM_Utils_Array::value('dst_contact_sub_type', $pairInfo);
816 $srcTypeImage = CRM_Contact_BAO_Contact_Utils::getImage($srcContactSubType ?
817 $srcContactSubType : $pairInfo['src_contact_type'],
818 FALSE,
fd630ef9 819 $pairInfo['entity_id1']
63ef778e 820 );
821 $dstTypeImage = CRM_Contact_BAO_Contact_Utils::getImage($dstContactSubType ?
822 $dstContactSubType : $pairInfo['dst_contact_type'],
823 FALSE,
fd630ef9 824 $pairInfo['entity_id2']
63ef778e 825 );
6a488035 826
63ef778e 827 $searchRows[$count]['is_selected'] = $pairInfo['is_selected'];
828 $searchRows[$count]['is_selected_input'] = "<input type='checkbox' class='crm-dedupe-select' name='pnid_{$pairInfo['prevnext_id']}' value='{$pairInfo['is_selected']}' onclick='toggleDedupeSelect(this)'>";
829 $searchRows[$count]['src_image'] = $srcTypeImage;
fd630ef9 830 $searchRows[$count]['src'] = CRM_Utils_System::href($pair['srcName'], 'civicrm/contact/view', "reset=1&cid={$pairInfo['entity_id1']}");
63ef778e 831 $searchRows[$count]['src_email'] = CRM_Utils_Array::value('src_email', $pairInfo);
832 $searchRows[$count]['src_street'] = CRM_Utils_Array::value('src_street', $pairInfo);
833 $searchRows[$count]['src_postcode'] = CRM_Utils_Array::value('src_postcode', $pairInfo);
834 $searchRows[$count]['dst_image'] = $dstTypeImage;
fd630ef9 835 $searchRows[$count]['dst'] = CRM_Utils_System::href($pair['dstName'], 'civicrm/contact/view', "reset=1&cid={$pairInfo['entity_id2']}");
63ef778e 836 $searchRows[$count]['dst_email'] = CRM_Utils_Array::value('dst_email', $pairInfo);
837 $searchRows[$count]['dst_street'] = CRM_Utils_Array::value('dst_street', $pairInfo);
838 $searchRows[$count]['dst_postcode'] = CRM_Utils_Array::value('dst_postcode', $pairInfo);
839 $searchRows[$count]['conflicts'] = CRM_Utils_Array::value('conflicts', $pair);
840 $searchRows[$count]['weight'] = CRM_Utils_Array::value('weight', $pair);
841
fd630ef9 842 if (!empty($pairInfo['data']['canMerge'])) {
843 $mergeParams = "reset=1&cid={$pairInfo['entity_id1']}&oid={$pairInfo['entity_id2']}&action=update&rgid={$rgid}";
6a488035
TO
844 if ($gid) {
845 $mergeParams .= "&gid={$gid}";
846 }
847
fd630ef9 848 $searchRows[$count]['actions'] = "<a class='crm-dedupe-flip' href='#' data-pnid={$pairInfo['prevnext_id']}>" . ts('flip') . "</a>&nbsp;|&nbsp;";
63ef778e 849 $searchRows[$count]['actions'] = CRM_Utils_System::href(ts('merge'), 'civicrm/contact/merge', $mergeParams);
fd630ef9 850 $searchRows[$count]['actions'] .= "&nbsp;|&nbsp;<a id='notDuplicate' href='#' onClick=\"processDupes( {$pairInfo['entity_id1']}, {$pairInfo['entity_id2']}, 'dupe-nondupe', 'dupe-listing'); return false;\">" . ts('not a duplicate') . "</a>";
6a488035
TO
851 }
852 else {
63ef778e 853 $searchRows[$count]['actions'] = '<em>' . ts('Insufficient access rights - cannot merge') . '</em>';
6a488035 854 }
63ef778e 855 $count++;
6a488035
TO
856 }
857
63ef778e 858 header('Content-Type: application/json');
859 echo CRM_Utils_JSON::encodeDataTable($searchRows, $iTotal, $iFilteredTotal, $selectorElements);
6a488035
TO
860
861 CRM_Utils_System::civiExit();
862 }
863
864 /**
fe482240 865 * Retrieve a PDF Page Format for the PDF Letter form.
6a488035 866 */
00be9182 867 public function pdfFormat() {
6a488035
TO
868 $formatId = CRM_Utils_Type::escape($_REQUEST['formatId'], 'Integer');
869
870 $pdfFormat = CRM_Core_BAO_PdfFormat::getById($formatId);
871
ecdef330 872 CRM_Utils_JSON::output($pdfFormat);
6a488035
TO
873 }
874
875 /**
fe482240 876 * Retrieve Paper Size dimensions.
6a488035 877 */
00be9182 878 public static function paperSize() {
6a488035
TO
879 $paperSizeName = CRM_Utils_Type::escape($_REQUEST['paperSizeName'], 'String');
880
881 $paperSize = CRM_Core_BAO_PaperSize::getByName($paperSizeName);
882
ecdef330 883 CRM_Utils_JSON::output($paperSize);
6a488035
TO
884 }
885
fd630ef9 886 static function flipDupePairs($prevNextId = NULL) {
887 if (!$prevNextId) {
888 $prevNextId = $_REQUEST['pnid'];
889 }
890 $query = "
891 UPDATE civicrm_prevnext_cache cpc
892 INNER JOIN civicrm_prevnext_cache old on cpc.id = old.id
893 SET cpc.entity_id1 = cpc.entity_id2, cpc.entity_id2 = old.entity_id1 ";
894 if (is_array($prevNextId) && !CRM_Utils_Array::crmIsEmptyArray($prevNextId)) {
895 $prevNextId = implode(', ', $prevNextId);
896 $prevNextId = CRM_Utils_Type::escape($prevNextId, 'String');
897 $query .= "WHERE cpc.id IN ({$prevNextId}) AND cpc.is_selected = 1";
898 } else {
899 $prevNextId = CRM_Utils_Type::escape($prevNextId, 'Positive');
900 $query .= "WHERE cpc.id = $prevNextId";
901 }
902 CRM_Core_DAO::executeQuery($query);
903 CRM_Utils_JSON::output();
904 }
905
aeb97cc1
CW
906 /**
907 * Used to store selected contacts across multiple pages in advanced search.
908 */
00be9182 909 public static function selectUnselectContacts() {
353ffa53
TO
910 $name = CRM_Utils_Array::value('name', $_REQUEST);
911 $cacheKey = CRM_Utils_Array::value('qfKey', $_REQUEST);
912 $state = CRM_Utils_Array::value('state', $_REQUEST, 'checked');
6a488035
TO
913 $variableType = CRM_Utils_Array::value('variableType', $_REQUEST, 'single');
914
915 $actionToPerform = CRM_Utils_Array::value('action', $_REQUEST, 'select');
916
917 if ($variableType == 'multiple') {
918 // action post value only works with multiple type variable
919 if ($name) {
920 //multiple names like mark_x_1-mark_x_2 where 1,2 are cids
921 $elements = explode('-', $name);
922 foreach ($elements as $key => $element) {
923 $elements[$key] = self::_convertToId($element);
924 }
925 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform, $elements);
926 }
927 else {
928 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform);
929 }
930 }
931 elseif ($variableType == 'single') {
932 $cId = self::_convertToId($name);
933 $action = ($state == 'checked') ? 'select' : 'unselect';
934 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $action, $cId);
935 }
936 $contactIds = CRM_Core_BAO_PrevNextCache::getSelection($cacheKey);
937 $countSelectionCids = count($contactIds[$cacheKey]);
938
939 $arrRet = array('getCount' => $countSelectionCids);
ecdef330 940 CRM_Utils_JSON::output($arrRet);
6a488035
TO
941 }
942
4319322b 943 /**
100fef9d 944 * @param string $name
4319322b
EM
945 *
946 * @return string
947 */
00be9182 948 public static function _convertToId($name) {
6a488035
TO
949 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
950 $cId = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
951 }
952 return $cId;
953 }
954
00be9182 955 public static function getAddressDisplay() {
6a488035
TO
956 $contactId = CRM_Utils_Array::value('contact_id', $_REQUEST);
957 if (!$contactId) {
958 $addressVal["error_message"] = "no contact id found";
959 }
960 else {
408b79bf 961 $entityBlock = array(
962 'contact_id' => $contactId,
963 'entity_id' => $contactId,
964 );
6a488035
TO
965 $addressVal = CRM_Core_BAO_Address::getValues($entityBlock);
966 }
967
ecdef330 968 CRM_Utils_JSON::output($addressVal);
6a488035 969 }
40458f6c 970
63ef778e 971 static function toggleDedupeSelect() {
972 $rgid = CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer');
973 $gid = CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer');
974 $pnid = $_REQUEST['pnid'];
975 $isSelected = CRM_Utils_Type::escape($_REQUEST['is_selected'], 'Boolean');
976
977 $contactType = CRM_Core_DAO::getFieldValue('CRM_Dedupe_DAO_RuleGroup', $rgid, 'contact_type');
978 $cacheKeyString = "merge $contactType";
979 $cacheKeyString .= $rgid ? "_{$rgid}" : '_0';
980 $cacheKeyString .= $gid ? "_{$gid}" : '_0';
981
982 $params = array(
983 1 => array($isSelected, 'Boolean'),
984 3 => array("$cacheKeyString%", 'String') // using % to address rows with conflicts as well
985 );
986
987 //check pnid is_array or integer
988 $whereClause = NULL;
989 if (is_array($pnid) && !CRM_Utils_Array::crmIsEmptyArray($pnid)) {
990 $pnid = implode(', ', $pnid);
991 $pnid = CRM_Utils_Type::escape($pnid, 'String');
992 $whereClause = " id IN ( {$pnid} ) ";
993 }
994 else {
995 $pnid = CRM_Utils_Type::escape($pnid, 'Integer');
996 $whereClause = " id = %2";
997 $params[2] = array($pnid, 'Integer');
998 }
999
1000 $sql = "UPDATE civicrm_prevnext_cache SET is_selected = %1 WHERE {$whereClause} AND cacheKey LIKE %3";
1001 CRM_Core_DAO::executeQuery($sql, $params);
1002
1003 CRM_Utils_System::civiExit();
1004 }
1005
40458f6c 1006 /**
fe482240 1007 * Retrieve contact relationships.
40458f6c 1008 */
1009 public static function getContactRelationships() {
1010 $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
1011 $context = CRM_Utils_Type::escape($_GET['context'], 'String');
7d12de7f 1012 $relationship_type_id = CRM_Utils_Type::escape(CRM_Utils_Array::value('relationship_type_id', $_GET), 'Integer', FALSE);
40458f6c 1013
b0266403
CW
1014 if (!CRM_Contact_BAO_Contact_Permission::allow($contactID)) {
1015 return CRM_Utils_System::permissionDenied();
1016 }
1017
7d12de7f
JL
1018 $sortMapper = array();
1019 foreach ($_GET['columns'] as $key => $value) {
1020 $sortMapper[$key] = $value['data'];
1021 };
40458f6c 1022
7d12de7f
JL
1023 $offset = isset($_GET['start']) ? CRM_Utils_Type::escape($_GET['start'], 'Integer') : 0;
1024 $rowCount = isset($_GET['length']) ? CRM_Utils_Type::escape($_GET['length'], 'Integer') : 25;
1025 $sort = isset($_GET['order'][0]['column']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_GET['order'][0]['column'], 'Integer'), $sortMapper) : NULL;
1026 $sortOrder = isset($_GET['order'][0]['dir']) ? CRM_Utils_Type::escape($_GET['order'][0]['dir'], 'String') : 'asc';
40458f6c 1027
7d12de7f 1028 $params = $_GET;
40458f6c 1029 if ($sort && $sortOrder) {
1030 $params['sortBy'] = $sort . ' ' . $sortOrder;
1031 }
1032
1033 $params['page'] = ($offset / $rowCount) + 1;
1034 $params['rp'] = $rowCount;
1035
1036 $params['contact_id'] = $contactID;
1037 $params['context'] = $context;
4c5f31d0 1038 if ($relationship_type_id) {
cdee9432
TM
1039 $params['relationship_type_id'] = $relationship_type_id;
1040 }
40458f6c 1041
1042 // get the contact relationships
1043 $relationships = CRM_Contact_BAO_Relationship::getContactRelationshipSelector($params);
1044
7d12de7f 1045 CRM_Utils_JSON::output($relationships);
40458f6c 1046 }
96025800 1047
6a488035 1048}