Merge pull request #8118 from scardinius/crm-18108
[civicrm-core.git] / CRM / Contact / Page / AJAX.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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-2016
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 * Ajax callback for custom fields of type ContactReference
50 *
51 * Todo: Migrate contact reference fields to use EntityRef
52 */
53 public static function contactReference() {
54 $name = CRM_Utils_Array::value('term', $_GET);
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
59 $params = array('id' => $cfID);
60 $returnProperties = array('filter', 'data_type', 'is_active');
61 $cf = array();
62 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $cf, $returnProperties);
63 if (!$cf['id'] || !$cf['is_active'] || $cf['data_type'] != 'ContactReference') {
64 CRM_Utils_System::civiExit('error');
65 }
66
67 if (!empty($cf['filter'])) {
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 ) {
76 CRM_Utils_System::civiExit('error');
77 }
78 }
79
80 $list = array_keys(CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
81 'contact_reference_options'
82 ), '1');
83
84 $return = array_unique(array_merge(array('sort_name'), $list));
85
86 $limit = Civi::settings()->get('search_autocomplete_count');
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)) {
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',
107 'action',
108 );
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
137 if (!empty($contact['is_error'])) {
138 CRM_Utils_System::civiExit('error');
139 }
140
141 $contactList = array();
142 foreach ($contact['values'] as $value) {
143 $view = array();
144 foreach ($return as $fld) {
145 if (!empty($value[$fld])) {
146 $view[] = $value[$fld];
147 }
148 }
149 $contactList[] = array('id' => $value['id'], 'text' => implode(' :: ', $view));
150 }
151
152 CRM_Utils_JSON::output($contactList);
153 }
154
155 /**
156 * Fetch PCP ID by PCP Supporter sort_name, also displays PCP title and associated Contribution Page title
157 */
158 public static function getPCPList() {
159 $name = CRM_Utils_Array::value('term', $_GET);
160 $name = CRM_Utils_Type::escape($name, 'String');
161 $limit = $max = Civi::settings()->get('search_autocomplete_count');
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
184 $offset = $count = 0;
185 if (!empty($_GET['page_num'])) {
186 $page = (int) $_GET['page_num'];
187 $offset = $limit * ($page - 1);
188 $limit++;
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}
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'
204 ) t
205 ORDER BY sort_name
206 LIMIT $offset, $limit
207 ";
208
209 $dao = CRM_Core_DAO::executeQuery($query);
210 $output = array('results' => array(), 'more' => FALSE);
211 while ($dao->fetch()) {
212 if (++$count > $max) {
213 $output['more'] = TRUE;
214 }
215 else {
216 $output['results'][] = array('id' => $dao->id, 'text' => $dao->data);
217 }
218 }
219 CRM_Utils_JSON::output($output);
220 }
221
222 /**
223 * @throws \CiviCRM_API3_Exception
224 */
225 public static function relationship() {
226 $relType = CRM_Utils_Request::retrieve('rel_type', 'String', CRM_Core_DAO::$_nullObject, TRUE);
227 $relContactID = CRM_Utils_Request::retrieve('rel_contact', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
228 $originalCid = CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject);
229 $relationshipID = CRM_Utils_Request::retrieve('rel_id', 'Positive', CRM_Core_DAO::$_nullObject);
230 $caseID = CRM_Utils_Request::retrieve('case_id', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
231
232 if (!CRM_Case_BAO_Case::accessCase($caseID)) {
233 CRM_Utils_System::permissionDenied();
234 }
235
236 $ret = array('is_error' => 0);
237
238 list($relTypeId, $b, $a) = explode('_', $relType);
239
240 if ($relationshipID && $originalCid) {
241 CRM_Case_BAO_Case::endCaseRole($caseID, $a, $originalCid, $relTypeId);
242 }
243
244 $clientList = CRM_Case_BAO_Case::getCaseClients($caseID);
245
246 // Loop through multiple case clients
247 foreach ($clientList as $i => $sourceContactID) {
248 $result = civicrm_api3('relationship', 'create', array(
249 'case_id' => $caseID,
250 'relationship_type_id' => $relTypeId,
251 "contact_id_$a" => $relContactID,
252 "contact_id_$b" => $sourceContactID,
253 'start_date' => 'now',
254 ));
255 // Save activity only for the primary (first) client
256 if ($i == 0 && empty($result['is_error'])) {
257 CRM_Case_BAO_Case::createCaseRoleActivity($caseID, $result['id'], $relContactID);
258 }
259 }
260
261 CRM_Utils_JSON::output($ret);
262 }
263
264 /**
265 * Fetch the custom field help.
266 */
267 public static function customField() {
268 $fieldId = CRM_Utils_Type::escape($_REQUEST['id'], 'Integer');
269 $params = array('id' => $fieldId);
270 $returnProperties = array('help_pre', 'help_post');
271 $values = array();
272
273 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $values, $returnProperties);
274 CRM_Utils_JSON::output($values);
275 }
276
277 public static function groupTree() {
278 CRM_Utils_System::setHttpHeader('Content-Type', 'application/json');
279 $gids = CRM_Utils_Type::escape($_GET['gids'], 'String');
280 echo CRM_Contact_BAO_GroupNestingCache::json($gids);
281 CRM_Utils_System::civiExit();
282 }
283
284 /**
285 * Delete custom value.
286 */
287 public static function deleteCustomValue() {
288 CRM_Utils_System::setHttpHeader('Content-Type', 'text/plain');
289 $customValueID = CRM_Utils_Type::escape($_REQUEST['valueID'], 'Positive');
290 $customGroupID = CRM_Utils_Type::escape($_REQUEST['groupID'], 'Positive');
291 $contactId = CRM_Utils_Request::retrieve('contactId', 'Positive', CRM_Core_DAO::$_nullObject);
292 CRM_Core_BAO_CustomValue::deleteCustomValue($customValueID, $customGroupID);
293 if ($contactId) {
294 echo CRM_Contact_BAO_Contact::getCountComponent('custom_' . $customGroupID, $contactId);
295 }
296
297 // reset the group contact cache for this group
298 CRM_Contact_BAO_GroupContactCache::remove();
299 CRM_Utils_System::civiExit();
300 }
301
302 /**
303 * check the CMS username.
304 */
305 static public function checkUserName() {
306 $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), array('for', 'ts'));
307 $sig = CRM_Utils_Request::retrieve('sig', 'String', CRM_Core_DAO::$_nullObject);
308 $for = CRM_Utils_Request::retrieve('for', 'String', CRM_Core_DAO::$_nullObject);
309 if (
310 CRM_Utils_Time::getTimeRaw() > $_REQUEST['ts'] + self::CHECK_USERNAME_TTL
311 || $for != 'civicrm/ajax/cmsuser'
312 || !$signer->validate($sig, $_REQUEST)
313 ) {
314 $user = array('name' => 'error');
315 CRM_Utils_JSON::output($user);
316 }
317
318 $config = CRM_Core_Config::singleton();
319 $username = trim(CRM_Utils_Array::value('cms_name', $_REQUEST));
320
321 $params = array('name' => $username);
322
323 $errors = array();
324 $config->userSystem->checkUserNameEmailExists($params, $errors);
325
326 if (isset($errors['cms_name']) || isset($errors['name'])) {
327 //user name is not available
328 $user = array('name' => 'no');
329 CRM_Utils_JSON::output($user);
330 }
331 else {
332 //user name is available
333 $user = array('name' => 'yes');
334 CRM_Utils_JSON::output($user);
335 }
336
337 // Not reachable: JSON::output() above exits.
338 CRM_Utils_System::civiExit();
339 }
340
341 /**
342 * Function to get email address of a contact.
343 */
344 public static function getContactEmail() {
345 if (!empty($_REQUEST['contact_id'])) {
346 $contactID = CRM_Utils_Type::escape($_REQUEST['contact_id'], 'Positive');
347 if (!CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) {
348 return;
349 }
350 list($displayName,
351 $userEmail
352 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactID);
353
354 CRM_Utils_System::setHttpHeader('Content-Type', 'text/plain');
355 if ($userEmail) {
356 echo $userEmail;
357 }
358 }
359 else {
360 $noemail = CRM_Utils_Array::value('noemail', $_GET);
361 $queryString = NULL;
362 $name = CRM_Utils_Array::value('name', $_GET);
363 if ($name) {
364 $name = CRM_Utils_Type::escape($name, 'String');
365 if ($noemail) {
366 $queryString = " cc.sort_name LIKE '%$name%'";
367 }
368 else {
369 $queryString = " ( cc.sort_name LIKE '%$name%' OR ce.email LIKE '%$name%' ) ";
370 }
371 }
372 else {
373 $cid = CRM_Utils_Array::value('cid', $_GET);
374 if ($cid) {
375 //check cid for integer
376 $contIDS = explode(',', $cid);
377 foreach ($contIDS as $contID) {
378 CRM_Utils_Type::escape($contID, 'Integer');
379 }
380 $queryString = " cc.id IN ( $cid )";
381 }
382 }
383
384 if ($queryString) {
385 $offset = CRM_Utils_Array::value('offset', $_GET, 0);
386 $rowCount = Civi::settings()->get('search_autocomplete_count');
387
388 $offset = CRM_Utils_Type::escape($offset, 'Int');
389
390 // add acl clause here
391 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
392 if ($aclWhere) {
393 $aclWhere = " AND $aclWhere";
394 }
395 if ($noemail) {
396 $query = "
397 SELECT sort_name name, cc.id
398 FROM civicrm_contact cc
399 {$aclFrom}
400 WHERE cc.is_deceased = 0 AND {$queryString}
401 {$aclWhere}
402 LIMIT {$offset}, {$rowCount}
403 ";
404
405 // send query to hook to be modified if needed
406 CRM_Utils_Hook::contactListQuery($query,
407 $name,
408 CRM_Utils_Request::retrieve('context', 'String', CRM_Core_DAO::$_nullObject),
409 CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject)
410 );
411
412 $dao = CRM_Core_DAO::executeQuery($query);
413 while ($dao->fetch()) {
414 $result[] = array(
415 'id' => $dao->id,
416 'text' => $dao->name,
417 );
418 }
419 }
420 else {
421 $query = "
422 SELECT sort_name name, ce.email, cc.id
423 FROM civicrm_email ce INNER JOIN civicrm_contact cc ON cc.id = ce.contact_id
424 {$aclFrom}
425 WHERE ce.on_hold = 0 AND cc.is_deceased = 0 AND cc.do_not_email = 0 AND {$queryString}
426 {$aclWhere}
427 LIMIT {$offset}, {$rowCount}
428 ";
429
430 // send query to hook to be modified if needed
431 CRM_Utils_Hook::contactListQuery($query,
432 $name,
433 CRM_Utils_Request::retrieve('context', 'String', CRM_Core_DAO::$_nullObject),
434 CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject)
435 );
436
437 $dao = CRM_Core_DAO::executeQuery($query);
438
439 while ($dao->fetch()) {
440 //working here
441 $result[] = array(
442 'text' => '"' . $dao->name . '" <' . $dao->email . '>',
443 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>',
444 );
445 }
446 }
447 if ($result) {
448 CRM_Utils_JSON::output($result);
449 }
450 }
451 }
452 CRM_Utils_System::civiExit();
453 }
454
455 public static function getContactPhone() {
456
457 $queryString = NULL;
458 //check for mobile type
459 $phoneTypes = CRM_Core_OptionGroup::values('phone_type', TRUE, FALSE, FALSE, NULL, 'name');
460 $mobileType = CRM_Utils_Array::value('Mobile', $phoneTypes);
461
462 $name = CRM_Utils_Array::value('name', $_GET);
463 if ($name) {
464 $name = CRM_Utils_Type::escape($name, 'String');
465 $queryString = " ( cc.sort_name LIKE '%$name%' OR cp.phone LIKE '%$name%' ) ";
466 }
467 else {
468 $cid = CRM_Utils_Array::value('cid', $_GET);
469 if ($cid) {
470 //check cid for integer
471 $contIDS = explode(',', $cid);
472 foreach ($contIDS as $contID) {
473 CRM_Utils_Type::escape($contID, 'Integer');
474 }
475 $queryString = " cc.id IN ( $cid )";
476 }
477 }
478
479 if ($queryString) {
480 $offset = CRM_Utils_Array::value('offset', $_GET, 0);
481 $rowCount = CRM_Utils_Array::value('rowcount', $_GET, 20);
482
483 $offset = CRM_Utils_Type::escape($offset, 'Int');
484 $rowCount = CRM_Utils_Type::escape($rowCount, 'Int');
485
486 // add acl clause here
487 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc');
488 if ($aclWhere) {
489 $aclWhere = " AND $aclWhere";
490 }
491
492 $query = "
493 SELECT sort_name name, cp.phone, cc.id
494 FROM civicrm_phone cp INNER JOIN civicrm_contact cc ON cc.id = cp.contact_id
495 {$aclFrom}
496 WHERE cc.is_deceased = 0 AND cc.do_not_sms = 0 AND cp.phone_type_id = {$mobileType} AND {$queryString}
497 {$aclWhere}
498 LIMIT {$offset}, {$rowCount}
499 ";
500
501 // send query to hook to be modified if needed
502 CRM_Utils_Hook::contactListQuery($query,
503 $name,
504 CRM_Utils_Request::retrieve('context', 'String', CRM_Core_DAO::$_nullObject),
505 CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject)
506 );
507
508 $dao = CRM_Core_DAO::executeQuery($query);
509
510 while ($dao->fetch()) {
511 $result[] = array(
512 'text' => '"' . $dao->name . '" (' . $dao->phone . ')',
513 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->phone}" : '"' . $dao->name . '" <' . $dao->phone . '>',
514 );
515 }
516 }
517
518 if ($result) {
519 CRM_Utils_JSON::output($result);
520 }
521 CRM_Utils_System::civiExit();
522 }
523
524
525 public static function buildSubTypes() {
526 $parent = CRM_Utils_Request::retrieve('parentId', 'Positive', CRM_Core_DAO::$_nullObject);
527
528 switch ($parent) {
529 case 1:
530 $contactType = 'Individual';
531 break;
532
533 case 2:
534 $contactType = 'Household';
535 break;
536
537 case 4:
538 $contactType = 'Organization';
539 break;
540 }
541
542 $subTypes = CRM_Contact_BAO_ContactType::subTypePairs($contactType, FALSE, NULL);
543 asort($subTypes);
544 CRM_Utils_JSON::output($subTypes);
545 }
546
547 public static function buildDedupeRules() {
548 $parent = CRM_Utils_Request::retrieve('parentId', 'Positive', CRM_Core_DAO::$_nullObject);
549
550 switch ($parent) {
551 case 1:
552 $contactType = 'Individual';
553 break;
554
555 case 2:
556 $contactType = 'Household';
557 break;
558
559 case 4:
560 $contactType = 'Organization';
561 break;
562 }
563
564 $dedupeRules = CRM_Dedupe_BAO_RuleGroup::getByType($contactType);
565
566 CRM_Utils_JSON::output($dedupeRules);
567 }
568
569 /**
570 * Function used for CiviCRM dashboard operations.
571 */
572 public static function dashboard() {
573 $operation = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
574
575 switch ($operation) {
576 case 'get_widgets_by_column':
577 // This would normally be coming from either the database (this user's settings) or a default/initial dashboard configuration.
578 // get contact id of logged in user
579
580 $dashlets = CRM_Core_BAO_Dashboard::getContactDashlets();
581 break;
582
583 case 'get_widget':
584 $dashletID = CRM_Utils_Type::escape($_GET['id'], 'Positive');
585
586 $dashlets = CRM_Core_BAO_Dashboard::getDashletInfo($dashletID);
587 break;
588
589 case 'save_columns':
590 CRM_Core_BAO_Dashboard::saveDashletChanges($_REQUEST['columns']);
591 CRM_Utils_System::civiExit();
592 case 'delete_dashlet':
593 $dashletID = CRM_Utils_Type::escape($_REQUEST['dashlet_id'], 'Positive');
594 CRM_Core_BAO_Dashboard::deleteDashlet($dashletID);
595 CRM_Utils_System::civiExit();
596 }
597
598 CRM_Utils_JSON::output($dashlets);
599 }
600
601 /**
602 * Retrieve signature based on email id.
603 */
604 public static function getSignature() {
605 $emailID = CRM_Utils_Type::escape($_REQUEST['emailID'], 'Positive');
606 $query = "SELECT signature_text, signature_html FROM civicrm_email WHERE id = {$emailID}";
607 $dao = CRM_Core_DAO::executeQuery($query);
608
609 $signatures = array();
610 while ($dao->fetch()) {
611 $signatures = array(
612 'signature_text' => $dao->signature_text,
613 'signature_html' => $dao->signature_html,
614 );
615 }
616
617 CRM_Utils_JSON::output($signatures);
618 }
619
620 /**
621 * Process dupes.
622 */
623 public static function processDupes() {
624 $oper = CRM_Utils_Type::escape($_REQUEST['op'], 'String');
625 $cid = CRM_Utils_Type::escape($_REQUEST['cid'], 'Positive');
626 $oid = CRM_Utils_Type::escape($_REQUEST['oid'], 'Positive');
627
628 if (!$oper || !$cid || !$oid) {
629 return;
630 }
631
632 $exception = new CRM_Dedupe_DAO_Exception();
633 $exception->contact_id1 = $cid;
634 $exception->contact_id2 = $oid;
635 //make sure contact2 > contact1.
636 if ($cid > $oid) {
637 $exception->contact_id1 = $oid;
638 $exception->contact_id2 = $cid;
639 }
640 $exception->find(TRUE);
641 $status = NULL;
642 if ($oper == 'dupe-nondupe') {
643 $status = $exception->save();
644 }
645 if ($oper == 'nondupe-dupe') {
646 $status = $exception->delete();
647 }
648
649 CRM_Utils_JSON::output(array('status' => ($status) ? $oper : $status));
650 }
651
652 /**
653 * Retrieve list of duplicate pairs from cache table.
654 */
655 public static function getDedupes() {
656 $offset = isset($_REQUEST['start']) ? CRM_Utils_Type::escape($_REQUEST['start'], 'Integer') : 0;
657 $rowCount = isset($_REQUEST['length']) ? CRM_Utils_Type::escape($_REQUEST['length'], 'Integer') : 25;
658
659 $gid = isset($_REQUEST['gid']) ? CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer') : 0;
660 $rgid = isset($_REQUEST['rgid']) ? CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer') : 0;
661 $selected = isset($_REQUEST['selected']) ? CRM_Utils_Type::escape($_REQUEST['selected'], 'Integer') : 0;
662 if ($rowCount < 0) {
663 $rowCount = 0;
664 }
665 $contactType = '';
666 if ($rgid) {
667 $contactType = CRM_Core_DAO::getFieldValue('CRM_Dedupe_DAO_RuleGroup', $rgid, 'contact_type');
668 }
669
670 $cacheKeyString = "merge {$contactType}_{$rgid}_{$gid}";
671 $searchRows = array();
672 $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');
673
674 foreach ($_REQUEST['columns'] as $columnInfo) {
675 if (!empty($columnInfo['search']['value'])) {
676 ${$columnInfo['data']} = CRM_Utils_Type::escape($columnInfo['search']['value'], 'String');
677 }
678 }
679 $join = '';
680 $where = array();
681 $searchData = CRM_Utils_Array::value('search', $_REQUEST);
682 $searchData['value'] = CRM_Utils_Type::escape($searchData['value'], 'String');
683
684 if ($src || !empty($searchData['value'])) {
685 $src = $src ? $src : $searchData['value'];
686 $where[] = " cc1.display_name LIKE '%{$src}%'";
687 }
688 if ($dst || !empty($searchData['value'])) {
689 $dst = $dst ? $dst : $searchData['value'];
690 $where[] = " cc2.display_name LIKE '%{$dst}%'";
691 }
692 if ($src_email || !empty($searchData['value'])) {
693 $src_email = $src_email ? $src_email : $searchData['value'];
694 $where[] = " (ce1.is_primary = 1 AND ce1.email LIKE '%{$src_email}%')";
695 }
696 if ($dst_email || !empty($searchData['value'])) {
697 $dst_email = $dst_email ? $dst_email : $searchData['value'];
698 $where[] = " (ce2.is_primary = 1 AND ce2.email LIKE '%{$dst_email}%')";
699 }
700 if ($src_postcode || !empty($searchData['value'])) {
701 $src_postcode = $src_postcode ? $src_postcode : $searchData['value'];
702 $where[] = " (ca1.is_primary = 1 AND ca1.postal_code LIKE '%{$src_postcode}%')";
703 }
704 if ($dst_postcode || !empty($searchData['value'])) {
705 $dst_postcode = $dst_postcode ? $dst_postcode : $searchData['value'];
706 $where[] = " (ca2.is_primary = 1 AND ca2.postal_code LIKE '%{$dst_postcode}%')";
707 }
708 if ($src_street || !empty($searchData['value'])) {
709 $src_street = $src_street ? $src_street : $searchData['value'];
710 $where[] = " (ca1.is_primary = 1 AND ca1.street_address LIKE '%{$src_street}%')";
711 }
712 if ($dst_street || !empty($searchData['value'])) {
713 $dst_street = $dst_street ? $dst_street : $searchData['value'];
714 $where[] = " (ca2.is_primary = 1 AND ca2.street_address LIKE '%{$dst_street}%')";
715 }
716 if (!empty($searchData['value'])) {
717 $whereClause = ' ( ' . implode(' OR ', $where) . ' ) ';
718 }
719 else {
720 if (!empty($where)) {
721 $whereClause = implode(' AND ', $where);
722 }
723 }
724 $whereClause .= $whereClause ? ' AND de.id IS NULL' : ' de.id IS NULL';
725
726 if ($selected) {
727 $whereClause .= ' AND pn.is_selected = 1';
728 }
729 $join .= " LEFT JOIN civicrm_dedupe_exception de ON ( pn.entity_id1 = de.contact_id1 AND pn.entity_id2 = de.contact_id2 )";
730
731 $select = array(
732 'cc1.contact_type' => 'src_contact_type',
733 'cc1.display_name' => 'src_display_name',
734 'cc1.contact_sub_type' => 'src_contact_sub_type',
735 'cc2.contact_type' => 'dst_contact_type',
736 'cc2.display_name' => 'dst_display_name',
737 'cc2.contact_sub_type' => 'dst_contact_sub_type',
738 'ce1.email' => 'src_email',
739 'ce2.email' => 'dst_email',
740 'ca1.postal_code' => 'src_postcode',
741 'ca2.postal_code' => 'dst_postcode',
742 'ca1.street_address' => 'src_street',
743 'ca2.street_address' => 'dst_street',
744 );
745
746 if ($select) {
747 $join .= " INNER JOIN civicrm_contact cc1 ON cc1.id = pn.entity_id1";
748 $join .= " INNER JOIN civicrm_contact cc2 ON cc2.id = pn.entity_id2";
749 $join .= " LEFT JOIN civicrm_email ce1 ON (ce1.contact_id = pn.entity_id1 AND ce1.is_primary = 1 )";
750 $join .= " LEFT JOIN civicrm_email ce2 ON (ce2.contact_id = pn.entity_id2 AND ce2.is_primary = 1 )";
751 $join .= " LEFT JOIN civicrm_address ca1 ON (ca1.contact_id = pn.entity_id1 AND ca1.is_primary = 1 )";
752 $join .= " LEFT JOIN civicrm_address ca2 ON (ca2.contact_id = pn.entity_id2 AND ca2.is_primary = 1 )";
753 }
754 $iTotal = CRM_Core_BAO_PrevNextCache::getCount($cacheKeyString, $join, $whereClause);
755 foreach ($_REQUEST['order'] as $orderInfo) {
756 if (!empty($orderInfo['column'])) {
757 $orderColumnNumber = $orderInfo['column'];
758 $dir = $orderInfo['dir'];
759 }
760 }
761 $columnDetails = CRM_Utils_Array::value($orderColumnNumber, $_REQUEST['columns']);
762 if (!empty($columnDetails)) {
763 switch ($columnDetails['data']) {
764 case 'src':
765 $whereClause .= " ORDER BY cc1.display_name {$dir}";
766 break;
767
768 case 'src_email':
769 $whereClause .= " ORDER BY ce1.email {$dir}";
770 break;
771
772 case 'src_street':
773 $whereClause .= " ORDER BY ca1.street_address {$dir}";
774 break;
775
776 case 'src_postcode':
777 $whereClause .= " ORDER BY ca1.postal_code {$dir}";
778 break;
779
780 case 'dst':
781 $whereClause .= " ORDER BY cc2.display_name {$dir}";
782 break;
783
784 case 'dst_email':
785 $whereClause .= " ORDER BY ce2.email {$dir}";
786 break;
787
788 case 'dst_street':
789 $whereClause .= " ORDER BY ca2.street_address {$dir}";
790 break;
791
792 case 'dst_postcode':
793 $whereClause .= " ORDER BY ca2.postal_code {$dir}";
794 break;
795
796 default:
797 break;
798 }
799 }
800
801 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString, $join, $whereClause, $offset, $rowCount, $select);
802 $iFilteredTotal = CRM_Core_DAO::singleValueQuery("SELECT FOUND_ROWS()");
803
804 $count = 0;
805 foreach ($dupePairs as $key => $pairInfo) {
806 $pair =& $pairInfo['data'];
807 $srcContactSubType = CRM_Utils_Array::value('src_contact_sub_type', $pairInfo);
808 $dstContactSubType = CRM_Utils_Array::value('dst_contact_sub_type', $pairInfo);
809 $srcTypeImage = CRM_Contact_BAO_Contact_Utils::getImage($srcContactSubType ?
810 $srcContactSubType : $pairInfo['src_contact_type'],
811 FALSE,
812 $pairInfo['entity_id1']
813 );
814 $dstTypeImage = CRM_Contact_BAO_Contact_Utils::getImage($dstContactSubType ?
815 $dstContactSubType : $pairInfo['dst_contact_type'],
816 FALSE,
817 $pairInfo['entity_id2']
818 );
819
820 $searchRows[$count]['is_selected'] = $pairInfo['is_selected'];
821 $searchRows[$count]['is_selected_input'] = "<input type='checkbox' class='crm-dedupe-select' name='pnid_{$pairInfo['prevnext_id']}' value='{$pairInfo['is_selected']}' onclick='toggleDedupeSelect(this)'>";
822 $searchRows[$count]['src_image'] = $srcTypeImage;
823 $searchRows[$count]['src'] = CRM_Utils_System::href($pair['srcName'], 'civicrm/contact/view', "reset=1&cid={$pairInfo['entity_id1']}");
824 $searchRows[$count]['src_email'] = CRM_Utils_Array::value('src_email', $pairInfo);
825 $searchRows[$count]['src_street'] = CRM_Utils_Array::value('src_street', $pairInfo);
826 $searchRows[$count]['src_postcode'] = CRM_Utils_Array::value('src_postcode', $pairInfo);
827 $searchRows[$count]['dst_image'] = $dstTypeImage;
828 $searchRows[$count]['dst'] = CRM_Utils_System::href($pair['dstName'], 'civicrm/contact/view', "reset=1&cid={$pairInfo['entity_id2']}");
829 $searchRows[$count]['dst_email'] = CRM_Utils_Array::value('dst_email', $pairInfo);
830 $searchRows[$count]['dst_street'] = CRM_Utils_Array::value('dst_street', $pairInfo);
831 $searchRows[$count]['dst_postcode'] = CRM_Utils_Array::value('dst_postcode', $pairInfo);
832 $searchRows[$count]['conflicts'] = str_replace("',", "',<br/>", CRM_Utils_Array::value('conflicts', $pair));
833 $searchRows[$count]['weight'] = CRM_Utils_Array::value('weight', $pair);
834
835 if (!empty($pairInfo['data']['canMerge'])) {
836 $mergeParams = "reset=1&cid={$pairInfo['entity_id1']}&oid={$pairInfo['entity_id2']}&action=update&rgid={$rgid}";
837 if ($gid) {
838 $mergeParams .= "&gid={$gid}";
839 }
840
841 $searchRows[$count]['actions'] = "<a class='crm-dedupe-flip' href='#' data-pnid={$pairInfo['prevnext_id']}>" . ts('flip') . "</a>&nbsp;|&nbsp;";
842 $searchRows[$count]['actions'] .= CRM_Utils_System::href(ts('merge'), 'civicrm/contact/merge', $mergeParams);
843 $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>";
844 }
845 else {
846 $searchRows[$count]['actions'] = '<em>' . ts('Insufficient access rights - cannot merge') . '</em>';
847 }
848 $count++;
849 }
850
851 $dupePairs = array(
852 'data' => $searchRows,
853 'recordsTotal' => $iTotal,
854 'recordsFiltered' => $iFilteredTotal,
855 );
856 CRM_Utils_JSON::output($dupePairs);
857 }
858
859 /**
860 * Retrieve a PDF Page Format for the PDF Letter form.
861 */
862 public function pdfFormat() {
863 $formatId = CRM_Utils_Type::escape($_REQUEST['formatId'], 'Integer');
864
865 $pdfFormat = CRM_Core_BAO_PdfFormat::getById($formatId);
866
867 CRM_Utils_JSON::output($pdfFormat);
868 }
869
870 /**
871 * Retrieve Paper Size dimensions.
872 */
873 public static function paperSize() {
874 $paperSizeName = CRM_Utils_Type::escape($_REQUEST['paperSizeName'], 'String');
875
876 $paperSize = CRM_Core_BAO_PaperSize::getByName($paperSizeName);
877
878 CRM_Utils_JSON::output($paperSize);
879 }
880
881 /**
882 * Swap contacts in a dupe pair i.e main with duplicate contact.
883 *
884 * @param int $prevNextId
885 */
886 public 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 CRM_Utils_Type::escapeAll($prevNextId, 'Positive');
896 $prevNextId = implode(', ', $prevNextId);
897 $query .= "WHERE cpc.id IN ({$prevNextId}) AND cpc.is_selected = 1";
898 }
899 else {
900 $prevNextId = CRM_Utils_Type::escape($prevNextId, 'Positive');
901 $query .= "WHERE cpc.id = $prevNextId";
902 }
903 CRM_Core_DAO::executeQuery($query);
904 CRM_Utils_JSON::output();
905 }
906
907 /**
908 * Used to store selected contacts across multiple pages in advanced search.
909 */
910 public static function selectUnselectContacts() {
911 $name = CRM_Utils_Array::value('name', $_REQUEST);
912 $cacheKey = CRM_Utils_Array::value('qfKey', $_REQUEST);
913 $state = CRM_Utils_Array::value('state', $_REQUEST, 'checked');
914 $variableType = CRM_Utils_Array::value('variableType', $_REQUEST, 'single');
915
916 $actionToPerform = CRM_Utils_Array::value('action', $_REQUEST, 'select');
917
918 if ($variableType == 'multiple') {
919 // action post value only works with multiple type variable
920 if ($name) {
921 //multiple names like mark_x_1-mark_x_2 where 1,2 are cids
922 $elements = explode('-', $name);
923 foreach ($elements as $key => $element) {
924 $elements[$key] = self::_convertToId($element);
925 }
926 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform, $elements);
927 }
928 else {
929 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform);
930 }
931 }
932 elseif ($variableType == 'single') {
933 $cId = self::_convertToId($name);
934 $action = ($state == 'checked') ? 'select' : 'unselect';
935 CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $action, $cId);
936 }
937 $contactIds = CRM_Core_BAO_PrevNextCache::getSelection($cacheKey);
938 $countSelectionCids = count($contactIds[$cacheKey]);
939
940 $arrRet = array('getCount' => $countSelectionCids);
941 CRM_Utils_JSON::output($arrRet);
942 }
943
944 /**
945 * @param string $name
946 *
947 * @return string
948 */
949 public static function _convertToId($name) {
950 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
951 $cId = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
952 }
953 return $cId;
954 }
955
956 public static function getAddressDisplay() {
957 $contactId = CRM_Utils_Request::retrieve('contact_id', 'Positive', CRM_Core_DAO::$_nullObject);
958 if (!$contactId) {
959 $addressVal["error_message"] = "no contact id found";
960 }
961 else {
962 $entityBlock = array(
963 'contact_id' => $contactId,
964 'entity_id' => $contactId,
965 );
966 $addressVal = CRM_Core_BAO_Address::getValues($entityBlock);
967 }
968
969 CRM_Utils_JSON::output($addressVal);
970 }
971
972 /**
973 * Mark dupe pairs as selected from un-selected state or vice-versa, in dupe cache table.
974 */
975 public static function toggleDedupeSelect() {
976 $rgid = CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer');
977 $gid = CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer');
978 $pnid = $_REQUEST['pnid'];
979 $isSelected = CRM_Utils_Type::escape($_REQUEST['is_selected'], 'Boolean');
980
981 $contactType = CRM_Core_DAO::getFieldValue('CRM_Dedupe_DAO_RuleGroup', $rgid, 'contact_type');
982 $cacheKeyString = "merge $contactType";
983 $cacheKeyString .= $rgid ? "_{$rgid}" : '_0';
984 $cacheKeyString .= $gid ? "_{$gid}" : '_0';
985
986 $params = array(
987 1 => array($isSelected, 'Boolean'),
988 3 => array("$cacheKeyString%", 'String'), // using % to address rows with conflicts as well
989 );
990
991 //check pnid is_array or integer
992 $whereClause = NULL;
993 if (is_array($pnid) && !CRM_Utils_Array::crmIsEmptyArray($pnid)) {
994 CRM_Utils_Type::escapeAll($pnid, 'Positive');
995 $pnid = implode(', ', $pnid);
996 $whereClause = " id IN ( {$pnid} ) ";
997 }
998 else {
999 $pnid = CRM_Utils_Type::escape($pnid, 'Integer');
1000 $whereClause = " id = %2";
1001 $params[2] = array($pnid, 'Integer');
1002 }
1003
1004 $sql = "UPDATE civicrm_prevnext_cache SET is_selected = %1 WHERE {$whereClause} AND cacheKey LIKE %3";
1005 CRM_Core_DAO::executeQuery($sql, $params);
1006
1007 CRM_Utils_System::civiExit();
1008 }
1009
1010 /**
1011 * Retrieve contact relationships.
1012 */
1013 public static function getContactRelationships() {
1014 $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
1015 $context = CRM_Utils_Type::escape($_GET['context'], 'String');
1016 $relationship_type_id = CRM_Utils_Type::escape(CRM_Utils_Array::value('relationship_type_id', $_GET), 'Integer', FALSE);
1017
1018 if (!CRM_Contact_BAO_Contact_Permission::allow($contactID)) {
1019 return CRM_Utils_System::permissionDenied();
1020 }
1021
1022 $params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
1023
1024 $params['contact_id'] = $contactID;
1025 $params['context'] = $context;
1026 if ($relationship_type_id) {
1027 $params['relationship_type_id'] = $relationship_type_id;
1028 }
1029
1030 // get the contact relationships
1031 $relationships = CRM_Contact_BAO_Relationship::getContactRelationshipSelector($params);
1032
1033 CRM_Utils_JSON::output($relationships);
1034 }
1035
1036 }