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