$cfID); $returnProperties = array('filter', 'data_type', 'is_active'); $cf = array(); CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $cf, $returnProperties); if (!$cf['id'] || !$cf['is_active'] || $cf['data_type'] != 'ContactReference') { CRM_Utils_System::civiExit('error'); } if (!empty($cf['filter'])) { $filterParams = array(); parse_str($cf['filter'], $filterParams); $action = CRM_Utils_Array::value('action', $filterParams); if (!empty($action) && !in_array($action, array('get', 'lookup')) ) { CRM_Utils_System::civiExit('error'); } } $list = array_keys(CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'contact_reference_options' ), '1'); $return = array_unique(array_merge(array('sort_name'), $list)); $limit = Civi::settings()->get('search_autocomplete_count'); $params = array('offset' => 0, 'rowCount' => $limit, 'version' => 3); foreach ($return as $fld) { $params["return.{$fld}"] = 1; } if (!empty($action)) { $excludeGet = array( 'reset', 'key', 'className', 'fnName', 'json', 'reset', 'context', 'timestamp', 'limit', 'id', 's', 'q', 'action', ); foreach ($_GET as $param => $val) { if (empty($val) || in_array($param, $excludeGet) || strpos($param, 'return.') !== FALSE || strpos($param, 'api.') !== FALSE ) { continue; } $params[$param] = $val; } } if ($name) { $params['sort_name'] = $name; } $params['sort'] = 'sort_name'; // tell api to skip permission chk. dgg $params['check_permissions'] = 0; // add filter variable to params if (!empty($filterParams)) { $params = array_merge($params, $filterParams); } $contact = civicrm_api('Contact', 'Get', $params); if (!empty($contact['is_error'])) { CRM_Utils_System::civiExit('error'); } $contactList = array(); foreach ($contact['values'] as $value) { $view = array(); foreach ($return as $fld) { if (!empty($value[$fld])) { $view[] = $value[$fld]; } } $contactList[] = array('id' => $value['id'], 'text' => implode(' :: ', $view)); } CRM_Utils_JSON::output($contactList); } /** * Fetch PCP ID by PCP Supporter sort_name, also displays PCP title and associated Contribution Page title */ public static function getPCPList() { $name = CRM_Utils_Array::value('term', $_GET); $name = CRM_Utils_Type::escape($name, 'String'); $limit = $max = Civi::settings()->get('search_autocomplete_count'); $where = ' AND pcp.page_id = cp.id AND pcp.contact_id = cc.id'; $config = CRM_Core_Config::singleton(); if ($config->includeWildCardInName) { $strSearch = "%$name%"; } else { $strSearch = "$name%"; } $includeEmailFrom = $includeNickName = ''; if ($config->includeNickNameInName) { $includeNickName = " OR nick_name LIKE '$strSearch'"; } if ($config->includeEmailInName) { $includeEmailFrom = "LEFT JOIN civicrm_email eml ON ( cc.id = eml.contact_id AND eml.is_primary = 1 )"; $whereClause = " WHERE ( email LIKE '$strSearch' OR sort_name LIKE '$strSearch' $includeNickName ) {$where} "; } else { $whereClause = " WHERE ( sort_name LIKE '$strSearch' $includeNickName ) {$where} "; } $offset = $count = 0; if (!empty($_GET['page_num'])) { $page = (int) $_GET['page_num']; $offset = $limit * ($page - 1); $limit++; } $select = 'cc.sort_name, pcp.title, cp.title'; $query = " SELECT id, data FROM ( SELECT pcp.id as id, CONCAT_WS( ' :: ', {$select} ) as data, sort_name FROM civicrm_pcp pcp, civicrm_contribution_page cp, civicrm_contact cc {$includeEmailFrom} {$whereClause} AND pcp.page_type = 'contribute' UNION ALL SELECT pcp.id as id, CONCAT_WS( ' :: ', {$select} ) as data, sort_name FROM civicrm_pcp pcp, civicrm_event cp, civicrm_contact cc {$includeEmailFrom} {$whereClause} AND pcp.page_type = 'event' ) t ORDER BY sort_name LIMIT $offset, $limit "; $dao = CRM_Core_DAO::executeQuery($query); $output = array('results' => array(), 'more' => FALSE); while ($dao->fetch()) { if (++$count > $max) { $output['more'] = TRUE; } else { $output['results'][] = array('id' => $dao->id, 'text' => $dao->data); } } CRM_Utils_JSON::output($output); } /** * @throws \CiviCRM_API3_Exception */ public static function relationship() { $relType = CRM_Utils_Request::retrieve('rel_type', 'String', CRM_Core_DAO::$_nullObject, TRUE); $relContactID = CRM_Utils_Request::retrieve('rel_contact', 'Positive', CRM_Core_DAO::$_nullObject, TRUE); $originalCid = CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject); $relationshipID = CRM_Utils_Request::retrieve('rel_id', 'Positive', CRM_Core_DAO::$_nullObject); $caseID = CRM_Utils_Request::retrieve('case_id', 'Positive', CRM_Core_DAO::$_nullObject, TRUE); if (!CRM_Case_BAO_Case::accessCase($caseID)) { CRM_Utils_System::permissionDenied(); } $ret = array('is_error' => 0); list($relTypeId, $b, $a) = explode('_', $relType); if ($relationshipID && $originalCid) { CRM_Case_BAO_Case::endCaseRole($caseID, $a, $originalCid, $relTypeId); } $clientList = CRM_Case_BAO_Case::getCaseClients($caseID); // Loop through multiple case clients foreach ($clientList as $i => $sourceContactID) { $result = civicrm_api3('relationship', 'create', array( 'case_id' => $caseID, 'relationship_type_id' => $relTypeId, "contact_id_$a" => $relContactID, "contact_id_$b" => $sourceContactID, 'start_date' => 'now', )); // Save activity only for the primary (first) client if ($i == 0 && empty($result['is_error'])) { CRM_Case_BAO_Case::createCaseRoleActivity($caseID, $result['id'], $relContactID); } } CRM_Utils_JSON::output($ret); } /** * Fetch the custom field help. */ public static function customField() { $fieldId = CRM_Utils_Type::escape($_REQUEST['id'], 'Integer'); $params = array('id' => $fieldId); $returnProperties = array('help_pre', 'help_post'); $values = array(); CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $values, $returnProperties); CRM_Utils_JSON::output($values); } public static function groupTree() { CRM_Utils_System::setHttpHeader('Content-Type', 'application/json'); $gids = CRM_Utils_Type::escape($_GET['gids'], 'String'); echo CRM_Contact_BAO_GroupNestingCache::json($gids); CRM_Utils_System::civiExit(); } /** * Delete custom value. */ public static function deleteCustomValue() { CRM_Utils_System::setHttpHeader('Content-Type', 'text/plain'); $customValueID = CRM_Utils_Type::escape($_REQUEST['valueID'], 'Positive'); $customGroupID = CRM_Utils_Type::escape($_REQUEST['groupID'], 'Positive'); $contactId = CRM_Utils_Request::retrieve('contactId', 'Positive', CRM_Core_DAO::$_nullObject); CRM_Core_BAO_CustomValue::deleteCustomValue($customValueID, $customGroupID); if ($contactId) { echo CRM_Contact_BAO_Contact::getCountComponent('custom_' . $customGroupID, $contactId); } CRM_Contact_BAO_GroupContactCache::opportunisticCacheFlush(); CRM_Utils_System::civiExit(); } /** * check the CMS username. */ static public function checkUserName() { $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), array('for', 'ts')); $sig = CRM_Utils_Request::retrieve('sig', 'String', CRM_Core_DAO::$_nullObject); $for = CRM_Utils_Request::retrieve('for', 'String', CRM_Core_DAO::$_nullObject); if ( CRM_Utils_Time::getTimeRaw() > $_REQUEST['ts'] + self::CHECK_USERNAME_TTL || $for != 'civicrm/ajax/cmsuser' || !$signer->validate($sig, $_REQUEST) ) { $user = array('name' => 'error'); CRM_Utils_JSON::output($user); } $config = CRM_Core_Config::singleton(); $username = trim(CRM_Utils_Array::value('cms_name', $_REQUEST)); $params = array('name' => $username); $errors = array(); $config->userSystem->checkUserNameEmailExists($params, $errors); if (isset($errors['cms_name']) || isset($errors['name'])) { //user name is not available $user = array('name' => 'no'); CRM_Utils_JSON::output($user); } else { //user name is available $user = array('name' => 'yes'); CRM_Utils_JSON::output($user); } // Not reachable: JSON::output() above exits. CRM_Utils_System::civiExit(); } /** * Function to get email address of a contact. */ public static function getContactEmail() { if (!empty($_REQUEST['contact_id'])) { $contactID = CRM_Utils_Type::escape($_REQUEST['contact_id'], 'Positive'); if (!CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) { return; } list($displayName, $userEmail ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($contactID); CRM_Utils_System::setHttpHeader('Content-Type', 'text/plain'); if ($userEmail) { echo $userEmail; } } else { $noemail = CRM_Utils_Array::value('noemail', $_GET); $queryString = NULL; $name = CRM_Utils_Array::value('name', $_GET); if ($name) { $name = CRM_Utils_Type::escape($name, 'String'); if ($noemail) { $queryString = " cc.sort_name LIKE '%$name%'"; } else { $queryString = " ( cc.sort_name LIKE '%$name%' OR ce.email LIKE '%$name%' ) "; } } else { $cid = CRM_Utils_Array::value('cid', $_GET); if ($cid) { //check cid for integer $contIDS = explode(',', $cid); foreach ($contIDS as $contID) { CRM_Utils_Type::escape($contID, 'Integer'); } $queryString = " cc.id IN ( $cid )"; } } if ($queryString) { $offset = CRM_Utils_Array::value('offset', $_GET, 0); $rowCount = Civi::settings()->get('search_autocomplete_count'); $offset = CRM_Utils_Type::escape($offset, 'Int'); // add acl clause here list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc'); if ($aclWhere) { $aclWhere = " AND $aclWhere"; } if ($noemail) { $query = " SELECT sort_name name, cc.id FROM civicrm_contact cc {$aclFrom} WHERE cc.is_deceased = 0 AND {$queryString} {$aclWhere} LIMIT {$offset}, {$rowCount} "; // send query to hook to be modified if needed CRM_Utils_Hook::contactListQuery($query, $name, CRM_Utils_Request::retrieve('context', 'String', CRM_Core_DAO::$_nullObject), CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject) ); $dao = CRM_Core_DAO::executeQuery($query); while ($dao->fetch()) { $result[] = array( 'id' => $dao->id, 'text' => $dao->name, ); } } else { $query = " SELECT sort_name name, ce.email, cc.id FROM civicrm_email ce INNER JOIN civicrm_contact cc ON cc.id = ce.contact_id {$aclFrom} WHERE ce.on_hold = 0 AND cc.is_deceased = 0 AND cc.do_not_email = 0 AND {$queryString} {$aclWhere} LIMIT {$offset}, {$rowCount} "; // send query to hook to be modified if needed CRM_Utils_Hook::contactListQuery($query, $name, CRM_Utils_Request::retrieve('context', 'String', CRM_Core_DAO::$_nullObject), CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject) ); $dao = CRM_Core_DAO::executeQuery($query); while ($dao->fetch()) { //working here $result[] = array( 'text' => '"' . $dao->name . '" <' . $dao->email . '>', 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>', ); } } if ($result) { CRM_Utils_JSON::output($result); } } } CRM_Utils_System::civiExit(); } public static function getContactPhone() { $queryString = NULL; //check for mobile type $phoneTypes = CRM_Core_OptionGroup::values('phone_type', TRUE, FALSE, FALSE, NULL, 'name'); $mobileType = CRM_Utils_Array::value('Mobile', $phoneTypes); $name = CRM_Utils_Array::value('name', $_GET); if ($name) { $name = CRM_Utils_Type::escape($name, 'String'); $queryString = " ( cc.sort_name LIKE '%$name%' OR cp.phone LIKE '%$name%' ) "; } else { $cid = CRM_Utils_Array::value('cid', $_GET); if ($cid) { //check cid for integer $contIDS = explode(',', $cid); foreach ($contIDS as $contID) { CRM_Utils_Type::escape($contID, 'Integer'); } $queryString = " cc.id IN ( $cid )"; } } if ($queryString) { $offset = CRM_Utils_Array::value('offset', $_GET, 0); $rowCount = CRM_Utils_Array::value('rowcount', $_GET, 20); $offset = CRM_Utils_Type::escape($offset, 'Int'); $rowCount = CRM_Utils_Type::escape($rowCount, 'Int'); // add acl clause here list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('cc'); if ($aclWhere) { $aclWhere = " AND $aclWhere"; } $query = " SELECT sort_name name, cp.phone, cc.id FROM civicrm_phone cp INNER JOIN civicrm_contact cc ON cc.id = cp.contact_id {$aclFrom} WHERE cc.is_deceased = 0 AND cc.do_not_sms = 0 AND cp.phone_type_id = {$mobileType} AND {$queryString} {$aclWhere} LIMIT {$offset}, {$rowCount} "; // send query to hook to be modified if needed CRM_Utils_Hook::contactListQuery($query, $name, CRM_Utils_Request::retrieve('context', 'String', CRM_Core_DAO::$_nullObject), CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject) ); $dao = CRM_Core_DAO::executeQuery($query); while ($dao->fetch()) { $result[] = array( 'text' => '"' . $dao->name . '" (' . $dao->phone . ')', 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->phone}" : '"' . $dao->name . '" <' . $dao->phone . '>', ); } } if ($result) { CRM_Utils_JSON::output($result); } CRM_Utils_System::civiExit(); } public static function buildSubTypes() { $parent = CRM_Utils_Request::retrieve('parentId', 'Positive', CRM_Core_DAO::$_nullObject); switch ($parent) { case 1: $contactType = 'Individual'; break; case 2: $contactType = 'Household'; break; case 4: $contactType = 'Organization'; break; } $subTypes = CRM_Contact_BAO_ContactType::subTypePairs($contactType, FALSE, NULL); asort($subTypes); CRM_Utils_JSON::output($subTypes); } public static function buildDedupeRules() { $parent = CRM_Utils_Request::retrieve('parentId', 'Positive', CRM_Core_DAO::$_nullObject); switch ($parent) { case 1: $contactType = 'Individual'; break; case 2: $contactType = 'Household'; break; case 4: $contactType = 'Organization'; break; } $dedupeRules = CRM_Dedupe_BAO_RuleGroup::getByType($contactType); CRM_Utils_JSON::output($dedupeRules); } /** * Function used for CiviCRM dashboard operations. */ public static function dashboard() { $operation = CRM_Utils_Type::escape($_REQUEST['op'], 'String'); switch ($operation) { case 'get_widgets_by_column': // This would normally be coming from either the database (this user's settings) or a default/initial dashboard configuration. // get contact id of logged in user $dashlets = CRM_Core_BAO_Dashboard::getContactDashlets(); break; case 'get_widget': $dashletID = CRM_Utils_Type::escape($_GET['id'], 'Positive'); $dashlets = CRM_Core_BAO_Dashboard::getDashletInfo($dashletID); break; case 'save_columns': CRM_Core_BAO_Dashboard::saveDashletChanges($_REQUEST['columns']); CRM_Utils_System::civiExit(); case 'delete_dashlet': $dashletID = CRM_Utils_Type::escape($_REQUEST['dashlet_id'], 'Positive'); CRM_Core_BAO_Dashboard::deleteDashlet($dashletID); CRM_Utils_System::civiExit(); } CRM_Utils_JSON::output($dashlets); } /** * Retrieve signature based on email id. */ public static function getSignature() { $emailID = CRM_Utils_Type::escape($_REQUEST['emailID'], 'Positive'); $query = "SELECT signature_text, signature_html FROM civicrm_email WHERE id = {$emailID}"; $dao = CRM_Core_DAO::executeQuery($query); $signatures = array(); while ($dao->fetch()) { $signatures = array( 'signature_text' => $dao->signature_text, 'signature_html' => $dao->signature_html, ); } CRM_Utils_JSON::output($signatures); } /** * Process dupes. */ public static function processDupes() { $oper = CRM_Utils_Type::escape($_REQUEST['op'], 'String'); $cid = CRM_Utils_Type::escape($_REQUEST['cid'], 'Positive'); $oid = CRM_Utils_Type::escape($_REQUEST['oid'], 'Positive'); if (!$oper || !$cid || !$oid) { return; } $exception = new CRM_Dedupe_DAO_Exception(); $exception->contact_id1 = $cid; $exception->contact_id2 = $oid; //make sure contact2 > contact1. if ($cid > $oid) { $exception->contact_id1 = $oid; $exception->contact_id2 = $cid; } $exception->find(TRUE); $status = NULL; if ($oper == 'dupe-nondupe') { $status = $exception->save(); } if ($oper == 'nondupe-dupe') { $status = $exception->delete(); } CRM_Utils_JSON::output(array('status' => ($status) ? $oper : $status)); } /** * Retrieve list of duplicate pairs from cache table. */ public static function getDedupes() { $offset = isset($_REQUEST['start']) ? CRM_Utils_Type::escape($_REQUEST['start'], 'Integer') : 0; $rowCount = isset($_REQUEST['length']) ? CRM_Utils_Type::escape($_REQUEST['length'], 'Integer') : 25; $gid = isset($_REQUEST['gid']) ? CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer') : 0; $rgid = isset($_REQUEST['rgid']) ? CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer') : 0; $selected = isset($_REQUEST['selected']) ? CRM_Utils_Type::escape($_REQUEST['selected'], 'Integer') : 0; if ($rowCount < 0) { $rowCount = 0; } $whereClause = $orderByClause = ''; $cacheKeyString = CRM_Dedupe_Merger::getMergeCacheKeyString($rgid, $gid); $searchRows = array(); $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'); foreach ($_REQUEST['columns'] as $columnInfo) { if (!empty($columnInfo['search']['value'])) { ${$columnInfo['data']} = CRM_Utils_Type::escape($columnInfo['search']['value'], 'String'); } } $join = ''; $where = array(); $searchData = CRM_Utils_Array::value('search', $_REQUEST); $searchData['value'] = CRM_Utils_Type::escape($searchData['value'], 'String'); if (!empty($src) || !empty($searchData['value'])) { $src = $src ? $src : $searchData['value']; $where[] = " cc1.display_name LIKE '%{$src}%'"; } if (!empty($dst) || !empty($searchData['value'])) { $dst = $dst ? $dst : $searchData['value']; $where[] = " cc2.display_name LIKE '%{$dst}%'"; } if (!empty($src_email) || !empty($searchData['value'])) { $src_email = $src_email ? $src_email : $searchData['value']; $where[] = " (ce1.is_primary = 1 AND ce1.email LIKE '%{$src_email}%')"; } if (!empty($dst_email) || !empty($searchData['value'])) { $dst_email = $dst_email ? $dst_email : $searchData['value']; $where[] = " (ce2.is_primary = 1 AND ce2.email LIKE '%{$dst_email}%')"; } if (!empty($src_postcode) || !empty($searchData['value'])) { $src_postcode = $src_postcode ? $src_postcode : $searchData['value']; $where[] = " (ca1.is_primary = 1 AND ca1.postal_code LIKE '%{$src_postcode}%')"; } if (!empty($dst_postcode) || !empty($searchData['value'])) { $dst_postcode = $dst_postcode ? $dst_postcode : $searchData['value']; $where[] = " (ca2.is_primary = 1 AND ca2.postal_code LIKE '%{$dst_postcode}%')"; } if (!empty($src_street) || !empty($searchData['value'])) { $src_street = $src_street ? $src_street : $searchData['value']; $where[] = " (ca1.is_primary = 1 AND ca1.street_address LIKE '%{$src_street}%')"; } if (!empty($dst_street) || !empty($searchData['value'])) { $dst_street = $dst_street ? $dst_street : $searchData['value']; $where[] = " (ca2.is_primary = 1 AND ca2.street_address LIKE '%{$dst_street}%')"; } if (!empty($searchData['value'])) { $whereClause = ' ( ' . implode(' OR ', $where) . ' ) '; } else { if (!empty($where)) { $whereClause = implode(' AND ', $where); } } $whereClause .= $whereClause ? ' AND de.id IS NULL' : ' de.id IS NULL'; if ($selected) { $whereClause .= ' AND pn.is_selected = 1'; } $join .= CRM_Dedupe_Merger::getJoinOnDedupeTable(); $select = array( 'cc1.contact_type' => 'src_contact_type', 'cc1.display_name' => 'src_display_name', 'cc1.contact_sub_type' => 'src_contact_sub_type', 'cc2.contact_type' => 'dst_contact_type', 'cc2.display_name' => 'dst_display_name', 'cc2.contact_sub_type' => 'dst_contact_sub_type', 'ce1.email' => 'src_email', 'ce2.email' => 'dst_email', 'ca1.postal_code' => 'src_postcode', 'ca2.postal_code' => 'dst_postcode', 'ca1.street_address' => 'src_street', 'ca2.street_address' => 'dst_street', ); if ($select) { $join .= " INNER JOIN civicrm_contact cc1 ON cc1.id = pn.entity_id1"; $join .= " INNER JOIN civicrm_contact cc2 ON cc2.id = pn.entity_id2"; $join .= " LEFT JOIN civicrm_email ce1 ON (ce1.contact_id = pn.entity_id1 AND ce1.is_primary = 1 )"; $join .= " LEFT JOIN civicrm_email ce2 ON (ce2.contact_id = pn.entity_id2 AND ce2.is_primary = 1 )"; $join .= " LEFT JOIN civicrm_address ca1 ON (ca1.contact_id = pn.entity_id1 AND ca1.is_primary = 1 )"; $join .= " LEFT JOIN civicrm_address ca2 ON (ca2.contact_id = pn.entity_id2 AND ca2.is_primary = 1 )"; } $iTotal = CRM_Core_BAO_PrevNextCache::getCount($cacheKeyString, $join, $whereClause); if (!empty($_REQUEST['order'])) { foreach ($_REQUEST['order'] as $orderInfo) { if (!empty($orderInfo['column'])) { $orderColumnNumber = $orderInfo['column']; $dir = $orderInfo['dir']; } } $columnDetails = CRM_Utils_Array::value($orderColumnNumber, $_REQUEST['columns']); } if (!empty($columnDetails)) { switch ($columnDetails['data']) { case 'src': $orderByClause = " ORDER BY cc1.display_name {$dir}"; break; case 'src_email': $orderByClause = " ORDER BY ce1.email {$dir}"; break; case 'src_street': $orderByClause = " ORDER BY ca1.street_address {$dir}"; break; case 'src_postcode': $orderByClause = " ORDER BY ca1.postal_code {$dir}"; break; case 'dst': $orderByClause = " ORDER BY cc2.display_name {$dir}"; break; case 'dst_email': $orderByClause = " ORDER BY ce2.email {$dir}"; break; case 'dst_street': $orderByClause = " ORDER BY ca2.street_address {$dir}"; break; case 'dst_postcode': $orderByClause = " ORDER BY ca2.postal_code {$dir}"; break; default: break; } } $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString, $join, $whereClause, $offset, $rowCount, $select, $orderByClause); $iFilteredTotal = CRM_Core_DAO::singleValueQuery("SELECT FOUND_ROWS()"); $count = 0; foreach ($dupePairs as $key => $pairInfo) { $pair =& $pairInfo['data']; $srcContactSubType = CRM_Utils_Array::value('src_contact_sub_type', $pairInfo); $dstContactSubType = CRM_Utils_Array::value('dst_contact_sub_type', $pairInfo); $srcTypeImage = CRM_Contact_BAO_Contact_Utils::getImage($srcContactSubType ? $srcContactSubType : $pairInfo['src_contact_type'], FALSE, $pairInfo['entity_id1'] ); $dstTypeImage = CRM_Contact_BAO_Contact_Utils::getImage($dstContactSubType ? $dstContactSubType : $pairInfo['dst_contact_type'], FALSE, $pairInfo['entity_id2'] ); $searchRows[$count]['is_selected'] = $pairInfo['is_selected']; $searchRows[$count]['is_selected_input'] = ""; $searchRows[$count]['src_image'] = $srcTypeImage; $searchRows[$count]['src'] = CRM_Utils_System::href($pair['srcName'], 'civicrm/contact/view', "reset=1&cid={$pairInfo['entity_id1']}"); $searchRows[$count]['src_email'] = CRM_Utils_Array::value('src_email', $pairInfo); $searchRows[$count]['src_street'] = CRM_Utils_Array::value('src_street', $pairInfo); $searchRows[$count]['src_postcode'] = CRM_Utils_Array::value('src_postcode', $pairInfo); $searchRows[$count]['dst_image'] = $dstTypeImage; $searchRows[$count]['dst'] = CRM_Utils_System::href($pair['dstName'], 'civicrm/contact/view', "reset=1&cid={$pairInfo['entity_id2']}"); $searchRows[$count]['dst_email'] = CRM_Utils_Array::value('dst_email', $pairInfo); $searchRows[$count]['dst_street'] = CRM_Utils_Array::value('dst_street', $pairInfo); $searchRows[$count]['dst_postcode'] = CRM_Utils_Array::value('dst_postcode', $pairInfo); $searchRows[$count]['conflicts'] = str_replace("',", "',
", CRM_Utils_Array::value('conflicts', $pair)); $searchRows[$count]['weight'] = CRM_Utils_Array::value('weight', $pair); if (!empty($pairInfo['data']['canMerge'])) { $mergeParams = "reset=1&cid={$pairInfo['entity_id1']}&oid={$pairInfo['entity_id2']}&action=update&rgid={$rgid}"; if ($gid) { $mergeParams .= "&gid={$gid}"; } $searchRows[$count]['actions'] = "" . ts('flip') . " | "; $searchRows[$count]['actions'] .= CRM_Utils_System::href(ts('merge'), 'civicrm/contact/merge', $mergeParams); $searchRows[$count]['actions'] .= " | " . ts('not a duplicate') . ""; } else { $searchRows[$count]['actions'] = '' . ts('Insufficient access rights - cannot merge') . ''; } $count++; } $dupePairs = array( 'data' => $searchRows, 'recordsTotal' => $iTotal, 'recordsFiltered' => $iFilteredTotal, ); if (!empty($_REQUEST['is_unit_test'])) { return $dupePairs; } CRM_Utils_JSON::output($dupePairs); } /** * Retrieve a PDF Page Format for the PDF Letter form. */ public function pdfFormat() { $formatId = CRM_Utils_Type::escape($_REQUEST['formatId'], 'Integer'); $pdfFormat = CRM_Core_BAO_PdfFormat::getById($formatId); CRM_Utils_JSON::output($pdfFormat); } /** * Retrieve Paper Size dimensions. */ public static function paperSize() { $paperSizeName = CRM_Utils_Type::escape($_REQUEST['paperSizeName'], 'String'); $paperSize = CRM_Core_BAO_PaperSize::getByName($paperSizeName); CRM_Utils_JSON::output($paperSize); } /** * Swap contacts in a dupe pair i.e main with duplicate contact. * * @param int $prevNextId */ public static function flipDupePairs($prevNextId = NULL) { if (!$prevNextId) { // @todo figure out if this is always POST & specify that rather than inexact GET $prevNextId = CRM_Utils_Request::retrieve('pnid', 'Integer'); } $onlySelected = FALSE; if (is_array($prevNextId) && !CRM_Utils_Array::crmIsEmptyArray($prevNextId)) { $onlySelected = TRUE; } $prevNextId = CRM_Utils_Type::escapeAll((array) $prevNextId, 'Positive'); CRM_Core_BAO_PrevNextCache::flipPair($prevNextId, $onlySelected); CRM_Utils_JSON::output(); } /** * Used to store selected contacts across multiple pages in advanced search. */ public static function selectUnselectContacts() { $name = CRM_Utils_Array::value('name', $_REQUEST); $cacheKey = CRM_Utils_Array::value('qfKey', $_REQUEST); $state = CRM_Utils_Array::value('state', $_REQUEST, 'checked'); $variableType = CRM_Utils_Array::value('variableType', $_REQUEST, 'single'); $actionToPerform = CRM_Utils_Array::value('action', $_REQUEST, 'select'); if ($variableType == 'multiple') { // action post value only works with multiple type variable if ($name) { //multiple names like mark_x_1-mark_x_2 where 1,2 are cids $elements = explode('-', $name); foreach ($elements as $key => $element) { $elements[$key] = self::_convertToId($element); } CRM_Utils_Type::escapeAll($elements, 'Integer'); CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform, $elements); } else { CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform); } } elseif ($variableType == 'single') { $cId = self::_convertToId($name); CRM_Utils_Type::escape($cId, 'Integer'); $action = ($state == 'checked') ? 'select' : 'unselect'; CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $action, $cId); } $contactIds = CRM_Core_BAO_PrevNextCache::getSelection($cacheKey); $countSelectionCids = count($contactIds[$cacheKey]); $arrRet = array('getCount' => $countSelectionCids); CRM_Utils_JSON::output($arrRet); } /** * @param string $name * * @return string */ public static function _convertToId($name) { if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) { $cId = substr($name, CRM_Core_Form::CB_PREFIX_LEN); } return $cId; } public static function getAddressDisplay() { $contactId = CRM_Utils_Request::retrieve('contact_id', 'Positive', CRM_Core_DAO::$_nullObject); if (!$contactId) { $addressVal["error_message"] = "no contact id found"; } else { $entityBlock = array( 'contact_id' => $contactId, 'entity_id' => $contactId, ); $addressVal = CRM_Core_BAO_Address::getValues($entityBlock); } CRM_Utils_JSON::output($addressVal); } /** * Mark dupe pairs as selected from un-selected state or vice-versa, in dupe cache table. */ public static function toggleDedupeSelect() { $rgid = CRM_Utils_Type::escape($_REQUEST['rgid'], 'Integer'); $gid = CRM_Utils_Type::escape($_REQUEST['gid'], 'Integer'); $pnid = $_REQUEST['pnid']; $isSelected = CRM_Utils_Type::escape($_REQUEST['is_selected'], 'Boolean'); $cacheKeyString = CRM_Dedupe_Merger::getMergeCacheKeyString($rgid, $gid); $params = array( 1 => array($isSelected, 'Boolean'), 3 => array("$cacheKeyString%", 'String'), // using % to address rows with conflicts as well ); //check pnid is_array or integer $whereClause = NULL; if (is_array($pnid) && !CRM_Utils_Array::crmIsEmptyArray($pnid)) { CRM_Utils_Type::escapeAll($pnid, 'Positive'); $pnid = implode(', ', $pnid); $whereClause = " id IN ( {$pnid} ) "; } else { $pnid = CRM_Utils_Type::escape($pnid, 'Integer'); $whereClause = " id = %2"; $params[2] = array($pnid, 'Integer'); } $sql = "UPDATE civicrm_prevnext_cache SET is_selected = %1 WHERE {$whereClause} AND cacheKey LIKE %3"; CRM_Core_DAO::executeQuery($sql, $params); CRM_Utils_System::civiExit(); } /** * Retrieve contact relationships. */ public static function getContactRelationships() { $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer'); $context = CRM_Utils_Type::escape($_GET['context'], 'String'); $relationship_type_id = CRM_Utils_Type::escape(CRM_Utils_Array::value('relationship_type_id', $_GET), 'Integer', FALSE); if (!CRM_Contact_BAO_Contact_Permission::allow($contactID)) { return CRM_Utils_System::permissionDenied(); } $params = CRM_Core_Page_AJAX::defaultSortAndPagerParams(); $params['contact_id'] = $contactID; $params['context'] = $context; if ($relationship_type_id) { $params['relationship_type_id'] = $relationship_type_id; } // get the contact relationships $relationships = CRM_Contact_BAO_Relationship::getContactRelationshipSelector($params); CRM_Utils_JSON::output($relationships); } }