From 76220537abf7789331cc40d535082e8f29042203 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 21 Mar 2021 19:25:23 +0000 Subject: [PATCH] Avoid database error messages because of foreign key violations --- src/Worker/MergeContact.php | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/src/Worker/MergeContact.php b/src/Worker/MergeContact.php index 6c30b9b917..c4944f6181 100644 --- a/src/Worker/MergeContact.php +++ b/src/Worker/MergeContact.php @@ -24,7 +24,6 @@ namespace Friendica\Worker; use Friendica\Core\Logger; use Friendica\Database\DBA; use Friendica\Database\DBStructure; -use Friendica\Model\Post; class MergeContact { @@ -44,29 +43,25 @@ class MergeContact Logger::info('Handling duplicate', ['search' => $old_cid, 'replace' => $new_cid]); - // Search and replace - Post::update(['contact-id' => $new_cid], ['contact-id' => $old_cid]); + foreach (['item', 'thread', 'post-user', 'post-thread-user'] as $table) { + if (DBStructure::existsTable($table)) { + DBA::update($table, ['contact-id' => $new_cid], ['contact-id' => $old_cid]); + } + } DBA::update('mail', ['contact-id' => $new_cid], ['contact-id' => $old_cid]); DBA::update('photo', ['contact-id' => $new_cid], ['contact-id' => $old_cid]); DBA::update('event', ['cid' => $new_cid], ['cid' => $old_cid]); - if (DBStructure::existsTable('item')) { - DBA::update('item', ['contact-id' => $new_cid], ['contact-id' => $old_cid]); - } - if (DBStructure::existsTable('thread')) { - DBA::update('thread', ['contact-id' => $new_cid], ['contact-id' => $old_cid]); - } // These fields only contain public contact entries (uid = 0) if ($uid == 0) { DBA::update('post-tag', ['cid' => $new_cid], ['cid' => $old_cid]); DBA::delete('post-tag', ['cid' => $old_cid]); - Post::update(['author-id' => $new_cid], ['author-id' => $old_cid]); - Post::update(['owner-id' => $new_cid], ['owner-id' => $old_cid]); - Post::update(['causer-id' => $new_cid], ['causer-id' => $old_cid]); - if (DBStructure::existsTable('item')) { - DBA::update('item', ['author-id' => $new_cid], ['author-id' => $old_cid]); - DBA::update('item', ['owner-id' => $new_cid], ['owner-id' => $old_cid]); - DBA::update('item', ['causer-id' => $new_cid], ['causer-id' => $old_cid]); + foreach (['item', 'post', 'post-thread', 'post-user', 'post-thread-user'] as $table) { + if (DBStructure::existsTable($table)) { + DBA::update($table, ['author-id' => $new_cid], ['author-id' => $old_cid]); + DBA::update($table, ['owner-id' => $new_cid], ['owner-id' => $old_cid]); + DBA::update($table, ['causer-id' => $new_cid], ['causer-id' => $old_cid]); + } } if (DBStructure::existsTable('thread')) { DBA::update('thread', ['author-id' => $new_cid], ['author-id' => $old_cid]);