3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This class generates form components for DedupeRules
40 class CRM_Contact_Form_DedupeRules
extends CRM_Admin_Form
{
41 CONST RULES_COUNT
= 5;
42 protected $_contactType;
43 protected $_defaults = array();
44 protected $_fields = array();
53 function preProcess() {
54 // Ensure user has permission to be here
55 if (!CRM_Core_Permission
::check('administer dedupe rules')) {
56 CRM_Utils_System
::permissionDenied();
57 CRM_Utils_System
::civiExit();
59 $this->_options
= CRM_Core_SelectValues
::getDedupeRuleTypes();
60 $this->_rgid
= CRM_Utils_Request
::retrieve('id', 'Positive', $this, FALSE, 0);
61 $this->_contactType
= CRM_Utils_Request
::retrieve('contact_type', 'String', $this, FALSE, 0);
63 $rgDao = new CRM_Dedupe_DAO_RuleGroup();
64 $rgDao->id
= $this->_rgid
;
67 $this->_defaults
['threshold'] = $rgDao->threshold
;
68 $this->_contactType
= $rgDao->contact_type
;
69 $this->_defaults
['used'] = CRM_Utils_Array
::key($rgDao->used
, $this->_options
);
70 $this->_defaults
['title'] = $rgDao->title
;
71 $this->_defaults
['name'] = $rgDao->name
;
72 $this->_defaults
['is_reserved'] = $rgDao->is_reserved
;
73 $this->assign('isReserved', $rgDao->is_reserved
);
74 $this->assign('ruleName', $rgDao->name
);
75 $ruleDao = new CRM_Dedupe_DAO_Rule();
76 $ruleDao->dedupe_rule_group_id
= $this->_rgid
;
79 while ($ruleDao->fetch()) {
80 $this->_defaults
["where_$count"] = "{$ruleDao->rule_table}.{$ruleDao->rule_field}";
81 $this->_defaults
["length_$count"] = $ruleDao->rule_length
;
82 $this->_defaults
["weight_$count"] = $ruleDao->rule_weight
;
86 $supported = CRM_Dedupe_BAO_RuleGroup
::supportedFields($this->_contactType
);
87 if (is_array($supported)) {
88 foreach ($supported as $table => $fields) {
89 foreach ($fields as $field => $title) {
90 $this->_fields
["$table.$field"] = $title;
94 asort($this->_fields
);
98 * Build the form object
103 public function buildQuickForm() {
104 $foo = CRM_Core_DAO
::getAttribute('CRM_Dedupe_DAO_Rule', 'title');
106 $this->add('text', 'title', ts('Rule Name'), array('maxlength' => 255, 'class' => 'huge'), TRUE);
107 $this->addRule('title', ts('A duplicate matching rule with this name already exists. Please select another name.'),
108 'objectExists', array('CRM_Dedupe_DAO_RuleGroup', $this->_rgid
, 'title')
111 $this->addRadio('used', ts('Usage'), $this->_options
, NULL, NULL, TRUE);
114 $reserved = $this->add('checkbox', 'is_reserved', ts('Reserved?'));
115 if (!empty($this->_defaults
['is_reserved'])) {
117 $disabled = array('disabled' => TRUE);
120 $attributes = array('class' => 'two');
121 if (!empty($disabled)) {
122 $attributes = array_merge($attributes, $disabled);
125 for ($count = 0; $count < self
::RULES_COUNT
; $count++
) {
126 $this->add('select', "where_$count", ts('Field'),
128 NULL => ts('- none -')
129 ) +
$this->_fields
, FALSE, $disabled
131 $this->add('text', "length_$count", ts('Length'), $attributes);
132 $this->add('text', "weight_$count", ts('Weight'), $attributes);
135 $this->add('text', 'threshold', ts("Weight Threshold to Consider Contacts 'Matching':"), $attributes);
137 $this->assign('contact_type', $this->_contactType
);
139 $this->addFormRule(array('CRM_Contact_Form_DedupeRules', 'formRule'), $this);
141 parent
::buildQuickForm();
145 * Global validation rules for the form
147 * @param array $fields posted values of the form
152 * @return array list of errors to be posted back to the form
156 static function formRule($fields, $files, $self) {
158 if (!empty($fields['is_reserved'])) {
162 $fieldSelected = FALSE;
163 for ($count = 0; $count < self
::RULES_COUNT
; $count++
) {
164 if (!empty($fields["where_$count"])) {
165 $fieldSelected = TRUE;
170 if (!$fieldSelected) {
171 $errors['_qf_default'] = ts('Please select at least one field.');
174 return empty($errors) ?
TRUE : $errors;
178 * Set default values for the form. MobileProvider that in edit/view mode
179 * the default values are retrieved from the database
188 function setDefaultValues() {
189 return $this->_defaults
;
193 * Process the form submission
199 public function postProcess() {
200 $values = $this->exportValues();
202 //FIXME: Handle logic to replace is_default column by usage
203 // reset used column to General (since there can only
204 // be one 'Supervised' or 'Unsupervised' rule)
205 if ($values['used'] != 'General') {
207 UPDATE civicrm_dedupe_rule_group
209 WHERE contact_type = %1
211 $queryParams = array(
212 1 => array($this->_contactType
, 'String'),
213 2 => array($values['used'], 'String'),
216 CRM_Core_DAO
::executeQuery($query, $queryParams);
219 $rgDao = new CRM_Dedupe_DAO_RuleGroup();
220 if ($this->_action
& CRM_Core_Action
::UPDATE
) {
221 $rgDao->id
= $this->_rgid
;
224 $rgDao->title
= $values['title'];
225 $rgDao->is_reserved
= CRM_Utils_Array
::value('is_reserved', $values, FALSE);
226 $rgDao->used
= $values['used'];
227 $rgDao->contact_type
= $this->_contactType
;
228 $rgDao->threshold
= $values['threshold'];
231 // make sure name is set only during insert
232 if ($this->_action
& CRM_Core_Action
::ADD
) {
233 // generate name based on title
234 $rgDao->name
= CRM_Utils_String
::titleToVar($values['title']) . "_{$rgDao->id}";
238 // lets skip updating of fields for reserved dedupe group
239 if ($rgDao->is_reserved
) {
240 CRM_Core_Session
::setStatus(ts("The rule '%1' has been saved.", array(1 => $rgDao->title
)), ts('Saved'), 'success');
244 $ruleDao = new CRM_Dedupe_DAO_Rule();
245 $ruleDao->dedupe_rule_group_id
= $rgDao->id
;
249 $substrLenghts = array();
252 $daoObj = new CRM_Core_DAO();
253 $database = $daoObj->database();
254 for ($count = 0; $count < self
::RULES_COUNT
; $count++
) {
255 if (empty($values["where_$count"])) {
258 list($table, $field) = explode('.', CRM_Utils_Array
::value("where_$count", $values));
259 $length = !empty($values["length_$count"]) ? CRM_Utils_Array
::value("length_$count", $values) : NULL;
260 $weight = $values["weight_$count"];
261 if ($table and $field) {
262 $ruleDao = new CRM_Dedupe_DAO_Rule();
263 $ruleDao->dedupe_rule_group_id
= $rgDao->id
;
264 $ruleDao->rule_table
= $table;
265 $ruleDao->rule_field
= $field;
266 $ruleDao->rule_length
= $length;
267 $ruleDao->rule_weight
= $weight;
271 if (!array_key_exists($table, $tables)) {
272 $tables[$table] = array();
274 $tables[$table][] = $field;
277 // CRM-6245: we must pass table/field/length triples to the createIndexes() call below
279 if (!isset($substrLenghts[$table])) {
280 $substrLenghts[$table] = array();
283 //CRM-13417 to avoid fatal error "Incorrect prefix key; the used key part isn't a string, the used length is longer than the key part, or the storage engine doesn't support unique prefix keys, 1089"
284 $schemaQuery = "SELECT * FROM INFORMATION_SCHEMA.COLUMNS
285 WHERE TABLE_SCHEMA = '{$database}' AND
286 TABLE_NAME = '{$table}' AND COLUMN_NAME = '{$field}';";
287 $dao = CRM_Core_DAO
::executeQuery($schemaQuery);
290 // set the length to null for all the fields where prefix length is not supported. eg. int,tinyint,date,enum etc dataTypes.
291 if ($dao->COLUMN_NAME
== $field && !in_array($dao->DATA_TYPE
, array('char', 'varchar', 'binary', 'varbinary', 'text', 'blob'))) {
294 elseif ($dao->COLUMN_NAME
== $field && !empty($dao->CHARACTER_MAXIMUM_LENGTH
) && ($length > $dao->CHARACTER_MAXIMUM_LENGTH
)) {
295 //set the length to CHARACTER_MAXIMUM_LENGTH in case the length provided by the user is greater than the limit
296 $length = $dao->CHARACTER_MAXIMUM_LENGTH
;
299 $substrLenghts[$table][$field] = $length;
303 // also create an index for this dedupe rule
305 CRM_Utils_Hook
::dupeQuery($ruleDao, 'dedupeIndexes', $tables);
306 CRM_Core_BAO_SchemaHandler
::createIndexes($tables, 'dedupe_index', $substrLenghts);
308 //need to clear cache of deduped contacts
309 //based on the previous rule
310 $cacheKey = "merge {$this->_contactType}_{$this->_rgid}_%";
312 CRM_Core_BAO_PrevNextCache
::deleteItem(NULL, $cacheKey);
314 CRM_Core_Session
::setStatus(ts("The rule '%1' has been saved.", array(1 => $rgDao->title
)), ts('Saved'), 'success');