mirror of
https://github.com/friendica/friendica
synced 2025-05-12 05:04:10 +02:00
Issue 7559: Merge contact duplicates
This commit is contained in:
parent
b914900ff5
commit
7d50a086e0
3 changed files with 66 additions and 57 deletions
41
src/Worker/MergeContact.php
Normal file
41
src/Worker/MergeContact.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file src/Worker/MergeContact.php
|
||||
*/
|
||||
|
||||
namespace Friendica\Worker;
|
||||
|
||||
use Friendica\Core\Logger;
|
||||
use Friendica\Database\DBA;
|
||||
|
||||
class MergeContact
|
||||
{
|
||||
public static function execute($first, $dup_id, $uid)
|
||||
{
|
||||
if (empty($first) || empty($dup_id) || ($first == $dup_id)) {
|
||||
// Invalid request
|
||||
return;
|
||||
}
|
||||
|
||||
Logger::info('Handling duplicate', ['search' => $dup_id, 'replace' => $first]);
|
||||
|
||||
// Search and replace
|
||||
DBA::update('item', ['contact-id' => $first], ['contact-id' => $dup_id]);
|
||||
DBA::update('thread', ['contact-id' => $first], ['contact-id' => $dup_id]);
|
||||
DBA::update('mail', ['contact-id' => $first], ['contact-id' => $dup_id]);
|
||||
DBA::update('photo', ['contact-id' => $first], ['contact-id' => $dup_id]);
|
||||
DBA::update('event', ['cid' => $first], ['cid' => $dup_id]);
|
||||
if ($uid == 0) {
|
||||
DBA::update('item', ['author-id' => $first], ['author-id' => $dup_id]);
|
||||
DBA::update('item', ['owner-id' => $first], ['owner-id' => $dup_id]);
|
||||
DBA::update('thread', ['author-id' => $first], ['author-id' => $dup_id]);
|
||||
DBA::update('thread', ['owner-id' => $first], ['owner-id' => $dup_id]);
|
||||
} else {
|
||||
/// @todo Check if some other data needs to be adjusted as well, possibly the "rel" status?
|
||||
}
|
||||
|
||||
// Remove the duplicate
|
||||
DBA::delete('contact', ['id' => $dup_id]);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue