Merge pull request #13926 from pradpnayak/NoticeErrorProfile
[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", [
471 "contact_id" => $otherID,
472 "return" => "id",
473 ]
4099a9c5
AP
474 )
475 ));
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
582 // call the SQL queries in one transaction
583 $transaction = new CRM_Core_Transaction();
584 foreach ($sqls as $sql) {
2c16165a 585 CRM_Core_DAO::executeQuery($sql, [], TRUE, NULL, TRUE);
6a488035 586 }
0556db5d 587 CRM_Dedupe_Merger::addMembershipToRealtedContacts($mainId);
6a488035
TO
588 $transaction->commit();
589 }
590
4f751978
CR
591 /**
592 * Given a contact ID, will check if a record exists in given table.
593 *
594 * @param $contactID
595 * @param $table
596 * @param $idField
597 * Field where the contact's ID is stored in the table
598 *
599 * @return bool
600 * True if a record is found for the given contact ID, false otherwise
601 */
ae2346d4
CR
602 private static function customRecordExists($contactID, $table, $idField) {
603 $sql = "
604 SELECT COUNT(*) AS count
605 FROM $table
606 WHERE $idField = $contactID
607 ";
608 $dbResult = CRM_Core_DAO::executeQuery($sql);
609 $dbResult->fetch();
610
611 if ($dbResult->count > 0) {
ee3b1d86 612 return TRUE;
ae2346d4
CR
613 }
614
ee3b1d86 615 return FALSE;
ae2346d4
CR
616 }
617
6a488035 618 /**
4eea8606 619 * Load all non-empty fields for the contacts
b3fdbf3d 620 *
98997235
TO
621 * @param array $main
622 * Contact details.
623 * @param array $other
624 * Contact details.
6a488035 625 *
77b97be7 626 * @return array
6a488035 627 */
4eea8606 628 public static function retrieveFields($main, $other) {
2c16165a 629 $result = [
630 'contact' => [],
631 'custom' => [],
632 ];
16254ae1 633 foreach (self::getContactFields() as $validField) {
eb61dc07
J
634 // CRM-17556 Get all non-empty fields, to make comparison easier
635 if (!empty($main[$validField]) || !empty($other[$validField])) {
6a488035
TO
636 $result['contact'][] = $validField;
637 }
638 }
639
640 $mainEvs = CRM_Core_BAO_CustomValueTable::getEntityValues($main['id']);
641 $otherEvs = CRM_Core_BAO_CustomValueTable::getEntityValues($other['id']);
642 $keys = array_unique(array_merge(array_keys($mainEvs), array_keys($otherEvs)));
643 foreach ($keys as $key) {
76c53278
CW
644 // Exclude multi-value fields CRM-13836
645 if (strpos($key, '_')) {
646 continue;
647 }
6a488035
TO
648 $key1 = CRM_Utils_Array::value($key, $mainEvs);
649 $key2 = CRM_Utils_Array::value($key, $otherEvs);
26b7ff28 650 // We wish to retain '0' as it has a different meaning than NULL on a checkbox.
651 // However I can't think of a case where an empty string is more meaningful than null
652 // or where it would be FALSE or something else nullish.
653 $valuesToIgnore = [NULL, '', []];
654 if (!in_array($key1, $valuesToIgnore, TRUE) || !in_array($key2, $valuesToIgnore, TRUE)) {
6a488035
TO
655 $result['custom'][] = $key;
656 }
657 }
658 return $result;
659 }
660
661 /**
100fef9d 662 * Batch merge a set of contacts based on rule-group and group.
6a488035 663 *
98997235
TO
664 * @param int $rgid
665 * Rule group id.
666 * @param int $gid
667 * Group id.
668 * @param string $mode
669 * Helps decide how to behave when there are conflicts.
15a793bb
EM
670 * A 'safe' value skips the merge if there are any un-resolved conflicts, wheras 'aggressive'
671 * mode does a force merge.
f931b74c 672 * @param int $batchLimit number of merges to carry out in one batch.
673 * @param int $isSelected if records with is_selected column needs to be processed.
bb22928b 674 * Note the option of '2' is only used in conjunction with $redirectForPerformance
b5a6c6c5 675 * to determine when to reload the cache (!). The use of anything other than a boolean is being grandfathered
676 * out in favour of explicitly passing in $reloadCacheIfEmpty
6a488035 677 *
e23e26ec 678 * @param array $criteria
679 * Criteria to use in the filter.
680 *
3058f4d9 681 * @param bool $checkPermissions
682 * Respect logged in user permissions.
bb22928b 683 * @param bool|NULL $reloadCacheIfEmpty
684 * If not set explicitly this is calculated but it is preferred that it be set
685 * per comments on isSelected above.
3058f4d9 686 *
77b97be7 687 * @return array|bool
6a488035 688 */
2c16165a 689 public static function batchMerge($rgid, $gid = NULL, $mode = 'safe', $batchLimit = 1, $isSelected = 2, $criteria = [], $checkPermissions = TRUE, $reloadCacheIfEmpty = NULL) {
63ef778e 690 $redirectForPerformance = ($batchLimit > 1) ? TRUE : FALSE;
bb22928b 691
692 if (!isset($reloadCacheIfEmpty)) {
693 $reloadCacheIfEmpty = (!$redirectForPerformance && $isSelected == 2);
694 }
695 if ($isSelected !== 0 && $isSelected !== 1) {
696 // explicitly set to NULL if not 1 or 0 as part of grandfathering out the mystical '2' value.
697 $isSelected = NULL;
698 }
3058f4d9 699 $dupePairs = self::getDuplicatePairs($rgid, $gid, $reloadCacheIfEmpty, $batchLimit, $isSelected, '', ($mode == 'aggressive'), $criteria, $checkPermissions);
6a488035 700
2c16165a 701 $cacheParams = [
3058f4d9 702 'cache_key_string' => self::getMergeCacheKeyString($rgid, $gid, $criteria, $checkPermissions),
2988f5c7 703 // @todo stop passing these parameters in & instead calculate them in the merge function based
704 // on the 'real' params like $isRespectExclusions $batchLimit and $isSelected.
705 'join' => self::getJoinOnDedupeTable(),
ed3c1599 706 'where' => self::getWhereString($isSelected),
707 'limit' => (int) $batchLimit,
2c16165a 708 ];
d238756a 709 return CRM_Dedupe_Merger::merge($dupePairs, $cacheParams, $mode, $redirectForPerformance, $checkPermissions);
6a488035
TO
710 }
711
2ae26001 712 /**
713 * Get the string to join the prevnext cache to the dedupe table.
714 *
715 * @return string
716 * The join string to join prevnext cache on the dedupe table.
717 */
718 public static function getJoinOnDedupeTable() {
719 return "
720 LEFT JOIN civicrm_dedupe_exception de
721 ON (
722 pn.entity_id1 = de.contact_id1
723 AND pn.entity_id2 = de.contact_id2 )
724 ";
725 }
726
2988f5c7 727 /**
728 * Get where string for dedupe join.
729 *
2988f5c7 730 * @param bool $isSelected
731 *
732 * @return string
733 */
ed3c1599 734 protected static function getWhereString($isSelected) {
2988f5c7 735 $where = "de.id IS NULL";
736 if ($isSelected === 0 || $isSelected === 1) {
737 $where .= " AND pn.is_selected = {$isSelected}";
738 }
2988f5c7 739 return $where;
740 }
741
bc854509 742 /**
743 * Update the statistics for the merge set.
744 *
745 * @param string $cacheKeyString
746 * @param array $result
747 */
2c16165a 748 public static function updateMergeStats($cacheKeyString, $result = []) {
63ef778e 749 // gather latest stats
2c16165a 750 $merged = count($result['merged']);
63ef778e 751 $skipped = count($result['skipped']);
752
753 if ($merged <= 0 && $skipped <= 0) {
754 return;
755 }
756
757 // get previous stats
758 $previousStats = CRM_Core_BAO_PrevNextCache::retrieve("{$cacheKeyString}_stats");
759 if (!empty($previousStats)) {
760 if ($previousStats[0]['merged']) {
761 $merged = $merged + $previousStats[0]['merged'];
762 }
763 if ($previousStats[0]['skipped']) {
764 $skipped = $skipped + $previousStats[0]['skipped'];
765 }
766 }
767
768 // delete old stats
769 CRM_Dedupe_Merger::resetMergeStats($cacheKeyString);
770
771 // store the updated stats
2c16165a 772 $data = [
773 'merged' => $merged,
63ef778e 774 'skipped' => $skipped,
2c16165a 775 ];
63ef778e 776 $data = CRM_Core_DAO::escapeString(serialize($data));
777
2c16165a 778 $values = [];
63ef778e 779 $values[] = " ( 'civicrm_contact', 0, 0, '{$cacheKeyString}_stats', '$data' ) ";
780 CRM_Core_BAO_PrevNextCache::setItem($values);
781 }
782
ae6455b2 783 /**
784 * Delete information about merges for the given string.
785 *
786 * @param $cacheKeyString
787 */
f931b74c 788 public static function resetMergeStats($cacheKeyString) {
ae6455b2 789 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, "{$cacheKeyString}_stats");
63ef778e 790 }
791
bc854509 792 /**
793 * Get merge outcome statistics.
794 *
795 * @param string $cacheKeyString
796 *
797 * @return array
798 * Array of how many were merged and how many were skipped.
799 */
f931b74c 800 public static function getMergeStats($cacheKeyString) {
63ef778e 801 $stats = CRM_Core_BAO_PrevNextCache::retrieve("{$cacheKeyString}_stats");
802 if (!empty($stats)) {
803 $stats = $stats[0];
804 }
805 return $stats;
806 }
807
bc854509 808 /**
809 * Get merge statistics message.
810 *
3743fd3d 811 * @param array $stats
bc854509 812 *
813 * @return string
814 */
3743fd3d
CW
815 public static function getMergeStatsMsg($stats) {
816 $msg = '';
63ef778e 817 if (!empty($stats['merged'])) {
2c16165a 818 $msg = '<p>' . ts('One contact merged.', [
819 'count' => $stats['merged'],
820 'plural' => '%count contacts merged.',
821 ]) . '</p>';
63ef778e 822 }
823 if (!empty($stats['skipped'])) {
2c16165a 824 $msg .= '<p>' . ts('One contact was skipped.', [
825 'count' => $stats['skipped'],
826 'plural' => '%count contacts were skipped.',
827 ]) . '</p>';
63ef778e 828 }
829 return $msg;
830 }
831
6a488035 832 /**
100fef9d 833 * Merge given set of contacts. Performs core operation.
6a488035 834 *
98997235
TO
835 * @param array $dupePairs
836 * Set of pair of contacts for whom merge is to be done.
837 * @param array $cacheParams
838 * Prev-next-cache params based on which next pair of contacts are computed.
6a488035 839 * Generally used with batch-merge.
98997235
TO
840 * @param string $mode
841 * Helps decide how to behave when there are conflicts.
6a488035
TO
842 * A 'safe' value skips the merge if there are any un-resolved conflicts.
843 * Does a force merge otherwise (aggressive mode).
6a488035 844 *
77b97be7 845 * @param bool $redirectForPerformance
3058f4d9 846 * Redirect to a url for batch processing.
847 *
848 * @param bool $checkPermissions
849 * Respect logged in user permissions.
77b97be7
EM
850 *
851 * @return array|bool
6a488035 852 */
2c16165a 853 public static function merge($dupePairs = [], $cacheParams = [], $mode = 'safe',
854 $redirectForPerformance = FALSE, $checkPermissions = TRUE
6a488035
TO
855 ) {
856 $cacheKeyString = CRM_Utils_Array::value('cache_key_string', $cacheParams);
2c16165a 857 $resultStats = ['merged' => [], 'skipped' => []];
6a488035
TO
858
859 // we don't want dupe caching to get reset after every-merge, and therefore set the
0626851e 860 CRM_Core_Config::setPermitCacheFlushMode(FALSE);
2c16165a 861 $deletedContacts = [];
6a488035
TO
862
863 while (!empty($dupePairs)) {
78272750 864 foreach ($dupePairs as $index => $dupes) {
865 if (in_array($dupes['dstID'], $deletedContacts) || in_array($dupes['srcID'], $deletedContacts)) {
866 unset($dupePairs[$index]);
867 continue;
868 }
1cf05c3e 869 CRM_Utils_Hook::merge('flip', $dupes, $dupes['dstID'], $dupes['srcID']);
6a488035
TO
870 $mainId = $dupes['dstID'];
871 $otherId = $dupes['srcID'];
e67dcaf8 872
6a488035
TO
873 if (!$mainId || !$otherId) {
874 // return error
875 return FALSE;
876 }
6a488035
TO
877 // Generate var $migrationInfo. The variable structure is exactly same as
878 // $formValues submitted during a UI merge for a pair of contacts.
201057c0 879 $rowsElementsAndInfo = CRM_Dedupe_Merger::getRowsElementsAndInfo($mainId, $otherId, $checkPermissions);
6a488035 880 // add additional details that we might need to resolve conflicts
e4e1db4b 881 $rowsElementsAndInfo['migration_info']['main_details'] = &$rowsElementsAndInfo['main_details'];
882 $rowsElementsAndInfo['migration_info']['other_details'] = &$rowsElementsAndInfo['other_details'];
883 $rowsElementsAndInfo['migration_info']['rows'] = &$rowsElementsAndInfo['rows'];
6a488035 884
e4e1db4b 885 self::dedupePair($rowsElementsAndInfo['migration_info'], $resultStats, $deletedContacts, $mode, $checkPermissions, $mainId, $otherId, $cacheKeyString);
6a488035
TO
886 }
887
888 if ($cacheKeyString && !$redirectForPerformance) {
889 // retrieve next pair of dupes
2988f5c7 890 // @todo call getDuplicatePairs.
6a488035
TO
891 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString,
892 $cacheParams['join'],
66eceb0b 893 $cacheParams['where'],
894 0,
ed3c1599 895 $cacheParams['limit'],
2c16165a 896 [],
66eceb0b 897 '',
898 FALSE
6a488035
TO
899 );
900 }
901 else {
902 // do not proceed. Terminate the loop
903 unset($dupePairs);
904 }
905 }
63ef778e 906
907 CRM_Dedupe_Merger::updateMergeStats($cacheKeyString, $resultStats);
6a488035
TO
908 return $resultStats;
909 }
910
911 /**
912 * A function which uses various rules / algorithms for choosing which contact to bias to
913 * when there's a conflict (to handle "gotchas"). Plus the safest route to merge.
914 *
98997235
TO
915 * @param int $mainId
916 * Main contact with whom merge has to happen.
917 * @param int $otherId
918 * Duplicate contact which would be deleted after merge operation.
919 * @param array $migrationInfo
920 * Array of information about which elements to merge.
921 * @param string $mode
922 * Helps decide how to behave when there are conflicts.
13919cf8
J
923 * - A 'safe' value skips the merge if there are any un-resolved conflicts.
924 * - Does a force merge otherwise (aggressive mode).
6a488035 925 *
ad37ac8e 926 * @param array $conflicts
927 *
77b97be7 928 * @return bool
6a488035 929 */
2c16165a 930 public static function skipMerge($mainId, $otherId, &$migrationInfo, $mode = 'safe', &$conflicts = []) {
0971143c 931
c08fae40 932 $originalMigrationInfo = $migrationInfo;
6a488035
TO
933 foreach ($migrationInfo as $key => $val) {
934 if ($val === "null") {
0971143c 935 // Rule: Never overwrite with an empty value (in any mode)
6a488035
TO
936 unset($migrationInfo[$key]);
937 continue;
938 }
16254ae1 939 elseif ((in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) or
6a488035 940 substr($key, 0, 12) == 'move_custom_'
353ffa53
TO
941 ) and $val != NULL
942 ) {
0971143c
J
943 // Rule: If both main-contact, and other-contact have a field with a
944 // different value, then let $mode decide if to merge it or not
4eea8606 945 if (
e2cecb9c 946 (!empty($migrationInfo['rows'][$key]['main'])
947 // For custom fields a 0 (e.g in an int field) could be a true conflict. This
948 // is probably true for other fields too - e.g. 'do_not_email' but
949 // leaving that investigation as a @todo - until tests can be written.
950 // Note the handling of this has test coverage - although the data-typing
951 // of '0' feels flakey we have insurance.
952 || ($migrationInfo['rows'][$key]['main'] === '0' && substr($key, 0, 12) == 'move_custom_')
953 )
4eea8606
J
954 && $migrationInfo['rows'][$key]['main'] != $migrationInfo['rows'][$key]['other']
955 ) {
fd630ef9 956
957 // note it down & lets wait for response from the hook.
958 // For no response $mode will decide if to skip this merge
959 $conflicts[$key] = NULL;
6a488035
TO
960 }
961 }
962 elseif (substr($key, 0, 14) == 'move_location_' and $val != NULL) {
963 $locField = explode('_', $key);
964 $fieldName = $locField[2];
965 $fieldCount = $locField[3];
966
4ece0d26 967 // Rule: Catch address conflicts (same address type on both contacts)
13cc4cac 968 if (
969 isset($migrationInfo['main_details']['location_blocks'][$fieldName]) &&
970 !empty($migrationInfo['main_details']['location_blocks'][$fieldName])
971 ) {
972
973 // Load the address we're inspecting from the 'other' contact
974 $addressRecord = $migrationInfo['other_details']['location_blocks'][$fieldName][$fieldCount];
975 $addressRecordLocTypeId = CRM_Utils_Array::value('location_type_id', $addressRecord);
b982316c 976
13cc4cac 977 // If it exists on the 'main' contact already, skip it. Otherwise
978 // if the location type exists already, log a conflict.
979 foreach ($migrationInfo['main_details']['location_blocks'][$fieldName] as $mainAddressKey => $mainAddressRecord) {
5d5b49ad 980 if (self::locationIsSame($addressRecord, $mainAddressRecord)) {
13cc4cac 981 unset($migrationInfo[$key]);
982 break;
983 }
984 elseif ($addressRecordLocTypeId == $mainAddressRecord['location_type_id']) {
985 $conflicts[$key] = NULL;
986 break;
987 }
6a488035
TO
988 }
989 }
13cc4cac 990
4ece0d26 991 // For other locations, don't merge/add if the values are the same
13cc4cac 992 elseif (CRM_Utils_Array::value('main', $migrationInfo['rows'][$key]) == $migrationInfo['rows'][$key]['other']) {
6a488035
TO
993 unset($migrationInfo[$key]);
994 }
995 }
996 }
997
998 // A hook to implement other algorithms for choosing which contact to bias to when
999 // there's a conflict (to handle "gotchas"). fields_in_conflict could be modified here
1000 // merge happens with new values filled in here. For a particular field / row not to be merged
1001 // field should be unset from fields_in_conflict.
2c16165a 1002 $migrationData = [
c08fae40 1003 'old_migration_info' => $originalMigrationInfo,
1004 'mode' => $mode,
1005 'fields_in_conflict' => $conflicts,
1006 'merge_mode' => $mode,
1007 'migration_info' => $migrationInfo,
2c16165a 1008 ];
6a488035
TO
1009 CRM_Utils_Hook::merge('batch', $migrationData, $mainId, $otherId);
1010 $conflicts = $migrationData['fields_in_conflict'];
63ef778e 1011 // allow hook to override / manipulate migrationInfo as well
c08fae40 1012 $migrationInfo = $migrationData['migration_info'];
6a488035
TO
1013
1014 if (!empty($conflicts)) {
1015 foreach ($conflicts as $key => $val) {
1016 if ($val === NULL and $mode == 'safe') {
63ef778e 1017 // un-resolved conflicts still present. Lets skip this merge after saving the conflict / reason.
6a488035
TO
1018 return TRUE;
1019 }
1020 else {
1021 // copy over the resolved values
1022 $migrationInfo[$key] = $val;
1023 }
1024 }
fd630ef9 1025 // if there are conflicts and mode is aggressive, allow hooks to decide if to skip merges
1026 if (array_key_exists('skip_merge', $migrationData)) {
1027 return (bool) $migrationData['skip_merge'];
1028 }
6a488035
TO
1029 }
1030 return FALSE;
1031 }
1032
d48ad2c0 1033 /**
1034 * Compare 2 addresses to see if they are the same.
1035 *
1036 * @param array $mainAddress
1037 * @param array $comparisonAddress
1038 *
1039 * @return bool
1040 */
5d5b49ad 1041 static public function locationIsSame($mainAddress, $comparisonAddress) {
2c16165a 1042 $keysToIgnore = [
1043 'id',
1044 'is_primary',
1045 'is_billing',
1046 'manual_geo_code',
1047 'contact_id',
1048 'reset_date',
1049 'hold_date',
1050 ];
d48ad2c0 1051 foreach ($comparisonAddress as $field => $value) {
1052 if (in_array($field, $keysToIgnore)) {
1053 continue;
1054 }
00443529 1055 if ((!empty($value) || $value === '0') && isset($mainAddress[$field]) && $mainAddress[$field] != $value) {
d48ad2c0 1056 return FALSE;
1057 }
1058 }
1059 return TRUE;
1060 }
1061
34917198
J
1062 /**
1063 * A function to build an array of information about location blocks that is
1064 * required when merging location fields
1065 *
1066 * @return array
1067 */
1068 public static function getLocationBlockInfo() {
2c16165a 1069 $locationBlocks = [
1070 'address' => [
34917198
J
1071 'label' => 'Address',
1072 'displayField' => 'display',
1073 'sortString' => 'location_type_id',
1074 'hasLocation' => TRUE,
1075 'hasType' => FALSE,
2c16165a 1076 ],
1077 'email' => [
34917198 1078 'label' => 'Email',
2a7e1ddc 1079 'displayField' => 'display',
34917198
J
1080 'sortString' => 'location_type_id',
1081 'hasLocation' => TRUE,
1082 'hasType' => FALSE,
2c16165a 1083 ],
1084 'im' => [
34917198
J
1085 'label' => 'IM',
1086 'displayField' => 'name',
1087 'sortString' => 'location_type_id,provider_id',
1088 'hasLocation' => TRUE,
1089 'hasType' => 'provider_id',
2c16165a 1090 ],
1091 'phone' => [
34917198
J
1092 'label' => 'Phone',
1093 'displayField' => 'phone',
1094 'sortString' => 'location_type_id,phone_type_id',
1095 'hasLocation' => TRUE,
1096 'hasType' => 'phone_type_id',
2c16165a 1097 ],
1098 'website' => [
34917198
J
1099 'label' => 'Website',
1100 'displayField' => 'url',
1101 'sortString' => 'website_type_id',
1102 'hasLocation' => FALSE,
1103 'hasType' => 'website_type_id',
2c16165a 1104 ],
1105 ];
34917198
J
1106 return $locationBlocks;
1107 }
1108
6a488035
TO
1109 /**
1110 * A function to build an array of information required by merge function and the merge UI.
1111 *
98997235
TO
1112 * @param int $mainId
1113 * Main contact with whom merge has to happen.
1114 * @param int $otherId
1115 * Duplicate contact which would be deleted after merge operation.
201057c0 1116 * @param bool $checkPermissions
1117 * Should the logged in user's permissions be ignore. Setting this to false is
1118 * highly risky as it could cause data to be lost due to conflicts not showing up.
1119 * OTOH there is a risk a merger might view custom data they do not have permission to.
1120 * Hence for now only making this really explicit and making it reflect perms in
1121 * an api call.
1122 *
1123 * @todo review permissions issue!
6a488035 1124 *
77b97be7 1125 * @return array|bool|int
1e3e0eed
J
1126 *
1127 * rows => An array of arrays, each is row of merge information for the table
1128 * Format: move_fieldname, eg: move_contact_type
1129 * main => Value associated with the main contact
1130 * other => Value associated with the other contact
1131 * title => The title of the field to display in the merge table
1132 *
1133 * elements => An array of form elements for the merge UI
1134 *
1135 * rel_table_elements => An array of form elements for the merge UI for
1136 * entities related to the contact (eg: checkbox to move 'mailings')
1137 *
1e3e0eed
J
1138 * rel_tables => Stores the tables that have related entities for the contact
1139 * for example mailings, groups
1140 *
1141 * main_details => An array of core contact field values, eg: first_name, etc.
1142 * location_blocks => An array of location block data for the main contact
1143 * stored as the 'result' of an API call.
1144 * eg: main_details['location_blocks']['address'][0]['id']
1145 * eg: main_details['location_blocks']['email'][1]['id']
1146 *
1147 * other_details => As above, but for the 'other' contact
1148 *
1149 * migration_info => Stores the 'default' merge actions for each field which
1150 * is used when programatically merging contacts. It contains instructions
1151 * to move all fields from the 'other' contact to the 'main' contact, as
1152 * though the form had been submitted with those options.
1153 *
3058f4d9 1154 * @throws \CRM_Core_Exception
1155 * @throws \CiviCRM_API3_Exception
1156 * @throws \Exception
6a488035 1157 */
201057c0 1158 public static function getRowsElementsAndInfo($mainId, $otherId, $checkPermissions = TRUE) {
6a488035 1159 $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
74a6069d 1160 $fields = self::getMergeFieldsMetadata();
6a488035 1161
fcc3d8ee 1162 $main = self::getMergeContactDetails($mainId);
1163 $other = self::getMergeContactDetails($otherId);
74a6069d 1164 $specialValues['main'] = self::getSpecialValues($main);
1165 $specialValues['other'] = self::getSpecialValues($other);
6a488035 1166
4eea8606 1167 $compareFields = self::retrieveFields($main, $other);
6a488035 1168
2c16165a 1169 $rows = $elements = $relTableElements = $migrationInfo = [];
6a488035 1170
4eea8606 1171 foreach ($compareFields['contact'] as $field) {
4d5f18cc 1172 if ($field == 'contact_sub_type') {
1173 // CRM-15681 don't display sub-types in UI
1174 continue;
1175 }
2c16165a 1176 foreach (['main', 'other'] as $moniker) {
6a488035
TO
1177 $contact = &$$moniker;
1178 $value = CRM_Utils_Array::value($field, $contact);
1179 if (isset($specialValues[$moniker][$field]) && is_string($specialValues[$moniker][$field])) {
1180 $value = CRM_Core_DAO::VALUE_SEPARATOR . trim($specialValues[$moniker][$field], CRM_Core_DAO::VALUE_SEPARATOR) . CRM_Core_DAO::VALUE_SEPARATOR;
1181 }
1182 $label = isset($specialValues[$moniker]["{$field}_display"]) ? $specialValues[$moniker]["{$field}_display"] : $value;
a7488080 1183 if (!empty($fields[$field]['type']) && $fields[$field]['type'] == CRM_Utils_Type::T_DATE) {
6a488035
TO
1184 if ($value) {
1185 $value = str_replace('-', '', $value);
1186 $label = CRM_Utils_Date::customFormat($label);
1187 }
1188 else {
1189 $value = "null";
1190 }
1191 }
a7488080 1192 elseif (!empty($fields[$field]['type']) && $fields[$field]['type'] == CRM_Utils_Type::T_BOOLEAN) {
6a488035
TO
1193 if ($label === '0') {
1194 $label = ts('[ ]');
1195 }
1196 if ($label === '1') {
1197 $label = ts('[x]');
1198 }
00f3da2e 1199 }
74a6069d 1200 elseif ($field == 'prefix_id') {
00f3da2e 1201 $label = CRM_Utils_Array::value('individual_prefix', $contact);
00f3da2e 1202 }
74a6069d 1203 elseif ($field == 'suffix_id') {
00f3da2e 1204 $label = CRM_Utils_Array::value('individual_suffix', $contact);
6a488035 1205 }
4f88c9cf 1206 elseif ($field == 'gender_id' && !empty($value)) {
2c16165a 1207 $genderOptions = civicrm_api3('contact', 'getoptions', ['field' => 'gender_id']);
5b28be84 1208 $label = $genderOptions['values'][$value];
4f88c9cf
C
1209 }
1210 elseif ($field == 'current_employer_id' && !empty($value)) {
1211 $label = "$value (" . CRM_Contact_BAO_Contact::displayName($value) . ")";
1212 }
6a488035
TO
1213 $rows["move_$field"][$moniker] = $label;
1214 if ($moniker == 'other') {
7154d2a4
BS
1215 //CRM-14334
1216 if ($value === NULL || $value == '') {
6a488035
TO
1217 $value = 'null';
1218 }
1219 if ($value === 0 or $value === '0') {
1220 $value = $qfZeroBug;
1221 }
8cc574cf 1222 if (is_array($value) && empty($value[1])) {
6a488035
TO
1223 $value[1] = NULL;
1224 }
13919cf8
J
1225
1226 // Display a checkbox to migrate, only if the values are different
1227 if ($value != $main[$field]) {
2c16165a 1228 $elements[] = [
1229 'advcheckbox',
1230 "move_$field",
1231 NULL,
1232 NULL,
1233 NULL,
1234 $value,
1235 ];
13919cf8
J
1236 }
1237
6a488035
TO
1238 $migrationInfo["move_$field"] = $value;
1239 }
1240 }
1241 $rows["move_$field"]['title'] = $fields[$field]['title'];
1242 }
1243
eb61dc07
J
1244 // Handle location blocks.
1245 // @todo OpenID not in API yet, so is not supported here.
65a35632 1246
087f00ec 1247 // Set up useful information about the location blocks
34917198 1248 $locationBlocks = self::getLocationBlockInfo();
087f00ec 1249
2c16165a 1250 $locations = [
1251 'main' => [],
1252 'other' => [],
1253 ];
b814df56 1254
087f00ec 1255 // @todo This could probably be defined and used earlier
2c16165a 1256 $mergeTargets = [
087f00ec
J
1257 'main' => $mainId,
1258 'other' => $otherId,
2c16165a 1259 ];
6a488035 1260
087f00ec 1261 foreach ($locationBlocks as $blockName => $blockInfo) {
6a488035 1262
087f00ec
J
1263 // Collect existing fields from both 'main' and 'other' contacts first
1264 // This allows us to match up location/types when building the table rows
1265 foreach ($mergeTargets as $moniker => $cid) {
2c16165a 1266 $searchParams = [
b932e89e 1267 'contact_id' => $cid,
087f00ec 1268 // CRM-17556 Order by field-specific criteria
2c16165a 1269 'options' => [
087f00ec 1270 'sort' => $blockInfo['sortString'],
2c16165a 1271 ],
1272 ];
0b50eca0 1273 $values = civicrm_api3($blockName, 'get', $searchParams);
087f00ec
J
1274 if ($values['count']) {
1275 $cnt = 0;
bf588234 1276 foreach ($values['values'] as $value) {
087f00ec
J
1277 $locations[$moniker][$blockName][$cnt] = $value;
1278 // Fix address display
eb61dc07 1279 if ($blockName == 'address') {
087f00ec 1280 CRM_Core_BAO_Address::fixAddress($value);
ae6455b2 1281 $locations[$moniker][$blockName][$cnt]['display'] = CRM_Utils_Address::format($value);
6a488035 1282 }
2a7e1ddc
TS
1283 // Fix email display
1284 elseif ($blockName == 'email') {
1285 $locations[$moniker][$blockName][$cnt]['display'] = CRM_Utils_Mail::format($value);
1286 }
abb422f9 1287
087f00ec 1288 $cnt++;
6a488035
TO
1289 }
1290 }
1291 }
6a488035 1292
087f00ec
J
1293 // Now, build the table rows appropriately, based off the information on
1294 // the 'other' contact
34917198
J
1295 if (!empty($locations['other']) && !empty($locations['other'][$blockName])) {
1296 foreach ($locations['other'][$blockName] as $count => $value) {
6a488035 1297
087f00ec 1298 $displayValue = $value[$blockInfo['displayField']];
65a35632 1299
087f00ec
J
1300 // Add this value to the table rows
1301 $rows["move_location_{$blockName}_{$count}"]['other'] = $displayValue;
65a35632 1302
087f00ec
J
1303 // CRM-17556 Only display 'main' contact value if it's the same location + type
1304 // Look it up from main values...
65a35632 1305
087f00ec
J
1306 $lookupLocation = FALSE;
1307 if ($blockInfo['hasLocation']) {
1308 $lookupLocation = $value['location_type_id'];
1309 }
65a35632 1310
087f00ec
J
1311 $lookupType = FALSE;
1312 if ($blockInfo['hasType']) {
13cc4cac 1313 $lookupType = CRM_Utils_Array::value($blockInfo['hasType'], $value);
087f00ec 1314 }
65a35632 1315
34917198
J
1316 // Hold ID of main contact's matching block
1317 $mainContactBlockId = 0;
1318
087f00ec
J
1319 if (!empty($locations['main'][$blockName])) {
1320 foreach ($locations['main'][$blockName] as $mainValueCheck) {
1321 // No location/type, or matching location and type
1322 if (
1323 (empty($lookupLocation) || $lookupLocation == $mainValueCheck['location_type_id'])
1324 && (empty($lookupType) || $lookupType == $mainValueCheck[$blockInfo['hasType']])
1325 ) {
34917198 1326 // Set this value as the default against the 'other' contact value
087f00ec 1327 $rows["move_location_{$blockName}_{$count}"]['main'] = $mainValueCheck[$blockInfo['displayField']];
041d6d6b 1328 $rows["move_location_{$blockName}_{$count}"]['main_is_primary'] = $mainValueCheck['is_primary'];
86b14b59 1329 $rows["move_location_{$blockName}_{$count}"]['location_entity'] = $blockName;
34917198 1330 $mainContactBlockId = $mainValueCheck['id'];
087f00ec
J
1331 break;
1332 }
6a488035 1333 }
087f00ec 1334 }
65a35632 1335
087f00ec 1336 // Add checkbox to migrate data from 'other' to 'main'
2c16165a 1337 $elements[] = ['advcheckbox', "move_location_{$blockName}_{$count}"];
65a35632 1338
abd0b852 1339 // Add checkbox to set the 'other' location as primary
2c16165a 1340 $elements[] = [
1341 'advcheckbox',
1342 "location_blocks[$blockName][$count][set_other_primary]",
1343 NULL,
1344 ts('Set as primary'),
1345 ];
abd0b852 1346
087f00ec
J
1347 // Flag up this field to skipMerge function (@todo: do we need to?)
1348 $migrationInfo["move_location_{$blockName}_{$count}"] = 1;
65a35632 1349
34917198 1350 // Add a hidden field to store the ID of the target main contact block
2c16165a 1351 $elements[] = [
1352 'hidden',
1353 "location_blocks[$blockName][$count][mainContactBlockId]",
1354 $mainContactBlockId,
1355 ];
34917198 1356
087f00ec
J
1357 // Setup variables
1358 $thisTypeId = FALSE;
1359 $thisLocId = FALSE;
65a35632 1360
087f00ec
J
1361 // Provide a select drop-down for the location's location type
1362 // eg: Home, Work...
65a35632 1363
087f00ec
J
1364 if ($blockInfo['hasLocation']) {
1365
5b28be84 1366 // Load the location options for this entity
2c16165a 1367 $locationOptions = civicrm_api3($blockName, 'getoptions', ['field' => 'location_type_id']);
5b28be84 1368
087f00ec
J
1369 $thisLocId = $value['location_type_id'];
1370
1371 // Put this field's location type at the top of the list
5b28be84 1372 $tmpIdList = $locationOptions['values'];
2c16165a 1373 $defaultLocId = [$thisLocId => $tmpIdList[$thisLocId]];
087f00ec
J
1374 unset($tmpIdList[$thisLocId]);
1375
1376 // Add the element
2c16165a 1377 $elements[] = [
eb61dc07 1378 'select',
972947a7 1379 "location_blocks[$blockName][$count][locTypeId]",
eb61dc07 1380 NULL,
087f00ec 1381 $defaultLocId + $tmpIdList,
2c16165a 1382 ];
087f00ec
J
1383
1384 // Add the relevant information to the $migrationInfo
1385 // Keep location-type-id same as that of other-contact
1386 // @todo Check this logic out
1387 $migrationInfo['location_blocks'][$blockName][$count]['locTypeId'] = $thisLocId;
abb422f9 1388 if ($blockName != 'address') {
2c16165a 1389 $elements[] = [
1390 'advcheckbox',
1391 "location_blocks[{$blockName}][$count][operation]",
1392 NULL,
1393 ts('Add new'),
1394 ];
087f00ec 1395 // always use add operation
abb422f9 1396 $migrationInfo['location_blocks'][$blockName][$count]['operation'] = 1;
6a488035 1397 }
087f00ec 1398
6a488035 1399 }
6a488035 1400
087f00ec
J
1401 // Provide a select drop-down for the location's type/provider
1402 // eg websites: Google+, Facebook...
1403
087f00ec
J
1404 if ($blockInfo['hasType']) {
1405
5b28be84 1406 // Load the type options for this entity
2c16165a 1407 $typeOptions = civicrm_api3($blockName, 'getoptions', ['field' => $blockInfo['hasType']]);
5b28be84 1408
13cc4cac 1409 $thisTypeId = CRM_Utils_Array::value($blockInfo['hasType'], $value);
087f00ec
J
1410
1411 // Put this field's location type at the top of the list
5b28be84 1412 $tmpIdList = $typeOptions['values'];
2c16165a 1413 $defaultTypeId = [$thisTypeId => CRM_Utils_Array::value($thisTypeId, $tmpIdList)];
087f00ec
J
1414 unset($tmpIdList[$thisTypeId]);
1415
1416 // Add the element
2c16165a 1417 $elements[] = [
65a35632 1418 'select',
972947a7 1419 "location_blocks[$blockName][$count][typeTypeId]",
65a35632 1420 NULL,
087f00ec 1421 $defaultTypeId + $tmpIdList,
2c16165a 1422 ];
65a35632 1423
1e3e0eed 1424 // Add the information to the migrationInfo
34917198 1425 $migrationInfo['location_blocks'][$blockName][$count]['typeTypeId'] = $thisTypeId;
65a35632 1426
6a488035 1427 }
087f00ec
J
1428
1429 // Set the label for this row
34917198
J
1430 $rowTitle = $blockInfo['label'] . ' ' . ($count + 1);
1431 if (!empty($thisLocId)) {
5b28be84 1432 $rowTitle .= ' (' . $locationOptions['values'][$thisLocId] . ')';
6a488035 1433 }
34917198 1434 if (!empty($thisTypeId)) {
5b28be84 1435 $rowTitle .= ' (' . $typeOptions['values'][$thisTypeId] . ')';
34917198
J
1436 }
1437 $rows["move_location_{$blockName}_$count"]['title'] = $rowTitle;
65a35632 1438
34917198 1439 } // End loop through 'other' locations of this type
087f00ec 1440
34917198 1441 } // End if 'other' location for this type exists
6a488035 1442
34917198 1443 } // End loop through each location block entity
6a488035
TO
1444
1445 // add the related tables and unset the ones that don't sport any of the duplicate contact's info
1446 $config = CRM_Core_Config::singleton();
1447 $mainUfId = CRM_Core_BAO_UFMatch::getUFId($mainId);
1448 $mainUser = NULL;
1449 if ($mainUfId) {
1450 // d6 compatible
1451 if ($config->userSystem->is_drupal == '1' && function_exists($mainUser)) {
1452 $mainUser = user_load($mainUfId);
1453 }
1454 elseif ($config->userFramework == 'Joomla') {
1455 $mainUser = JFactory::getUser($mainUfId);
1456 }
1457 }
1458 $otherUfId = CRM_Core_BAO_UFMatch::getUFId($otherId);
1459 $otherUser = NULL;
1460 if ($otherUfId) {
1461 // d6 compatible
1462 if ($config->userSystem->is_drupal == '1' && function_exists($mainUser)) {
1463 $otherUser = user_load($otherUfId);
1464 }
1465 elseif ($config->userFramework == 'Joomla') {
1466 $otherUser = JFactory::getUser($otherUfId);
1467 }
1468 }
1469
1470 $relTables = CRM_Dedupe_Merger::relTables();
1471 $activeRelTables = CRM_Dedupe_Merger::getActiveRelTables($otherId);
1472 $activeMainRelTables = CRM_Dedupe_Merger::getActiveRelTables($mainId);
1473 foreach ($relTables as $name => $null) {
1474 if (!in_array($name, $activeRelTables) &&
1475 !(($name == 'rel_table_users') && in_array($name, $activeMainRelTables))
1476 ) {
1477 unset($relTables[$name]);
1478 continue;
1479 }
1480
2c16165a 1481 $relTableElements[] = ['checkbox', "move_$name"];
6a488035
TO
1482 $migrationInfo["move_$name"] = 1;
1483
1484 $relTables[$name]['main_url'] = str_replace('$cid', $mainId, $relTables[$name]['url']);
1485 $relTables[$name]['other_url'] = str_replace('$cid', $otherId, $relTables[$name]['url']);
1486 if ($name == 'rel_table_users') {
1487 $relTables[$name]['main_url'] = str_replace('%ufid', $mainUfId, $relTables[$name]['url']);
1488 $relTables[$name]['other_url'] = str_replace('%ufid', $otherUfId, $relTables[$name]['url']);
2c16165a 1489 $find = ['$ufid', '$ufname'];
6a488035 1490 if ($mainUser) {
2c16165a 1491 $replace = [$mainUfId, $mainUser->name];
6a488035
TO
1492 $relTables[$name]['main_title'] = str_replace($find, $replace, $relTables[$name]['title']);
1493 }
1494 if ($otherUser) {
2c16165a 1495 $replace = [$otherUfId, $otherUser->name];
6a488035
TO
1496 $relTables[$name]['other_title'] = str_replace($find, $replace, $relTables[$name]['title']);
1497 }
1498 }
1499 if ($name == 'rel_table_memberships') {
7d84a47d
JP
1500 //Enable 'add new' checkbox if main contact does not contain any membership similar to duplicate contact.
1501 $attributes = ['checked' => 'checked'];
1502 $otherContactMemberships = CRM_Member_BAO_Membership::getAllContactMembership($otherId);
1503 foreach ($otherContactMemberships as $membership) {
1504 $mainMembership = CRM_Member_BAO_Membership::getContactMembership($mainId, $membership['membership_type_id'], FALSE);
1505 if ($mainMembership) {
1506 $attributes = [];
1507 }
1508 }
2c16165a 1509 $elements[] = [
1510 'checkbox',
1511 "operation[move_{$name}][add]",
1512 NULL,
1513 ts('add new'),
1514 $attributes,
1515 ];
6a488035
TO
1516 $migrationInfo["operation"]["move_{$name}"]['add'] = 1;
1517 }
1518 }
1519 foreach ($relTables as $name => $null) {
1520 $relTables["move_$name"] = $relTables[$name];
1521 unset($relTables[$name]);
1522 }
1523
1524 // handle custom fields
201057c0 1525 $mainTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $mainId, -1,
1526 CRM_Utils_Array::value('contact_sub_type', $main), NULL, TRUE, NULL, TRUE, $checkPermissions
6a488035 1527 );
0b330e6d 1528 $otherTree = CRM_Core_BAO_CustomGroup::getTree($main['contact_type'], NULL, $otherId, -1,
201057c0 1529 CRM_Utils_Array::value('contact_sub_type', $other), NULL, TRUE, NULL, TRUE, $checkPermissions
6a488035 1530 );
6a488035
TO
1531
1532 foreach ($otherTree as $gid => $group) {
1533 $foundField = FALSE;
1534 if (!isset($group['fields'])) {
1535 continue;
1536 }
1537
1538 foreach ($group['fields'] as $fid => $field) {
4eea8606 1539 if (in_array($fid, $compareFields['custom'])) {
6a488035
TO
1540 if (!$foundField) {
1541 $rows["custom_group_$gid"]['title'] = $group['title'];
1542 $foundField = TRUE;
1543 }
a7488080 1544 if (!empty($mainTree[$gid]['fields'][$fid]['customValue'])) {
6a488035 1545 foreach ($mainTree[$gid]['fields'][$fid]['customValue'] as $valueId => $values) {
51a3717f 1546 $rows["move_custom_$fid"]['main'] = CRM_Core_BAO_CustomField::displayValue($values['data'], $fid);
6a488035
TO
1547 }
1548 }
1549 $value = "null";
a7488080 1550 if (!empty($otherTree[$gid]['fields'][$fid]['customValue'])) {
6a488035 1551 foreach ($otherTree[$gid]['fields'][$fid]['customValue'] as $valueId => $values) {
51a3717f 1552 $rows["move_custom_$fid"]['other'] = CRM_Core_BAO_CustomField::displayValue($values['data'], $fid);
6a488035
TO
1553 if ($values['data'] === 0 || $values['data'] === '0') {
1554 $values['data'] = $qfZeroBug;
d58a19a1 1555 }
6a488035 1556 $value = ($values['data']) ? $values['data'] : $value;
d58a19a1 1557 }
6a488035
TO
1558 }
1559 $rows["move_custom_$fid"]['title'] = $field['label'];
1560
2c16165a 1561 $elements[] = [
1562 'advcheckbox',
1563 "move_custom_$fid",
1564 NULL,
1565 NULL,
1566 NULL,
1567 $value,
1568 ];
6a488035
TO
1569 $migrationInfo["move_custom_$fid"] = $value;
1570 }
1571 }
1572 }
abb422f9 1573
2c16165a 1574 $result = [
6a488035
TO
1575 'rows' => $rows,
1576 'elements' => $elements,
1577 'rel_table_elements' => $relTableElements,
6a488035
TO
1578 'rel_tables' => $relTables,
1579 'main_details' => $main,
1580 'other_details' => $other,
1581 'migration_info' => $migrationInfo,
2c16165a 1582 ];
6a488035 1583
34917198
J
1584 $result['main_details']['location_blocks'] = $locations['main'];
1585 $result['other_details']['location_blocks'] = $locations['other'];
6a488035
TO
1586
1587 return $result;
1588 }
1589
1590 /**
1591 * Based on the provided two contact_ids and a set of tables, move the belongings of the
1592 * other contact to the main one - be it Location / CustomFields or Contact .. related info.
1593 * A superset of moveContactBelongings() function.
1594 *
98997235
TO
1595 * @param int $mainId
1596 * Main contact with whom merge has to happen.
1597 * @param int $otherId
1598 * Duplicate contact which would be deleted after merge operation.
77b97be7
EM
1599 *
1600 * @param $migrationInfo
6a488035 1601 *
3058f4d9 1602 * @param bool $checkPermissions
1603 * Respect logged in user permissions.
1604 *
77b97be7 1605 * @return bool
6a488035 1606 */
3058f4d9 1607 public static function moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions = TRUE) {
6a488035
TO
1608 if (empty($migrationInfo)) {
1609 return FALSE;
1610 }
1611
1612 $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
1613 $relTables = CRM_Dedupe_Merger::relTables();
2c16165a 1614 $submittedCustomFields = $moveTables = $locationMigrationInfo = $tableOperations = $removeTables = [];
ae2346d4 1615
6a488035
TO
1616 foreach ($migrationInfo as $key => $value) {
1617 if ($value == $qfZeroBug) {
1618 $value = '0';
1619 }
08b00099
CR
1620
1621 if (substr($key, 0, 12) == 'move_custom_' && $value != NULL) {
6a488035 1622 $submitted[substr($key, 5)] = $value;
ae2346d4 1623 $submittedCustomFields[] = substr($key, 12);
6a488035 1624 }
08b00099 1625 elseif (in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) && $value != NULL) {
6a488035
TO
1626 $submitted[substr($key, 5)] = $value;
1627 }
34917198 1628 // Set up initial information for handling migration of location blocks
6a488035 1629 elseif (substr($key, 0, 14) == 'move_location_' and $value != NULL) {
92a77772 1630 $locationMigrationInfo[$key] = $value;
6a488035
TO
1631 }
1632 elseif (substr($key, 0, 15) == 'move_rel_table_' and $value == '1') {
1633 $moveTables = array_merge($moveTables, $relTables[substr($key, 5)]['tables']);
1634 if (array_key_exists('operation', $migrationInfo)) {
1635 foreach ($relTables[substr($key, 5)]['tables'] as $table) {
1636 if (array_key_exists($key, $migrationInfo['operation'])) {
1637 $tableOperations[$table] = $migrationInfo['operation'][$key];
1638 }
1639 }
1640 }
1641 }
4099a9c5
AP
1642 elseif (substr($key, 0, 15) == 'move_rel_table_' and $value == '0') {
1643 $removeTables = array_merge($moveTables, $relTables[substr($key, 5)]['tables']);
1644 }
6a488035 1645 }
92a77772 1646 self::mergeLocations($mainId, $otherId, $locationMigrationInfo, $migrationInfo);
6a488035 1647
6a488035 1648 // **** Do contact related migrations
ae2346d4 1649 $customTablesToCopyValues = self::getAffectedCustomTables($submittedCustomFields);
0556db5d
CR
1650 CRM_Dedupe_Merger::moveContactBelongings($mainId, $otherId, $moveTables, $tableOperations, $customTablesToCopyValues);
1651 unset($moveTables, $tableOperations);
6a488035 1652
4099a9c5
AP
1653 // **** Do table related removals
1654 if (!empty($removeTables)) {
1655 // **** CRM-20421
1656 CRM_Dedupe_Merger::removeContactBelongings($otherId, $removeTables);
2c16165a 1657 $removeTables = [];
4099a9c5
AP
1658 }
1659
6a488035 1660 // FIXME: fix gender, prefix and postfix, so they're edible by createProfileContact()
2c16165a 1661 $names['gender'] = ['newName' => 'gender_id', 'groupName' => 'gender'];
1662 $names['individual_prefix'] = [
1663 'newName' => 'prefix_id',
1664 'groupName' => 'individual_prefix',
1665 ];
1666 $names['individual_suffix'] = [
1667 'newName' => 'suffix_id',
1668 'groupName' => 'individual_suffix',
1669 ];
1670 $names['communication_style'] = [
1671 'newName' => 'communication_style_id',
1672 'groupName' => 'communication_style',
1673 ];
1674 $names['addressee'] = [
1675 'newName' => 'addressee_id',
1676 'groupName' => 'addressee',
1677 ];
1678 $names['email_greeting'] = [
1679 'newName' => 'email_greeting_id',
1680 'groupName' => 'email_greeting',
1681 ];
1682 $names['postal_greeting'] = [
1683 'newName' => 'postal_greeting_id',
1684 'groupName' => 'postal_greeting',
1685 ];
6a488035
TO
1686 CRM_Core_OptionGroup::lookupValues($submitted, $names, TRUE);
1687
1688 // fix custom fields so they're edible by createProfileContact()
2c16165a 1689 $treeCache = [];
6a488035 1690 if (!array_key_exists($migrationInfo['main_details']['contact_type'], $treeCache)) {
ca38a45b 1691 $treeCache[$migrationInfo['main_details']['contact_type']] = CRM_Core_BAO_CustomGroup::getTree(
1692 $migrationInfo['main_details']['contact_type'],
1693 NULL,
1694 NULL,
1695 -1,
2c16165a 1696 [],
ca38a45b 1697 NULL,
1698 TRUE,
1699 NULL,
1700 FALSE,
1701 FALSE
1702 );
6a488035 1703 }
6a488035 1704
2c16165a 1705 $cFields = [];
bf588234 1706 foreach ($treeCache[$migrationInfo['main_details']['contact_type']] as $key => $group) {
6a488035
TO
1707 if (!isset($group['fields'])) {
1708 continue;
1709 }
1710 foreach ($group['fields'] as $fid => $field) {
1711 $cFields[$fid]['attributes'] = $field;
1712 }
1713 }
1714
1715 if (!isset($submitted)) {
2c16165a 1716 $submitted = [];
6a488035
TO
1717 }
1718 foreach ($submitted as $key => $value) {
1719 if (substr($key, 0, 7) == 'custom_') {
1720 $fid = (int) substr($key, 7);
0e357872
C
1721 if (empty($cFields[$fid])) {
1722 continue;
1723 }
6a488035
TO
1724 $htmlType = $cFields[$fid]['attributes']['html_type'];
1725 switch ($htmlType) {
1726 case 'File':
1727 $customFiles[] = $fid;
1728 unset($submitted["custom_$fid"]);
1729 break;
1730
1731 case 'Select Country':
1732 case 'Select State/Province':
8cee0c70 1733 $submitted[$key] = CRM_Core_BAO_CustomField::displayValue($value, $fid);
6a488035
TO
1734 break;
1735
69239109 1736 case 'Select Date':
1737 if ($cFields[$fid]['attributes']['is_view']) {
1738 $submitted[$key] = date('YmdHis', strtotime($submitted[$key]));
1739 }
1740 break;
1741
6a488035 1742 case 'CheckBox':
6a488035
TO
1743 case 'Multi-Select':
1744 case 'Multi-Select Country':
1745 case 'Multi-Select State/Province':
1746 // Merge values from both contacts for multivalue fields, CRM-4385
1747 // get the existing custom values from db.
2c16165a 1748 $customParams = ['entityID' => $mainId, $key => TRUE];
6a488035 1749 $customfieldValues = CRM_Core_BAO_CustomValueTable::getValues($customParams);
a7488080 1750 if (!empty($customfieldValues[$key])) {
6a488035
TO
1751 $existingValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, $customfieldValues[$key]);
1752 if (is_array($existingValue) && !empty($existingValue)) {
2c16165a 1753 $mergeValue = $submittedCustomFields = [];
8a14f0f3 1754 if ($value == 'null') {
1755 // CRM-19074 if someone has deliberately chosen to overwrite with 'null', respect it.
1756 $submitted[$key] = $value;
6a488035 1757 }
8a14f0f3 1758 else {
1759 if ($value) {
ae2346d4 1760 $submittedCustomFields = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
8a14f0f3 1761 }
6a488035 1762
d606f5bc 1763 // CRM-19653: overwrite or add the existing custom field value with dupicate contact's
1764 // custom field value stored at $submittedCustomValue.
ae2346d4 1765 foreach ($submittedCustomFields as $k => $v) {
8a14f0f3 1766 if ($v != '' && !in_array($v, $mergeValue)) {
1767 $mergeValue[] = $v;
1768 }
6a488035 1769 }
6a488035 1770
8a14f0f3 1771 //keep state and country as array format.
1772 //for checkbox and m-select format w/ VALUE_SEPARATOR
2c16165a 1773 if (in_array($htmlType, [
8a14f0f3 1774 'CheckBox',
1775 'Multi-Select',
2c16165a 1776 ])) {
8a14f0f3 1777 $submitted[$key] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
1778 $mergeValue
1779 ) . CRM_Core_DAO::VALUE_SEPARATOR;
1780 }
1781 else {
1782 $submitted[$key] = $mergeValue;
1783 }
6a488035
TO
1784 }
1785 }
1786 }
2c16165a 1787 elseif (in_array($htmlType, [
353ffa53 1788 'Multi-Select Country',
c301f76e 1789 'Multi-Select State/Province',
2c16165a 1790 ])) {
6a488035
TO
1791 //we require submitted values should be in array format
1792 if ($value) {
1793 $mergeValueArray = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
1794 //hack to remove null values from array.
2c16165a 1795 $mergeValue = [];
6a488035
TO
1796 foreach ($mergeValueArray as $k => $v) {
1797 if ($v != '') {
1798 $mergeValue[] = $v;
1799 }
1800 }
1801 $submitted[$key] = $mergeValue;
1802 }
1803 }
1804 break;
1805
1806 default:
1807 break;
1808 }
1809 }
1810 }
1811
1812 // **** Do file custom fields related migrations
1813 // FIXME: move this someplace else (one of the BAOs) after discussing
b3fdbf3d 1814 // where to, and whether CRM_Core_BAO_File::deleteFileReferences() shouldn't actually,
6a488035
TO
1815 // like, delete a file...
1816
1817 if (!isset($customFiles)) {
2c16165a 1818 $customFiles = [];
6a488035
TO
1819 }
1820 foreach ($customFiles as $customId) {
1821 list($tableName, $columnName, $groupID) = CRM_Core_BAO_CustomField::getTableColumnGroup($customId);
1822
1823 // get the contact_id -> file_id mapping
2c16165a 1824 $fileIds = [];
6a488035 1825 $sql = "SELECT entity_id, {$columnName} AS file_id FROM {$tableName} WHERE entity_id IN ({$mainId}, {$otherId})";
9d2678f4 1826 $dao = CRM_Core_DAO::executeQuery($sql);
6a488035
TO
1827 while ($dao->fetch()) {
1828 $fileIds[$dao->entity_id] = $dao->file_id;
ecdae719 1829 if ($dao->entity_id == $mainId) {
1830 CRM_Core_BAO_File::deleteFileReferences($fileIds[$mainId], $mainId, $customId);
1831 }
6a488035
TO
1832 }
1833 $dao->free();
1834
6a488035
TO
1835 // move the other contact's file to main contact
1836 //NYSS need to INSERT or UPDATE depending on whether main contact has an existing record
481a74f4 1837 if (CRM_Core_DAO::singleValueQuery("SELECT id FROM {$tableName} WHERE entity_id = {$mainId}")) {
d58a19a1 1838 $sql = "UPDATE {$tableName} SET {$columnName} = {$fileIds[$otherId]} WHERE entity_id = {$mainId}";
6a488035
TO
1839 }
1840 else {
1841 $sql = "INSERT INTO {$tableName} ( entity_id, {$columnName} ) VALUES ( {$mainId}, {$fileIds[$otherId]} )";
1842 }
9d2678f4 1843 CRM_Core_DAO::executeQuery($sql);
6a488035 1844
481a74f4 1845 if (CRM_Core_DAO::singleValueQuery("
6a488035
TO
1846 SELECT id
1847 FROM civicrm_entity_file
353ffa53
TO
1848 WHERE entity_table = '{$tableName}' AND file_id = {$fileIds[$otherId]}")
1849 ) {
6a488035
TO
1850 $sql = "
1851 UPDATE civicrm_entity_file
1852 SET entity_id = {$mainId}
1853 WHERE entity_table = '{$tableName}' AND file_id = {$fileIds[$otherId]}";
1854 }
1855 else {
1856 $sql = "
1857 INSERT INTO civicrm_entity_file ( entity_table, entity_id, file_id )
1858 VALUES ( '{$tableName}', {$mainId}, {$fileIds[$otherId]} )";
1859 }
9d2678f4 1860 CRM_Core_DAO::executeQuery($sql);
6a488035
TO
1861 }
1862
1863 // move view only custom fields CRM-5362
2c16165a 1864 $viewOnlyCustomFields = [];
6a488035 1865 foreach ($submitted as $key => $value) {
ca38a45b 1866 $fid = CRM_Core_BAO_CustomField::getKeyID($key);
1867 if ($fid && array_key_exists($fid, $cFields) && !empty($cFields[$fid]['attributes']['is_view'])
1868 ) {
6a488035
TO
1869 $viewOnlyCustomFields[$key] = $value;
1870 }
1871 }
6a488035
TO
1872 // special case to set values for view only, CRM-5362
1873 if (!empty($viewOnlyCustomFields)) {
1874 $viewOnlyCustomFields['entityID'] = $mainId;
1875 CRM_Core_BAO_CustomValueTable::setValues($viewOnlyCustomFields);
1876 }
1877
3058f4d9 1878 if (!$checkPermissions || (CRM_Core_Permission::check('merge duplicate contacts') &&
2c16165a 1879 CRM_Core_Permission::check('delete contacts'))
6a488035
TO
1880 ) {
1881 // if ext id is submitted then set it null for contact to be deleted
a7488080 1882 if (!empty($submitted['external_identifier'])) {
6a488035
TO
1883 $query = "UPDATE civicrm_contact SET external_identifier = null WHERE id = {$otherId}";
1884 CRM_Core_DAO::executeQuery($query);
1885 }
2c16165a 1886 civicrm_api3('contact', 'delete', ['id' => $otherId]);
6a488035 1887 }
6a488035 1888
4d5f18cc 1889 // CRM-15681 merge sub_types
35522279
J
1890 if ($other_sub_types = CRM_Utils_Array::value('contact_sub_type', $migrationInfo['other_details'])) {
1891 if ($main_sub_types = CRM_Utils_Array::value('contact_sub_type', $migrationInfo['main_details'])) {
481a74f4 1892 $submitted['contact_sub_type'] = array_unique(array_merge($main_sub_types, $other_sub_types));
0db6c3e1
TO
1893 }
1894 else {
4d5f18cc 1895 $submitted['contact_sub_type'] = $other_sub_types;
1896 }
1897 }
1898
6a488035
TO
1899 // **** Update contact related info for the main contact
1900 if (!empty($submitted)) {
1901 $submitted['contact_id'] = $mainId;
1902
1903 //update current employer field
1904 if ($currentEmloyerId = CRM_Utils_Array::value('current_employer_id', $submitted)) {
1905 if (!CRM_Utils_System::isNull($currentEmloyerId)) {
1906 $submitted['current_employer'] = $submitted['current_employer_id'];
0db6c3e1
TO
1907 }
1908 else {
6a488035
TO
1909 $submitted['current_employer'] = '';
1910 }
1911 unset($submitted['current_employer_id']);
1912 }
1913
00f3da2e 1914 //CRM-14312 include prefix/suffix from mainId if not overridden for proper construction of display/sort name
481a74f4 1915 if (!isset($submitted['prefix_id']) && !empty($migrationInfo['main_details']['prefix_id'])) {
00f3da2e
BS
1916 $submitted['prefix_id'] = $migrationInfo['main_details']['prefix_id'];
1917 }
481a74f4 1918 if (!isset($submitted['suffix_id']) && !empty($migrationInfo['main_details']['suffix_id'])) {
00f3da2e
BS
1919 $submitted['suffix_id'] = $migrationInfo['main_details']['suffix_id'];
1920 }
1921
6a488035 1922 CRM_Contact_BAO_Contact::createProfileContact($submitted, CRM_Core_DAO::$_nullArray, $mainId);
6a488035
TO
1923 }
1924
1273d77c 1925 CRM_Utils_Hook::post('merge', 'Contact', $mainId);
f00283b5 1926 self::createMergeActivities($mainId, $otherId);
5ea06a7b 1927
6a488035
TO
1928 return TRUE;
1929 }
16254ae1 1930
ae2346d4
CR
1931 /**
1932 * Builds an Array of Custom tables for given custom field ID's.
1933 *
1934 * @param $customFieldIDs
1935 *
1936 * @return array
1937 * Array of custom table names
1938 */
1939 private static function getAffectedCustomTables($customFieldIDs) {
2c16165a 1940 $customTableToCopyValues = [];
ae2346d4
CR
1941
1942 foreach ($customFieldIDs as $fieldID) {
1943 if (!empty($fieldID)) {
2c16165a 1944 $customField = civicrm_api3('custom_field', 'getsingle', [
08b00099
CR
1945 'id' => $fieldID,
1946 'is_active' => TRUE,
2c16165a 1947 ]);
08b00099 1948 if (!civicrm_error($customField) && !empty($customField['custom_group_id'])) {
2c16165a 1949 $customGroup = civicrm_api3('custom_group', 'getsingle', [
08b00099 1950 'id' => $customField['custom_group_id'],
ae2346d4 1951 'is_active' => TRUE,
2c16165a 1952 ]);
ae2346d4
CR
1953
1954 if (!civicrm_error($customGroup) && !empty($customGroup['table_name'])) {
1955 $customTableToCopyValues[] = $customGroup['table_name'];
1956 }
1957 }
1958 }
1959 }
1960
1961 return $customTableToCopyValues;
1962 }
1963
16254ae1 1964 /**
f00283b5 1965 * Get fields in the contact table suitable for merging.
1966 *
a6c01b45 1967 * @return array
f00283b5 1968 * Array of field names to be potentially merged.
16254ae1 1969 */
00be9182 1970 public static function getContactFields() {
16254ae1 1971 $contactFields = CRM_Contact_DAO_Contact::fields();
2c16165a 1972 $invalidFields = [
353ffa53 1973 'api_key',
353ffa53
TO
1974 'created_date',
1975 'display_name',
1976 'hash',
1977 'id',
1978 'modified_date',
1979 'primary_contact_id',
1980 'sort_name',
c301f76e 1981 'user_unique_id',
2c16165a 1982 ];
bdd7870e
RN
1983 foreach ($contactFields as $field => $value) {
1984 if (in_array($field, $invalidFields)) {
1985 unset($contactFields[$field]);
1986 }
1987 }
16254ae1
ARW
1988 return array_keys($contactFields);
1989 }
ada104d5
AW
1990
1991 /**
1992 * Added for CRM-12695
c301f76e 1993 * Based on the contactID provided
ada104d5
AW
1994 * add/update membership(s) to related contacts
1995 *
c301f76e 1996 * @param int $contactID
ada104d5 1997 */
00be9182 1998 public static function addMembershipToRealtedContacts($contactID) {
ada104d5
AW
1999 $dao = new CRM_Member_DAO_Membership();
2000 $dao->contact_id = $contactID;
2001 $dao->is_test = 0;
2002 $dao->find();
2003
2004 //checks membership of contact itself
2005 while ($dao->fetch()) {
2006 $relationshipTypeId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $dao->membership_type_id, 'relationship_type_id', 'id');
2007 if ($relationshipTypeId) {
2c16165a 2008 $membershipParams = [
ada104d5
AW
2009 'id' => $dao->id,
2010 'contact_id' => $dao->contact_id,
2011 'membership_type_id' => $dao->membership_type_id,
2012 'join_date' => CRM_Utils_Date::isoToMysql($dao->join_date),
2013 'start_date' => CRM_Utils_Date::isoToMysql($dao->start_date),
2014 'end_date' => CRM_Utils_Date::isoToMysql($dao->end_date),
2015 'source' => $dao->source,
21dfd5f5 2016 'status_id' => $dao->status_id,
2c16165a 2017 ];
ada104d5
AW
2018 // create/update membership(s) for related contact(s)
2019 CRM_Member_BAO_Membership::createRelatedMemberships($membershipParams, $dao);
2020 } // end of if relationshipTypeId
2021 }
2022 }
96025800 2023
f00283b5 2024 /**
2025 * Create activities tracking the merge on affected contacts.
2026 *
2027 * @param int $mainId
2028 * @param int $otherId
2029 *
2030 * @throws \CiviCRM_API3_Exception
2031 */
2032 public static function createMergeActivities($mainId, $otherId) {
2c16165a 2033 $params = [
f00283b5 2034 1 => $otherId,
2035 2 => $mainId,
2c16165a 2036 ];
2037 $activity = civicrm_api3('activity', 'create', [
dc33398e
J
2038 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() :
2039 $mainId,
f00283b5 2040 'subject' => ts('Contact ID %1 has been merged and deleted.', $params),
2041 'target_contact_id' => $mainId,
2042 'activity_type_id' => 'Contact Merged',
2043 'status_id' => 'Completed',
2c16165a 2044 ]);
2045 if (civicrm_api3('Setting', 'getvalue', [
2046 'name' => 'contact_undelete',
2047 'group' => 'CiviCRM Preferences',
2048 ])) {
2049 civicrm_api3('activity', 'create', [
dc33398e
J
2050 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() :
2051 $otherId,
4d834a99 2052 'subject' => ts('Contact ID %1 has been merged into Contact ID %2 and deleted.', $params),
2053 'target_contact_id' => $otherId,
2054 'activity_type_id' => 'Contact Deleted by Merge',
2055 'parent_id' => $activity['id'],
2056 'status_id' => 'Completed',
2c16165a 2057 ]);
4d834a99 2058 }
f00283b5 2059 }
2060
2988f5c7 2061 /**
2062 * Get Duplicate Pairs based on a rule for a group.
2063 *
2064 * @param int $rule_group_id
2065 * @param int $group_id
2066 * @param bool $reloadCacheIfEmpty
917acf6f 2067 * Should the cache be reloaded if empty - this must be false when in a dedupe action!
2988f5c7 2068 * @param int $batchLimit
2069 * @param bool $isSelected
5721d85e 2070 * Limit to selected pairs.
3058f4d9 2071 * @param array|string $orderByClause
66eceb0b 2072 * @param bool $includeConflicts
e23e26ec 2073 * @param array $criteria
2074 * Additional criteria to narrow down the merge group.
2988f5c7 2075 *
3058f4d9 2076 * @param bool $checkPermissions
2077 * Respect logged in user permissions.
2078 *
21a95d83 2079 * @param int $searchLimit
2080 * Limit to searching for matches against this many contacts.
2081 *
2988f5c7 2082 * @return array
3058f4d9 2083 * Array of matches meeting the criteria.
2988f5c7 2084 */
2c16165a 2085 public static function getDuplicatePairs($rule_group_id, $group_id, $reloadCacheIfEmpty, $batchLimit, $isSelected, $orderByClause = '', $includeConflicts = TRUE, $criteria = [], $checkPermissions = TRUE, $searchLimit = 0) {
ed3c1599 2086 $where = self::getWhereString($isSelected);
3058f4d9 2087 $cacheKeyString = self::getMergeCacheKeyString($rule_group_id, $group_id, $criteria, $checkPermissions);
2988f5c7 2088 $join = self::getJoinOnDedupeTable();
2c16165a 2089 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString, $join, $where, 0, $batchLimit, [], $orderByClause, $includeConflicts);
2988f5c7 2090 if (empty($dupePairs) && $reloadCacheIfEmpty) {
2091 // If we haven't found any dupes, probably cache is empty.
66eceb0b 2092 // Try filling cache and give another try. We don't need to specify include conflicts here are there will not be any
2093 // until we have done some processing.
21a95d83 2094 CRM_Core_BAO_PrevNextCache::refillCache($rule_group_id, $group_id, $cacheKeyString, $criteria, $checkPermissions, $searchLimit);
2c16165a 2095 $dupePairs = CRM_Core_BAO_PrevNextCache::retrieve($cacheKeyString, $join, $where, 0, $batchLimit, [], $orderByClause, $includeConflicts);
2988f5c7 2096 return $dupePairs;
2097 }
2098 return $dupePairs;
2099 }
2100
2ae26001 2101 /**
2102 * Get the cache key string for the merge action.
2103 *
2104 * @param int $rule_group_id
2105 * @param int $group_id
e23e26ec 2106 * @param array $criteria
2107 * Additional criteria to narrow down the merge group.
2108 * Currently we are only supporting the key 'contact' within it.
2ae26001 2109 *
3058f4d9 2110 * @param bool $checkPermissions
2111 * Respect the users permissions.
2112 *
2ae26001 2113 * @return string
2114 */
2c16165a 2115 public static function getMergeCacheKeyString($rule_group_id, $group_id, $criteria = [], $checkPermissions = TRUE) {
2ae26001 2116 $contactType = CRM_Dedupe_BAO_RuleGroup::getContactTypeForRuleGroup($rule_group_id);
9d2f6d53 2117 $cacheKeyString = "merge_{$contactType}";
2ae26001 2118 $cacheKeyString .= $rule_group_id ? "_{$rule_group_id}" : '_0';
2119 $cacheKeyString .= $group_id ? "_{$group_id}" : '_0';
629dd4f3 2120 $cacheKeyString .= !empty($criteria) ? md5(serialize($criteria)) : '_0';
3058f4d9 2121 if ($checkPermissions) {
2122 $contactID = CRM_Core_Session::getLoggedInContactID();
2123 if (!$contactID) {
2124 // Distinguish between no permission check & no logged in user.
2125 $contactID = 'null';
2126 }
2127 $cacheKeyString .= '_' . $contactID;
2128 }
2129 else {
2130 $cacheKeyString .= '_0';
2131 }
2ae26001 2132 return $cacheKeyString;
2133 }
2134
1996e7d4 2135 /**
5d5b49ad 2136 * @param array $contact
1996e7d4 2137 * @return array
2138 * $specialValues
2139 */
2140 public static function getSpecialValues($contact) {
35522279 2141 $preferred_communication_method = CRM_Utils_Array::value('preferred_communication_method', $contact);
2c16165a 2142 $value = empty($preferred_communication_method) ? [] : $preferred_communication_method;
2143 $specialValues = [
1996e7d4 2144 'preferred_communication_method' => $value,
2145 'communication_style_id' => $value,
2c16165a 2146 ];
1996e7d4 2147
2148 if (!empty($contact['preferred_communication_method'])) {
2149 // api 3 returns pref_comm_method as an array, which breaks the lookup; so we reconstruct
2150 $prefCommList = is_array($specialValues['preferred_communication_method']) ? implode(CRM_Core_DAO::VALUE_SEPARATOR, $specialValues['preferred_communication_method']) : $specialValues['preferred_communication_method'];
2151 $specialValues['preferred_communication_method'] = CRM_Core_DAO::VALUE_SEPARATOR . $prefCommList . CRM_Core_DAO::VALUE_SEPARATOR;
2152 }
2c16165a 2153 $names = [
2154 'preferred_communication_method' => [
1996e7d4 2155 'newName' => 'preferred_communication_method_display',
2156 'groupName' => 'preferred_communication_method',
2c16165a 2157 ],
2158 ];
1996e7d4 2159 CRM_Core_OptionGroup::lookupValues($specialValues, $names);
2160
2161 if (!empty($contact['communication_style'])) {
2162 $specialValues['communication_style_id_display'] = $contact['communication_style'];
2163 }
2164 return $specialValues;
2165 }
2166
74a6069d 2167 /**
2168 * Get the metadata for the merge fields.
2169 *
2170 * This is basically the contact metadata, augmented with fields to
2171 * represent email greeting, postal greeting & addressee.
2172 *
2173 * @return array
2174 */
2175 public static function getMergeFieldsMetadata() {
2176 if (isset(\Civi::$statics[__CLASS__]) && isset(\Civi::$statics[__CLASS__]['merge_fields_metadata'])) {
2177 return \Civi::$statics[__CLASS__]['merge_fields_metadata'];
2178 }
2179 $fields = CRM_Contact_DAO_Contact::fields();
2c16165a 2180 static $optionValueFields = [];
74a6069d 2181 if (empty($optionValueFields)) {
2182 $optionValueFields = CRM_Core_OptionValue::getFields();
2183 }
2184 foreach ($optionValueFields as $field => $params) {
2185 $fields[$field]['title'] = $params['title'];
2186 }
2187 \Civi::$statics[__CLASS__]['merge_fields_metadata'] = $fields;
2188 return \Civi::$statics[__CLASS__]['merge_fields_metadata'];
2189 }
2190
2191 /**
2192 * Get the details of the contact to be merged.
2193 *
2194 * @param int $contact_id
74a6069d 2195 *
2196 * @return array
2197 *
2198 * @throws CRM_Core_Exception
2199 */
fcc3d8ee 2200 public static function getMergeContactDetails($contact_id) {
2c16165a 2201 $params = [
74a6069d 2202 'contact_id' => $contact_id,
2203 'version' => 3,
2c16165a 2204 'return' => array_merge(['display_name'], self::getContactFields()),
2205 ];
74a6069d 2206 $result = civicrm_api('contact', 'get', $params);
2207
2208 // CRM-18480: Cancel the process if the contact is already deleted
2209 if (isset($result['values'][$contact_id]['contact_is_deleted']) && !empty($result['values'][$contact_id]['contact_is_deleted'])) {
2c16165a 2210 throw new CRM_Core_Exception(ts('Cannot merge because one contact (ID %1) has been deleted.', [
fcc3d8ee 2211 1 => $contact_id,
2c16165a 2212 ]));
74a6069d 2213 }
2214
2215 return $result['values'][$contact_id];
2216 }
2217
92a77772 2218 /**
2219 * Merge location.
2220 *
2221 * Based on the data in the $locationMigrationInfo merge the locations for 2 contacts.
2222 *
2223 * The data is in the format received from the merge form (which is a fairly confusing format).
2224 *
2225 * It is converted into an array of DAOs which is passed to the alterLocationMergeData hook
2226 * before saving or deleting the DAOs. A new hook is added to allow these to be altered after they have
2227 * been calculated and before saving because
2228 * - the existing format & hook combo is so confusing it is hard for developers to change & inherently fragile
2229 * - passing to a hook right before save means calculations only have to be done once
2230 * - the existing pattern of passing dissimilar data to the same (merge) hook with a different 'type' is just
2231 * ugly.
2232 *
2233 * The use of the new hook is tested, including the fact it is called before contributions are merged, as this
16d4e0b7 2234 * is likely to be significant data in merge hooks.
92a77772 2235 *
2236 * @param int $mainId
2237 * @param int $otherId
2238 * @param array $locationMigrationInfo
2239 * Portion of the migration_info that holds location migration information.
2240 *
2241 * @param array $migrationInfo
2242 * Migration info for the merge. This is passed to the hook as informational only.
2243 */
2244 public static function mergeLocations($mainId, $otherId, $locationMigrationInfo, $migrationInfo) {
2245 foreach ($locationMigrationInfo as $key => $value) {
2246 $locField = explode('_', $key);
2247 $fieldName = $locField[2];
2248 $fieldCount = $locField[3];
2249
2250 // Set up the operation type (add/overwrite)
2251 // Ignore operation for websites
2252 // @todo Tidy this up
2253 $operation = 0;
2254 if ($fieldName != 'website') {
2255 $operation = CRM_Utils_Array::value('operation', $migrationInfo['location_blocks'][$fieldName][$fieldCount]);
2256 }
2257 // default operation is overwrite.
2258 if (!$operation) {
2259 $operation = 2;
2260 }
2261 $locBlocks[$fieldName][$fieldCount]['operation'] = $operation;
2262 }
2c16165a 2263 $blocksDAO = [];
92a77772 2264
2265 // @todo Handle OpenID (not currently in API).
2266 if (!empty($locBlocks)) {
2267 $locationBlocks = self::getLocationBlockInfo();
2268
2c16165a 2269 $primaryBlockIds = CRM_Contact_BAO_Contact::getLocBlockIds($mainId, ['is_primary' => 1]);
2270 $billingBlockIds = CRM_Contact_BAO_Contact::getLocBlockIds($mainId, ['is_billing' => 1]);
92a77772 2271
2272 foreach ($locBlocks as $name => $block) {
2c16165a 2273 $blocksDAO[$name] = ['delete' => [], 'update' => []];
92a77772 2274 if (!is_array($block) || CRM_Utils_System::isNull($block)) {
2275 continue;
2276 }
2277 $daoName = 'CRM_Core_DAO_' . $locationBlocks[$name]['label'];
abd0b852 2278 $changePrimary = FALSE;
92a77772 2279 $primaryDAOId = (array_key_exists($name, $primaryBlockIds)) ? array_pop($primaryBlockIds[$name]) : NULL;
2280 $billingDAOId = (array_key_exists($name, $billingBlockIds)) ? array_pop($billingBlockIds[$name]) : NULL;
2281
2282 foreach ($block as $blkCount => $values) {
2283 $otherBlockId = CRM_Utils_Array::value('id', $migrationInfo['other_details']['location_blocks'][$name][$blkCount]);
2284 $mainBlockId = CRM_Utils_Array::value('mainContactBlockId', $migrationInfo['location_blocks'][$name][$blkCount], 0);
2285 if (!$otherBlockId) {
2286 continue;
2287 }
2288
2289 // For the block which belongs to other-contact, link the location block to main-contact
2290 $otherBlockDAO = new $daoName();
2291 $otherBlockDAO->contact_id = $mainId;
2292
2293 // Get the ID of this block on the 'other' contact, otherwise skip
2294 $otherBlockDAO->id = $otherBlockId;
2295
2296 // Add/update location and type information from the form, if applicable
2297 if ($locationBlocks[$name]['hasLocation']) {
2298 $locTypeId = CRM_Utils_Array::value('locTypeId', $migrationInfo['location_blocks'][$name][$blkCount]);
2299 $otherBlockDAO->location_type_id = $locTypeId;
2300 }
2301 if ($locationBlocks[$name]['hasType']) {
2302 $typeTypeId = CRM_Utils_Array::value('typeTypeId', $migrationInfo['location_blocks'][$name][$blkCount]);
2303 $otherBlockDAO->{$locationBlocks[$name]['hasType']} = $typeTypeId;
2304 }
2305
abd0b852
J
2306 // If we're deliberately setting this as primary then add the flag
2307 // and remove it from the current primary location (if there is one).
2308 // But only once for each entity.
2309 $set_primary = CRM_Utils_Array::value('set_other_primary', $migrationInfo['location_blocks'][$name][$blkCount]);
9e848fc4 2310 if (!$changePrimary && $set_primary == "1") {
abd0b852
J
2311 $otherBlockDAO->is_primary = 1;
2312 if ($primaryDAOId) {
2313 $removePrimaryDAO = new $daoName();
2314 $removePrimaryDAO->id = $primaryDAOId;
2315 $removePrimaryDAO->is_primary = 0;
2316 $blocksDAO[$name]['update'][$primaryDAOId] = $removePrimaryDAO;
2317 }
2318 $changePrimary = TRUE;
2319 }
2320 // Otherwise, if main contact already has primary, set it to 0.
2321 elseif ($primaryDAOId) {
92a77772 2322 $otherBlockDAO->is_primary = 0;
2323 }
abd0b852
J
2324
2325 // If the main contact already has a billing location, set this to 0.
92a77772 2326 if ($billingDAOId) {
2327 $otherBlockDAO->is_billing = 0;
2328 }
2329
2330 $operation = CRM_Utils_Array::value('operation', $values, 2);
2331 // overwrite - need to delete block which belongs to main-contact.
2332 if (!empty($mainBlockId) && ($operation == 2)) {
2333 $deleteDAO = new $daoName();
2334 $deleteDAO->id = $mainBlockId;
2335 $deleteDAO->find(TRUE);
2336
2337 // if we about to delete a primary / billing block, set the flags for new block
2338 // that we going to assign to main-contact
2339 if ($primaryDAOId && ($primaryDAOId == $deleteDAO->id)) {
2340 $otherBlockDAO->is_primary = 1;
2341 }
2342 if ($billingDAOId && ($billingDAOId == $deleteDAO->id)) {
2343 $otherBlockDAO->is_billing = 1;
2344 }
2345 $blocksDAO[$name]['delete'][$deleteDAO->id] = $deleteDAO;
2346 }
2347 $blocksDAO[$name]['update'][$otherBlockDAO->id] = $otherBlockDAO;
2348 }
2349 }
2350 }
2351
2352 CRM_Utils_Hook::alterLocationMergeData($blocksDAO, $mainId, $otherId, $migrationInfo);
2353 foreach ($blocksDAO as $blockDAOs) {
2354 if (!empty($blockDAOs['update'])) {
2355 foreach ($blockDAOs['update'] as $blockDAO) {
2356 $blockDAO->save();
2357 }
2358 }
2359 if (!empty($blockDAOs['delete'])) {
2360 foreach ($blockDAOs['delete'] as $blockDAO) {
2361 $blockDAO->delete();
2362 }
2363 }
2364 }
2365 }
2366
e4e1db4b 2367 /**
2368 * Dedupe a pair of contacts.
2369 *
2370 * @param array $migrationInfo
2371 * @param array $resultStats
2372 * @param array $deletedContacts
2373 * @param string $mode
2374 * @param bool $checkPermissions
2375 * @param int $mainId
2376 * @param int $otherId
2377 * @param string $cacheKeyString
2378 */
2379 protected static function dedupePair(&$migrationInfo, &$resultStats, &$deletedContacts, $mode, $checkPermissions, $mainId, $otherId, $cacheKeyString) {
2380
2381 // go ahead with merge if there is no conflict
2c16165a 2382 $conflicts = [];
e4e1db4b 2383 if (!CRM_Dedupe_Merger::skipMerge($mainId, $otherId, $migrationInfo, $mode, $conflicts)) {
2384 CRM_Dedupe_Merger::moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions);
2c16165a 2385 $resultStats['merged'][] = [
e4e1db4b 2386 'main_id' => $mainId,
2387 'other_id' => $otherId,
2c16165a 2388 ];
e4e1db4b 2389 $deletedContacts[] = $otherId;
2390 }
2391 else {
2c16165a 2392 $resultStats['skipped'][] = [
e4e1db4b 2393 'main_id' => $mainId,
2394 'other_id' => $otherId,
2c16165a 2395 ];
e4e1db4b 2396 }
2397
2398 // store any conflicts
2399 if (!empty($conflicts)) {
2400 foreach ($conflicts as $key => $dnc) {
2401 $conflicts[$key] = "{$migrationInfo['rows'][$key]['title']}: '{$migrationInfo['rows'][$key]['main']}' vs. '{$migrationInfo['rows'][$key]['other']}'";
2402 }
2403 CRM_Core_BAO_PrevNextCache::markConflict($mainId, $otherId, $cacheKeyString, $conflicts);
2404 }
2405 else {
2406 // delete entry from PrevNextCache table so we don't consider the pair next time
2407 // pair may have been flipped, so make sure we delete using both orders
2408 CRM_Core_BAO_PrevNextCache::deletePair($mainId, $otherId, $cacheKeyString, TRUE);
2409 }
e4e1db4b 2410 }
2411
6a488035 2412}