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