Merge pull request #6824 from eileenmcnaughton/CRM-17293
[civicrm-core.git] / CRM / Contact / Form / DedupeRules.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for DedupeRules
38 *
39 */
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();
45 protected $_rgid;
46
47 /**
48 * Pre processing.
49 *
50 * @return void
51 */
52 public function preProcess() {
53 // Ensure user has permission to be here
54 if (!CRM_Core_Permission::check('administer dedupe rules')) {
55 CRM_Utils_System::permissionDenied();
56 CRM_Utils_System::civiExit();
57 }
58 $this->_options = CRM_Core_SelectValues::getDedupeRuleTypes();
59 $this->_rgid = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0);
60 $this->_contactType = CRM_Utils_Request::retrieve('contact_type', 'String', $this, FALSE, 0);
61 if ($this->_rgid) {
62 $rgDao = new CRM_Dedupe_DAO_RuleGroup();
63 $rgDao->id = $this->_rgid;
64 $rgDao->find(TRUE);
65
66 $this->_defaults['threshold'] = $rgDao->threshold;
67 $this->_contactType = $rgDao->contact_type;
68 $this->_defaults['used'] = CRM_Utils_Array::key($rgDao->used, $this->_options);
69 $this->_defaults['title'] = $rgDao->title;
70 $this->_defaults['name'] = $rgDao->name;
71 $this->_defaults['is_reserved'] = $rgDao->is_reserved;
72 $this->assign('isReserved', $rgDao->is_reserved);
73 $this->assign('ruleName', $rgDao->name);
74 $ruleDao = new CRM_Dedupe_DAO_Rule();
75 $ruleDao->dedupe_rule_group_id = $this->_rgid;
76 $ruleDao->find();
77 $count = 0;
78 while ($ruleDao->fetch()) {
79 $this->_defaults["where_$count"] = "{$ruleDao->rule_table}.{$ruleDao->rule_field}";
80 $this->_defaults["length_$count"] = $ruleDao->rule_length;
81 $this->_defaults["weight_$count"] = $ruleDao->rule_weight;
82 $count++;
83 }
84 }
85 $supported = CRM_Dedupe_BAO_RuleGroup::supportedFields($this->_contactType);
86 if (is_array($supported)) {
87 foreach ($supported as $table => $fields) {
88 foreach ($fields as $field => $title) {
89 $this->_fields["$table.$field"] = $title;
90 }
91 }
92 }
93 asort($this->_fields);
94 }
95
96 /**
97 * Build the form object.
98 *
99 * @return void
100 */
101 public function buildQuickForm() {
102 $foo = CRM_Core_DAO::getAttribute('CRM_Dedupe_DAO_Rule', 'title');
103
104 $this->add('text', 'title', ts('Rule Name'), array('maxlength' => 255, 'class' => 'huge'), TRUE);
105 $this->addRule('title', ts('A duplicate matching rule with this name already exists. Please select another name.'),
106 'objectExists', array('CRM_Dedupe_DAO_RuleGroup', $this->_rgid, 'title')
107 );
108
109 $this->addRadio('used', ts('Usage'), $this->_options, NULL, NULL, TRUE);
110
111 $disabled = array();
112 $reserved = $this->add('checkbox', 'is_reserved', ts('Reserved?'));
113 if (!empty($this->_defaults['is_reserved'])) {
114 $reserved->freeze();
115 $disabled = array('disabled' => TRUE);
116 }
117
118 $attributes = array('class' => 'two');
119 if (!empty($disabled)) {
120 $attributes = array_merge($attributes, $disabled);
121 }
122
123 for ($count = 0; $count < self::RULES_COUNT; $count++) {
124 $this->add('select', "where_$count", ts('Field'),
125 array(
126 NULL => ts('- none -'),
127 ) + $this->_fields, FALSE, $disabled
128 );
129 $this->add('text', "length_$count", ts('Length'), $attributes);
130 $this->add('text', "weight_$count", ts('Weight'), $attributes);
131 }
132
133 $this->add('text', 'threshold', ts("Weight Threshold to Consider Contacts 'Matching':"), $attributes);
134
135 $this->assign('contact_type', $this->_contactType);
136
137 $this->addFormRule(array('CRM_Contact_Form_DedupeRules', 'formRule'), $this);
138
139 parent::buildQuickForm();
140 }
141
142 /**
143 * Global validation rules for the form.
144 *
145 * @param array $fields
146 * Posted values of the form.
147 *
148 * @param $files
149 * @param $self
150 *
151 * @return array
152 * list of errors to be posted back to the form
153 */
154 public static function formRule($fields, $files, $self) {
155 $errors = array();
156 $fieldSelected = FALSE;
157 for ($count = 0; $count < self::RULES_COUNT; $count++) {
158 if (!empty($fields["where_$count"]) || (isset($self->_defaults['is_reserved']) && !empty($self->_defaults["where_$count"]))) {
159 $fieldSelected = TRUE;
160 break;
161 }
162 }
163
164 if (!$fieldSelected) {
165 $errors['_qf_default'] = ts('Please select at least one field.');
166 }
167
168 return empty($errors) ? TRUE : $errors;
169 }
170
171 /**
172 * Set default values for the form. MobileProvider that in edit/view mode
173 * the default values are retrieved from the database
174 *
175 *
176 * @return array
177 */
178 /**
179 * @return array
180 */
181 public function setDefaultValues() {
182 return $this->_defaults;
183 }
184
185 /**
186 * Process the form submission.
187 *
188 *
189 * @return void
190 */
191 public function postProcess() {
192 $values = $this->exportValues();
193
194 //FIXME: Handle logic to replace is_default column by usage
195 // reset used column to General (since there can only
196 // be one 'Supervised' or 'Unsupervised' rule)
197 if ($values['used'] != 'General') {
198 $query = "
199 UPDATE civicrm_dedupe_rule_group
200 SET used = 'General'
201 WHERE contact_type = %1
202 AND used = %2";
203 $queryParams = array(
204 1 => array($this->_contactType, 'String'),
205 2 => array($values['used'], 'String'),
206 );
207
208 CRM_Core_DAO::executeQuery($query, $queryParams);
209 }
210
211 $rgDao = new CRM_Dedupe_DAO_RuleGroup();
212 if ($this->_action & CRM_Core_Action::UPDATE) {
213 $rgDao->id = $this->_rgid;
214 }
215
216 $rgDao->title = $values['title'];
217 $rgDao->is_reserved = CRM_Utils_Array::value('is_reserved', $values, FALSE);
218 $rgDao->used = $values['used'];
219 $rgDao->contact_type = $this->_contactType;
220 $rgDao->threshold = $values['threshold'];
221 $rgDao->save();
222
223 // make sure name is set only during insert
224 if ($this->_action & CRM_Core_Action::ADD) {
225 // generate name based on title
226 $rgDao->name = CRM_Utils_String::titleToVar($values['title']) . "_{$rgDao->id}";
227 $rgDao->save();
228 }
229
230 // lets skip updating of fields for reserved dedupe group
231 if (isset($this->_defaults['is_reserved'])) {
232 CRM_Core_Session::setStatus(ts("The rule '%1' has been saved.", array(1 => $rgDao->title)), ts('Saved'), 'success');
233 return;
234 }
235
236 $ruleDao = new CRM_Dedupe_DAO_Rule();
237 $ruleDao->dedupe_rule_group_id = $rgDao->id;
238 $ruleDao->delete();
239 $ruleDao->free();
240
241 $substrLenghts = array();
242
243 $tables = array();
244 $daoObj = new CRM_Core_DAO();
245 $database = $daoObj->database();
246 for ($count = 0; $count < self::RULES_COUNT; $count++) {
247 if (empty($values["where_$count"])) {
248 continue;
249 }
250 list($table, $field) = explode('.', CRM_Utils_Array::value("where_$count", $values));
251 $length = !empty($values["length_$count"]) ? CRM_Utils_Array::value("length_$count", $values) : NULL;
252 $weight = $values["weight_$count"];
253 if ($table and $field) {
254 $ruleDao = new CRM_Dedupe_DAO_Rule();
255 $ruleDao->dedupe_rule_group_id = $rgDao->id;
256 $ruleDao->rule_table = $table;
257 $ruleDao->rule_field = $field;
258 $ruleDao->rule_length = $length;
259 $ruleDao->rule_weight = $weight;
260 $ruleDao->save();
261 $ruleDao->free();
262
263 if (!array_key_exists($table, $tables)) {
264 $tables[$table] = array();
265 }
266 $tables[$table][] = $field;
267 }
268
269 // CRM-6245: we must pass table/field/length triples to the createIndexes() call below
270 if ($length) {
271 if (!isset($substrLenghts[$table])) {
272 $substrLenghts[$table] = array();
273 }
274
275 //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"
276 $schemaQuery = "SELECT * FROM INFORMATION_SCHEMA.COLUMNS
277 WHERE TABLE_SCHEMA = '{$database}' AND
278 TABLE_NAME = '{$table}' AND COLUMN_NAME = '{$field}';";
279 $dao = CRM_Core_DAO::executeQuery($schemaQuery);
280
281 if ($dao->fetch()) {
282 // set the length to null for all the fields where prefix length is not supported. eg. int,tinyint,date,enum etc dataTypes.
283 if ($dao->COLUMN_NAME == $field && !in_array($dao->DATA_TYPE, array(
284 'char',
285 'varchar',
286 'binary',
287 'varbinary',
288 'text',
289 'blob',
290 ))
291 ) {
292 $length = NULL;
293 }
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;
297 }
298 }
299 $substrLenghts[$table][$field] = $length;
300 }
301 }
302
303 // also create an index for this dedupe rule
304 // CRM-3837
305 CRM_Utils_Hook::dupeQuery($ruleDao, 'dedupeIndexes', $tables);
306 CRM_Core_BAO_SchemaHandler::createIndexes($tables, 'dedupe_index', $substrLenghts);
307
308 //need to clear cache of deduped contacts
309 //based on the previous rule
310 $cacheKey = "merge {$this->_contactType}_{$this->_rgid}_%";
311
312 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey);
313
314 CRM_Core_Session::setStatus(ts("The rule '%1' has been saved.", array(1 => $rgDao->title)), ts('Saved'), 'success');
315 }
316
317 }