Merge pull request #14579 from civicrm/5.15
[civicrm-core.git] / CRM / Dedupe / Merger.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33 class CRM_Dedupe_Merger {
34
35 /**
36 * FIXME: consider creating a common structure with cidRefs() and eidRefs()
37 * FIXME: the sub-pages references by the URLs should
38 * be loaded dynamically on the merge form instead
39 * @return array
40 */
41 public static function relTables() {
42
43 if (!isset(Civi::$statics[__CLASS__]['relTables'])) {
44
45 // Setting these merely prevents enotices - but it may be more appropriate not to add the user table below
46 // if the url can't be retrieved. A more standardised way to retrieve them is.
47 // CRM_Core_Config::singleton()->userSystem->getUserRecordUrl() - however that function takes a contact_id &
48 // we may need a different function when it is not known.
49 $title = $userRecordUrl = '';
50
51 $config = CRM_Core_Config::singleton();
52 if ($config->userSystem->is_drupal) {
53 $userRecordUrl = CRM_Utils_System::url('user/%ufid');
54 $title = ts('%1 User: %2; user id: %3', [
55 1 => $config->userFramework,
56 2 => '$ufname',
57 3 => '$ufid',
58 ]);
59 }
60 elseif ($config->userFramework == 'Joomla') {
61 $userRecordUrl = $config->userSystem->getVersion() > 1.5 ? $config->userFrameworkBaseURL . "index.php?option=com_users&view=user&task=user.edit&id=" . '%ufid' : $config->userFrameworkBaseURL . "index2.php?option=com_users&view=user&task=edit&id[]=" . '%ufid';
62 $title = ts('%1 User: %2; user id: %3', [
63 1 => $config->userFramework,
64 2 => '$ufname',
65 3 => '$ufid',
66 ]);
67 }
68
69 $relTables = [
70 'rel_table_contributions' => [
71 'title' => ts('Contributions'),
72 'tables' => [
73 'civicrm_contribution',
74 'civicrm_contribution_recur',
75 'civicrm_contribution_soft',
76 ],
77 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=contribute'),
78 ],
79 'rel_table_contribution_page' => [
80 'title' => ts('Contribution Pages'),
81 'tables' => ['civicrm_contribution_page'],
82 'url' => CRM_Utils_System::url('civicrm/admin/contribute', 'reset=1&cid=$cid'),
83 ],
84 'rel_table_memberships' => [
85 'title' => ts('Memberships'),
86 'tables' => [
87 'civicrm_membership',
88 'civicrm_membership_log',
89 'civicrm_membership_type',
90 ],
91 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=member'),
92 ],
93 'rel_table_participants' => [
94 'title' => ts('Participants'),
95 'tables' => ['civicrm_participant'],
96 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=participant'),
97 ],
98 'rel_table_events' => [
99 'title' => ts('Events'),
100 'tables' => ['civicrm_event'],
101 'url' => CRM_Utils_System::url('civicrm/event/manage', 'reset=1&cid=$cid'),
102 ],
103 'rel_table_activities' => [
104 'title' => ts('Activities'),
105 'tables' => ['civicrm_activity', 'civicrm_activity_contact'],
106 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=activity'),
107 ],
108 'rel_table_relationships' => [
109 'title' => ts('Relationships'),
110 'tables' => ['civicrm_relationship'],
111 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=rel'),
112 ],
113 'rel_table_custom_groups' => [
114 'title' => ts('Custom Groups'),
115 'tables' => ['civicrm_custom_group'],
116 'url' => CRM_Utils_System::url('civicrm/admin/custom/group', 'reset=1'),
117 ],
118 'rel_table_uf_groups' => [
119 'title' => ts('Profiles'),
120 'tables' => ['civicrm_uf_group'],
121 'url' => CRM_Utils_System::url('civicrm/admin/uf/group', 'reset=1'),
122 ],
123 'rel_table_groups' => [
124 'title' => ts('Groups'),
125 'tables' => ['civicrm_group_contact'],
126 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=group'),
127 ],
128 'rel_table_notes' => [
129 'title' => ts('Notes'),
130 'tables' => ['civicrm_note'],
131 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=note'),
132 ],
133 'rel_table_tags' => [
134 'title' => ts('Tags'),
135 'tables' => ['civicrm_entity_tag'],
136 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=tag'),
137 ],
138 'rel_table_mailings' => [
139 'title' => ts('Mailings'),
140 'tables' => [
141 'civicrm_mailing',
142 'civicrm_mailing_event_queue',
143 'civicrm_mailing_event_subscribe',
144 ],
145 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=mailing'),
146 ],
147 'rel_table_cases' => [
148 'title' => ts('Cases'),
149 'tables' => ['civicrm_case_contact'],
150 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=case'),
151 ],
152 'rel_table_grants' => [
153 'title' => ts('Grants'),
154 'tables' => ['civicrm_grant'],
155 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=grant'),
156 ],
157 'rel_table_pcp' => [
158 'title' => ts('PCPs'),
159 'tables' => ['civicrm_pcp'],
160 'url' => CRM_Utils_System::url('civicrm/contribute/pcp/manage', 'reset=1'),
161 ],
162 'rel_table_pledges' => [
163 'title' => ts('Pledges'),
164 'tables' => ['civicrm_pledge', 'civicrm_pledge_payment'],
165 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=pledge'),
166 ],
167 'rel_table_users' => [
168 'title' => $title,
169 'tables' => ['civicrm_uf_match'],
170 'url' => $userRecordUrl,
171 ],
172 ];
173
174 $relTables += self::getMultiValueCustomSets('relTables');
175
176 // Allow hook_civicrm_merge() to adjust $relTables
177 CRM_Utils_Hook::merge('relTables', $relTables);
178
179 // Cache the results in a static variable
180 Civi::$statics[__CLASS__]['relTables'] = $relTables;
181 }
182
183 return Civi::$statics[__CLASS__]['relTables'];
184 }
185
186 /**
187 * Returns the related tables groups for which a contact has any info entered.
188 *
189 * @param int $cid
190 *
191 * @return array
192 */
193 public static function getActiveRelTables($cid) {
194 $cid = (int) $cid;
195 $groups = [];
196
197 $relTables = self::relTables();
198 $cidRefs = self::cidRefs();
199 $eidRefs = self::eidRefs();
200 foreach ($relTables as $group => $params) {
201 $sqls = [];
202 foreach ($params['tables'] as $table) {
203 if (isset($cidRefs[$table])) {
204 foreach ($cidRefs[$table] as $field) {
205 $sqls[] = "SELECT COUNT(*) AS count FROM $table WHERE $field = $cid";
206 }
207 }
208 if (isset($eidRefs[$table])) {
209 foreach ($eidRefs[$table] as $entityTable => $entityId) {
210 $sqls[] = "SELECT COUNT(*) AS count FROM $table WHERE $entityId = $cid AND $entityTable = 'civicrm_contact'";
211 }
212 }
213 foreach ($sqls as $sql) {
214 if (CRM_Core_DAO::singleValueQuery($sql) > 0) {
215 $groups[] = $group;
216 }
217 }
218 }
219 }
220 return array_unique($groups);
221 }
222
223 /**
224 * Get array tables and fields that reference civicrm_contact.id.
225 *
226 * This function calls the merge hook and only exists to wrap the DAO function to support that deprecated call.
227 * The entityTypes hook is the recommended way to add tables to this result.
228 *
229 * I thought about adding another hook to alter tableReferences but decided it was unclear if there
230 * are use cases not covered by entityTables and instead we should wait & see.
231 */
232 public static function cidRefs() {
233 if (isset(\Civi::$statics[__CLASS__]) && isset(\Civi::$statics[__CLASS__]['contact_references'])) {
234 return \Civi::$statics[__CLASS__]['contact_references'];
235 }
236
237 $contactReferences = $coreReferences = CRM_Core_DAO::getReferencesToContactTable();
238
239 CRM_Utils_Hook::merge('cidRefs', $contactReferences);
240 if ($contactReferences !== $coreReferences) {
241 Civi::log()
242 ->warning("Deprecated hook ::merge in context of 'cidRefs. Use entityTypes instead.", ['civi.tag' => 'deprecated']);
243 }
244 \Civi::$statics[__CLASS__]['contact_references'] = $contactReferences;
245 return \Civi::$statics[__CLASS__]['contact_references'];
246 }
247
248 /**
249 * Return tables and their fields referencing civicrm_contact.contact_id with entity_id
250 */
251 public static function eidRefs() {
252 static $eidRefs;
253 if (!$eidRefs) {
254 // FIXME: this should be generated dynamically from the schema
255 // tables that reference contacts with entity_{id,table}
256 $eidRefs = [
257 'civicrm_acl' => ['entity_table' => 'entity_id'],
258 'civicrm_acl_entity_role' => ['entity_table' => 'entity_id'],
259 'civicrm_entity_file' => ['entity_table' => 'entity_id'],
260 'civicrm_log' => ['entity_table' => 'entity_id'],
261 'civicrm_mailing_group' => ['entity_table' => 'entity_id'],
262 'civicrm_note' => ['entity_table' => 'entity_id'],
263 ];
264
265 // Allow hook_civicrm_merge() to adjust $eidRefs
266 CRM_Utils_Hook::merge('eidRefs', $eidRefs);
267 }
268 return $eidRefs;
269 }
270
271 /**
272 * Return tables using locations.
273 */
274 public static function locTables() {
275 static $locTables;
276 if (!$locTables) {
277 $locTables = ['civicrm_email', 'civicrm_address', 'civicrm_phone'];
278
279 // Allow hook_civicrm_merge() to adjust $locTables
280 CRM_Utils_Hook::merge('locTables', $locTables);
281 }
282 return $locTables;
283 }
284
285 /**
286 * We treat multi-valued custom sets as "related tables" similar to activities, contributions, etc.
287 * @param string $request
288 * 'relTables' or 'cidRefs'.
289 * @return array
290 * @see CRM-13836
291 */
292 public static function getMultiValueCustomSets($request) {
293
294 if (!isset(Civi::$statics[__CLASS__]['multiValueCustomSets'])) {
295 $data = [
296 'relTables' => [],
297 'cidRefs' => [],
298 ];
299 $result = civicrm_api3('custom_group', 'get', [
300 'is_multiple' => 1,
301 'extends' => [
302 'IN' => [
303 'Individual',
304 'Organization',
305 'Household',
306 'Contact',
307 ],
308 ],
309 'return' => ['id', 'title', 'table_name', 'style'],
310 ]);
311 foreach ($result['values'] as $custom) {
312 $data['cidRefs'][$custom['table_name']] = ['entity_id'];
313 $urlSuffix = $custom['style'] == 'Tab' ? '&selectedChild=custom_' . $custom['id'] : '';
314 $data['relTables']['rel_table_custom_' . $custom['id']] = [
315 'title' => $custom['title'],
316 'tables' => [$custom['table_name']],
317 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid' . $urlSuffix),
318 ];
319 }
320
321 // Store the result in a static variable cache
322 Civi::$statics[__CLASS__]['multiValueCustomSets'] = $data;
323 }
324
325 return Civi::$statics[__CLASS__]['multiValueCustomSets'][$request];
326 }
327
328 /**
329 * Tables which require custom processing should declare functions to call here.
330 * Doing so will override normal processing.
331 */
332 public static function cpTables() {
333 static $tables;
334 if (!$tables) {
335 $tables = [
336 'civicrm_case_contact' => ['CRM_Case_BAO_Case' => 'mergeContacts'],
337 'civicrm_group_contact' => ['CRM_Contact_BAO_GroupContact' => 'mergeGroupContact'],
338 // Empty array == do nothing - this table is handled by mergeGroupContact
339 'civicrm_subscription_history' => [],
340 'civicrm_relationship' => ['CRM_Contact_BAO_Relationship' => 'mergeRelationships'],
341 'civicrm_membership' => ['CRM_Member_BAO_Membership' => 'mergeMemberships'],
342 ];
343 }
344 return $tables;
345 }
346
347 /**
348 * Return payment related table.
349 */
350 public static function paymentTables() {
351 static $tables;
352 if (!$tables) {
353 $tables = ['civicrm_pledge', 'civicrm_membership', 'civicrm_participant'];
354 }
355 return $tables;
356 }
357
358 /**
359 * Return payment update Query.
360 *
361 * @param string $tableName
362 * @param int $mainContactId
363 * @param int $otherContactId
364 *
365 * @return array
366 */
367 public static function paymentSql($tableName, $mainContactId, $otherContactId) {
368 $sqls = [];
369 if (!$tableName || !$mainContactId || !$otherContactId) {
370 return $sqls;
371 }
372
373 $paymentTables = self::paymentTables();
374 if (!in_array($tableName, $paymentTables)) {
375 return $sqls;
376 }
377
378 switch ($tableName) {
379 case 'civicrm_pledge':
380 $sqls[] = "
381 UPDATE IGNORE civicrm_contribution contribution
382 INNER JOIN civicrm_pledge_payment payment ON ( payment.contribution_id = contribution.id )
383 INNER JOIN civicrm_pledge pledge ON ( pledge.id = payment.pledge_id )
384 SET contribution.contact_id = $mainContactId
385 WHERE pledge.contact_id = $otherContactId";
386 break;
387
388 case 'civicrm_membership':
389 $sqls[] = "
390 UPDATE IGNORE civicrm_contribution contribution
391 INNER JOIN civicrm_membership_payment payment ON ( payment.contribution_id = contribution.id )
392 INNER JOIN civicrm_membership membership ON ( membership.id = payment.membership_id )
393 SET contribution.contact_id = $mainContactId
394 WHERE membership.contact_id = $otherContactId";
395 break;
396
397 case 'civicrm_participant':
398 $sqls[] = "
399 UPDATE IGNORE civicrm_contribution contribution
400 INNER JOIN civicrm_participant_payment payment ON ( payment.contribution_id = contribution.id )
401 INNER JOIN civicrm_participant participant ON ( participant.id = payment.participant_id )
402 SET contribution.contact_id = $mainContactId
403 WHERE participant.contact_id = $otherContactId";
404 break;
405 }
406
407 return $sqls;
408 }
409
410 /**
411 * @param int $mainId
412 * @param int $otherId
413 * @param string $tableName
414 * @param array $tableOperations
415 * @param string $mode
416 *
417 * @return array
418 */
419 public static function operationSql($mainId, $otherId, $tableName, $tableOperations = [], $mode = 'add') {
420 $sqls = [];
421 if (!$tableName || !$mainId || !$otherId) {
422 return $sqls;
423 }
424
425 switch ($tableName) {
426 case 'civicrm_membership':
427 if (array_key_exists($tableName, $tableOperations) && $tableOperations[$tableName]['add']) {
428 break;
429 }
430 if ($mode == 'add') {
431 $sqls[] = "
432 DELETE membership1.* FROM civicrm_membership membership1
433 INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = membership2.membership_type_id
434 AND membership1.contact_id = {$mainId}
435 AND membership2.contact_id = {$otherId} ";
436 }
437 if ($mode == 'payment') {
438 $sqls[] = "
439 DELETE contribution.* FROM civicrm_contribution contribution
440 INNER JOIN civicrm_membership_payment payment ON payment.contribution_id = contribution.id
441 INNER JOIN civicrm_membership membership1 ON membership1.id = payment.membership_id
442 AND membership1.contact_id = {$mainId}
443 INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = membership2.membership_type_id
444 AND membership2.contact_id = {$otherId}";
445 }
446 break;
447
448 case 'civicrm_uf_match':
449 // normal queries won't work for uf_match since that will lead to violation of unique constraint,
450 // failing to meet intended result. Therefore we introduce this additional query:
451 $sqls[] = "DELETE FROM civicrm_uf_match WHERE contact_id = {$mainId}";
452 break;
453 }
454
455 return $sqls;
456 }
457
458 /**
459 * Based on the provided two contact_ids and a set of tables, remove the
460 * belongings of the other contact and of their relations.
461 *
462 * @param int $otherID
463 * @param bool $tables
464 */
465 public static function removeContactBelongings($otherID, $tables) {
466 // CRM-20421: Removing Inherited memberships when memberships of parent are not migrated to new contact.
467 if (in_array("civicrm_membership", $tables)) {
468 $membershipIDs = CRM_Utils_Array::collect('id',
469 CRM_Utils_Array::value('values',
470 civicrm_api3("Membership", "get", [
471 "contact_id" => $otherID,
472 "return" => "id",
473 ])
474 )
475 );
476
477 if (!empty($membershipIDs)) {
478 civicrm_api3("Membership", "get", [
479 'owner_membership_id' => ['IN' => $membershipIDs],
480 'api.Membership.delete' => ['id' => '$value.id'],
481 ]);
482 }
483 }
484 }
485
486 /**
487 * Based on the provided two contact_ids and a set of tables, move the
488 * belongings of the other contact to the main one.
489 *
490 * @param int $mainId
491 * @param int $otherId
492 * @param bool $tables
493 * @param array $tableOperations
494 * @param array $customTableToCopyFrom
495 */
496 public static function moveContactBelongings($mainId, $otherId, $tables = FALSE, $tableOperations = [], $customTableToCopyFrom = NULL) {
497 $cidRefs = self::cidRefs();
498 $eidRefs = self::eidRefs();
499 $cpTables = self::cpTables();
500 $paymentTables = self::paymentTables();
501
502 // getting all custom tables
503 $customTables = [];
504 if ($customTableToCopyFrom !== NULL) {
505 // @todo this duplicates cidRefs?
506 CRM_Core_DAO::appendCustomTablesExtendingContacts($customTables);
507 $customTables = array_keys($customTables);
508 }
509
510 $affected = array_merge(array_keys($cidRefs), array_keys($eidRefs));
511
512 // if there aren't any specific tables, don't affect the ones handled by relTables()
513 // also don't affect tables in locTables() CRM-15658
514 $relTables = self::relTables();
515 $handled = self::locTables();
516
517 foreach ($relTables as $params) {
518 $handled = array_merge($handled, $params['tables']);
519 }
520 $affected = array_diff($affected, $handled);
521 $affected = array_unique(array_merge($affected, $tables));
522
523 $mainId = (int) $mainId;
524 $otherId = (int) $otherId;
525 $multi_value_tables = array_keys(CRM_Dedupe_Merger::getMultiValueCustomSets('cidRefs'));
526
527 $sqls = [];
528 foreach ($affected as $table) {
529 // skipping non selected single-value custom table's value migration
530 if (!in_array($table, $multi_value_tables)) {
531 if ($customTableToCopyFrom !== NULL && in_array($table, $customTables) && !in_array($table, $customTableToCopyFrom)) {
532 continue;
533 }
534 }
535
536 // Call custom processing function for objects that require it
537 if (isset($cpTables[$table])) {
538 foreach ($cpTables[$table] as $className => $fnName) {
539 $className::$fnName($mainId, $otherId, $sqls, $tables, $tableOperations);
540 }
541 // Skip normal processing
542 continue;
543 }
544
545 // use UPDATE IGNORE + DELETE query pair to skip on situations when
546 // there's a UNIQUE restriction on ($field, some_other_field) pair
547 if (isset($cidRefs[$table])) {
548 foreach ($cidRefs[$table] as $field) {
549 // carry related contributions CRM-5359
550 if (in_array($table, $paymentTables)) {
551 $paymentSqls = self::paymentSql($table, $mainId, $otherId);
552 $sqls = array_merge($sqls, $paymentSqls);
553
554 if (!empty($tables) && !in_array('civicrm_contribution', $tables)) {
555 $payOprSqls = self::operationSql($mainId, $otherId, $table, $tableOperations, 'payment');
556 $sqls = array_merge($sqls, $payOprSqls);
557 }
558 }
559
560 $preOperationSqls = self::operationSql($mainId, $otherId, $table, $tableOperations);
561 $sqls = array_merge($sqls, $preOperationSqls);
562
563 if ($customTableToCopyFrom !== NULL && in_array($table, $customTableToCopyFrom) && !self::customRecordExists($mainId, $table, $field)) {
564 $sqls[] = "INSERT INTO $table ($field) VALUES ($mainId)";
565 }
566 $sqls[] = "UPDATE IGNORE $table SET $field = $mainId WHERE $field = $otherId";
567 $sqls[] = "DELETE FROM $table WHERE $field = $otherId";
568 }
569 }
570
571 if (isset($eidRefs[$table])) {
572 foreach ($eidRefs[$table] as $entityTable => $entityId) {
573 $sqls[] = "UPDATE IGNORE $table SET $entityId = $mainId WHERE $entityId = $otherId AND $entityTable = 'civicrm_contact'";
574 $sqls[] = "DELETE FROM $table WHERE $entityId = $otherId AND $entityTable = 'civicrm_contact'";
575 }
576 }
577 }
578
579 // Allow hook_civicrm_merge() to add SQL statements for the merge operation.
580 CRM_Utils_Hook::merge('sqls', $sqls, $mainId, $otherId, $tables);
581
582 foreach ($sqls as $sql) {
583 CRM_Core_DAO::executeQuery($sql, [], TRUE, NULL, TRUE);
584 }
585 CRM_Dedupe_Merger::addMembershipToRealtedContacts($mainId);
586 }
587
588 /**
589 * Given a contact ID, will check if a record exists in given table.
590 *
591 * @param $contactID
592 * @param $table
593 * @param $idField
594 * Field where the contact's ID is stored in the table
595 *
596 * @return bool
597 * True if a record is found for the given contact ID, false otherwise
598 */
599 private static function customRecordExists($contactID, $table, $idField) {
600 $sql = "
601 SELECT COUNT(*) AS count
602 FROM $table
603 WHERE $idField = $contactID
604 ";
605 $dbResult = CRM_Core_DAO::executeQuery($sql);
606 $dbResult->fetch();
607
608 if ($dbResult->count > 0) {
609 return TRUE;
610 }
611
612 return FALSE;
613 }
614
615 /**
616 * Load all non-empty fields for the contacts
617 *
618 * @param array $main
619 * Contact details.
620 * @param array $other
621 * Contact details.
622 *
623 * @return array
624 */
625 public static function retrieveFields($main, $other) {
626 $result = [
627 'contact' => [],
628 'custom' => [],
629 ];
630 foreach (self::getContactFields() as $validField) {
631 // CRM-17556 Get all non-empty fields, to make comparison easier
632 if (!empty($main[$validField]) || !empty($other[$validField])) {
633 $result['contact'][] = $validField;
634 }
635 }
636
637 $mainEvs = CRM_Core_BAO_CustomValueTable::getEntityValues($main['id']);
638 $otherEvs = CRM_Core_BAO_CustomValueTable::getEntityValues($other['id']);
639 $keys = array_unique(array_merge(array_keys($mainEvs), array_keys($otherEvs)));
640 foreach ($keys as $key) {
641 // Exclude multi-value fields CRM-13836
642 if (strpos($key, '_')) {
643 continue;
644 }
645 $key1 = CRM_Utils_Array::value($key, $mainEvs);
646 $key2 = CRM_Utils_Array::value($key, $otherEvs);
647 // We wish to retain '0' as it has a different meaning than NULL on a checkbox.
648 // However I can't think of a case where an empty string is more meaningful than null
649 // or where it would be FALSE or something else nullish.
650 $valuesToIgnore = [NULL, '', []];
651 if (!in_array($key1, $valuesToIgnore, TRUE) || !in_array($key2, $valuesToIgnore, TRUE)) {
652 $result['custom'][] = $key;
653 }
654 }
655 return $result;
656 }
657
658 /**
659 * Batch merge a set of contacts based on rule-group and group.
660 *
661 * @param int $rgid
662 * Rule group id.
663 * @param int $gid
664 * Group id.
665 * @param string $mode
666 * Helps decide how to behave when there are conflicts.
667 * A 'safe' value skips the merge if there are any un-resolved conflicts, wheras 'aggressive'
668 * mode does a force merge.
669 * @param int $batchLimit number of merges to carry out in one batch.
670 * @param int $isSelected if records with is_selected column needs to be processed.
671 * Note the option of '2' is only used in conjunction with $redirectForPerformance
672 * to determine when to reload the cache (!). The use of anything other than a boolean is being grandfathered
673 * out in favour of explicitly passing in $reloadCacheIfEmpty
674 *
675 * @param array $criteria
676 * Criteria to use in the filter.
677 *
678 * @param bool $checkPermissions
679 * Respect logged in user permissions.
680 * @param bool|NULL $reloadCacheIfEmpty
681 * If not set explicitly this is calculated but it is preferred that it be set
682 * per comments on isSelected above.
683 *
684 * @return array|bool
685 */
686 public static function batchMerge($rgid, $gid = NULL, $mode = 'safe', $batchLimit = 1, $isSelected = 2, $criteria = [], $checkPermissions = TRUE, $reloadCacheIfEmpty = NULL) {
687 $redirectForPerformance = ($batchLimit > 1) ? TRUE : FALSE;
688
689 if (!isset($reloadCacheIfEmpty)) {
690 $reloadCacheIfEmpty = (!$redirectForPerformance && $isSelected == 2);
691 }
692 if ($isSelected !== 0 && $isSelected !== 1) {
693 // explicitly set to NULL if not 1 or 0 as part of grandfathering out the mystical '2' value.
694 $isSelected = NULL;
695 }
696 $dupePairs = self::getDuplicatePairs($rgid, $gid, $reloadCacheIfEmpty, $batchLimit, $isSelected, ($mode == 'aggressive'), $criteria, $checkPermissions);
697
698 $cacheParams = [
699 'cache_key_string' => self::getMergeCacheKeyString($rgid, $gid, $criteria, $checkPermissions),
700 // @todo stop passing these parameters in & instead calculate them in the merge function based
701 // on the 'real' params like $isRespectExclusions $batchLimit and $isSelected.
702 'join' => self::getJoinOnDedupeTable(),
703 'where' => self::getWhereString($isSelected),
704 'limit' => (int) $batchLimit,
705 ];
706 return CRM_Dedupe_Merger::merge($dupePairs, $cacheParams, $mode, $redirectForPerformance, $checkPermissions);
707 }
708
709 /**
710 * Get the string to join the prevnext cache to the dedupe table.
711 *
712 * @return string
713 * The join string to join prevnext cache on the dedupe table.
714 */
715 public static function getJoinOnDedupeTable() {
716 return "
717 LEFT JOIN civicrm_dedupe_exception de
718 ON (
719 pn.entity_id1 = de.contact_id1
720 AND pn.entity_id2 = de.contact_id2 )
721 ";
722 }
723
724 /**
725 * Get where string for dedupe join.
726 *
727 * @param bool $isSelected
728 *
729 * @return string
730 */
731 protected static function getWhereString($isSelected) {
732 $where = "de.id IS NULL";
733 if ($isSelected === 0 || $isSelected === 1) {
734 $where .= " AND pn.is_selected = {$isSelected}";
735 }
736 return $where;
737 }
738
739 /**
740 * Update the statistics for the merge set.
741 *
742 * @param string $cacheKeyString
743 * @param array $result
744 */
745 public static function updateMergeStats($cacheKeyString, $result = []) {
746 // gather latest stats
747 $merged = count($result['merged']);
748 $skipped = count($result['skipped']);
749
750 if ($merged <= 0 && $skipped <= 0) {
751 return;
752 }
753
754 // get previous stats
755 $previousStats = CRM_Dedupe_Merger::getMergeStats($cacheKeyString);
756 if (!empty($previousStats)) {
757 if ($previousStats['merged']) {
758 $merged = $merged + $previousStats['merged'];
759 }
760 if ($previousStats['skipped']) {
761 $skipped = $skipped + $previousStats['skipped'];
762 }
763 }
764
765 // delete old stats
766 CRM_Dedupe_Merger::resetMergeStats($cacheKeyString);
767
768 // store the updated stats
769 $data = [
770 'merged' => $merged,
771 'skipped' => $skipped,
772 ];
773 $data = CRM_Core_DAO::escapeString(serialize($data));
774
775 $values = [];
776 $values[] = " ( 'civicrm_contact', 0, 0, '{$cacheKeyString}_stats', '$data' ) ";
777 CRM_Core_BAO_PrevNextCache::setItem($values);
778 }
779
780 /**
781 * Delete information about merges for the given string.
782 *
783 * @param $cacheKeyString
784 */
785 public static function resetMergeStats($cacheKeyString) {
786 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, "{$cacheKeyString}_stats");
787 }
788
789 /**
790 * Get merge outcome statistics.
791 *
792 * @param string $cacheKeyString
793 *
794 * @return array
795 * Array of how many were merged and how many were skipped.
796 *
797 * @throws \CiviCRM_API3_Exception
798 */
799 public static function getMergeStats($cacheKeyString) {
800 $stats = civicrm_api3('Dedupe', 'get', ['cachekey' => "{$cacheKeyString}_stats", 'sequential' => 1])['values'];
801 if (!empty($stats)) {
802 return $stats[0]['data'];
803 }
804 return [];
805 }
806
807 /**
808 * Get merge statistics message.
809 *
810 * @param array $stats
811 *
812 * @return string
813 */
814 public static function getMergeStatsMsg($stats) {
815 $msg = '';
816 if (!empty($stats['merged'])) {
817 $msg = '<p>' . ts('One contact merged.', [
818 'count' => $stats['merged'],
819 'plural' => '%count contacts merged.',
820 ]) . '</p>';
821 }
822 if (!empty($stats['skipped'])) {
823 $msg .= '<p>' . ts('One contact was skipped.', [
824 'count' => $stats['skipped'],
825 'plural' => '%count contacts were skipped.',
826 ]) . '</p>';
827 }
828 return $msg;
829 }
830
831 /**
832 * Merge given set of contacts. Performs core operation.
833 *
834 * @param array $dupePairs
835 * Set of pair of contacts for whom merge is to be done.
836 * @param array $cacheParams
837 * Prev-next-cache params based on which next pair of contacts are computed.
838 * Generally used with batch-merge.
839 * @param string $mode
840 * Helps decide how to behave when there are conflicts.
841 * A 'safe' value skips the merge if there are any un-resolved conflicts.
842 * Does a force merge otherwise (aggressive mode).
843 *
844 * @param bool $redirectForPerformance
845 * Redirect to a url for batch processing.
846 *
847 * @param bool $checkPermissions
848 * Respect logged in user permissions.
849 *
850 * @return array|bool
851 */
852 public static function merge($dupePairs = [], $cacheParams = [], $mode = 'safe',
853 $redirectForPerformance = FALSE, $checkPermissions = TRUE
854 ) {
855 $cacheKeyString = CRM_Utils_Array::value('cache_key_string', $cacheParams);
856 $resultStats = ['merged' => [], 'skipped' => []];
857
858 // we don't want dupe caching to get reset after every-merge, and therefore set the
859 CRM_Core_Config::setPermitCacheFlushMode(FALSE);
860 $deletedContacts = [];
861
862 while (!empty($dupePairs)) {
863 foreach ($dupePairs as $index => $dupes) {
864 if (in_array($dupes['dstID'], $deletedContacts) || in_array($dupes['srcID'], $deletedContacts)) {
865 unset($dupePairs[$index]);
866 continue;
867 }
868 CRM_Utils_Hook::merge('flip', $dupes, $dupes['dstID'], $dupes['srcID']);
869 $mainId = $dupes['dstID'];
870 $otherId = $dupes['srcID'];
871
872 if (!$mainId || !$otherId) {
873 // return error
874 return FALSE;
875 }
876
877 self::dedupePair($resultStats, $deletedContacts, $mode, $checkPermissions, $mainId, $otherId, $cacheKeyString);
878 }
879
880 if ($cacheKeyString && !$redirectForPerformance) {
881 // retrieve next pair of dupes
882 // @todo call getDuplicatePairs.
883 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString,
884 $cacheParams['join'],
885 $cacheParams['where'],
886 0,
887 $cacheParams['limit'],
888 [],
889 '',
890 FALSE
891 );
892 }
893 else {
894 // do not proceed. Terminate the loop
895 unset($dupePairs);
896 }
897 }
898
899 CRM_Dedupe_Merger::updateMergeStats($cacheKeyString, $resultStats);
900 return $resultStats;
901 }
902
903 /**
904 * A function which uses various rules / algorithms for choosing which contact to bias to
905 * when there's a conflict (to handle "gotchas"). Plus the safest route to merge.
906 *
907 * @param int $mainId
908 * Main contact with whom merge has to happen.
909 * @param int $otherId
910 * Duplicate contact which would be deleted after merge operation.
911 * @param array $migrationInfo
912 * Array of information about which elements to merge.
913 * @param string $mode
914 * Helps decide how to behave when there are conflicts.
915 * - A 'safe' value skips the merge if there are any un-resolved conflicts.
916 * - Does a force merge otherwise (aggressive mode).
917 *
918 * @param array $conflicts
919 * An empty array to be filed with conflict information.
920 *
921 * @return bool
922 */
923 public static function skipMerge($mainId, $otherId, &$migrationInfo, $mode = 'safe', &$conflicts = []) {
924
925 $conflicts = self::getConflicts($migrationInfo, $mainId, $otherId, $mode);
926
927 if (!empty($conflicts)) {
928 foreach ($conflicts as $key => $val) {
929 if ($val === NULL and $mode == 'safe') {
930 // un-resolved conflicts still present. Lets skip this merge after saving the conflict / reason.
931 return TRUE;
932 }
933 else {
934 // copy over the resolved values
935 $migrationInfo[$key] = $val;
936 }
937 }
938 // if there are conflicts and mode is aggressive, allow hooks to decide if to skip merges
939 return (bool) $migrationInfo['skip_merge'];
940 }
941 return FALSE;
942 }
943
944 /**
945 * Compare 2 addresses to see if they are the same.
946 *
947 * @param array $mainAddress
948 * @param array $comparisonAddress
949 *
950 * @return bool
951 */
952 public static function locationIsSame($mainAddress, $comparisonAddress) {
953 $keysToIgnore = [
954 'id',
955 'is_primary',
956 'is_billing',
957 'manual_geo_code',
958 'contact_id',
959 'reset_date',
960 'hold_date',
961 ];
962 foreach ($comparisonAddress as $field => $value) {
963 if (in_array($field, $keysToIgnore)) {
964 continue;
965 }
966 if ((!empty($value) || $value === '0') && isset($mainAddress[$field]) && $mainAddress[$field] != $value) {
967 return FALSE;
968 }
969 }
970 return TRUE;
971 }
972
973 /**
974 * A function to build an array of information about location blocks that is
975 * required when merging location fields
976 *
977 * @return array
978 */
979 public static function getLocationBlockInfo() {
980 $locationBlocks = [
981 'address' => [
982 'label' => 'Address',
983 'displayField' => 'display',
984 'sortString' => 'location_type_id',
985 'hasLocation' => TRUE,
986 'hasType' => FALSE,
987 ],
988 'email' => [
989 'label' => 'Email',
990 'displayField' => 'display',
991 'sortString' => 'location_type_id',
992 'hasLocation' => TRUE,
993 'hasType' => FALSE,
994 ],
995 'im' => [
996 'label' => 'IM',
997 'displayField' => 'name',
998 'sortString' => 'location_type_id,provider_id',
999 'hasLocation' => TRUE,
1000 'hasType' => 'provider_id',
1001 ],
1002 'phone' => [
1003 'label' => 'Phone',
1004 'displayField' => 'phone',
1005 'sortString' => 'location_type_id,phone_type_id',
1006 'hasLocation' => TRUE,
1007 'hasType' => 'phone_type_id',
1008 ],
1009 'website' => [
1010 'label' => 'Website',
1011 'displayField' => 'url',
1012 'sortString' => 'website_type_id',
1013 'hasLocation' => FALSE,
1014 'hasType' => 'website_type_id',
1015 ],
1016 ];
1017 return $locationBlocks;
1018 }
1019
1020 /**
1021 * A function to build an array of information required by merge function and the merge UI.
1022 *
1023 * @param int $mainId
1024 * Main contact with whom merge has to happen.
1025 * @param int $otherId
1026 * Duplicate contact which would be deleted after merge operation.
1027 * @param bool $checkPermissions
1028 * Should the logged in user's permissions be ignore. Setting this to false is
1029 * highly risky as it could cause data to be lost due to conflicts not showing up.
1030 * OTOH there is a risk a merger might view custom data they do not have permission to.
1031 * Hence for now only making this really explicit and making it reflect perms in
1032 * an api call.
1033 *
1034 * @todo review permissions issue!
1035 *
1036 * @return array|bool|int
1037 *
1038 * rows => An array of arrays, each is row of merge information for the table
1039 * Format: move_fieldname, eg: move_contact_type
1040 * main => Value associated with the main contact
1041 * other => Value associated with the other contact
1042 * title => The title of the field to display in the merge table
1043 *
1044 * elements => An array of form elements for the merge UI
1045 *
1046 * rel_table_elements => An array of form elements for the merge UI for
1047 * entities related to the contact (eg: checkbox to move 'mailings')
1048 *
1049 * rel_tables => Stores the tables that have related entities for the contact
1050 * for example mailings, groups
1051 *
1052 * main_details => An array of core contact field values, eg: first_name, etc.
1053 * location_blocks => An array of location block data for the main contact
1054 * stored as the 'result' of an API call.
1055 * eg: main_details['location_blocks']['address'][0]['id']
1056 * eg: main_details['location_blocks']['email'][1]['id']
1057 *
1058 * other_details => As above, but for the 'other' contact
1059 *
1060 * migration_info => Stores the 'default' merge actions for each field which
1061 * is used when programatically merging contacts. It contains instructions
1062 * to move all fields from the 'other' contact to the 'main' contact, as
1063 * though the form had been submitted with those options.
1064 *
1065 * @throws \CRM_Core_Exception
1066 * @throws \CiviCRM_API3_Exception
1067 * @throws \Exception
1068 */
1069 public static function getRowsElementsAndInfo($mainId, $otherId, $checkPermissions = TRUE) {
1070 $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
1071 $fields = self::getMergeFieldsMetadata();
1072
1073 $main = self::getMergeContactDetails($mainId);
1074 $other = self::getMergeContactDetails($otherId);
1075
1076 $compareFields = self::retrieveFields($main, $other);
1077
1078 $rows = $elements = $relTableElements = $migrationInfo = [];
1079
1080 foreach ($compareFields['contact'] as $field) {
1081 if ($field == 'contact_sub_type') {
1082 // CRM-15681 don't display sub-types in UI
1083 continue;
1084 }
1085 foreach (['main' => $main, 'other' => $other] as $moniker => $contact) {
1086 $value = $label = CRM_Utils_Array::value($field, $contact);
1087 $fieldSpec = $fields[$field];
1088 if (!empty($fieldSpec['serialize']) && is_array($value)) {
1089 // In practice this only applies to preferred_communication_method as the sub types are skipped above
1090 // and no others are serialized.
1091 $labels = [];
1092 foreach ($value as $individualValue) {
1093 $labels[] = CRM_Core_PseudoConstant::getLabel('CRM_Contact_BAO_Contact', $field, $individualValue);
1094 }
1095 $label = implode(', ', $labels);
1096 // We serialize this due to historic handling but it's likely that if we just left it as an
1097 // array all would be well & we would have less code.
1098 $value = CRM_Core_DAO::serializeField($value, $fieldSpec['serialize']);
1099 }
1100 elseif (!empty($fieldSpec['type']) && $fieldSpec['type'] == CRM_Utils_Type::T_DATE) {
1101 if ($value) {
1102 $value = str_replace('-', '', $value);
1103 $label = CRM_Utils_Date::customFormat($label);
1104 }
1105 else {
1106 $value = "null";
1107 }
1108 }
1109 elseif (!empty($fields[$field]['type']) && $fields[$field]['type'] == CRM_Utils_Type::T_BOOLEAN) {
1110 if ($label === '0') {
1111 $label = ts('[ ]');
1112 }
1113 if ($label === '1') {
1114 $label = ts('[x]');
1115 }
1116 }
1117 elseif (!empty($fieldSpec['pseudoconstant'])) {
1118 $label = CRM_Core_PseudoConstant::getLabel('CRM_Contact_BAO_Contact', $field, $value);
1119 }
1120 elseif ($field == 'current_employer_id' && !empty($value)) {
1121 $label = "$value (" . CRM_Contact_BAO_Contact::displayName($value) . ")";
1122 }
1123 $rows["move_$field"][$moniker] = $label;
1124 if ($moniker == 'other') {
1125 //CRM-14334
1126 if ($value === NULL || $value == '') {
1127 $value = 'null';
1128 }
1129 if ($value === 0 or $value === '0') {
1130 $value = $qfZeroBug;
1131 }
1132 if (is_array($value) && empty($value[1])) {
1133 $value[1] = NULL;
1134 }
1135
1136 // Display a checkbox to migrate, only if the values are different
1137 if ($value != $main[$field]) {
1138 $elements[] = [
1139 'advcheckbox',
1140 "move_$field",
1141 NULL,
1142 NULL,
1143 NULL,
1144 $value,
1145 ];
1146 }
1147
1148 $migrationInfo["move_$field"] = $value;
1149 }
1150 }
1151 $rows["move_$field"]['title'] = $fields[$field]['title'];
1152 }
1153
1154 // Handle location blocks.
1155 // @todo OpenID not in API yet, so is not supported here.
1156
1157 // Set up useful information about the location blocks
1158 $locationBlocks = self::getLocationBlockInfo();
1159
1160 $locations = [
1161 'main' => [],
1162 'other' => [],
1163 ];
1164
1165 // @todo This could probably be defined and used earlier
1166 $mergeTargets = [
1167 'main' => $mainId,
1168 'other' => $otherId,
1169 ];
1170
1171 foreach ($locationBlocks as $blockName => $blockInfo) {
1172
1173 // Collect existing fields from both 'main' and 'other' contacts first
1174 // This allows us to match up location/types when building the table rows
1175 foreach ($mergeTargets as $moniker => $cid) {
1176 $searchParams = [
1177 'contact_id' => $cid,
1178 // CRM-17556 Order by field-specific criteria
1179 'options' => [
1180 'sort' => $blockInfo['sortString'],
1181 ],
1182 ];
1183 $values = civicrm_api3($blockName, 'get', $searchParams);
1184 if ($values['count']) {
1185 $cnt = 0;
1186 foreach ($values['values'] as $value) {
1187 $locations[$moniker][$blockName][$cnt] = $value;
1188 // Fix address display
1189 if ($blockName == 'address') {
1190 CRM_Core_BAO_Address::fixAddress($value);
1191 $locations[$moniker][$blockName][$cnt]['display'] = CRM_Utils_Address::format($value);
1192 }
1193 // Fix email display
1194 elseif ($blockName == 'email') {
1195 $locations[$moniker][$blockName][$cnt]['display'] = CRM_Utils_Mail::format($value);
1196 }
1197
1198 $cnt++;
1199 }
1200 }
1201 }
1202
1203 // Now, build the table rows appropriately, based off the information on
1204 // the 'other' contact
1205 if (!empty($locations['other']) && !empty($locations['other'][$blockName])) {
1206 foreach ($locations['other'][$blockName] as $count => $value) {
1207
1208 $displayValue = $value[$blockInfo['displayField']];
1209
1210 // Add this value to the table rows
1211 $rows["move_location_{$blockName}_{$count}"]['other'] = $displayValue;
1212
1213 // CRM-17556 Only display 'main' contact value if it's the same location + type
1214 // Look it up from main values...
1215
1216 $lookupLocation = FALSE;
1217 if ($blockInfo['hasLocation']) {
1218 $lookupLocation = $value['location_type_id'];
1219 }
1220
1221 $lookupType = FALSE;
1222 if ($blockInfo['hasType']) {
1223 $lookupType = CRM_Utils_Array::value($blockInfo['hasType'], $value);
1224 }
1225
1226 // Hold ID of main contact's matching block
1227 $mainContactBlockId = 0;
1228
1229 if (!empty($locations['main'][$blockName])) {
1230 foreach ($locations['main'][$blockName] as $mainValueCheck) {
1231 // No location/type, or matching location and type
1232 if (
1233 (empty($lookupLocation) || $lookupLocation == $mainValueCheck['location_type_id'])
1234 && (empty($lookupType) || $lookupType == $mainValueCheck[$blockInfo['hasType']])
1235 ) {
1236 // Set this value as the default against the 'other' contact value
1237 $rows["move_location_{$blockName}_{$count}"]['main'] = $mainValueCheck[$blockInfo['displayField']];
1238 $rows["move_location_{$blockName}_{$count}"]['main_is_primary'] = $mainValueCheck['is_primary'];
1239 $rows["move_location_{$blockName}_{$count}"]['location_entity'] = $blockName;
1240 $mainContactBlockId = $mainValueCheck['id'];
1241 break;
1242 }
1243 }
1244 }
1245
1246 // Add checkbox to migrate data from 'other' to 'main'
1247 $elements[] = ['advcheckbox', "move_location_{$blockName}_{$count}"];
1248
1249 // Add checkbox to set the 'other' location as primary
1250 $elements[] = [
1251 'advcheckbox',
1252 "location_blocks[$blockName][$count][set_other_primary]",
1253 NULL,
1254 ts('Set as primary'),
1255 ];
1256
1257 // Flag up this field to skipMerge function (@todo: do we need to?)
1258 $migrationInfo["move_location_{$blockName}_{$count}"] = 1;
1259
1260 // Add a hidden field to store the ID of the target main contact block
1261 $elements[] = [
1262 'hidden',
1263 "location_blocks[$blockName][$count][mainContactBlockId]",
1264 $mainContactBlockId,
1265 ];
1266
1267 // Setup variables
1268 $thisTypeId = FALSE;
1269 $thisLocId = FALSE;
1270
1271 // Provide a select drop-down for the location's location type
1272 // eg: Home, Work...
1273
1274 if ($blockInfo['hasLocation']) {
1275
1276 // Load the location options for this entity
1277 $locationOptions = civicrm_api3($blockName, 'getoptions', ['field' => 'location_type_id']);
1278
1279 $thisLocId = $value['location_type_id'];
1280
1281 // Put this field's location type at the top of the list
1282 $tmpIdList = $locationOptions['values'];
1283 $defaultLocId = [$thisLocId => $tmpIdList[$thisLocId]];
1284 unset($tmpIdList[$thisLocId]);
1285
1286 // Add the element
1287 $elements[] = [
1288 'select',
1289 "location_blocks[$blockName][$count][locTypeId]",
1290 NULL,
1291 $defaultLocId + $tmpIdList,
1292 ];
1293
1294 // Add the relevant information to the $migrationInfo
1295 // Keep location-type-id same as that of other-contact
1296 // @todo Check this logic out
1297 $migrationInfo['location_blocks'][$blockName][$count]['locTypeId'] = $thisLocId;
1298 if ($blockName != 'address') {
1299 $elements[] = [
1300 'advcheckbox',
1301 "location_blocks[{$blockName}][$count][operation]",
1302 NULL,
1303 ts('Add new'),
1304 ];
1305 // always use add operation
1306 $migrationInfo['location_blocks'][$blockName][$count]['operation'] = 1;
1307 }
1308
1309 }
1310
1311 // Provide a select drop-down for the location's type/provider
1312 // eg websites: Google+, Facebook...
1313
1314 if ($blockInfo['hasType']) {
1315
1316 // Load the type options for this entity
1317 $typeOptions = civicrm_api3($blockName, 'getoptions', ['field' => $blockInfo['hasType']]);
1318
1319 $thisTypeId = CRM_Utils_Array::value($blockInfo['hasType'], $value);
1320
1321 // Put this field's location type at the top of the list
1322 $tmpIdList = $typeOptions['values'];
1323 $defaultTypeId = [$thisTypeId => CRM_Utils_Array::value($thisTypeId, $tmpIdList)];
1324 unset($tmpIdList[$thisTypeId]);
1325
1326 // Add the element
1327 $elements[] = [
1328 'select',
1329 "location_blocks[$blockName][$count][typeTypeId]",
1330 NULL,
1331 $defaultTypeId + $tmpIdList,
1332 ];
1333
1334 // Add the information to the migrationInfo
1335 $migrationInfo['location_blocks'][$blockName][$count]['typeTypeId'] = $thisTypeId;
1336
1337 }
1338
1339 // Set the label for this row
1340 $rowTitle = $blockInfo['label'] . ' ' . ($count + 1);
1341 if (!empty($thisLocId)) {
1342 $rowTitle .= ' (' . $locationOptions['values'][$thisLocId] . ')';
1343 }
1344 if (!empty($thisTypeId)) {
1345 $rowTitle .= ' (' . $typeOptions['values'][$thisTypeId] . ')';
1346 }
1347 $rows["move_location_{$blockName}_$count"]['title'] = $rowTitle;
1348
1349 } // End loop through 'other' locations of this type
1350
1351 } // End if 'other' location for this type exists
1352
1353 } // End loop through each location block entity
1354
1355 // add the related tables and unset the ones that don't sport any of the duplicate contact's info
1356 $config = CRM_Core_Config::singleton();
1357 $mainUfId = CRM_Core_BAO_UFMatch::getUFId($mainId);
1358 $mainUser = NULL;
1359 if ($mainUfId) {
1360 // d6 compatible
1361 if ($config->userSystem->is_drupal == '1' && function_exists($mainUser)) {
1362 $mainUser = user_load($mainUfId);
1363 }
1364 elseif ($config->userFramework == 'Joomla') {
1365 $mainUser = JFactory::getUser($mainUfId);
1366 }
1367 }
1368 $otherUfId = CRM_Core_BAO_UFMatch::getUFId($otherId);
1369 $otherUser = NULL;
1370 if ($otherUfId) {
1371 // d6 compatible
1372 if ($config->userSystem->is_drupal == '1' && function_exists($mainUser)) {
1373 $otherUser = user_load($otherUfId);
1374 }
1375 elseif ($config->userFramework == 'Joomla') {
1376 $otherUser = JFactory::getUser($otherUfId);
1377 }
1378 }
1379
1380 $relTables = CRM_Dedupe_Merger::relTables();
1381 $activeRelTables = CRM_Dedupe_Merger::getActiveRelTables($otherId);
1382 $activeMainRelTables = CRM_Dedupe_Merger::getActiveRelTables($mainId);
1383 foreach ($relTables as $name => $null) {
1384 if (!in_array($name, $activeRelTables) &&
1385 !(($name == 'rel_table_users') && in_array($name, $activeMainRelTables))
1386 ) {
1387 unset($relTables[$name]);
1388 continue;
1389 }
1390
1391 $relTableElements[] = ['checkbox', "move_$name"];
1392 $migrationInfo["move_$name"] = 1;
1393
1394 $relTables[$name]['main_url'] = str_replace('$cid', $mainId, $relTables[$name]['url']);
1395 $relTables[$name]['other_url'] = str_replace('$cid', $otherId, $relTables[$name]['url']);
1396 if ($name == 'rel_table_users') {
1397 $relTables[$name]['main_url'] = str_replace('%ufid', $mainUfId, $relTables[$name]['url']);
1398 $relTables[$name]['other_url'] = str_replace('%ufid', $otherUfId, $relTables[$name]['url']);
1399 $find = ['$ufid', '$ufname'];
1400 if ($mainUser) {
1401 $replace = [$mainUfId, $mainUser->name];
1402 $relTables[$name]['main_title'] = str_replace($find, $replace, $relTables[$name]['title']);
1403 }
1404 if ($otherUser) {
1405 $replace = [$otherUfId, $otherUser->name];
1406 $relTables[$name]['other_title'] = str_replace($find, $replace, $relTables[$name]['title']);
1407 }
1408 }
1409 if ($name == 'rel_table_memberships') {
1410 //Enable 'add new' checkbox if main contact does not contain any membership similar to duplicate contact.
1411 $attributes = ['checked' => 'checked'];
1412 $otherContactMemberships = CRM_Member_BAO_Membership::getAllContactMembership($otherId);
1413 foreach ($otherContactMemberships as $membership) {
1414 $mainMembership = CRM_Member_BAO_Membership::getContactMembership($mainId, $membership['membership_type_id'], FALSE);
1415 if ($mainMembership) {
1416 $attributes = [];
1417 }
1418 }
1419 $elements[] = [
1420 'checkbox',
1421 "operation[move_{$name}][add]",
1422 NULL,
1423 ts('add new'),
1424 $attributes,
1425 ];
1426 $migrationInfo["operation"]["move_{$name}"]['add'] = 1;
1427 }
1428 }
1429 foreach ($relTables as $name => $null) {
1430 $relTables["move_$name"] = $relTables[$name];
1431 unset($relTables[$name]);
1432 }
1433
1434 // handle custom fields
1435 $mainTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $mainId, -1,
1436 CRM_Utils_Array::value('contact_sub_type', $main), NULL, TRUE, NULL, TRUE, $checkPermissions
1437 );
1438 $otherTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $otherId, -1,
1439 CRM_Utils_Array::value('contact_sub_type', $other), NULL, TRUE, NULL, TRUE, $checkPermissions
1440 );
1441
1442 foreach ($otherTree as $gid => $group) {
1443 $foundField = FALSE;
1444 if (!isset($group['fields'])) {
1445 continue;
1446 }
1447
1448 foreach ($group['fields'] as $fid => $field) {
1449 if (in_array($fid, $compareFields['custom'])) {
1450 if (!$foundField) {
1451 $rows["custom_group_$gid"]['title'] = $group['title'];
1452 $foundField = TRUE;
1453 }
1454 if (!empty($mainTree[$gid]['fields'][$fid]['customValue'])) {
1455 foreach ($mainTree[$gid]['fields'][$fid]['customValue'] as $valueId => $values) {
1456 $rows["move_custom_$fid"]['main'] = CRM_Core_BAO_CustomField::displayValue($values['data'], $fid);
1457 }
1458 }
1459 $value = "null";
1460 if (!empty($otherTree[$gid]['fields'][$fid]['customValue'])) {
1461 foreach ($otherTree[$gid]['fields'][$fid]['customValue'] as $valueId => $values) {
1462 $rows["move_custom_$fid"]['other'] = CRM_Core_BAO_CustomField::displayValue($values['data'], $fid);
1463 if ($values['data'] === 0 || $values['data'] === '0') {
1464 $values['data'] = $qfZeroBug;
1465 }
1466 $value = ($values['data']) ? $values['data'] : $value;
1467 }
1468 }
1469 $rows["move_custom_$fid"]['title'] = $field['label'];
1470
1471 $elements[] = [
1472 'advcheckbox',
1473 "move_custom_$fid",
1474 NULL,
1475 NULL,
1476 NULL,
1477 $value,
1478 ];
1479 $migrationInfo["move_custom_$fid"] = $value;
1480 }
1481 }
1482 }
1483
1484 $result = [
1485 'rows' => $rows,
1486 'elements' => $elements,
1487 'rel_table_elements' => $relTableElements,
1488 'rel_tables' => $relTables,
1489 'main_details' => $main,
1490 'other_details' => $other,
1491 'migration_info' => $migrationInfo,
1492 ];
1493
1494 $result['main_details']['location_blocks'] = $locations['main'];
1495 $result['other_details']['location_blocks'] = $locations['other'];
1496
1497 return $result;
1498 }
1499
1500 /**
1501 * Based on the provided two contact_ids and a set of tables, move the belongings of the
1502 * other contact to the main one - be it Location / CustomFields or Contact .. related info.
1503 * A superset of moveContactBelongings() function.
1504 *
1505 * @param int $mainId
1506 * Main contact with whom merge has to happen.
1507 * @param int $otherId
1508 * Duplicate contact which would be deleted after merge operation.
1509 *
1510 * @param array $migrationInfo
1511 *
1512 * @param bool $checkPermissions
1513 * Respect logged in user permissions.
1514 *
1515 * @return bool
1516 * @throws \CiviCRM_API3_Exception
1517 */
1518 public static function moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions = TRUE) {
1519 if (empty($migrationInfo)) {
1520 return FALSE;
1521 }
1522 // Encapsulate in a transaction to avoid half-merges.
1523 $transaction = new CRM_Core_Transaction();
1524
1525 $contactType = $migrationInfo['main_details']['contact_type'];
1526 $relTables = CRM_Dedupe_Merger::relTables();
1527 $submittedCustomFields = $moveTables = $tableOperations = $removeTables = [];
1528
1529 self::swapOutFieldsAffectedByQFZeroBug($migrationInfo);
1530 foreach ($migrationInfo as $key => $value) {
1531
1532 if (substr($key, 0, 12) == 'move_custom_' && $value != NULL) {
1533 $submitted[substr($key, 5)] = $value;
1534 $submittedCustomFields[] = substr($key, 12);
1535 }
1536 elseif (in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) && $value != NULL) {
1537 $submitted[substr($key, 5)] = $value;
1538 }
1539 elseif (substr($key, 0, 15) == 'move_rel_table_' and $value == '1') {
1540 $moveTables = array_merge($moveTables, $relTables[substr($key, 5)]['tables']);
1541 if (array_key_exists('operation', $migrationInfo)) {
1542 foreach ($relTables[substr($key, 5)]['tables'] as $table) {
1543 if (array_key_exists($key, $migrationInfo['operation'])) {
1544 $tableOperations[$table] = $migrationInfo['operation'][$key];
1545 }
1546 }
1547 }
1548 }
1549 elseif (substr($key, 0, 15) == 'move_rel_table_' and $value == '0') {
1550 $removeTables = array_merge($moveTables, $relTables[substr($key, 5)]['tables']);
1551 }
1552 }
1553 self::mergeLocations($mainId, $otherId, $migrationInfo);
1554
1555 // **** Do contact related migrations
1556 $customTablesToCopyValues = self::getAffectedCustomTables($submittedCustomFields);
1557 // @todo - move all custom field processing to the move class & eventually have an
1558 // overridable DAO class for it.
1559 $customFieldBAO = new CRM_Core_BAO_CustomField();
1560 $customFieldBAO->move($otherId, $mainId, $submittedCustomFields);
1561 CRM_Dedupe_Merger::moveContactBelongings($mainId, $otherId, $moveTables, $tableOperations, $customTablesToCopyValues);
1562 unset($moveTables, $tableOperations);
1563
1564 // **** Do table related removals
1565 if (!empty($removeTables)) {
1566 // **** CRM-20421
1567 CRM_Dedupe_Merger::removeContactBelongings($otherId, $removeTables);
1568 $removeTables = [];
1569 }
1570
1571 // FIXME: fix gender, prefix and postfix, so they're edible by createProfileContact()
1572 $names['gender'] = ['newName' => 'gender_id', 'groupName' => 'gender'];
1573 $names['individual_prefix'] = [
1574 'newName' => 'prefix_id',
1575 'groupName' => 'individual_prefix',
1576 ];
1577 $names['individual_suffix'] = [
1578 'newName' => 'suffix_id',
1579 'groupName' => 'individual_suffix',
1580 ];
1581 $names['communication_style'] = [
1582 'newName' => 'communication_style_id',
1583 'groupName' => 'communication_style',
1584 ];
1585 $names['addressee'] = [
1586 'newName' => 'addressee_id',
1587 'groupName' => 'addressee',
1588 ];
1589 $names['email_greeting'] = [
1590 'newName' => 'email_greeting_id',
1591 'groupName' => 'email_greeting',
1592 ];
1593 $names['postal_greeting'] = [
1594 'newName' => 'postal_greeting_id',
1595 'groupName' => 'postal_greeting',
1596 ];
1597 CRM_Core_OptionGroup::lookupValues($submitted, $names, TRUE);
1598 // fix custom fields so they're edible by createProfileContact()
1599 $cFields = self::getCustomFieldMetadata($contactType);
1600
1601 if (!isset($submitted)) {
1602 $submitted = [];
1603 }
1604 foreach ($submitted as $key => $value) {
1605 list($cFields, $submitted) = self::processCustomFields($mainId, $key, $cFields, $submitted, $value);
1606 }
1607
1608 // move view only custom fields CRM-5362
1609 $viewOnlyCustomFields = [];
1610 foreach ($submitted as $key => $value) {
1611 $fid = CRM_Core_BAO_CustomField::getKeyID($key);
1612 if ($fid && array_key_exists($fid, $cFields) && !empty($cFields[$fid]['attributes']['is_view'])
1613 ) {
1614 $viewOnlyCustomFields[$key] = $value;
1615 }
1616 }
1617 // special case to set values for view only, CRM-5362
1618 if (!empty($viewOnlyCustomFields)) {
1619 $viewOnlyCustomFields['entityID'] = $mainId;
1620 CRM_Core_BAO_CustomValueTable::setValues($viewOnlyCustomFields);
1621 }
1622
1623 // dev/core#996 Ensure that the earliest created date is stored against the kept contact id
1624 $mainCreatedDate = civicrm_api3('Contact', 'getsingle', [
1625 'id' => $mainId,
1626 'return' => ['created_date'],
1627 ])['created_date'];
1628 $otherCreatedDate = civicrm_api3('Contact', 'getsingle', [
1629 'id' => $otherId,
1630 'return' => ['created_date'],
1631 ])['created_date'];
1632 if ($otherCreatedDate < $mainCreatedDate) {
1633 CRM_Core_DAO::executeQuery("UPDATE civicrm_contact SET created_date = %1 WHERE id = %2", [
1634 1 => [$otherCreatedDate, 'String'],
1635 2 => [$mainId, 'Positive'],
1636 ]);
1637 }
1638
1639 if (!$checkPermissions || (CRM_Core_Permission::check('merge duplicate contacts') &&
1640 CRM_Core_Permission::check('delete contacts'))
1641 ) {
1642 // if ext id is submitted then set it null for contact to be deleted
1643 if (!empty($submitted['external_identifier'])) {
1644 $query = "UPDATE civicrm_contact SET external_identifier = null WHERE id = {$otherId}";
1645 CRM_Core_DAO::executeQuery($query);
1646 }
1647 civicrm_api3('contact', 'delete', ['id' => $otherId]);
1648 }
1649
1650 // CRM-15681 merge sub_types
1651 if ($other_sub_types = CRM_Utils_Array::value('contact_sub_type', $migrationInfo['other_details'])) {
1652 if ($main_sub_types = CRM_Utils_Array::value('contact_sub_type', $migrationInfo['main_details'])) {
1653 $submitted['contact_sub_type'] = array_unique(array_merge($main_sub_types, $other_sub_types));
1654 }
1655 else {
1656 $submitted['contact_sub_type'] = $other_sub_types;
1657 }
1658 }
1659
1660 // **** Update contact related info for the main contact
1661 if (!empty($submitted)) {
1662 $submitted['contact_id'] = $mainId;
1663
1664 //update current employer field
1665 if ($currentEmloyerId = CRM_Utils_Array::value('current_employer_id', $submitted)) {
1666 if (!CRM_Utils_System::isNull($currentEmloyerId)) {
1667 $submitted['current_employer'] = $submitted['current_employer_id'];
1668 }
1669 else {
1670 $submitted['current_employer'] = '';
1671 }
1672 unset($submitted['current_employer_id']);
1673 }
1674
1675 //CRM-14312 include prefix/suffix from mainId if not overridden for proper construction of display/sort name
1676 if (!isset($submitted['prefix_id']) && !empty($migrationInfo['main_details']['prefix_id'])) {
1677 $submitted['prefix_id'] = $migrationInfo['main_details']['prefix_id'];
1678 }
1679 if (!isset($submitted['suffix_id']) && !empty($migrationInfo['main_details']['suffix_id'])) {
1680 $submitted['suffix_id'] = $migrationInfo['main_details']['suffix_id'];
1681 }
1682 $null = [];
1683 CRM_Contact_BAO_Contact::createProfileContact($submitted, $null, $mainId);
1684 }
1685 $transaction->commit();
1686 CRM_Utils_Hook::post('merge', 'Contact', $mainId);
1687 self::createMergeActivities($mainId, $otherId);
1688
1689 return TRUE;
1690 }
1691
1692 /**
1693 * Builds an Array of Custom tables for given custom field ID's.
1694 *
1695 * @param $customFieldIDs
1696 *
1697 * @return array
1698 * Array of custom table names
1699 */
1700 private static function getAffectedCustomTables($customFieldIDs) {
1701 $customTableToCopyValues = [];
1702
1703 foreach ($customFieldIDs as $fieldID) {
1704 if (!empty($fieldID)) {
1705 $customField = civicrm_api3('custom_field', 'getsingle', [
1706 'id' => $fieldID,
1707 'is_active' => TRUE,
1708 ]);
1709 if (!civicrm_error($customField) && !empty($customField['custom_group_id'])) {
1710 $customGroup = civicrm_api3('custom_group', 'getsingle', [
1711 'id' => $customField['custom_group_id'],
1712 'is_active' => TRUE,
1713 ]);
1714
1715 if (!civicrm_error($customGroup) && !empty($customGroup['table_name'])) {
1716 $customTableToCopyValues[] = $customGroup['table_name'];
1717 }
1718 }
1719 }
1720 }
1721
1722 return $customTableToCopyValues;
1723 }
1724
1725 /**
1726 * Get fields in the contact table suitable for merging.
1727 *
1728 * @return array
1729 * Array of field names to be potentially merged.
1730 */
1731 public static function getContactFields() {
1732 $contactFields = CRM_Contact_DAO_Contact::fields();
1733 $invalidFields = [
1734 'api_key',
1735 'created_date',
1736 'display_name',
1737 'hash',
1738 'id',
1739 'modified_date',
1740 'primary_contact_id',
1741 'sort_name',
1742 'user_unique_id',
1743 ];
1744 foreach ($contactFields as $field => $value) {
1745 if (in_array($field, $invalidFields)) {
1746 unset($contactFields[$field]);
1747 }
1748 }
1749 return array_keys($contactFields);
1750 }
1751
1752 /**
1753 * Added for CRM-12695
1754 * Based on the contactID provided
1755 * add/update membership(s) to related contacts
1756 *
1757 * @param int $contactID
1758 */
1759 public static function addMembershipToRealtedContacts($contactID) {
1760 $dao = new CRM_Member_DAO_Membership();
1761 $dao->contact_id = $contactID;
1762 $dao->is_test = 0;
1763 $dao->find();
1764
1765 //checks membership of contact itself
1766 while ($dao->fetch()) {
1767 $relationshipTypeId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $dao->membership_type_id, 'relationship_type_id', 'id');
1768 if ($relationshipTypeId) {
1769 $membershipParams = [
1770 'id' => $dao->id,
1771 'contact_id' => $dao->contact_id,
1772 'membership_type_id' => $dao->membership_type_id,
1773 'join_date' => CRM_Utils_Date::isoToMysql($dao->join_date),
1774 'start_date' => CRM_Utils_Date::isoToMysql($dao->start_date),
1775 'end_date' => CRM_Utils_Date::isoToMysql($dao->end_date),
1776 'source' => $dao->source,
1777 'status_id' => $dao->status_id,
1778 ];
1779 // create/update membership(s) for related contact(s)
1780 CRM_Member_BAO_Membership::createRelatedMemberships($membershipParams, $dao);
1781 } // end of if relationshipTypeId
1782 }
1783 }
1784
1785 /**
1786 * Create activities tracking the merge on affected contacts.
1787 *
1788 * @param int $mainId
1789 * @param int $otherId
1790 *
1791 * @throws \CiviCRM_API3_Exception
1792 */
1793 public static function createMergeActivities($mainId, $otherId) {
1794 $params = [
1795 1 => $otherId,
1796 2 => $mainId,
1797 ];
1798 $activity = civicrm_api3('activity', 'create', [
1799 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() :
1800 $mainId,
1801 'subject' => ts('Contact ID %1 has been merged and deleted.', $params),
1802 'target_contact_id' => $mainId,
1803 'activity_type_id' => 'Contact Merged',
1804 'status_id' => 'Completed',
1805 ]);
1806 if (civicrm_api3('Setting', 'getvalue', [
1807 'name' => 'contact_undelete',
1808 'group' => 'CiviCRM Preferences',
1809 ])) {
1810 civicrm_api3('activity', 'create', [
1811 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() :
1812 $otherId,
1813 'subject' => ts('Contact ID %1 has been merged into Contact ID %2 and deleted.', $params),
1814 'target_contact_id' => $otherId,
1815 'activity_type_id' => 'Contact Deleted by Merge',
1816 'parent_id' => $activity['id'],
1817 'status_id' => 'Completed',
1818 ]);
1819 }
1820 }
1821
1822 /**
1823 * Get Duplicate Pairs based on a rule for a group.
1824 *
1825 * @param int $rule_group_id
1826 * @param int $group_id
1827 * @param bool $reloadCacheIfEmpty
1828 * Should the cache be reloaded if empty - this must be false when in a dedupe action!
1829 * @param int $batchLimit
1830 * @param bool $isSelected
1831 * Limit to selected pairs.
1832 * @param bool $includeConflicts
1833 * @param array $criteria
1834 * Additional criteria to narrow down the merge group.
1835 *
1836 * @param bool $checkPermissions
1837 * Respect logged in user permissions.
1838 *
1839 * @param int $searchLimit
1840 * Limit to searching for matches against this many contacts.
1841 *
1842 * @return array
1843 * Array of matches meeting the criteria.
1844 *
1845 * @throws \CRM_Core_Exception
1846 * @throws \CiviCRM_API3_Exception
1847 */
1848 public static function getDuplicatePairs($rule_group_id, $group_id, $reloadCacheIfEmpty, $batchLimit, $isSelected, $includeConflicts = TRUE, $criteria = [], $checkPermissions = TRUE, $searchLimit = 0) {
1849 $dupePairs = self::getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, $includeConflicts, $criteria, $checkPermissions);
1850 if (empty($dupePairs) && $reloadCacheIfEmpty) {
1851 // If we haven't found any dupes, probably cache is empty.
1852 // Try filling cache and give another try. We don't need to specify include conflicts here are there will not be any
1853 // until we have done some processing.
1854 CRM_Core_BAO_PrevNextCache::refillCache($rule_group_id, $group_id, $criteria, $checkPermissions, $searchLimit);
1855 return self::getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, FALSE, $criteria, $checkPermissions);
1856 }
1857 return $dupePairs;
1858 }
1859
1860 /**
1861 * Get the cache key string for the merge action.
1862 *
1863 * @param int $rule_group_id
1864 * @param int $group_id
1865 * @param array $criteria
1866 * Additional criteria to narrow down the merge group.
1867 * Currently we are only supporting the key 'contact' within it.
1868 *
1869 * @param bool $checkPermissions
1870 * Respect the users permissions.
1871 *
1872 * @return string
1873 */
1874 public static function getMergeCacheKeyString($rule_group_id, $group_id, $criteria = [], $checkPermissions = TRUE) {
1875 $contactType = CRM_Dedupe_BAO_RuleGroup::getContactTypeForRuleGroup($rule_group_id);
1876 $cacheKeyString = "merge_{$contactType}";
1877 $cacheKeyString .= $rule_group_id ? "_{$rule_group_id}" : '_0';
1878 $cacheKeyString .= $group_id ? "_{$group_id}" : '_0';
1879 $cacheKeyString .= !empty($criteria) ? md5(serialize($criteria)) : '_0';
1880 if ($checkPermissions) {
1881 $contactID = CRM_Core_Session::getLoggedInContactID();
1882 if (!$contactID) {
1883 // Distinguish between no permission check & no logged in user.
1884 $contactID = 'null';
1885 }
1886 $cacheKeyString .= '_' . $contactID;
1887 }
1888 else {
1889 $cacheKeyString .= '_0';
1890 }
1891 return $cacheKeyString;
1892 }
1893
1894 /**
1895 * Get the metadata for the merge fields.
1896 *
1897 * This is basically the contact metadata, augmented with fields to
1898 * represent email greeting, postal greeting & addressee.
1899 *
1900 * @return array
1901 */
1902 public static function getMergeFieldsMetadata() {
1903 if (isset(\Civi::$statics[__CLASS__]) && isset(\Civi::$statics[__CLASS__]['merge_fields_metadata'])) {
1904 return \Civi::$statics[__CLASS__]['merge_fields_metadata'];
1905 }
1906 $fields = CRM_Contact_DAO_Contact::fields();
1907 static $optionValueFields = [];
1908 if (empty($optionValueFields)) {
1909 $optionValueFields = CRM_Core_OptionValue::getFields();
1910 }
1911 foreach ($optionValueFields as $field => $params) {
1912 $fields[$field]['title'] = $params['title'];
1913 }
1914 \Civi::$statics[__CLASS__]['merge_fields_metadata'] = $fields;
1915 return \Civi::$statics[__CLASS__]['merge_fields_metadata'];
1916 }
1917
1918 /**
1919 * Get the details of the contact to be merged.
1920 *
1921 * @param int $contact_id
1922 *
1923 * @return array
1924 *
1925 * @throws CRM_Core_Exception
1926 */
1927 public static function getMergeContactDetails($contact_id) {
1928 $params = [
1929 'contact_id' => $contact_id,
1930 'version' => 3,
1931 'return' => array_merge(['display_name'], self::getContactFields()),
1932 ];
1933 $result = civicrm_api('contact', 'get', $params);
1934
1935 // CRM-18480: Cancel the process if the contact is already deleted
1936 if (isset($result['values'][$contact_id]['contact_is_deleted']) && !empty($result['values'][$contact_id]['contact_is_deleted'])) {
1937 throw new CRM_Core_Exception(ts('Cannot merge because one contact (ID %1) has been deleted.', [
1938 1 => $contact_id,
1939 ]));
1940 }
1941
1942 return $result['values'][$contact_id];
1943 }
1944
1945 /**
1946 * Merge location.
1947 *
1948 * Based on the data in the $locationMigrationInfo merge the locations for 2 contacts.
1949 *
1950 * The data is in the format received from the merge form (which is a fairly confusing format).
1951 *
1952 * It is converted into an array of DAOs which is passed to the alterLocationMergeData hook
1953 * before saving or deleting the DAOs. A new hook is added to allow these to be altered after they have
1954 * been calculated and before saving because
1955 * - the existing format & hook combo is so confusing it is hard for developers to change & inherently fragile
1956 * - passing to a hook right before save means calculations only have to be done once
1957 * - the existing pattern of passing dissimilar data to the same (merge) hook with a different 'type' is just
1958 * ugly.
1959 *
1960 * The use of the new hook is tested, including the fact it is called before contributions are merged, as this
1961 * is likely to be significant data in merge hooks.
1962 *
1963 * @param int $mainId
1964 * @param int $otherId
1965 *
1966 * @param array $migrationInfo
1967 * Migration info for the merge. This is passed to the hook as informational only.
1968 */
1969 public static function mergeLocations($mainId, $otherId, $migrationInfo) {
1970 foreach ($migrationInfo as $key => $value) {
1971 $isLocationField = (substr($key, 0, 14) == 'move_location_' and $value != NULL);
1972 if (!$isLocationField) {
1973 continue;
1974 }
1975 $locField = explode('_', $key);
1976 $fieldName = $locField[2];
1977 $fieldCount = $locField[3];
1978
1979 // Set up the operation type (add/overwrite)
1980 // Ignore operation for websites
1981 // @todo Tidy this up
1982 $operation = 0;
1983 if ($fieldName != 'website') {
1984 $operation = CRM_Utils_Array::value('operation', $migrationInfo['location_blocks'][$fieldName][$fieldCount]);
1985 }
1986 // default operation is overwrite.
1987 if (!$operation) {
1988 $operation = 2;
1989 }
1990 $locBlocks[$fieldName][$fieldCount]['operation'] = $operation;
1991 }
1992 $blocksDAO = [];
1993
1994 // @todo Handle OpenID (not currently in API).
1995 if (!empty($locBlocks)) {
1996 $locationBlocks = self::getLocationBlockInfo();
1997
1998 $primaryBlockIds = CRM_Contact_BAO_Contact::getLocBlockIds($mainId, ['is_primary' => 1]);
1999 $billingBlockIds = CRM_Contact_BAO_Contact::getLocBlockIds($mainId, ['is_billing' => 1]);
2000
2001 foreach ($locBlocks as $name => $block) {
2002 $blocksDAO[$name] = ['delete' => [], 'update' => []];
2003 if (!is_array($block) || CRM_Utils_System::isNull($block)) {
2004 continue;
2005 }
2006 $daoName = 'CRM_Core_DAO_' . $locationBlocks[$name]['label'];
2007 $changePrimary = FALSE;
2008 $primaryDAOId = (array_key_exists($name, $primaryBlockIds)) ? array_pop($primaryBlockIds[$name]) : NULL;
2009 $billingDAOId = (array_key_exists($name, $billingBlockIds)) ? array_pop($billingBlockIds[$name]) : NULL;
2010
2011 foreach ($block as $blkCount => $values) {
2012 $otherBlockId = CRM_Utils_Array::value('id', $migrationInfo['other_details']['location_blocks'][$name][$blkCount]);
2013 $mainBlockId = CRM_Utils_Array::value('mainContactBlockId', $migrationInfo['location_blocks'][$name][$blkCount], 0);
2014 if (!$otherBlockId) {
2015 continue;
2016 }
2017
2018 // For the block which belongs to other-contact, link the location block to main-contact
2019 $otherBlockDAO = new $daoName();
2020 $otherBlockDAO->contact_id = $mainId;
2021
2022 // Get the ID of this block on the 'other' contact, otherwise skip
2023 $otherBlockDAO->id = $otherBlockId;
2024
2025 // Add/update location and type information from the form, if applicable
2026 if ($locationBlocks[$name]['hasLocation']) {
2027 $locTypeId = CRM_Utils_Array::value('locTypeId', $migrationInfo['location_blocks'][$name][$blkCount]);
2028 $otherBlockDAO->location_type_id = $locTypeId;
2029 }
2030 if ($locationBlocks[$name]['hasType']) {
2031 $typeTypeId = CRM_Utils_Array::value('typeTypeId', $migrationInfo['location_blocks'][$name][$blkCount]);
2032 $otherBlockDAO->{$locationBlocks[$name]['hasType']} = $typeTypeId;
2033 }
2034
2035 // If we're deliberately setting this as primary then add the flag
2036 // and remove it from the current primary location (if there is one).
2037 // But only once for each entity.
2038 $set_primary = CRM_Utils_Array::value('set_other_primary', $migrationInfo['location_blocks'][$name][$blkCount]);
2039 if (!$changePrimary && $set_primary == "1") {
2040 $otherBlockDAO->is_primary = 1;
2041 if ($primaryDAOId) {
2042 $removePrimaryDAO = new $daoName();
2043 $removePrimaryDAO->id = $primaryDAOId;
2044 $removePrimaryDAO->is_primary = 0;
2045 $blocksDAO[$name]['update'][$primaryDAOId] = $removePrimaryDAO;
2046 }
2047 $changePrimary = TRUE;
2048 }
2049 // Otherwise, if main contact already has primary, set it to 0.
2050 elseif ($primaryDAOId) {
2051 $otherBlockDAO->is_primary = 0;
2052 }
2053
2054 // If the main contact already has a billing location, set this to 0.
2055 if ($billingDAOId) {
2056 $otherBlockDAO->is_billing = 0;
2057 }
2058
2059 $operation = CRM_Utils_Array::value('operation', $values, 2);
2060 // overwrite - need to delete block which belongs to main-contact.
2061 if (!empty($mainBlockId) && ($operation == 2)) {
2062 $deleteDAO = new $daoName();
2063 $deleteDAO->id = $mainBlockId;
2064 $deleteDAO->find(TRUE);
2065
2066 // if we about to delete a primary / billing block, set the flags for new block
2067 // that we going to assign to main-contact
2068 if ($primaryDAOId && ($primaryDAOId == $deleteDAO->id)) {
2069 $otherBlockDAO->is_primary = 1;
2070 }
2071 if ($billingDAOId && ($billingDAOId == $deleteDAO->id)) {
2072 $otherBlockDAO->is_billing = 1;
2073 }
2074 $blocksDAO[$name]['delete'][$deleteDAO->id] = $deleteDAO;
2075 }
2076 $blocksDAO[$name]['update'][$otherBlockDAO->id] = $otherBlockDAO;
2077 }
2078 }
2079 }
2080
2081 CRM_Utils_Hook::alterLocationMergeData($blocksDAO, $mainId, $otherId, $migrationInfo);
2082 foreach ($blocksDAO as $blockDAOs) {
2083 if (!empty($blockDAOs['update'])) {
2084 foreach ($blockDAOs['update'] as $blockDAO) {
2085 $blockDAO->save();
2086 }
2087 }
2088 if (!empty($blockDAOs['delete'])) {
2089 foreach ($blockDAOs['delete'] as $blockDAO) {
2090 $blockDAO->delete();
2091 }
2092 }
2093 }
2094 }
2095
2096 /**
2097 * Dedupe a pair of contacts.
2098 *
2099 * @param array $resultStats
2100 * @param array $deletedContacts
2101 * @param string $mode
2102 * @param bool $checkPermissions
2103 * @param int $mainId
2104 * @param int $otherId
2105 * @param string $cacheKeyString
2106 *
2107 * @throws \CRM_Core_Exception
2108 * @throws \CiviCRM_API3_Exception
2109 */
2110 protected static function dedupePair(&$resultStats, &$deletedContacts, $mode, $checkPermissions, $mainId, $otherId, $cacheKeyString) {
2111
2112 $migrationInfo = [];
2113 $conflicts = [];
2114 if (!CRM_Dedupe_Merger::skipMerge($mainId, $otherId, $migrationInfo, $mode, $conflicts)) {
2115 CRM_Dedupe_Merger::moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions);
2116 $resultStats['merged'][] = [
2117 'main_id' => $mainId,
2118 'other_id' => $otherId,
2119 ];
2120 $deletedContacts[] = $otherId;
2121 }
2122 else {
2123 $resultStats['skipped'][] = [
2124 'main_id' => $mainId,
2125 'other_id' => $otherId,
2126 ];
2127 }
2128
2129 // store any conflicts
2130 if (!empty($conflicts)) {
2131 foreach ($conflicts as $key => $dnc) {
2132 $conflicts[$key] = "{$migrationInfo['rows'][$key]['title']}: '{$migrationInfo['rows'][$key]['main']}' vs. '{$migrationInfo['rows'][$key]['other']}'";
2133 }
2134 CRM_Core_BAO_PrevNextCache::markConflict($mainId, $otherId, $cacheKeyString, $conflicts);
2135 }
2136 else {
2137 CRM_Core_BAO_PrevNextCache::deletePair($mainId, $otherId, $cacheKeyString);
2138 }
2139 }
2140
2141 /**
2142 * Replace the pseudo QFKey with zero if it is present.
2143 *
2144 * @todo - on the slim chance this is still relevant it should be moved to the form layer.
2145 *
2146 * Details about this bug are somewhat obscured by the move from svn but perhaps JIRA
2147 * can still help.
2148 *
2149 * @param array $migrationInfo
2150 */
2151 protected static function swapOutFieldsAffectedByQFZeroBug(&$migrationInfo) {
2152 $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
2153 foreach ($migrationInfo as $key => &$value) {
2154 if ($value == $qfZeroBug) {
2155 $value = '0';
2156 }
2157 }
2158 }
2159
2160 /**
2161 * Honestly - what DOES this do - hopefully some refactoring will reveal it's purpose.
2162 *
2163 * Update this function formats fields in preparation for them to be submitted to the
2164 * 'ProfileContactCreate action. This is a lot of code to do this & for
2165 * - for some fields it fails - e.g Country - per testMergeCustomFields.
2166 *
2167 * Goal is to move all custom field handling into 'move' functions on the various BAO
2168 * with an underlying DAO function. For custom fields it has been started on the BAO.
2169 *
2170 * @param $mainId
2171 * @param $key
2172 * @param $cFields
2173 * @param $submitted
2174 * @param $value
2175 *
2176 * @return array
2177 * @throws \Exception
2178 */
2179 protected static function processCustomFields($mainId, $key, $cFields, $submitted, $value) {
2180 if (substr($key, 0, 7) == 'custom_') {
2181 $fid = (int) substr($key, 7);
2182 if (empty($cFields[$fid])) {
2183 return [$cFields, $submitted];
2184 }
2185 $htmlType = $cFields[$fid]['attributes']['html_type'];
2186 switch ($htmlType) {
2187 case 'File':
2188 // Handled in CustomField->move(). Tested in testMergeCustomFields.
2189 unset($submitted["custom_$fid"]);
2190 break;
2191
2192 case 'Select Country':
2193 // @todo Test in testMergeCustomFields disabled as this does not work, Handle in CustomField->move().
2194 case 'Select State/Province':
2195 $submitted[$key] = CRM_Core_BAO_CustomField::displayValue($value, $fid);
2196 break;
2197
2198 case 'Select Date':
2199 if ($cFields[$fid]['attributes']['is_view']) {
2200 $submitted[$key] = date('YmdHis', strtotime($submitted[$key]));
2201 }
2202 break;
2203
2204 case 'CheckBox':
2205 case 'Multi-Select':
2206 case 'Multi-Select Country':
2207 case 'Multi-Select State/Province':
2208 // Merge values from both contacts for multivalue fields, CRM-4385
2209 // get the existing custom values from db.
2210 $customParams = ['entityID' => $mainId, $key => TRUE];
2211 $customfieldValues = CRM_Core_BAO_CustomValueTable::getValues($customParams);
2212 if (!empty($customfieldValues[$key])) {
2213 $existingValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, $customfieldValues[$key]);
2214 if (is_array($existingValue) && !empty($existingValue)) {
2215 $mergeValue = $submittedCustomFields = [];
2216 if ($value == 'null') {
2217 // CRM-19074 if someone has deliberately chosen to overwrite with 'null', respect it.
2218 $submitted[$key] = $value;
2219 }
2220 else {
2221 if ($value) {
2222 $submittedCustomFields = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
2223 }
2224
2225 // CRM-19653: overwrite or add the existing custom field value with dupicate contact's
2226 // custom field value stored at $submittedCustomValue.
2227 foreach ($submittedCustomFields as $k => $v) {
2228 if ($v != '' && !in_array($v, $mergeValue)) {
2229 $mergeValue[] = $v;
2230 }
2231 }
2232
2233 //keep state and country as array format.
2234 //for checkbox and m-select format w/ VALUE_SEPARATOR
2235 if (in_array($htmlType, [
2236 'CheckBox',
2237 'Multi-Select',
2238 ])) {
2239 $submitted[$key] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
2240 $mergeValue
2241 ) . CRM_Core_DAO::VALUE_SEPARATOR;
2242 }
2243 else {
2244 $submitted[$key] = $mergeValue;
2245 }
2246 }
2247 }
2248 }
2249 elseif (in_array($htmlType, [
2250 'Multi-Select Country',
2251 'Multi-Select State/Province',
2252 ])) {
2253 //we require submitted values should be in array format
2254 if ($value) {
2255 $mergeValueArray = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
2256 //hack to remove null values from array.
2257 $mergeValue = [];
2258 foreach ($mergeValueArray as $k => $v) {
2259 if ($v != '') {
2260 $mergeValue[] = $v;
2261 }
2262 }
2263 $submitted[$key] = $mergeValue;
2264 }
2265 }
2266 break;
2267
2268 default:
2269 break;
2270 }
2271 }
2272 return [$cFields, $submitted];
2273 }
2274
2275 /**
2276 * Get metadata for the custom fields for the merge.
2277 *
2278 * @param string $contactType
2279 *
2280 * @return array
2281 */
2282 protected static function getCustomFieldMetadata($contactType) {
2283 $treeCache = [];
2284 if (!array_key_exists($contactType, $treeCache)) {
2285 $treeCache[$contactType] = CRM_Core_BAO_CustomGroup::getTree(
2286 $contactType,
2287 NULL,
2288 NULL,
2289 -1,
2290 [],
2291 NULL,
2292 TRUE,
2293 NULL,
2294 FALSE,
2295 FALSE
2296 );
2297 }
2298
2299 $cFields = [];
2300 foreach ($treeCache[$contactType] as $key => $group) {
2301 if (!isset($group['fields'])) {
2302 continue;
2303 }
2304 foreach ($group['fields'] as $fid => $field) {
2305 $cFields[$fid]['attributes'] = $field;
2306 }
2307 }
2308 return $cFields;
2309 }
2310
2311 /**
2312 * Get conflicts for proposed merge pair.
2313 *
2314 * @param array $migrationInfo
2315 * This is primarily to inform hooks. The can also modify it which feels
2316 * pretty fragile to do it here - but it is historical.
2317 * @param int $mainId
2318 * Main contact with whom merge has to happen.
2319 * @param int $otherId
2320 * Duplicate contact which would be deleted after merge operation.
2321 * @param string $mode
2322 * Helps decide how to behave when there are conflicts.
2323 * - A 'safe' value skips the merge if there are any un-resolved conflicts.
2324 * - Does a force merge otherwise (aggressive mode).
2325 *
2326 * @return array
2327 *
2328 * @throws \CRM_Core_Exception
2329 * @throws \CiviCRM_API3_Exception
2330 */
2331 public static function getConflicts(&$migrationInfo, $mainId, $otherId, $mode) {
2332 $conflicts = [];
2333 // Generate var $migrationInfo. The variable structure is exactly same as
2334 // $formValues submitted during a UI merge for a pair of contacts.
2335 $rowsElementsAndInfo = CRM_Dedupe_Merger::getRowsElementsAndInfo($mainId, $otherId, FALSE);
2336 // add additional details that we might need to resolve conflicts
2337 $migrationInfo = $rowsElementsAndInfo['migration_info'];
2338 $migrationInfo['main_details'] = &$rowsElementsAndInfo['main_details'];
2339 $migrationInfo['other_details'] = &$rowsElementsAndInfo['other_details'];
2340 $migrationInfo['rows'] = &$rowsElementsAndInfo['rows'];
2341 // go ahead with merge if there is no conflict
2342 $originalMigrationInfo = $migrationInfo;
2343 foreach ($migrationInfo as $key => $val) {
2344 if ($val === "null") {
2345 // Rule: Never overwrite with an empty value (in any mode)
2346 unset($migrationInfo[$key]);
2347 continue;
2348 }
2349 elseif ((in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) or
2350 substr($key, 0, 12) == 'move_custom_'
2351 ) and $val != NULL
2352 ) {
2353 // Rule: If both main-contact, and other-contact have a field with a
2354 // different value, then let $mode decide if to merge it or not
2355 if (
2356 (!empty($migrationInfo['rows'][$key]['main'])
2357 // For custom fields a 0 (e.g in an int field) could be a true conflict. This
2358 // is probably true for other fields too - e.g. 'do_not_email' but
2359 // leaving that investigation as a @todo - until tests can be written.
2360 // Note the handling of this has test coverage - although the data-typing
2361 // of '0' feels flakey we have insurance.
2362 || ($migrationInfo['rows'][$key]['main'] === '0' && substr($key, 0, 12) == 'move_custom_')
2363 )
2364 && $migrationInfo['rows'][$key]['main'] != $migrationInfo['rows'][$key]['other']
2365 ) {
2366
2367 // note it down & lets wait for response from the hook.
2368 // For no response $mode will decide if to skip this merge
2369 $conflicts[$key] = NULL;
2370 }
2371 }
2372 elseif (substr($key, 0, 14) == 'move_location_' and $val != NULL) {
2373 $locField = explode('_', $key);
2374 $fieldName = $locField[2];
2375 $fieldCount = $locField[3];
2376
2377 // Rule: Catch address conflicts (same address type on both contacts)
2378 if (
2379 isset($migrationInfo['main_details']['location_blocks'][$fieldName]) &&
2380 !empty($migrationInfo['main_details']['location_blocks'][$fieldName])
2381 ) {
2382
2383 // Load the address we're inspecting from the 'other' contact
2384 $addressRecord = $migrationInfo['other_details']['location_blocks'][$fieldName][$fieldCount];
2385 $addressRecordLocTypeId = CRM_Utils_Array::value('location_type_id', $addressRecord);
2386
2387 // If it exists on the 'main' contact already, skip it. Otherwise
2388 // if the location type exists already, log a conflict.
2389 foreach ($migrationInfo['main_details']['location_blocks'][$fieldName] as $mainAddressKey => $mainAddressRecord) {
2390 if (self::locationIsSame($addressRecord, $mainAddressRecord)) {
2391 unset($migrationInfo[$key]);
2392 break;
2393 }
2394 elseif ($addressRecordLocTypeId == $mainAddressRecord['location_type_id']) {
2395 $conflicts[$key] = NULL;
2396 break;
2397 }
2398 }
2399 }
2400
2401 // For other locations, don't merge/add if the values are the same
2402 elseif (CRM_Utils_Array::value('main', $migrationInfo['rows'][$key]) == $migrationInfo['rows'][$key]['other']) {
2403 unset($migrationInfo[$key]);
2404 }
2405 }
2406 }
2407
2408 // A hook to implement other algorithms for choosing which contact to bias to when
2409 // there's a conflict (to handle "gotchas"). fields_in_conflict could be modified here
2410 // merge happens with new values filled in here. For a particular field / row not to be merged
2411 // field should be unset from fields_in_conflict.
2412 $migrationData = [
2413 'old_migration_info' => $originalMigrationInfo,
2414 'mode' => $mode,
2415 'fields_in_conflict' => $conflicts,
2416 'merge_mode' => $mode,
2417 'migration_info' => $migrationInfo,
2418 ];
2419 CRM_Utils_Hook::merge('batch', $migrationData, $mainId, $otherId);
2420 $conflicts = $migrationData['fields_in_conflict'];
2421 // allow hook to override / manipulate migrationInfo as well
2422 $migrationInfo = $migrationData['migration_info'];
2423 $migrationInfo['skip_merge'] = CRM_Utils_Array::value('skip_merge', $migrationData);
2424 return $conflicts;
2425 }
2426
2427 /**
2428 * Get any duplicate merge pairs that have been previously cached.
2429 *
2430 * @param int $rule_group_id
2431 * @param int $group_id
2432 * @param int $batchLimit
2433 * @param bool $isSelected
2434 * @param bool $includeConflicts
2435 * @param array $criteria
2436 * @param int $checkPermissions
2437 *
2438 * @return array
2439 */
2440 protected static function getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, $includeConflicts, $criteria, $checkPermissions) {
2441 return CRM_Core_BAO_PrevNextCache::retrieve(
2442 self::getMergeCacheKeyString($rule_group_id, $group_id, $criteria, $checkPermissions),
2443 self::getJoinOnDedupeTable(),
2444 self::getWhereString($isSelected),
2445 0, $batchLimit,
2446 [], '',
2447 $includeConflicts
2448 );
2449 }
2450
2451 }