Stop passing cacheKey to refillCache
[civicrm-core.git] / CRM / Dedupe / Merger.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33class CRM_Dedupe_Merger {
6a488035 34
e0ef6999 35 /**
4f1f1f2a
CW
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
e0ef6999
EM
39 * @return array
40 */
00be9182 41 public static function relTables() {
6a488035 42
641a8cb5 43 if (!isset(Civi::$statics[__CLASS__]['relTables'])) {
12d73bba 44
641a8cb5
J
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');
2c16165a 54 $title = ts('%1 User: %2; user id: %3', [
55 1 => $config->userFramework,
56 2 => '$ufname',
57 3 => '$ufid',
58 ]);
641a8cb5
J
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';
2c16165a 62 $title = ts('%1 User: %2; user id: %3', [
63 1 => $config->userFramework,
64 2 => '$ufname',
65 3 => '$ufid',
66 ]);
641a8cb5 67 }
6a488035 68
2c16165a 69 $relTables = [
70 'rel_table_contributions' => [
6a488035 71 'title' => ts('Contributions'),
2c16165a 72 'tables' => [
73 'civicrm_contribution',
74 'civicrm_contribution_recur',
75 'civicrm_contribution_soft',
76 ],
6a488035 77 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=contribute'),
2c16165a 78 ],
79 'rel_table_contribution_page' => [
6a488035 80 'title' => ts('Contribution Pages'),
2c16165a 81 'tables' => ['civicrm_contribution_page'],
6a488035 82 'url' => CRM_Utils_System::url('civicrm/admin/contribute', 'reset=1&cid=$cid'),
2c16165a 83 ],
84 'rel_table_memberships' => [
6a488035 85 'title' => ts('Memberships'),
2c16165a 86 'tables' => [
87 'civicrm_membership',
88 'civicrm_membership_log',
89 'civicrm_membership_type',
90 ],
6a488035 91 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=member'),
2c16165a 92 ],
93 'rel_table_participants' => [
6a488035 94 'title' => ts('Participants'),
2c16165a 95 'tables' => ['civicrm_participant'],
6a488035 96 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=participant'),
2c16165a 97 ],
98 'rel_table_events' => [
6a488035 99 'title' => ts('Events'),
2c16165a 100 'tables' => ['civicrm_event'],
6a488035 101 'url' => CRM_Utils_System::url('civicrm/event/manage', 'reset=1&cid=$cid'),
2c16165a 102 ],
103 'rel_table_activities' => [
6a488035 104 'title' => ts('Activities'),
2c16165a 105 'tables' => ['civicrm_activity', 'civicrm_activity_contact'],
6a488035 106 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=activity'),
2c16165a 107 ],
108 'rel_table_relationships' => [
6a488035 109 'title' => ts('Relationships'),
2c16165a 110 'tables' => ['civicrm_relationship'],
6a488035 111 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=rel'),
2c16165a 112 ],
113 'rel_table_custom_groups' => [
6a488035 114 'title' => ts('Custom Groups'),
2c16165a 115 'tables' => ['civicrm_custom_group'],
6a488035 116 'url' => CRM_Utils_System::url('civicrm/admin/custom/group', 'reset=1'),
2c16165a 117 ],
118 'rel_table_uf_groups' => [
6a488035 119 'title' => ts('Profiles'),
2c16165a 120 'tables' => ['civicrm_uf_group'],
6a488035 121 'url' => CRM_Utils_System::url('civicrm/admin/uf/group', 'reset=1'),
2c16165a 122 ],
123 'rel_table_groups' => [
6a488035 124 'title' => ts('Groups'),
2c16165a 125 'tables' => ['civicrm_group_contact'],
6a488035 126 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=group'),
2c16165a 127 ],
128 'rel_table_notes' => [
6a488035 129 'title' => ts('Notes'),
2c16165a 130 'tables' => ['civicrm_note'],
6a488035 131 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=note'),
2c16165a 132 ],
133 'rel_table_tags' => [
6a488035 134 'title' => ts('Tags'),
2c16165a 135 'tables' => ['civicrm_entity_tag'],
6a488035 136 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=tag'),
2c16165a 137 ],
138 'rel_table_mailings' => [
6a488035 139 'title' => ts('Mailings'),
2c16165a 140 'tables' => [
141 'civicrm_mailing',
142 'civicrm_mailing_event_queue',
143 'civicrm_mailing_event_subscribe',
144 ],
f521f375 145 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=mailing'),
2c16165a 146 ],
147 'rel_table_cases' => [
6a488035 148 'title' => ts('Cases'),
2c16165a 149 'tables' => ['civicrm_case_contact'],
6a488035 150 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=case'),
2c16165a 151 ],
152 'rel_table_grants' => [
6a488035 153 'title' => ts('Grants'),
2c16165a 154 'tables' => ['civicrm_grant'],
6a488035 155 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=grant'),
2c16165a 156 ],
157 'rel_table_pcp' => [
6a488035 158 'title' => ts('PCPs'),
2c16165a 159 'tables' => ['civicrm_pcp'],
6a488035 160 'url' => CRM_Utils_System::url('civicrm/contribute/pcp/manage', 'reset=1'),
2c16165a 161 ],
162 'rel_table_pledges' => [
6a488035 163 'title' => ts('Pledges'),
2c16165a 164 'tables' => ['civicrm_pledge', 'civicrm_pledge_payment'],
6a488035 165 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid&selectedChild=pledge'),
2c16165a 166 ],
167 'rel_table_users' => [
6a488035 168 'title' => $title,
2c16165a 169 'tables' => ['civicrm_uf_match'],
6a488035 170 'url' => $userRecordUrl,
2c16165a 171 ],
172 ];
6a488035 173
76c53278
CW
174 $relTables += self::getMultiValueCustomSets('relTables');
175
6a488035
TO
176 // Allow hook_civicrm_merge() to adjust $relTables
177 CRM_Utils_Hook::merge('relTables', $relTables);
641a8cb5
J
178
179 // Cache the results in a static variable
180 Civi::$statics[__CLASS__]['relTables'] = $relTables;
6a488035 181 }
641a8cb5
J
182
183 return Civi::$statics[__CLASS__]['relTables'];
6a488035
TO
184 }
185
186 /**
fe482240 187 * Returns the related tables groups for which a contact has any info entered.
ad37ac8e 188 *
189 * @param int $cid
190 *
191 * @return array
6a488035 192 */
00be9182 193 public static function getActiveRelTables($cid) {
6a488035 194 $cid = (int) $cid;
2c16165a 195 $groups = [];
6a488035
TO
196
197 $relTables = self::relTables();
198 $cidRefs = self::cidRefs();
199 $eidRefs = self::eidRefs();
200 foreach ($relTables as $group => $params) {
2c16165a 201 $sqls = [];
6a488035
TO
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 /**
3ae0ae3d 224 * Get array tables and fields that reference civicrm_contact.id.
225 *
e3e87c73 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.
3ae0ae3d 228 *
e3e87c73 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.
6a488035 231 */
00be9182 232 public static function cidRefs() {
e31c3de1 233 if (isset(\Civi::$statics[__CLASS__]) && isset(\Civi::$statics[__CLASS__]['contact_references'])) {
234 return \Civi::$statics[__CLASS__]['contact_references'];
235 }
64b3569d 236
e3e87c73 237 $contactReferences = $coreReferences = CRM_Core_DAO::getReferencesToContactTable();
6a488035 238
e31c3de1 239 CRM_Utils_Hook::merge('cidRefs', $contactReferences);
e3e87c73 240 if ($contactReferences !== $coreReferences) {
2c16165a 241 Civi::log()
242 ->warning("Deprecated hook ::merge in context of 'cidRefs. Use entityTypes instead.", ['civi.tag' => 'deprecated']);
e3e87c73 243 }
e31c3de1 244 \Civi::$statics[__CLASS__]['contact_references'] = $contactReferences;
245 return \Civi::$statics[__CLASS__]['contact_references'];
6a488035
TO
246 }
247
248 /**
249 * Return tables and their fields referencing civicrm_contact.contact_id with entity_id
250 */
00be9182 251 public static function eidRefs() {
6a488035
TO
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}
2c16165a 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 ];
6a488035
TO
264
265 // Allow hook_civicrm_merge() to adjust $eidRefs
266 CRM_Utils_Hook::merge('eidRefs', $eidRefs);
267 }
268 return $eidRefs;
269 }
270
9da04f20 271 /**
fe482240 272 * Return tables using locations.
9da04f20 273 */
00be9182 274 public static function locTables() {
9da04f20
AS
275 static $locTables;
276 if (!$locTables) {
2c16165a 277 $locTables = ['civicrm_email', 'civicrm_address', 'civicrm_phone'];
9da04f20
AS
278
279 // Allow hook_civicrm_merge() to adjust $locTables
280 CRM_Utils_Hook::merge('locTables', $locTables);
281 }
282 return $locTables;
283 }
284
76c53278
CW
285 /**
286 * We treat multi-valued custom sets as "related tables" similar to activities, contributions, etc.
98997235
TO
287 * @param string $request
288 * 'relTables' or 'cidRefs'.
641a8cb5 289 * @return array
76c53278
CW
290 * @see CRM-13836
291 */
00be9182 292 public static function getMultiValueCustomSets($request) {
641a8cb5
J
293
294 if (!isset(Civi::$statics[__CLASS__]['multiValueCustomSets'])) {
2c16165a 295 $data = [
296 'relTables' => [],
297 'cidRefs' => [],
298 ];
299 $result = civicrm_api3('custom_group', 'get', [
76c53278 300 'is_multiple' => 1,
2c16165a 301 'extends' => [
302 'IN' => [
303 'Individual',
304 'Organization',
305 'Household',
306 'Contact',
307 ],
308 ],
309 'return' => ['id', 'title', 'table_name', 'style'],
310 ]);
22e263ad 311 foreach ($result['values'] as $custom) {
2c16165a 312 $data['cidRefs'][$custom['table_name']] = ['entity_id'];
76c53278 313 $urlSuffix = $custom['style'] == 'Tab' ? '&selectedChild=custom_' . $custom['id'] : '';
2c16165a 314 $data['relTables']['rel_table_custom_' . $custom['id']] = [
76c53278 315 'title' => $custom['title'],
2c16165a 316 'tables' => [$custom['table_name']],
76c53278 317 'url' => CRM_Utils_System::url('civicrm/contact/view', 'reset=1&force=1&cid=$cid' . $urlSuffix),
2c16165a 318 ];
76c53278 319 }
641a8cb5
J
320
321 // Store the result in a static variable cache
322 Civi::$statics[__CLASS__]['multiValueCustomSets'] = $data;
76c53278 323 }
641a8cb5
J
324
325 return Civi::$statics[__CLASS__]['multiValueCustomSets'][$request];
76c53278
CW
326 }
327
6a488035
TO
328 /**
329 * Tables which require custom processing should declare functions to call here.
330 * Doing so will override normal processing.
331 */
00be9182 332 public static function cpTables() {
6a488035
TO
333 static $tables;
334 if (!$tables) {
2c16165a 335 $tables = [
336 'civicrm_case_contact' => ['CRM_Case_BAO_Case' => 'mergeContacts'],
337 'civicrm_group_contact' => ['CRM_Contact_BAO_GroupContact' => 'mergeGroupContact'],
6a488035 338 // Empty array == do nothing - this table is handled by mergeGroupContact
2c16165a 339 'civicrm_subscription_history' => [],
340 'civicrm_relationship' => ['CRM_Contact_BAO_Relationship' => 'mergeRelationships'],
341 'civicrm_membership' => ['CRM_Member_BAO_Membership' => 'mergeMemberships'],
342 ];
6a488035
TO
343 }
344 return $tables;
345 }
346
347 /**
100fef9d 348 * Return payment related table.
6a488035 349 */
00be9182 350 public static function paymentTables() {
6a488035
TO
351 static $tables;
352 if (!$tables) {
2c16165a 353 $tables = ['civicrm_pledge', 'civicrm_membership', 'civicrm_participant'];
6a488035 354 }
6a488035
TO
355 return $tables;
356 }
357
358 /**
100fef9d 359 * Return payment update Query.
54957108 360 *
361 * @param string $tableName
362 * @param int $mainContactId
363 * @param int $otherContactId
364 *
365 * @return array
6a488035 366 */
00be9182 367 public static function paymentSql($tableName, $mainContactId, $otherContactId) {
2c16165a 368 $sqls = [];
6a488035
TO
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
382INNER JOIN civicrm_pledge_payment payment ON ( payment.contribution_id = contribution.id )
383INNER 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
391INNER JOIN civicrm_membership_payment payment ON ( payment.contribution_id = contribution.id )
392INNER 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
400INNER JOIN civicrm_participant_payment payment ON ( payment.contribution_id = contribution.id )
401INNER 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
e0ef6999 410 /**
100fef9d
CW
411 * @param int $mainId
412 * @param int $otherId
413 * @param string $tableName
e0ef6999
EM
414 * @param array $tableOperations
415 * @param string $mode
416 *
417 * @return array
418 */
2c16165a 419 public static function operationSql($mainId, $otherId, $tableName, $tableOperations = [], $mode = 'add') {
420 $sqls = [];
6a488035
TO
421 if (!$tableName || !$mainId || !$otherId) {
422 return $sqls;
423 }
424
6a488035
TO
425 switch ($tableName) {
426 case 'civicrm_membership':
d58a19a1
TO
427 if (array_key_exists($tableName, $tableOperations) && $tableOperations[$tableName]['add']) {
428 break;
429 }
430 if ($mode == 'add') {
431 $sqls[] = "
6a488035
TO
432DELETE 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} ";
d58a19a1
TO
436 }
437 if ($mode == 'payment') {
438 $sqls[] = "
6a488035
TO
439DELETE contribution.* FROM civicrm_contribution contribution
440INNER JOIN civicrm_membership_payment payment ON payment.contribution_id = contribution.id
441INNER JOIN civicrm_membership membership1 ON membership1.id = payment.membership_id
442 AND membership1.contact_id = {$mainId}
443INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = membership2.membership_type_id
444 AND membership2.contact_id = {$otherId}";
d58a19a1
TO
445 }
446 break;
6a488035
TO
447
448 case 'civicrm_uf_match':
449 // normal queries won't work for uf_match since that will lead to violation of unique constraint,
b44e3f84 450 // failing to meet intended result. Therefore we introduce this additional query:
6a488035
TO
451 $sqls[] = "DELETE FROM civicrm_uf_match WHERE contact_id = {$mainId}";
452 break;
453 }
454
455 return $sqls;
456 }
457
4099a9c5
AP
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',
2c16165a 470 civicrm_api3("Membership", "get", [
518fa0ee
SL
471 "contact_id" => $otherID,
472 "return" => "id",
473 ])
e122e55d
TO
474 )
475 );
4099a9c5
AP
476
477 if (!empty($membershipIDs)) {
2c16165a 478 civicrm_api3("Membership", "get", [
479 'owner_membership_id' => ['IN' => $membershipIDs],
480 'api.Membership.delete' => ['id' => '$value.id'],
481 ]);
4099a9c5
AP
482 }
483 }
484 }
485
6a488035
TO
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 *
54957108 490 * @param int $mainId
491 * @param int $otherId
492 * @param bool $tables
493 * @param array $tableOperations
b35800bd 494 * @param array $customTableToCopyFrom
6a488035 495 */
2c16165a 496 public static function moveContactBelongings($mainId, $otherId, $tables = FALSE, $tableOperations = [], $customTableToCopyFrom = NULL) {
6a488035
TO
497 $cidRefs = self::cidRefs();
498 $eidRefs = self::eidRefs();
499 $cpTables = self::cpTables();
500 $paymentTables = self::paymentTables();
501
b35800bd 502 // getting all custom tables
2c16165a 503 $customTables = [];
ae2346d4 504 if ($customTableToCopyFrom !== NULL) {
e3e87c73 505 // @todo this duplicates cidRefs?
506 CRM_Core_DAO::appendCustomTablesExtendingContacts($customTables);
674920ca 507 $customTables = array_keys($customTables);
6a488035 508 }
674920ca
ES
509
510 $affected = array_merge(array_keys($cidRefs), array_keys($eidRefs));
0556db5d
CR
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']);
6a488035 519 }
0556db5d 520 $affected = array_diff($affected, $handled);
e3159b07 521 $affected = array_unique(array_merge($affected, $tables));
6a488035
TO
522
523 $mainId = (int) $mainId;
524 $otherId = (int) $otherId;
06f4969c 525 $multi_value_tables = array_keys(CRM_Dedupe_Merger::getMultiValueCustomSets('cidRefs'));
6a488035 526
2c16165a 527 $sqls = [];
6a488035 528 foreach ($affected as $table) {
06f4969c 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 }
b35800bd 534 }
674920ca 535
6a488035
TO
536 // Call custom processing function for objects that require it
537 if (isset($cpTables[$table])) {
538 foreach ($cpTables[$table] as $className => $fnName) {
43d4ad93 539 $className::$fnName($mainId, $otherId, $sqls, $tables, $tableOperations);
6a488035
TO
540 }
541 // Skip normal processing
542 continue;
543 }
b3fdbf3d 544
6a488035
TO
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)) {
6a488035
TO
551 $paymentSqls = self::paymentSql($table, $mainId, $otherId);
552 $sqls = array_merge($sqls, $paymentSqls);
71560cf3
C
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 }
6a488035
TO
558 }
559
560 $preOperationSqls = self::operationSql($mainId, $otherId, $table, $tableOperations);
561 $sqls = array_merge($sqls, $preOperationSqls);
562
ae2346d4
CR
563 if ($customTableToCopyFrom !== NULL && in_array($table, $customTableToCopyFrom) && !self::customRecordExists($mainId, $table, $field)) {
564 $sqls[] = "INSERT INTO $table ($field) VALUES ($mainId)";
565 }
6a488035
TO
566 $sqls[] = "UPDATE IGNORE $table SET $field = $mainId WHERE $field = $otherId";
567 $sqls[] = "DELETE FROM $table WHERE $field = $otherId";
568 }
569 }
ae2346d4 570
6a488035
TO
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
6a488035 582 foreach ($sqls as $sql) {
2c16165a 583 CRM_Core_DAO::executeQuery($sql, [], TRUE, NULL, TRUE);
6a488035 584 }
0556db5d 585 CRM_Dedupe_Merger::addMembershipToRealtedContacts($mainId);
6a488035
TO
586 }
587
4f751978
CR
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 */
ae2346d4
CR
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) {
ee3b1d86 609 return TRUE;
ae2346d4
CR
610 }
611
ee3b1d86 612 return FALSE;
ae2346d4
CR
613 }
614
6a488035 615 /**
4eea8606 616 * Load all non-empty fields for the contacts
b3fdbf3d 617 *
98997235
TO
618 * @param array $main
619 * Contact details.
620 * @param array $other
621 * Contact details.
6a488035 622 *
77b97be7 623 * @return array
6a488035 624 */
4eea8606 625 public static function retrieveFields($main, $other) {
2c16165a 626 $result = [
627 'contact' => [],
628 'custom' => [],
629 ];
16254ae1 630 foreach (self::getContactFields() as $validField) {
eb61dc07
J
631 // CRM-17556 Get all non-empty fields, to make comparison easier
632 if (!empty($main[$validField]) || !empty($other[$validField])) {
6a488035
TO
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) {
76c53278
CW
641 // Exclude multi-value fields CRM-13836
642 if (strpos($key, '_')) {
643 continue;
644 }
6a488035
TO
645 $key1 = CRM_Utils_Array::value($key, $mainEvs);
646 $key2 = CRM_Utils_Array::value($key, $otherEvs);
26b7ff28 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)) {
6a488035
TO
652 $result['custom'][] = $key;
653 }
654 }
655 return $result;
656 }
657
658 /**
100fef9d 659 * Batch merge a set of contacts based on rule-group and group.
6a488035 660 *
98997235
TO
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.
15a793bb
EM
667 * A 'safe' value skips the merge if there are any un-resolved conflicts, wheras 'aggressive'
668 * mode does a force merge.
f931b74c 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.
bb22928b 671 * Note the option of '2' is only used in conjunction with $redirectForPerformance
b5a6c6c5 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
6a488035 674 *
e23e26ec 675 * @param array $criteria
676 * Criteria to use in the filter.
677 *
3058f4d9 678 * @param bool $checkPermissions
679 * Respect logged in user permissions.
bb22928b 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.
3058f4d9 683 *
77b97be7 684 * @return array|bool
6a488035 685 */
2c16165a 686 public static function batchMerge($rgid, $gid = NULL, $mode = 'safe', $batchLimit = 1, $isSelected = 2, $criteria = [], $checkPermissions = TRUE, $reloadCacheIfEmpty = NULL) {
63ef778e 687 $redirectForPerformance = ($batchLimit > 1) ? TRUE : FALSE;
bb22928b 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 }
9c5fe572 696 $dupePairs = self::getDuplicatePairs($rgid, $gid, $reloadCacheIfEmpty, $batchLimit, $isSelected, ($mode == 'aggressive'), $criteria, $checkPermissions);
6a488035 697
2c16165a 698 $cacheParams = [
3058f4d9 699 'cache_key_string' => self::getMergeCacheKeyString($rgid, $gid, $criteria, $checkPermissions),
2988f5c7 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(),
ed3c1599 703 'where' => self::getWhereString($isSelected),
704 'limit' => (int) $batchLimit,
2c16165a 705 ];
d238756a 706 return CRM_Dedupe_Merger::merge($dupePairs, $cacheParams, $mode, $redirectForPerformance, $checkPermissions);
6a488035
TO
707 }
708
2ae26001 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
2988f5c7 724 /**
725 * Get where string for dedupe join.
726 *
2988f5c7 727 * @param bool $isSelected
728 *
729 * @return string
730 */
ed3c1599 731 protected static function getWhereString($isSelected) {
2988f5c7 732 $where = "de.id IS NULL";
733 if ($isSelected === 0 || $isSelected === 1) {
734 $where .= " AND pn.is_selected = {$isSelected}";
735 }
2988f5c7 736 return $where;
737 }
738
bc854509 739 /**
740 * Update the statistics for the merge set.
741 *
742 * @param string $cacheKeyString
743 * @param array $result
744 */
2c16165a 745 public static function updateMergeStats($cacheKeyString, $result = []) {
63ef778e 746 // gather latest stats
2c16165a 747 $merged = count($result['merged']);
63ef778e 748 $skipped = count($result['skipped']);
749
750 if ($merged <= 0 && $skipped <= 0) {
751 return;
752 }
753
754 // get previous stats
e13fa54b 755 $previousStats = CRM_Dedupe_Merger::getMergeStats($cacheKeyString);
63ef778e 756 if (!empty($previousStats)) {
e13fa54b 757 if ($previousStats['merged']) {
758 $merged = $merged + $previousStats['merged'];
63ef778e 759 }
e13fa54b 760 if ($previousStats['skipped']) {
761 $skipped = $skipped + $previousStats['skipped'];
63ef778e 762 }
763 }
764
765 // delete old stats
766 CRM_Dedupe_Merger::resetMergeStats($cacheKeyString);
767
768 // store the updated stats
2c16165a 769 $data = [
770 'merged' => $merged,
63ef778e 771 'skipped' => $skipped,
2c16165a 772 ];
63ef778e 773 $data = CRM_Core_DAO::escapeString(serialize($data));
774
2c16165a 775 $values = [];
63ef778e 776 $values[] = " ( 'civicrm_contact', 0, 0, '{$cacheKeyString}_stats', '$data' ) ";
777 CRM_Core_BAO_PrevNextCache::setItem($values);
778 }
779
ae6455b2 780 /**
781 * Delete information about merges for the given string.
782 *
783 * @param $cacheKeyString
784 */
f931b74c 785 public static function resetMergeStats($cacheKeyString) {
ae6455b2 786 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, "{$cacheKeyString}_stats");
63ef778e 787 }
788
bc854509 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.
e13fa54b 796 *
797 * @throws \CiviCRM_API3_Exception
bc854509 798 */
f931b74c 799 public static function getMergeStats($cacheKeyString) {
e13fa54b 800 $stats = civicrm_api3('Dedupe', 'get', ['cachekey' => "{$cacheKeyString}_stats", 'sequential' => 1])['values'];
63ef778e 801 if (!empty($stats)) {
e13fa54b 802 return $stats[0]['data'];
63ef778e 803 }
e13fa54b 804 return [];
63ef778e 805 }
806
bc854509 807 /**
808 * Get merge statistics message.
809 *
3743fd3d 810 * @param array $stats
bc854509 811 *
812 * @return string
813 */
3743fd3d
CW
814 public static function getMergeStatsMsg($stats) {
815 $msg = '';
63ef778e 816 if (!empty($stats['merged'])) {
2c16165a 817 $msg = '<p>' . ts('One contact merged.', [
518fa0ee
SL
818 'count' => $stats['merged'],
819 'plural' => '%count contacts merged.',
820 ]) . '</p>';
63ef778e 821 }
822 if (!empty($stats['skipped'])) {
2c16165a 823 $msg .= '<p>' . ts('One contact was skipped.', [
518fa0ee
SL
824 'count' => $stats['skipped'],
825 'plural' => '%count contacts were skipped.',
826 ]) . '</p>';
63ef778e 827 }
828 return $msg;
829 }
830
6a488035 831 /**
100fef9d 832 * Merge given set of contacts. Performs core operation.
6a488035 833 *
98997235
TO
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.
6a488035 838 * Generally used with batch-merge.
98997235
TO
839 * @param string $mode
840 * Helps decide how to behave when there are conflicts.
6a488035
TO
841 * A 'safe' value skips the merge if there are any un-resolved conflicts.
842 * Does a force merge otherwise (aggressive mode).
6a488035 843 *
77b97be7 844 * @param bool $redirectForPerformance
3058f4d9 845 * Redirect to a url for batch processing.
846 *
847 * @param bool $checkPermissions
848 * Respect logged in user permissions.
77b97be7
EM
849 *
850 * @return array|bool
6a488035 851 */
2c16165a 852 public static function merge($dupePairs = [], $cacheParams = [], $mode = 'safe',
853 $redirectForPerformance = FALSE, $checkPermissions = TRUE
6a488035
TO
854 ) {
855 $cacheKeyString = CRM_Utils_Array::value('cache_key_string', $cacheParams);
2c16165a 856 $resultStats = ['merged' => [], 'skipped' => []];
6a488035
TO
857
858 // we don't want dupe caching to get reset after every-merge, and therefore set the
0626851e 859 CRM_Core_Config::setPermitCacheFlushMode(FALSE);
2c16165a 860 $deletedContacts = [];
6a488035
TO
861
862 while (!empty($dupePairs)) {
78272750 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 }
1cf05c3e 868 CRM_Utils_Hook::merge('flip', $dupes, $dupes['dstID'], $dupes['srcID']);
6a488035
TO
869 $mainId = $dupes['dstID'];
870 $otherId = $dupes['srcID'];
e67dcaf8 871
6a488035
TO
872 if (!$mainId || !$otherId) {
873 // return error
874 return FALSE;
875 }
37cd9336 876
877 self::dedupePair($resultStats, $deletedContacts, $mode, $checkPermissions, $mainId, $otherId, $cacheKeyString);
6a488035
TO
878 }
879
880 if ($cacheKeyString && !$redirectForPerformance) {
881 // retrieve next pair of dupes
2988f5c7 882 // @todo call getDuplicatePairs.
6a488035
TO
883 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString,
884 $cacheParams['join'],
66eceb0b 885 $cacheParams['where'],
886 0,
ed3c1599 887 $cacheParams['limit'],
2c16165a 888 [],
66eceb0b 889 '',
890 FALSE
6a488035
TO
891 );
892 }
893 else {
894 // do not proceed. Terminate the loop
895 unset($dupePairs);
896 }
897 }
63ef778e 898
899 CRM_Dedupe_Merger::updateMergeStats($cacheKeyString, $resultStats);
6a488035
TO
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 *
98997235
TO
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.
13919cf8
J
915 * - A 'safe' value skips the merge if there are any un-resolved conflicts.
916 * - Does a force merge otherwise (aggressive mode).
6a488035 917 *
ad37ac8e 918 * @param array $conflicts
a2abc387 919 * An empty array to be filed with conflict information.
ad37ac8e 920 *
77b97be7 921 * @return bool
6a488035 922 */
2c16165a 923 public static function skipMerge($mainId, $otherId, &$migrationInfo, $mode = 'safe', &$conflicts = []) {
0971143c 924
a2abc387 925 $conflicts = self::getConflicts($migrationInfo, $mainId, $otherId, $mode);
6a488035
TO
926
927 if (!empty($conflicts)) {
928 foreach ($conflicts as $key => $val) {
929 if ($val === NULL and $mode == 'safe') {
63ef778e 930 // un-resolved conflicts still present. Lets skip this merge after saving the conflict / reason.
6a488035
TO
931 return TRUE;
932 }
933 else {
934 // copy over the resolved values
935 $migrationInfo[$key] = $val;
936 }
937 }
fd630ef9 938 // if there are conflicts and mode is aggressive, allow hooks to decide if to skip merges
a2abc387 939 return (bool) $migrationInfo['skip_merge'];
6a488035
TO
940 }
941 return FALSE;
942 }
943
d48ad2c0 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 */
518fa0ee 952 public static function locationIsSame($mainAddress, $comparisonAddress) {
2c16165a 953 $keysToIgnore = [
954 'id',
955 'is_primary',
956 'is_billing',
957 'manual_geo_code',
958 'contact_id',
959 'reset_date',
960 'hold_date',
961 ];
d48ad2c0 962 foreach ($comparisonAddress as $field => $value) {
963 if (in_array($field, $keysToIgnore)) {
964 continue;
965 }
00443529 966 if ((!empty($value) || $value === '0') && isset($mainAddress[$field]) && $mainAddress[$field] != $value) {
d48ad2c0 967 return FALSE;
968 }
969 }
970 return TRUE;
971 }
972
34917198
J
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() {
2c16165a 980 $locationBlocks = [
981 'address' => [
34917198
J
982 'label' => 'Address',
983 'displayField' => 'display',
984 'sortString' => 'location_type_id',
985 'hasLocation' => TRUE,
986 'hasType' => FALSE,
2c16165a 987 ],
988 'email' => [
34917198 989 'label' => 'Email',
2a7e1ddc 990 'displayField' => 'display',
34917198
J
991 'sortString' => 'location_type_id',
992 'hasLocation' => TRUE,
993 'hasType' => FALSE,
2c16165a 994 ],
995 'im' => [
34917198
J
996 'label' => 'IM',
997 'displayField' => 'name',
998 'sortString' => 'location_type_id,provider_id',
999 'hasLocation' => TRUE,
1000 'hasType' => 'provider_id',
2c16165a 1001 ],
1002 'phone' => [
34917198
J
1003 'label' => 'Phone',
1004 'displayField' => 'phone',
1005 'sortString' => 'location_type_id,phone_type_id',
1006 'hasLocation' => TRUE,
1007 'hasType' => 'phone_type_id',
2c16165a 1008 ],
1009 'website' => [
34917198
J
1010 'label' => 'Website',
1011 'displayField' => 'url',
1012 'sortString' => 'website_type_id',
1013 'hasLocation' => FALSE,
1014 'hasType' => 'website_type_id',
2c16165a 1015 ],
1016 ];
34917198
J
1017 return $locationBlocks;
1018 }
1019
6a488035
TO
1020 /**
1021 * A function to build an array of information required by merge function and the merge UI.
1022 *
98997235
TO
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.
201057c0 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!
6a488035 1035 *
77b97be7 1036 * @return array|bool|int
1e3e0eed
J
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 *
1e3e0eed
J
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 *
3058f4d9 1065 * @throws \CRM_Core_Exception
1066 * @throws \CiviCRM_API3_Exception
1067 * @throws \Exception
6a488035 1068 */
201057c0 1069 public static function getRowsElementsAndInfo($mainId, $otherId, $checkPermissions = TRUE) {
6a488035 1070 $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
74a6069d 1071 $fields = self::getMergeFieldsMetadata();
6a488035 1072
fcc3d8ee 1073 $main = self::getMergeContactDetails($mainId);
1074 $other = self::getMergeContactDetails($otherId);
6a488035 1075
4eea8606 1076 $compareFields = self::retrieveFields($main, $other);
6a488035 1077
2c16165a 1078 $rows = $elements = $relTableElements = $migrationInfo = [];
6a488035 1079
4eea8606 1080 foreach ($compareFields['contact'] as $field) {
4d5f18cc 1081 if ($field == 'contact_sub_type') {
1082 // CRM-15681 don't display sub-types in UI
1083 continue;
1084 }
47019034 1085 foreach (['main' => $main, 'other' => $other] as $moniker => $contact) {
045b2167 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']);
6a488035 1099 }
045b2167 1100 elseif (!empty($fieldSpec['type']) && $fieldSpec['type'] == CRM_Utils_Type::T_DATE) {
6a488035
TO
1101 if ($value) {
1102 $value = str_replace('-', '', $value);
1103 $label = CRM_Utils_Date::customFormat($label);
1104 }
1105 else {
1106 $value = "null";
1107 }
1108 }
a7488080 1109 elseif (!empty($fields[$field]['type']) && $fields[$field]['type'] == CRM_Utils_Type::T_BOOLEAN) {
6a488035
TO
1110 if ($label === '0') {
1111 $label = ts('[ ]');
1112 }
1113 if ($label === '1') {
1114 $label = ts('[x]');
1115 }
00f3da2e 1116 }
045b2167 1117 elseif (!empty($fieldSpec['pseudoconstant'])) {
1118 $label = CRM_Core_PseudoConstant::getLabel('CRM_Contact_BAO_Contact', $field, $value);
4f88c9cf
C
1119 }
1120 elseif ($field == 'current_employer_id' && !empty($value)) {
1121 $label = "$value (" . CRM_Contact_BAO_Contact::displayName($value) . ")";
1122 }
6a488035
TO
1123 $rows["move_$field"][$moniker] = $label;
1124 if ($moniker == 'other') {
7154d2a4
BS
1125 //CRM-14334
1126 if ($value === NULL || $value == '') {
6a488035
TO
1127 $value = 'null';
1128 }
1129 if ($value === 0 or $value === '0') {
1130 $value = $qfZeroBug;
1131 }
8cc574cf 1132 if (is_array($value) && empty($value[1])) {
6a488035
TO
1133 $value[1] = NULL;
1134 }
13919cf8
J
1135
1136 // Display a checkbox to migrate, only if the values are different
1137 if ($value != $main[$field]) {
2c16165a 1138 $elements[] = [
1139 'advcheckbox',
1140 "move_$field",
1141 NULL,
1142 NULL,
1143 NULL,
1144 $value,
1145 ];
13919cf8
J
1146 }
1147
6a488035
TO
1148 $migrationInfo["move_$field"] = $value;
1149 }
1150 }
1151 $rows["move_$field"]['title'] = $fields[$field]['title'];
1152 }
1153
eb61dc07
J
1154 // Handle location blocks.
1155 // @todo OpenID not in API yet, so is not supported here.
65a35632 1156
087f00ec 1157 // Set up useful information about the location blocks
34917198 1158 $locationBlocks = self::getLocationBlockInfo();
087f00ec 1159
2c16165a 1160 $locations = [
1161 'main' => [],
1162 'other' => [],
1163 ];
b814df56 1164
087f00ec 1165 // @todo This could probably be defined and used earlier
2c16165a 1166 $mergeTargets = [
087f00ec
J
1167 'main' => $mainId,
1168 'other' => $otherId,
2c16165a 1169 ];
6a488035 1170
087f00ec 1171 foreach ($locationBlocks as $blockName => $blockInfo) {
6a488035 1172
087f00ec
J
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) {
2c16165a 1176 $searchParams = [
b932e89e 1177 'contact_id' => $cid,
087f00ec 1178 // CRM-17556 Order by field-specific criteria
2c16165a 1179 'options' => [
087f00ec 1180 'sort' => $blockInfo['sortString'],
2c16165a 1181 ],
1182 ];
0b50eca0 1183 $values = civicrm_api3($blockName, 'get', $searchParams);
087f00ec
J
1184 if ($values['count']) {
1185 $cnt = 0;
bf588234 1186 foreach ($values['values'] as $value) {
087f00ec
J
1187 $locations[$moniker][$blockName][$cnt] = $value;
1188 // Fix address display
eb61dc07 1189 if ($blockName == 'address') {
087f00ec 1190 CRM_Core_BAO_Address::fixAddress($value);
ae6455b2 1191 $locations[$moniker][$blockName][$cnt]['display'] = CRM_Utils_Address::format($value);
6a488035 1192 }
2a7e1ddc
TS
1193 // Fix email display
1194 elseif ($blockName == 'email') {
1195 $locations[$moniker][$blockName][$cnt]['display'] = CRM_Utils_Mail::format($value);
1196 }
abb422f9 1197
087f00ec 1198 $cnt++;
6a488035
TO
1199 }
1200 }
1201 }
6a488035 1202
087f00ec
J
1203 // Now, build the table rows appropriately, based off the information on
1204 // the 'other' contact
34917198
J
1205 if (!empty($locations['other']) && !empty($locations['other'][$blockName])) {
1206 foreach ($locations['other'][$blockName] as $count => $value) {
6a488035 1207
087f00ec 1208 $displayValue = $value[$blockInfo['displayField']];
65a35632 1209
087f00ec
J
1210 // Add this value to the table rows
1211 $rows["move_location_{$blockName}_{$count}"]['other'] = $displayValue;
65a35632 1212
087f00ec
J
1213 // CRM-17556 Only display 'main' contact value if it's the same location + type
1214 // Look it up from main values...
65a35632 1215
087f00ec
J
1216 $lookupLocation = FALSE;
1217 if ($blockInfo['hasLocation']) {
1218 $lookupLocation = $value['location_type_id'];
1219 }
65a35632 1220
087f00ec
J
1221 $lookupType = FALSE;
1222 if ($blockInfo['hasType']) {
13cc4cac 1223 $lookupType = CRM_Utils_Array::value($blockInfo['hasType'], $value);
087f00ec 1224 }
65a35632 1225
34917198
J
1226 // Hold ID of main contact's matching block
1227 $mainContactBlockId = 0;
1228
087f00ec
J
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 ) {
34917198 1236 // Set this value as the default against the 'other' contact value
087f00ec 1237 $rows["move_location_{$blockName}_{$count}"]['main'] = $mainValueCheck[$blockInfo['displayField']];
041d6d6b 1238 $rows["move_location_{$blockName}_{$count}"]['main_is_primary'] = $mainValueCheck['is_primary'];
86b14b59 1239 $rows["move_location_{$blockName}_{$count}"]['location_entity'] = $blockName;
34917198 1240 $mainContactBlockId = $mainValueCheck['id'];
087f00ec
J
1241 break;
1242 }
6a488035 1243 }
087f00ec 1244 }
65a35632 1245
087f00ec 1246 // Add checkbox to migrate data from 'other' to 'main'
2c16165a 1247 $elements[] = ['advcheckbox', "move_location_{$blockName}_{$count}"];
65a35632 1248
abd0b852 1249 // Add checkbox to set the 'other' location as primary
2c16165a 1250 $elements[] = [
1251 'advcheckbox',
1252 "location_blocks[$blockName][$count][set_other_primary]",
1253 NULL,
1254 ts('Set as primary'),
1255 ];
abd0b852 1256
087f00ec
J
1257 // Flag up this field to skipMerge function (@todo: do we need to?)
1258 $migrationInfo["move_location_{$blockName}_{$count}"] = 1;
65a35632 1259
34917198 1260 // Add a hidden field to store the ID of the target main contact block
2c16165a 1261 $elements[] = [
1262 'hidden',
1263 "location_blocks[$blockName][$count][mainContactBlockId]",
1264 $mainContactBlockId,
1265 ];
34917198 1266
087f00ec
J
1267 // Setup variables
1268 $thisTypeId = FALSE;
1269 $thisLocId = FALSE;
65a35632 1270
087f00ec
J
1271 // Provide a select drop-down for the location's location type
1272 // eg: Home, Work...
65a35632 1273
087f00ec
J
1274 if ($blockInfo['hasLocation']) {
1275
5b28be84 1276 // Load the location options for this entity
2c16165a 1277 $locationOptions = civicrm_api3($blockName, 'getoptions', ['field' => 'location_type_id']);
5b28be84 1278
087f00ec
J
1279 $thisLocId = $value['location_type_id'];
1280
1281 // Put this field's location type at the top of the list
5b28be84 1282 $tmpIdList = $locationOptions['values'];
2c16165a 1283 $defaultLocId = [$thisLocId => $tmpIdList[$thisLocId]];
087f00ec
J
1284 unset($tmpIdList[$thisLocId]);
1285
1286 // Add the element
2c16165a 1287 $elements[] = [
eb61dc07 1288 'select',
972947a7 1289 "location_blocks[$blockName][$count][locTypeId]",
eb61dc07 1290 NULL,
087f00ec 1291 $defaultLocId + $tmpIdList,
2c16165a 1292 ];
087f00ec
J
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;
abb422f9 1298 if ($blockName != 'address') {
2c16165a 1299 $elements[] = [
1300 'advcheckbox',
1301 "location_blocks[{$blockName}][$count][operation]",
1302 NULL,
1303 ts('Add new'),
1304 ];
087f00ec 1305 // always use add operation
abb422f9 1306 $migrationInfo['location_blocks'][$blockName][$count]['operation'] = 1;
6a488035 1307 }
087f00ec 1308
6a488035 1309 }
6a488035 1310
087f00ec
J
1311 // Provide a select drop-down for the location's type/provider
1312 // eg websites: Google+, Facebook...
1313
087f00ec
J
1314 if ($blockInfo['hasType']) {
1315
5b28be84 1316 // Load the type options for this entity
2c16165a 1317 $typeOptions = civicrm_api3($blockName, 'getoptions', ['field' => $blockInfo['hasType']]);
5b28be84 1318
13cc4cac 1319 $thisTypeId = CRM_Utils_Array::value($blockInfo['hasType'], $value);
087f00ec
J
1320
1321 // Put this field's location type at the top of the list
5b28be84 1322 $tmpIdList = $typeOptions['values'];
2c16165a 1323 $defaultTypeId = [$thisTypeId => CRM_Utils_Array::value($thisTypeId, $tmpIdList)];
087f00ec
J
1324 unset($tmpIdList[$thisTypeId]);
1325
1326 // Add the element
2c16165a 1327 $elements[] = [
65a35632 1328 'select',
972947a7 1329 "location_blocks[$blockName][$count][typeTypeId]",
65a35632 1330 NULL,
087f00ec 1331 $defaultTypeId + $tmpIdList,
2c16165a 1332 ];
65a35632 1333
1e3e0eed 1334 // Add the information to the migrationInfo
34917198 1335 $migrationInfo['location_blocks'][$blockName][$count]['typeTypeId'] = $thisTypeId;
65a35632 1336
6a488035 1337 }
087f00ec
J
1338
1339 // Set the label for this row
34917198
J
1340 $rowTitle = $blockInfo['label'] . ' ' . ($count + 1);
1341 if (!empty($thisLocId)) {
5b28be84 1342 $rowTitle .= ' (' . $locationOptions['values'][$thisLocId] . ')';
6a488035 1343 }
34917198 1344 if (!empty($thisTypeId)) {
5b28be84 1345 $rowTitle .= ' (' . $typeOptions['values'][$thisTypeId] . ')';
34917198
J
1346 }
1347 $rows["move_location_{$blockName}_$count"]['title'] = $rowTitle;
65a35632 1348
34917198 1349 } // End loop through 'other' locations of this type
087f00ec 1350
34917198 1351 } // End if 'other' location for this type exists
6a488035 1352
34917198 1353 } // End loop through each location block entity
6a488035
TO
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
2c16165a 1391 $relTableElements[] = ['checkbox', "move_$name"];
6a488035
TO
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']);
2c16165a 1399 $find = ['$ufid', '$ufname'];
6a488035 1400 if ($mainUser) {
2c16165a 1401 $replace = [$mainUfId, $mainUser->name];
6a488035
TO
1402 $relTables[$name]['main_title'] = str_replace($find, $replace, $relTables[$name]['title']);
1403 }
1404 if ($otherUser) {
2c16165a 1405 $replace = [$otherUfId, $otherUser->name];
6a488035
TO
1406 $relTables[$name]['other_title'] = str_replace($find, $replace, $relTables[$name]['title']);
1407 }
1408 }
1409 if ($name == 'rel_table_memberships') {
7d84a47d
JP
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 }
2c16165a 1419 $elements[] = [
1420 'checkbox',
1421 "operation[move_{$name}][add]",
1422 NULL,
1423 ts('add new'),
1424 $attributes,
1425 ];
6a488035
TO
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
201057c0 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
6a488035 1437 );
0b330e6d 1438 $otherTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $otherId, -1,
201057c0 1439 CRM_Utils_Array::value('contact_sub_type', $other), NULL, TRUE, NULL, TRUE, $checkPermissions
6a488035 1440 );
6a488035
TO
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) {
4eea8606 1449 if (in_array($fid, $compareFields['custom'])) {
6a488035
TO
1450 if (!$foundField) {
1451 $rows["custom_group_$gid"]['title'] = $group['title'];
1452 $foundField = TRUE;
1453 }
a7488080 1454 if (!empty($mainTree[$gid]['fields'][$fid]['customValue'])) {
6a488035 1455 foreach ($mainTree[$gid]['fields'][$fid]['customValue'] as $valueId => $values) {
51a3717f 1456 $rows["move_custom_$fid"]['main'] = CRM_Core_BAO_CustomField::displayValue($values['data'], $fid);
6a488035
TO
1457 }
1458 }
1459 $value = "null";
a7488080 1460 if (!empty($otherTree[$gid]['fields'][$fid]['customValue'])) {
6a488035 1461 foreach ($otherTree[$gid]['fields'][$fid]['customValue'] as $valueId => $values) {
51a3717f 1462 $rows["move_custom_$fid"]['other'] = CRM_Core_BAO_CustomField::displayValue($values['data'], $fid);
6a488035
TO
1463 if ($values['data'] === 0 || $values['data'] === '0') {
1464 $values['data'] = $qfZeroBug;
d58a19a1 1465 }
6a488035 1466 $value = ($values['data']) ? $values['data'] : $value;
d58a19a1 1467 }
6a488035
TO
1468 }
1469 $rows["move_custom_$fid"]['title'] = $field['label'];
1470
2c16165a 1471 $elements[] = [
1472 'advcheckbox',
1473 "move_custom_$fid",
1474 NULL,
1475 NULL,
1476 NULL,
1477 $value,
1478 ];
6a488035
TO
1479 $migrationInfo["move_custom_$fid"] = $value;
1480 }
1481 }
1482 }
abb422f9 1483
2c16165a 1484 $result = [
6a488035
TO
1485 'rows' => $rows,
1486 'elements' => $elements,
1487 'rel_table_elements' => $relTableElements,
6a488035
TO
1488 'rel_tables' => $relTables,
1489 'main_details' => $main,
1490 'other_details' => $other,
1491 'migration_info' => $migrationInfo,
2c16165a 1492 ];
6a488035 1493
34917198
J
1494 $result['main_details']['location_blocks'] = $locations['main'];
1495 $result['other_details']['location_blocks'] = $locations['other'];
6a488035
TO
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 *
98997235
TO
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.
77b97be7 1509 *
1600a9c0 1510 * @param array $migrationInfo
6a488035 1511 *
3058f4d9 1512 * @param bool $checkPermissions
1513 * Respect logged in user permissions.
1514 *
77b97be7 1515 * @return bool
1600a9c0 1516 * @throws \CiviCRM_API3_Exception
6a488035 1517 */
3058f4d9 1518 public static function moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions = TRUE) {
6a488035
TO
1519 if (empty($migrationInfo)) {
1520 return FALSE;
1521 }
119664d6 1522 // Encapsulate in a transaction to avoid half-merges.
1523 $transaction = new CRM_Core_Transaction();
6a488035 1524
1acd98ec 1525 $contactType = $migrationInfo['main_details']['contact_type'];
6a488035 1526 $relTables = CRM_Dedupe_Merger::relTables();
35e0e03e 1527 $submittedCustomFields = $moveTables = $tableOperations = $removeTables = [];
ae2346d4 1528
54ed517e 1529 self::swapOutFieldsAffectedByQFZeroBug($migrationInfo);
6a488035 1530 foreach ($migrationInfo as $key => $value) {
08b00099
CR
1531
1532 if (substr($key, 0, 12) == 'move_custom_' && $value != NULL) {
6a488035 1533 $submitted[substr($key, 5)] = $value;
ae2346d4 1534 $submittedCustomFields[] = substr($key, 12);
6a488035 1535 }
08b00099 1536 elseif (in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) && $value != NULL) {
6a488035
TO
1537 $submitted[substr($key, 5)] = $value;
1538 }
6a488035
TO
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 }
4099a9c5
AP
1549 elseif (substr($key, 0, 15) == 'move_rel_table_' and $value == '0') {
1550 $removeTables = array_merge($moveTables, $relTables[substr($key, 5)]['tables']);
1551 }
6a488035 1552 }
35e0e03e 1553 self::mergeLocations($mainId, $otherId, $migrationInfo);
6a488035 1554
6a488035 1555 // **** Do contact related migrations
ae2346d4 1556 $customTablesToCopyValues = self::getAffectedCustomTables($submittedCustomFields);
1600a9c0 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);
0556db5d
CR
1561 CRM_Dedupe_Merger::moveContactBelongings($mainId, $otherId, $moveTables, $tableOperations, $customTablesToCopyValues);
1562 unset($moveTables, $tableOperations);
6a488035 1563
4099a9c5
AP
1564 // **** Do table related removals
1565 if (!empty($removeTables)) {
1566 // **** CRM-20421
1567 CRM_Dedupe_Merger::removeContactBelongings($otherId, $removeTables);
2c16165a 1568 $removeTables = [];
4099a9c5
AP
1569 }
1570
6a488035 1571 // FIXME: fix gender, prefix and postfix, so they're edible by createProfileContact()
2c16165a 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 ];
6a488035 1597 CRM_Core_OptionGroup::lookupValues($submitted, $names, TRUE);
6a488035 1598 // fix custom fields so they're edible by createProfileContact()
f941d73a 1599 $cFields = self::getCustomFieldMetadata($contactType);
6a488035
TO
1600
1601 if (!isset($submitted)) {
2c16165a 1602 $submitted = [];
6a488035
TO
1603 }
1604 foreach ($submitted as $key => $value) {
1600a9c0 1605 list($cFields, $submitted) = self::processCustomFields($mainId, $key, $cFields, $submitted, $value);
6a488035
TO
1606 }
1607
6a488035 1608 // move view only custom fields CRM-5362
2c16165a 1609 $viewOnlyCustomFields = [];
6a488035 1610 foreach ($submitted as $key => $value) {
ca38a45b 1611 $fid = CRM_Core_BAO_CustomField::getKeyID($key);
1612 if ($fid && array_key_exists($fid, $cFields) && !empty($cFields[$fid]['attributes']['is_view'])
1613 ) {
6a488035
TO
1614 $viewOnlyCustomFields[$key] = $value;
1615 }
1616 }
6a488035
TO
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
1f0138dd
SL
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
3058f4d9 1639 if (!$checkPermissions || (CRM_Core_Permission::check('merge duplicate contacts') &&
2c16165a 1640 CRM_Core_Permission::check('delete contacts'))
6a488035
TO
1641 ) {
1642 // if ext id is submitted then set it null for contact to be deleted
a7488080 1643 if (!empty($submitted['external_identifier'])) {
6a488035
TO
1644 $query = "UPDATE civicrm_contact SET external_identifier = null WHERE id = {$otherId}";
1645 CRM_Core_DAO::executeQuery($query);
1646 }
2c16165a 1647 civicrm_api3('contact', 'delete', ['id' => $otherId]);
6a488035 1648 }
6a488035 1649
4d5f18cc 1650 // CRM-15681 merge sub_types
35522279
J
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'])) {
481a74f4 1653 $submitted['contact_sub_type'] = array_unique(array_merge($main_sub_types, $other_sub_types));
0db6c3e1
TO
1654 }
1655 else {
4d5f18cc 1656 $submitted['contact_sub_type'] = $other_sub_types;
1657 }
1658 }
1659
6a488035
TO
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'];
0db6c3e1
TO
1668 }
1669 else {
6a488035
TO
1670 $submitted['current_employer'] = '';
1671 }
1672 unset($submitted['current_employer_id']);
1673 }
1674
00f3da2e 1675 //CRM-14312 include prefix/suffix from mainId if not overridden for proper construction of display/sort name
481a74f4 1676 if (!isset($submitted['prefix_id']) && !empty($migrationInfo['main_details']['prefix_id'])) {
00f3da2e
BS
1677 $submitted['prefix_id'] = $migrationInfo['main_details']['prefix_id'];
1678 }
481a74f4 1679 if (!isset($submitted['suffix_id']) && !empty($migrationInfo['main_details']['suffix_id'])) {
00f3da2e
BS
1680 $submitted['suffix_id'] = $migrationInfo['main_details']['suffix_id'];
1681 }
1682
6a488035 1683 CRM_Contact_BAO_Contact::createProfileContact($submitted, CRM_Core_DAO::$_nullArray, $mainId);
6a488035 1684 }
119664d6 1685 $transaction->commit();
1273d77c 1686 CRM_Utils_Hook::post('merge', 'Contact', $mainId);
f00283b5 1687 self::createMergeActivities($mainId, $otherId);
5ea06a7b 1688
6a488035
TO
1689 return TRUE;
1690 }
16254ae1 1691
ae2346d4
CR
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) {
2c16165a 1701 $customTableToCopyValues = [];
ae2346d4
CR
1702
1703 foreach ($customFieldIDs as $fieldID) {
1704 if (!empty($fieldID)) {
2c16165a 1705 $customField = civicrm_api3('custom_field', 'getsingle', [
08b00099
CR
1706 'id' => $fieldID,
1707 'is_active' => TRUE,
2c16165a 1708 ]);
08b00099 1709 if (!civicrm_error($customField) && !empty($customField['custom_group_id'])) {
2c16165a 1710 $customGroup = civicrm_api3('custom_group', 'getsingle', [
08b00099 1711 'id' => $customField['custom_group_id'],
ae2346d4 1712 'is_active' => TRUE,
2c16165a 1713 ]);
ae2346d4
CR
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
16254ae1 1725 /**
f00283b5 1726 * Get fields in the contact table suitable for merging.
1727 *
a6c01b45 1728 * @return array
f00283b5 1729 * Array of field names to be potentially merged.
16254ae1 1730 */
00be9182 1731 public static function getContactFields() {
16254ae1 1732 $contactFields = CRM_Contact_DAO_Contact::fields();
2c16165a 1733 $invalidFields = [
353ffa53 1734 'api_key',
353ffa53
TO
1735 'created_date',
1736 'display_name',
1737 'hash',
1738 'id',
1739 'modified_date',
1740 'primary_contact_id',
1741 'sort_name',
c301f76e 1742 'user_unique_id',
2c16165a 1743 ];
bdd7870e
RN
1744 foreach ($contactFields as $field => $value) {
1745 if (in_array($field, $invalidFields)) {
1746 unset($contactFields[$field]);
1747 }
1748 }
16254ae1
ARW
1749 return array_keys($contactFields);
1750 }
ada104d5
AW
1751
1752 /**
1753 * Added for CRM-12695
c301f76e 1754 * Based on the contactID provided
ada104d5
AW
1755 * add/update membership(s) to related contacts
1756 *
c301f76e 1757 * @param int $contactID
ada104d5 1758 */
00be9182 1759 public static function addMembershipToRealtedContacts($contactID) {
ada104d5
AW
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) {
2c16165a 1769 $membershipParams = [
ada104d5
AW
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,
21dfd5f5 1777 'status_id' => $dao->status_id,
2c16165a 1778 ];
ada104d5
AW
1779 // create/update membership(s) for related contact(s)
1780 CRM_Member_BAO_Membership::createRelatedMemberships($membershipParams, $dao);
1781 } // end of if relationshipTypeId
1782 }
1783 }
96025800 1784
f00283b5 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) {
2c16165a 1794 $params = [
f00283b5 1795 1 => $otherId,
1796 2 => $mainId,
2c16165a 1797 ];
1798 $activity = civicrm_api3('activity', 'create', [
dc33398e 1799 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() :
518fa0ee 1800 $mainId,
f00283b5 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',
2c16165a 1805 ]);
1806 if (civicrm_api3('Setting', 'getvalue', [
1807 'name' => 'contact_undelete',
1808 'group' => 'CiviCRM Preferences',
1809 ])) {
1810 civicrm_api3('activity', 'create', [
dc33398e 1811 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() :
518fa0ee 1812 $otherId,
4d834a99 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',
2c16165a 1818 ]);
4d834a99 1819 }
f00283b5 1820 }
1821
2988f5c7 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
917acf6f 1828 * Should the cache be reloaded if empty - this must be false when in a dedupe action!
2988f5c7 1829 * @param int $batchLimit
1830 * @param bool $isSelected
5721d85e 1831 * Limit to selected pairs.
66eceb0b 1832 * @param bool $includeConflicts
e23e26ec 1833 * @param array $criteria
1834 * Additional criteria to narrow down the merge group.
2988f5c7 1835 *
3058f4d9 1836 * @param bool $checkPermissions
1837 * Respect logged in user permissions.
1838 *
21a95d83 1839 * @param int $searchLimit
1840 * Limit to searching for matches against this many contacts.
1841 *
2988f5c7 1842 * @return array
518fa0ee 1843 * Array of matches meeting the criteria.
9c5fe572 1844 *
1845 * @throws \CRM_Core_Exception
1846 * @throws \CiviCRM_API3_Exception
2988f5c7 1847 */
9c5fe572 1848 public static function getDuplicatePairs($rule_group_id, $group_id, $reloadCacheIfEmpty, $batchLimit, $isSelected, $includeConflicts = TRUE, $criteria = [], $checkPermissions = TRUE, $searchLimit = 0) {
4107e11e 1849 $dupePairs = self::getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, $includeConflicts, $criteria, $checkPermissions);
2988f5c7 1850 if (empty($dupePairs) && $reloadCacheIfEmpty) {
1851 // If we haven't found any dupes, probably cache is empty.
66eceb0b 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.
e1e24a57 1854 CRM_Core_BAO_PrevNextCache::refillCache($rule_group_id, $group_id, $criteria, $checkPermissions, $searchLimit);
4107e11e 1855 return self::getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, FALSE, $criteria, $checkPermissions);
2988f5c7 1856 }
1857 return $dupePairs;
1858 }
1859
2ae26001 1860 /**
1861 * Get the cache key string for the merge action.
1862 *
1863 * @param int $rule_group_id
1864 * @param int $group_id
e23e26ec 1865 * @param array $criteria
1866 * Additional criteria to narrow down the merge group.
1867 * Currently we are only supporting the key 'contact' within it.
2ae26001 1868 *
3058f4d9 1869 * @param bool $checkPermissions
1870 * Respect the users permissions.
1871 *
2ae26001 1872 * @return string
1873 */
2c16165a 1874 public static function getMergeCacheKeyString($rule_group_id, $group_id, $criteria = [], $checkPermissions = TRUE) {
2ae26001 1875 $contactType = CRM_Dedupe_BAO_RuleGroup::getContactTypeForRuleGroup($rule_group_id);
9d2f6d53 1876 $cacheKeyString = "merge_{$contactType}";
2ae26001 1877 $cacheKeyString .= $rule_group_id ? "_{$rule_group_id}" : '_0';
1878 $cacheKeyString .= $group_id ? "_{$group_id}" : '_0';
629dd4f3 1879 $cacheKeyString .= !empty($criteria) ? md5(serialize($criteria)) : '_0';
3058f4d9 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 }
2ae26001 1891 return $cacheKeyString;
1892 }
1893
74a6069d 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();
2c16165a 1907 static $optionValueFields = [];
74a6069d 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
74a6069d 1922 *
1923 * @return array
1924 *
1925 * @throws CRM_Core_Exception
1926 */
fcc3d8ee 1927 public static function getMergeContactDetails($contact_id) {
2c16165a 1928 $params = [
74a6069d 1929 'contact_id' => $contact_id,
1930 'version' => 3,
2c16165a 1931 'return' => array_merge(['display_name'], self::getContactFields()),
1932 ];
74a6069d 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'])) {
2c16165a 1937 throw new CRM_Core_Exception(ts('Cannot merge because one contact (ID %1) has been deleted.', [
fcc3d8ee 1938 1 => $contact_id,
2c16165a 1939 ]));
74a6069d 1940 }
1941
1942 return $result['values'][$contact_id];
1943 }
1944
92a77772 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
16d4e0b7 1961 * is likely to be significant data in merge hooks.
92a77772 1962 *
1963 * @param int $mainId
1964 * @param int $otherId
92a77772 1965 *
1966 * @param array $migrationInfo
1967 * Migration info for the merge. This is passed to the hook as informational only.
1968 */
35e0e03e 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 }
92a77772 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 }
2c16165a 1992 $blocksDAO = [];
92a77772 1993
1994 // @todo Handle OpenID (not currently in API).
1995 if (!empty($locBlocks)) {
1996 $locationBlocks = self::getLocationBlockInfo();
1997
2c16165a 1998 $primaryBlockIds = CRM_Contact_BAO_Contact::getLocBlockIds($mainId, ['is_primary' => 1]);
1999 $billingBlockIds = CRM_Contact_BAO_Contact::getLocBlockIds($mainId, ['is_billing' => 1]);
92a77772 2000
2001 foreach ($locBlocks as $name => $block) {
2c16165a 2002 $blocksDAO[$name] = ['delete' => [], 'update' => []];
92a77772 2003 if (!is_array($block) || CRM_Utils_System::isNull($block)) {
2004 continue;
2005 }
2006 $daoName = 'CRM_Core_DAO_' . $locationBlocks[$name]['label'];
abd0b852 2007 $changePrimary = FALSE;
92a77772 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
abd0b852
J
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]);
9e848fc4 2039 if (!$changePrimary && $set_primary == "1") {
abd0b852
J
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) {
92a77772 2051 $otherBlockDAO->is_primary = 0;
2052 }
abd0b852
J
2053
2054 // If the main contact already has a billing location, set this to 0.
92a77772 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
e4e1db4b 2096 /**
2097 * Dedupe a pair of contacts.
2098 *
e4e1db4b 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
37cd9336 2106 *
2107 * @throws \CRM_Core_Exception
2108 * @throws \CiviCRM_API3_Exception
e4e1db4b 2109 */
37cd9336 2110 protected static function dedupePair(&$resultStats, &$deletedContacts, $mode, $checkPermissions, $mainId, $otherId, $cacheKeyString) {
2111
2112 // Generate var $migrationInfo. The variable structure is exactly same as
2113 // $formValues submitted during a UI merge for a pair of contacts.
2114 $rowsElementsAndInfo = CRM_Dedupe_Merger::getRowsElementsAndInfo($mainId, $otherId, $checkPermissions);
2115 // add additional details that we might need to resolve conflicts
2116 $rowsElementsAndInfo['migration_info']['main_details'] = &$rowsElementsAndInfo['main_details'];
2117 $rowsElementsAndInfo['migration_info']['other_details'] = &$rowsElementsAndInfo['other_details'];
2118 $rowsElementsAndInfo['migration_info']['rows'] = &$rowsElementsAndInfo['rows'];
2119 $migrationInfo = $rowsElementsAndInfo['migration_info'];
e4e1db4b 2120 // go ahead with merge if there is no conflict
2c16165a 2121 $conflicts = [];
e4e1db4b 2122 if (!CRM_Dedupe_Merger::skipMerge($mainId, $otherId, $migrationInfo, $mode, $conflicts)) {
2123 CRM_Dedupe_Merger::moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions);
2c16165a 2124 $resultStats['merged'][] = [
e4e1db4b 2125 'main_id' => $mainId,
2126 'other_id' => $otherId,
2c16165a 2127 ];
e4e1db4b 2128 $deletedContacts[] = $otherId;
2129 }
2130 else {
2c16165a 2131 $resultStats['skipped'][] = [
e4e1db4b 2132 'main_id' => $mainId,
2133 'other_id' => $otherId,
2c16165a 2134 ];
e4e1db4b 2135 }
2136
2137 // store any conflicts
2138 if (!empty($conflicts)) {
2139 foreach ($conflicts as $key => $dnc) {
2140 $conflicts[$key] = "{$migrationInfo['rows'][$key]['title']}: '{$migrationInfo['rows'][$key]['main']}' vs. '{$migrationInfo['rows'][$key]['other']}'";
2141 }
2142 CRM_Core_BAO_PrevNextCache::markConflict($mainId, $otherId, $cacheKeyString, $conflicts);
2143 }
2144 else {
c131d228 2145 CRM_Core_BAO_PrevNextCache::deletePair($mainId, $otherId, $cacheKeyString);
e4e1db4b 2146 }
e4e1db4b 2147 }
2148
54ed517e 2149 /**
2150 * Replace the pseudo QFKey with zero if it is present.
2151 *
2152 * @todo - on the slim chance this is still relevant it should be moved to the form layer.
2153 *
2154 * Details about this bug are somewhat obscured by the move from svn but perhaps JIRA
2155 * can still help.
2156 *
2157 * @param array $migrationInfo
2158 */
2159 protected static function swapOutFieldsAffectedByQFZeroBug(&$migrationInfo) {
2160 $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
2161 foreach ($migrationInfo as $key => &$value) {
2162 if ($value == $qfZeroBug) {
2163 $value = '0';
2164 }
2165 }
2166 }
2167
830ee2be 2168 /**
2169 * Honestly - what DOES this do - hopefully some refactoring will reveal it's purpose.
2170 *
1600a9c0 2171 * Update this function formats fields in preparation for them to be submitted to the
2172 * 'ProfileContactCreate action. This is a lot of code to do this & for
2173 * - for some fields it fails - e.g Country - per testMergeCustomFields.
2174 *
2175 * Goal is to move all custom field handling into 'move' functions on the various BAO
2176 * with an underlying DAO function. For custom fields it has been started on the BAO.
2177 *
830ee2be 2178 * @param $mainId
2179 * @param $key
2180 * @param $cFields
830ee2be 2181 * @param $submitted
2182 * @param $value
2183 *
2184 * @return array
1600a9c0 2185 * @throws \Exception
830ee2be 2186 */
1600a9c0 2187 protected static function processCustomFields($mainId, $key, $cFields, $submitted, $value) {
830ee2be 2188 if (substr($key, 0, 7) == 'custom_') {
2189 $fid = (int) substr($key, 7);
2190 if (empty($cFields[$fid])) {
1600a9c0 2191 return [$cFields, $submitted];
830ee2be 2192 }
2193 $htmlType = $cFields[$fid]['attributes']['html_type'];
2194 switch ($htmlType) {
2195 case 'File':
1600a9c0 2196 // Handled in CustomField->move(). Tested in testMergeCustomFields.
830ee2be 2197 unset($submitted["custom_$fid"]);
2198 break;
2199
2200 case 'Select Country':
1600a9c0 2201 // @todo Test in testMergeCustomFields disabled as this does not work, Handle in CustomField->move().
830ee2be 2202 case 'Select State/Province':
2203 $submitted[$key] = CRM_Core_BAO_CustomField::displayValue($value, $fid);
2204 break;
2205
2206 case 'Select Date':
2207 if ($cFields[$fid]['attributes']['is_view']) {
2208 $submitted[$key] = date('YmdHis', strtotime($submitted[$key]));
2209 }
2210 break;
2211
2212 case 'CheckBox':
2213 case 'Multi-Select':
2214 case 'Multi-Select Country':
2215 case 'Multi-Select State/Province':
2216 // Merge values from both contacts for multivalue fields, CRM-4385
2217 // get the existing custom values from db.
2218 $customParams = ['entityID' => $mainId, $key => TRUE];
2219 $customfieldValues = CRM_Core_BAO_CustomValueTable::getValues($customParams);
2220 if (!empty($customfieldValues[$key])) {
2221 $existingValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, $customfieldValues[$key]);
2222 if (is_array($existingValue) && !empty($existingValue)) {
2223 $mergeValue = $submittedCustomFields = [];
2224 if ($value == 'null') {
2225 // CRM-19074 if someone has deliberately chosen to overwrite with 'null', respect it.
2226 $submitted[$key] = $value;
2227 }
2228 else {
2229 if ($value) {
2230 $submittedCustomFields = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
2231 }
2232
2233 // CRM-19653: overwrite or add the existing custom field value with dupicate contact's
2234 // custom field value stored at $submittedCustomValue.
2235 foreach ($submittedCustomFields as $k => $v) {
2236 if ($v != '' && !in_array($v, $mergeValue)) {
2237 $mergeValue[] = $v;
2238 }
2239 }
2240
2241 //keep state and country as array format.
2242 //for checkbox and m-select format w/ VALUE_SEPARATOR
2243 if (in_array($htmlType, [
2244 'CheckBox',
2245 'Multi-Select',
2246 ])) {
2247 $submitted[$key] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
2248 $mergeValue
2249 ) . CRM_Core_DAO::VALUE_SEPARATOR;
2250 }
2251 else {
2252 $submitted[$key] = $mergeValue;
2253 }
2254 }
2255 }
2256 }
2257 elseif (in_array($htmlType, [
2258 'Multi-Select Country',
2259 'Multi-Select State/Province',
2260 ])) {
2261 //we require submitted values should be in array format
2262 if ($value) {
2263 $mergeValueArray = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
2264 //hack to remove null values from array.
2265 $mergeValue = [];
2266 foreach ($mergeValueArray as $k => $v) {
2267 if ($v != '') {
2268 $mergeValue[] = $v;
2269 }
2270 }
2271 $submitted[$key] = $mergeValue;
2272 }
2273 }
2274 break;
2275
2276 default:
2277 break;
2278 }
2279 }
1600a9c0 2280 return [$cFields, $submitted];
830ee2be 2281 }
2282
f941d73a 2283 /**
2284 * Get metadata for the custom fields for the merge.
2285 *
2286 * @param string $contactType
2287 *
2288 * @return array
2289 */
2290 protected static function getCustomFieldMetadata($contactType) {
2291 $treeCache = [];
2292 if (!array_key_exists($contactType, $treeCache)) {
2293 $treeCache[$contactType] = CRM_Core_BAO_CustomGroup::getTree(
2294 $contactType,
2295 NULL,
2296 NULL,
2297 -1,
2298 [],
2299 NULL,
2300 TRUE,
2301 NULL,
2302 FALSE,
2303 FALSE
2304 );
2305 }
2306
2307 $cFields = [];
2308 foreach ($treeCache[$contactType] as $key => $group) {
2309 if (!isset($group['fields'])) {
2310 continue;
2311 }
2312 foreach ($group['fields'] as $fid => $field) {
2313 $cFields[$fid]['attributes'] = $field;
2314 }
2315 }
2316 return $cFields;
2317 }
2318
a2abc387 2319 /**
2320 * Get conflicts for proposed merge pair.
2321 *
2322 * @param array $migrationInfo
2323 * This is primarily to inform hooks. The can also modify it which feels
2324 * pretty fragile to do it here - but it is historical.
2325 * @param int $mainId
2326 * Main contact with whom merge has to happen.
2327 * @param int $otherId
2328 * Duplicate contact which would be deleted after merge operation.
2329 * @param string $mode
2330 * Helps decide how to behave when there are conflicts.
2331 * - A 'safe' value skips the merge if there are any un-resolved conflicts.
2332 * - Does a force merge otherwise (aggressive mode).
2333 *
2334 * @return array
2335 */
2336 public static function getConflicts(&$migrationInfo, $mainId, $otherId, $mode) {
2337 $conflicts = [];
2338 $originalMigrationInfo = $migrationInfo;
2339 foreach ($migrationInfo as $key => $val) {
2340 if ($val === "null") {
2341 // Rule: Never overwrite with an empty value (in any mode)
2342 unset($migrationInfo[$key]);
2343 continue;
2344 }
2345 elseif ((in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) or
2346 substr($key, 0, 12) == 'move_custom_'
2347 ) and $val != NULL
2348 ) {
2349 // Rule: If both main-contact, and other-contact have a field with a
2350 // different value, then let $mode decide if to merge it or not
2351 if (
2352 (!empty($migrationInfo['rows'][$key]['main'])
2353 // For custom fields a 0 (e.g in an int field) could be a true conflict. This
2354 // is probably true for other fields too - e.g. 'do_not_email' but
2355 // leaving that investigation as a @todo - until tests can be written.
2356 // Note the handling of this has test coverage - although the data-typing
2357 // of '0' feels flakey we have insurance.
2358 || ($migrationInfo['rows'][$key]['main'] === '0' && substr($key, 0, 12) == 'move_custom_')
2359 )
2360 && $migrationInfo['rows'][$key]['main'] != $migrationInfo['rows'][$key]['other']
2361 ) {
2362
2363 // note it down & lets wait for response from the hook.
2364 // For no response $mode will decide if to skip this merge
2365 $conflicts[$key] = NULL;
2366 }
2367 }
2368 elseif (substr($key, 0, 14) == 'move_location_' and $val != NULL) {
2369 $locField = explode('_', $key);
2370 $fieldName = $locField[2];
2371 $fieldCount = $locField[3];
2372
2373 // Rule: Catch address conflicts (same address type on both contacts)
2374 if (
2375 isset($migrationInfo['main_details']['location_blocks'][$fieldName]) &&
2376 !empty($migrationInfo['main_details']['location_blocks'][$fieldName])
2377 ) {
2378
2379 // Load the address we're inspecting from the 'other' contact
2380 $addressRecord = $migrationInfo['other_details']['location_blocks'][$fieldName][$fieldCount];
2381 $addressRecordLocTypeId = CRM_Utils_Array::value('location_type_id', $addressRecord);
2382
2383 // If it exists on the 'main' contact already, skip it. Otherwise
2384 // if the location type exists already, log a conflict.
2385 foreach ($migrationInfo['main_details']['location_blocks'][$fieldName] as $mainAddressKey => $mainAddressRecord) {
2386 if (self::locationIsSame($addressRecord, $mainAddressRecord)) {
2387 unset($migrationInfo[$key]);
2388 break;
2389 }
2390 elseif ($addressRecordLocTypeId == $mainAddressRecord['location_type_id']) {
2391 $conflicts[$key] = NULL;
2392 break;
2393 }
2394 }
2395 }
2396
2397 // For other locations, don't merge/add if the values are the same
2398 elseif (CRM_Utils_Array::value('main', $migrationInfo['rows'][$key]) == $migrationInfo['rows'][$key]['other']) {
2399 unset($migrationInfo[$key]);
2400 }
2401 }
2402 }
2403
2404 // A hook to implement other algorithms for choosing which contact to bias to when
2405 // there's a conflict (to handle "gotchas"). fields_in_conflict could be modified here
2406 // merge happens with new values filled in here. For a particular field / row not to be merged
2407 // field should be unset from fields_in_conflict.
2408 $migrationData = [
2409 'old_migration_info' => $originalMigrationInfo,
2410 'mode' => $mode,
2411 'fields_in_conflict' => $conflicts,
2412 'merge_mode' => $mode,
2413 'migration_info' => $migrationInfo,
2414 ];
2415 CRM_Utils_Hook::merge('batch', $migrationData, $mainId, $otherId);
2416 $conflicts = $migrationData['fields_in_conflict'];
2417 // allow hook to override / manipulate migrationInfo as well
2418 $migrationInfo = $migrationData['migration_info'];
2419 $migrationInfo['skip_merge'] = CRM_Utils_Array::value('skip_merge', $migrationData);
2420 return $conflicts;
2421 }
2422
4107e11e 2423 /**
e1e24a57 2424 * Get any duplicate merge pairs that have been previously cached.
2425 *
2426 * @param int $rule_group_id
2427 * @param int $group_id
2428 * @param int $batchLimit
2429 * @param bool $isSelected
2430 * @param bool $includeConflicts
2431 * @param array $criteria
2432 * @param int $checkPermissions
4107e11e 2433 *
2434 * @return array
2435 */
2436 protected static function getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, $includeConflicts, $criteria, $checkPermissions) {
2437 return CRM_Core_BAO_PrevNextCache::retrieve(
2438 self::getMergeCacheKeyString($rule_group_id, $group_id, $criteria, $checkPermissions),
2439 self::getJoinOnDedupeTable(),
2440 self::getWhereString($isSelected),
2441 0, $batchLimit,
2442 [], '',
2443 $includeConflicts
2444 );
2445 }
2446
6a488035 2447}