enable matching on contact phone when importing contributions
[civicrm-core.git] / CRM / Dedupe / BAO / RuleGroup.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 * $Id$
17 *
18 */
19
20/**
21 * The CiviCRM duplicate discovery engine is based on an
22 * algorithm designed by David Strauss <david@fourkitchens.com>.
23 */
24class CRM_Dedupe_BAO_RuleGroup extends CRM_Dedupe_DAO_RuleGroup {
25
26 /**
100fef9d 27 * Ids of the contacts to limit the SQL queries (whole-database queries otherwise)
518fa0ee 28 * @var array
6a488035 29 */
518fa0ee 30 public $contactIds = [];
6a488035 31
4c8b4719 32 /**
33 * Set the contact IDs to restrict the dedupe to.
34 *
35 * @param array $contactIds
36 */
37 public function setContactIds($contactIds) {
38 $this->contactIds = $contactIds;
39 }
40
6a488035 41 /**
100fef9d 42 * Params to dedupe against (queries against the whole contact set otherwise)
518fa0ee 43 * @var array
6a488035 44 */
518fa0ee 45 public $params = [];
6a488035
TO
46
47 /**
fe482240 48 * If there are no rules in rule group.
518fa0ee 49 * @var bool
6a488035 50 */
518fa0ee 51 public $noRules = FALSE;
6a488035 52
887c0ec2 53 protected $temporaryTables = [];
54
6a488035
TO
55 /**
56 * Return a structure holding the supported tables, fields and their titles
57 *
98997235
TO
58 * @param string $requestedType
59 * The requested contact type.
6a488035 60 *
a6c01b45
CW
61 * @return array
62 * a table-keyed array of field-keyed arrays holding supported fields' titles
6a488035 63 */
49cb3722 64 public static function supportedFields($requestedType) {
6a488035
TO
65 static $fields = NULL;
66 if (!$fields) {
67 // this is needed, as we're piggy-backing importableFields() below
be2fb01f 68 $replacements = [
6a488035
TO
69 'civicrm_country.name' => 'civicrm_address.country_id',
70 'civicrm_county.name' => 'civicrm_address.county_id',
71 'civicrm_state_province.name' => 'civicrm_address.state_province_id',
72 'gender.label' => 'civicrm_contact.gender_id',
73 'individual_prefix.label' => 'civicrm_contact.prefix_id',
74 'individual_suffix.label' => 'civicrm_contact.suffix_id',
75 'addressee.label' => 'civicrm_contact.addressee_id',
76 'email_greeting.label' => 'civicrm_contact.email_greeting_id',
77 'postal_greeting.label' => 'civicrm_contact.postal_greeting_id',
698095e2 78 'civicrm_phone.phone' => 'civicrm_phone.phone_numeric',
be2fb01f 79 ];
6a488035 80 // the table names we support in dedupe rules - a filter for importableFields()
be2fb01f 81 $supportedTables = [
353ffa53
TO
82 'civicrm_address',
83 'civicrm_contact',
84 'civicrm_email',
85 'civicrm_im',
86 'civicrm_note',
87 'civicrm_openid',
88 'civicrm_phone',
be2fb01f 89 ];
6a488035 90
be2fb01f 91 foreach (['Individual', 'Organization', 'Household'] as $ctype) {
6a488035
TO
92 // take the table.field pairs and their titles from importableFields() if the table is supported
93 foreach (CRM_Contact_BAO_Contact::importableFields($ctype) as $iField) {
94 if (isset($iField['where'])) {
95 $where = $iField['where'];
96 if (isset($replacements[$where])) {
97 $where = $replacements[$where];
98 }
99 list($table, $field) = explode('.', $where);
100 if (!in_array($table, $supportedTables)) {
101 continue;
102 }
103 $fields[$ctype][$table][$field] = $iField['title'];
104 }
105 }
49cb3722 106 // Note that most of the fields available come from 'importable fields' -
107 // I thought about making this field 'importable' but it felt like there might be unknown consequences
108 // so I opted for just adding it in & securing it with a unit test.
1dba397e 109 /// Example usage of sort_name - It is possible to alter sort name via hook so 2 organization names might differ as in
49cb3722 110 // Justice League vs The Justice League but these could have the same sort_name if 'the the'
111 // exension is installed (https://github.com/eileenmcnaughton/org.wikimedia.thethe)
112 $fields[$ctype]['civicrm_contact']['sort_name'] = ts('Sort Name');
6a488035 113 // add custom data fields
0b330e6d 114 foreach (CRM_Core_BAO_CustomGroup::getTree($ctype, NULL, NULL, -1) as $key => $cg) {
6a488035
TO
115 if (!is_int($key)) {
116 continue;
117 }
118 foreach ($cg['fields'] as $cf) {
119 $fields[$ctype][$cg['table_name']][$cf['column_name']] = $cf['label'];
120 }
121 }
122 }
123 }
1cf05c3e 124 CRM_Utils_Hook::dupeQuery(CRM_Core_DAO::$_nullObject, 'supportedFields', $fields);
49cb3722 125 return !empty($fields[$requestedType]) ? $fields[$requestedType] : [];
6a488035
TO
126 }
127
128 /**
129 * Return the SQL query for dropping the temporary table.
130 */
00be9182 131 public function tableDropQuery() {
6a488035
TO
132 return 'DROP TEMPORARY TABLE IF EXISTS dedupe';
133 }
134
135 /**
136 * Return a set of SQL queries whose cummulative weights will mark matched
137 * records for the RuleGroup::threasholdQuery() to retrieve.
138 */
00be9182 139 public function tableQuery() {
6a488035
TO
140 // make sure we've got a fetched dbrecord, not sure if this is enforced
141 if (!$this->name == NULL || $this->is_reserved == NULL) {
142 $this->find(TRUE);
143 }
144
145 // Reserved Rule Groups can optionally get special treatment by
146 // implementing an optimization class and returning a query array.
147 if ($this->is_reserved &&
148 CRM_Utils_File::isIncludable("CRM/Dedupe/BAO/QueryBuilder/{$this->name}.php")
149 ) {
6a488035 150 $command = empty($this->params) ? 'internal' : 'record';
be2fb01f 151 $queries = call_user_func(["CRM_Dedupe_BAO_QueryBuilder_{$this->name}", $command], $this);
6a488035
TO
152 }
153 else {
154 // All other rule groups have queries generated by the member dedupe
155 // rules defined in the administrative interface.
156
157 // Find all rules contained by this script sorted by weight so that
158 // their execution can be short circuited on RuleGroup::fillTable()
159 $bao = new CRM_Dedupe_BAO_Rule();
160 $bao->dedupe_rule_group_id = $this->id;
161 $bao->orderBy('rule_weight DESC');
162 $bao->find();
163
164 // Generate a SQL query for each rule in the rule group that is
165 // tailored to respect the param and contactId options provided.
be2fb01f 166 $queries = [];
6a488035
TO
167 while ($bao->fetch()) {
168 $bao->contactIds = $this->contactIds;
169 $bao->params = $this->params;
170
171 // Skipping empty rules? Empty rules shouldn't exist; why check?
172 if ($query = $bao->sql()) {
173 $queries["{$bao->rule_table}.{$bao->rule_field}.{$bao->rule_weight}"] = $query;
174 }
175 }
176 }
177
178 // if there are no rules in this rule group
179 // add an empty query fulfilling the pattern
180 if (!$queries) {
6a488035 181 $this->noRules = TRUE;
be2fb01f 182 return [];
6a488035
TO
183 }
184
185 return $queries;
186 }
187
00be9182 188 public function fillTable() {
6a488035
TO
189 // get the list of queries handy
190 $tableQueries = $this->tableQuery();
191
192 if ($this->params && !$this->noRules) {
887c0ec2 193 $this->temporaryTables['dedupe'] = CRM_Utils_SQL_TempTable::build()
194 ->setCategory('dedupe')
195 ->createWithColumns("id1 int, weight int, UNIQUE UI_id1 (id1)")->getName();
1dba397e
SL
196 $dedupeCopyTemporaryTableObject = CRM_Utils_SQL_TempTable::build()
197 ->setCategory('dedupe');
198 $this->temporaryTables['dedupe_copy'] = $dedupeCopyTemporaryTableObject->getName();
887c0ec2 199 $insertClause = "INSERT INTO {$this->temporaryTables['dedupe']} (id1, weight)";
3dc13e46 200 $groupByClause = "GROUP BY id1, weight";
1dba397e 201 $dupeCopyJoin = " JOIN {$this->temporaryTables['dedupe_copy']} ON {$this->temporaryTables['dedupe_copy']}.id1 = t1.column WHERE ";
6a488035
TO
202 }
203 else {
887c0ec2 204 $this->temporaryTables['dedupe'] = CRM_Utils_SQL_TempTable::build()
205 ->setCategory('dedupe')
206 ->createWithColumns("id1 int, id2 int, weight int, UNIQUE UI_id1_id2 (id1, id2)")->getName();
1dba397e
SL
207 $dedupeCopyTemporaryTableObject = CRM_Utils_SQL_TempTable::build()
208 ->setCategory('dedupe');
209 $this->temporaryTables['dedupe_copy'] = $dedupeCopyTemporaryTableObject->getName();
887c0ec2 210 $insertClause = "INSERT INTO {$this->temporaryTables['dedupe']} (id1, id2, weight)";
3dc13e46 211 $groupByClause = "GROUP BY id1, id2, weight";
1dba397e 212 $dupeCopyJoin = " JOIN {$this->temporaryTables['dedupe_copy']} ON {$this->temporaryTables['dedupe_copy']}.id1 = t1.column AND {$this->temporaryTables['dedupe_copy']}.id2 = t2.column WHERE ";
6a488035
TO
213 }
214 $patternColumn = '/t1.(\w+)/';
be2fb01f 215 $exclWeightSum = [];
6a488035 216
6a488035 217 $dao = new CRM_Core_DAO();
6a488035
TO
218 CRM_Utils_Hook::dupeQuery($this, 'table', $tableQueries);
219
220 while (!empty($tableQueries)) {
221 list($isInclusive, $isDie) = self::isQuerySetInclusive($tableQueries, $this->threshold, $exclWeightSum);
222
223 if ($isInclusive) {
224 // order queries by table count
225 self::orderByTableCount($tableQueries);
226
227 $weightSum = array_sum($exclWeightSum);
228 $searchWithinDupes = !empty($exclWeightSum) ? 1 : 0;
229
230 while (!empty($tableQueries)) {
231 // extract the next query ( and weight ) to be executed
232 $fieldWeight = array_keys($tableQueries);
233 $fieldWeight = $fieldWeight[0];
353ffa53 234 $query = array_shift($tableQueries);
6a488035
TO
235
236 if ($searchWithinDupes) {
237 // get prepared to search within already found dupes if $searchWithinDupes flag is set
1dba397e 238 $dedupeCopyTemporaryTableObject->createWithQuery("SELECT * FROM {$this->temporaryTables['dedupe']} WHERE weight >= {$weightSum}");
6a488035
TO
239
240 preg_match($patternColumn, $query, $matches);
241 $query = str_replace(' WHERE ', str_replace('column', $matches[1], $dupeCopyJoin), $query);
0226a9f3
AH
242
243 // CRM-19612: If there's a union, there will be two WHEREs, and you
244 // can't use the temp table twice.
1dba397e 245 if (preg_match('/' . $this->temporaryTables['dedupe_copy'] . '[\S\s]*(union)[\S\s]*' . $this->temporaryTables['dedupe_copy'] . '/i', $query, $matches, PREG_OFFSET_CAPTURE)) {
0226a9f3 246 // Make a second temp table:
1dba397e
SL
247 $this->temporaryTables['dedupe_copy_2'] = CRM_Utils_SQL_TempTable::build()
248 ->setCategory('dedupe')
249 ->createWithQuery("SELECT * FROM {$this->temporaryTables['dedupe']} WHERE weight >= {$weightSum}")
250 ->getName();
0226a9f3
AH
251 // After the union, use that new temp table:
252 $part1 = substr($query, 0, $matches[1][1]);
1dba397e 253 $query = $part1 . str_replace($this->temporaryTables['dedupe_copy'], $this->temporaryTables['dedupe_copy_2'], substr($query, $matches[1][1]));
0226a9f3 254 }
6a488035
TO
255 }
256 $searchWithinDupes = 1;
257
258 // construct and execute the intermediate query
259 $query = "{$insertClause} {$query} {$groupByClause} ON DUPLICATE KEY UPDATE weight = weight + VALUES(weight)";
260 $dao->query($query);
261
262 // FIXME: we need to be more acurate with affected rows, especially for insert vs duplicate insert.
263 // And that will help optimize further.
264 $affectedRows = $dao->affectedRows();
6a488035
TO
265
266 // In an inclusive situation, failure of any query means no further processing -
267 if ($affectedRows == 0) {
268 // reset to make sure no further execution is done.
be2fb01f 269 $tableQueries = [];
6a488035
TO
270 break;
271 }
272 $weightSum = substr($fieldWeight, strrpos($fieldWeight, '.') + 1) + $weightSum;
273 }
274 // An exclusive situation -
275 }
276 elseif (!$isDie) {
277 // since queries are already sorted by weights, we can continue as is
278 $fieldWeight = array_keys($tableQueries);
279 $fieldWeight = $fieldWeight[0];
353ffa53
TO
280 $query = array_shift($tableQueries);
281 $query = "{$insertClause} {$query} {$groupByClause} ON DUPLICATE KEY UPDATE weight = weight + VALUES(weight)";
6a488035
TO
282 $dao->query($query);
283 if ($dao->affectedRows() >= 1) {
284 $exclWeightSum[] = substr($fieldWeight, strrpos($fieldWeight, '.') + 1);
285 }
6a488035
TO
286 }
287 else {
288 // its a die situation
289 break;
290 }
291 }
292 }
293
e0ef6999 294 /**
4f1f1f2a
CW
295 * Function to determine if a given query set contains inclusive or exclusive set of weights.
296 * The function assumes that the query set is already ordered by weight in desc order.
e0ef6999
EM
297 * @param $tableQueries
298 * @param $threshold
299 * @param array $exclWeightSum
300 *
301 * @return array
302 */
be2fb01f
CW
303 public static function isQuerySetInclusive($tableQueries, $threshold, $exclWeightSum = []) {
304 $input = [];
6a488035
TO
305 foreach ($tableQueries as $key => $query) {
306 $input[] = substr($key, strrpos($key, '.') + 1);
307 }
308
309 if (!empty($exclWeightSum)) {
310 $input = array_merge($input, $exclWeightSum);
311 rsort($input);
312 }
313
314 if (count($input) == 1) {
be2fb01f 315 return [FALSE, $input[0] < $threshold];
6a488035
TO
316 }
317
318 $totalCombinations = 0;
319 for ($i = 0; $i < count($input); $i++) {
be2fb01f 320 $combination = [$input[$i]];
6a488035
TO
321 if (array_sum($combination) >= $threshold) {
322 $totalCombinations++;
323 continue;
324 }
325 for ($j = $i + 1; $j < count($input); $j++) {
326 $combination[] = $input[$j];
327 if (array_sum($combination) >= $threshold) {
328 $totalCombinations++;
329 }
330 }
331 }
be2fb01f 332 return [$totalCombinations == 1, $totalCombinations <= 0];
6a488035
TO
333 }
334
e0ef6999 335 /**
fe482240 336 * sort queries by number of records for the table associated with them.
e0ef6999
EM
337 * @param $tableQueries
338 */
00be9182 339 public static function orderByTableCount(&$tableQueries) {
be2fb01f 340 static $tableCount = [];
6a488035 341
be2fb01f 342 $tempArray = [];
6a488035
TO
343 foreach ($tableQueries as $key => $query) {
344 $table = explode(".", $key);
345 $table = $table[0];
346 if (!array_key_exists($table, $tableCount)) {
347 $query = "SELECT COUNT(*) FROM {$table}";
348 $tableCount[$table] = CRM_Core_DAO::singleValueQuery($query);
349 }
350 $tempArray[$key] = $tableCount[$table];
351 }
352
353 asort($tempArray);
354 foreach ($tempArray as $key => $count) {
355 $tempArray[$key] = $tableQueries[$key];
356 }
357 $tableQueries = $tempArray;
358 }
359
360 /**
361 * Return the SQL query for getting only the interesting results out of the dedupe table.
362 *
363 * @$checkPermission boolean $params a flag to indicate if permission should be considered.
364 * default is to always check permissioning but public pages for example might not want
365 * permission to be checked for anonymous users. Refer CRM-6211. We might be beaking
366 * Multi-Site dedupe for public pages.
ea3ddccf 367 *
368 * @param bool $checkPermission
369 *
370 * @return string
6a488035 371 */
00be9182 372 public function thresholdQuery($checkPermission = TRUE) {
6a488035
TO
373 $this->_aclFrom = '';
374 // CRM-6603: anonymous dupechecks side-step ACLs
375 $this->_aclWhere = ' AND is_deleted = 0 ';
376
377 if ($this->params && !$this->noRules) {
378 if ($checkPermission) {
379 list($this->_aclFrom, $this->_aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause('civicrm_contact');
380 $this->_aclWhere = $this->_aclWhere ? "AND {$this->_aclWhere}" : '';
381 }
887c0ec2 382 $query = "SELECT {$this->temporaryTables['dedupe']}.id1 as id
383 FROM {$this->temporaryTables['dedupe']} JOIN civicrm_contact ON {$this->temporaryTables['dedupe']}.id1 = civicrm_contact.id {$this->_aclFrom}
6a488035
TO
384 WHERE contact_type = '{$this->contact_type}' {$this->_aclWhere}
385 AND weight >= {$this->threshold}";
386 }
387 else {
388 $this->_aclWhere = ' AND c1.is_deleted = 0 AND c2.is_deleted = 0';
389 if ($checkPermission) {
be2fb01f 390 list($this->_aclFrom, $this->_aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause(['c1', 'c2']);
6a488035
TO
391 $this->_aclWhere = $this->_aclWhere ? "AND {$this->_aclWhere}" : '';
392 }
887c0ec2 393 $query = "SELECT IF({$this->temporaryTables['dedupe']}.id1 < {$this->temporaryTables['dedupe']}.id2, {$this->temporaryTables['dedupe']}.id1, {$this->temporaryTables['dedupe']}.id2) as id1,
394 IF({$this->temporaryTables['dedupe']}.id1 < {$this->temporaryTables['dedupe']}.id2, {$this->temporaryTables['dedupe']}.id2, {$this->temporaryTables['dedupe']}.id1) as id2, {$this->temporaryTables['dedupe']}.weight
395 FROM {$this->temporaryTables['dedupe']} JOIN civicrm_contact c1 ON {$this->temporaryTables['dedupe']}.id1 = c1.id
396 JOIN civicrm_contact c2 ON {$this->temporaryTables['dedupe']}.id2 = c2.id {$this->_aclFrom}
397 LEFT JOIN civicrm_dedupe_exception exc ON {$this->temporaryTables['dedupe']}.id1 = exc.contact_id1 AND {$this->temporaryTables['dedupe']}.id2 = exc.contact_id2
d4c8a770 398 WHERE c1.contact_type = '{$this->contact_type}' AND
6a488035
TO
399 c2.contact_type = '{$this->contact_type}' {$this->_aclWhere}
400 AND weight >= {$this->threshold} AND exc.contact_id1 IS NULL";
401 }
402
403 CRM_Utils_Hook::dupeQuery($this, 'threshold', $query);
404 return $query;
405 }
406
407 /**
dc195289 408 * find fields related to a rule group.
6a488035 409 *
c490a46a 410 * @param array $params
77b97be7 411 *
a6c01b45
CW
412 * @return array
413 * (rule field => weight) array and threshold associated to rule group
6a488035 414 */
00be9182 415 public static function dedupeRuleFieldsWeight($params) {
353ffa53 416 $rgBao = new CRM_Dedupe_BAO_RuleGroup();
6a488035 417 $rgBao->contact_type = $params['contact_type'];
b53cbfbc 418 if (!empty($params['id'])) {
03390e26 419 // accept an ID if provided
420 $rgBao->id = $params['id'];
421 }
422 else {
423 $rgBao->used = $params['used'];
424 }
6a488035
TO
425 $rgBao->find(TRUE);
426
427 $ruleBao = new CRM_Dedupe_BAO_Rule();
428 $ruleBao->dedupe_rule_group_id = $rgBao->id;
429 $ruleBao->find();
be2fb01f 430 $ruleFields = [];
6a488035 431 while ($ruleBao->fetch()) {
0ca748fb
JM
432 $field_name = $ruleBao->rule_field;
433 if ($field_name == 'phone_numeric') {
434 $field_name = 'phone';
435 }
436 $ruleFields[$field_name] = $ruleBao->rule_weight;
6a488035
TO
437 }
438
be2fb01f 439 return [$ruleFields, $rgBao->threshold];
6a488035
TO
440 }
441
03390e26 442 /**
fe482240 443 * Get all of the combinations of fields that would work with a rule.
ad37ac8e 444 *
445 * @param array $rgFields
446 * @param int $threshold
447 * @param array $combos
448 * @param array $running
03390e26 449 */
be2fb01f 450 public static function combos($rgFields, $threshold, &$combos, $running = []) {
03390e26 451 foreach ($rgFields as $rgField => $weight) {
452 unset($rgFields[$rgField]);
453 $diff = $threshold - $weight;
454 $runningnow = $running;
455 $runningnow[] = $rgField;
456 if ($diff > 0) {
457 self::combos($rgFields, $diff, $combos, $runningnow);
458 }
459 else {
460 $combos[] = $runningnow;
461 }
462 }
463 }
464
6a488035
TO
465 /**
466 * Get an array of rule group id to rule group name
467 * for all th groups for that contactType. If contactType
468 * not specified, do it for all
469 *
98997235
TO
470 * @param string $contactType
471 * Individual, Household or Organization.
6a488035 472 *
6a488035 473 *
a6c01b45
CW
474 * @return array
475 * id => "nice name" of rule group
6a488035 476 */
00be9182 477 public static function getByType($contactType = NULL) {
6a488035
TO
478 $dao = new CRM_Dedupe_DAO_RuleGroup();
479
480 if ($contactType) {
481 $dao->contact_type = $contactType;
482 }
483
484 $dao->find();
be2fb01f 485 $result = [];
6a488035 486 while ($dao->fetch()) {
389bcebf 487 $title = !empty($dao->title) ? $dao->title : (!empty($dao->name) ? $dao->name : $dao->contact_type);
01a93ecd
DL
488
489 $name = "$title - {$dao->used}";
6a488035
TO
490 $result[$dao->id] = $name;
491 }
492 return $result;
493 }
96025800 494
2ae26001 495 /**
496 * Get the cached contact type for a particular rule group.
497 *
498 * @param int $rule_group_id
499 *
500 * @return string
501 */
502 public static function getContactTypeForRuleGroup($rule_group_id) {
503 if (!isset(\Civi::$statics[__CLASS__]) || !isset(\Civi::$statics[__CLASS__]['rule_groups'])) {
be2fb01f 504 \Civi::$statics[__CLASS__]['rule_groups'] = [];
2ae26001 505 }
506 if (empty(\Civi::$statics[__CLASS__]['rule_groups'][$rule_group_id])) {
507 \Civi::$statics[__CLASS__]['rule_groups'][$rule_group_id]['contact_type'] = CRM_Core_DAO::getFieldValue(
508 'CRM_Dedupe_DAO_RuleGroup',
509 $rule_group_id,
510 'contact_type'
511 );
512 }
513
514 return \Civi::$statics[__CLASS__]['rule_groups'][$rule_group_id]['contact_type'];
515 }
516
6a488035 517}