]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/MergeContact.php
Don't look at the command when archiving an inbox
[friendica.git] / src / Worker / MergeContact.php
index e04dfb6ac880afdde105767f4a850445912e7882..2378d98e173f07ce0a9789855d5e82a03737da6e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,6 +23,7 @@ namespace Friendica\Worker;
 
 use Friendica\Core\Logger;
 use Friendica\Database\DBA;
+use Friendica\Database\DBStructure;
 
 class MergeContact
 {
@@ -42,9 +43,11 @@ class MergeContact
 
                Logger::info('Handling duplicate', ['search' => $old_cid, 'replace' => $new_cid]);
 
-               // Search and replace
-               DBA::update('item', ['contact-id' => $new_cid], ['contact-id' => $old_cid]);
-               DBA::update('thread', ['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]);
@@ -53,11 +56,17 @@ class MergeContact
                if ($uid == 0) {
                        DBA::update('post-tag', ['cid' => $new_cid], ['cid' => $old_cid]);
                        DBA::delete('post-tag', ['cid' => $old_cid]);
-                       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]);
-                       DBA::update('thread', ['author-id' => $new_cid], ['author-id' => $old_cid]);
-                       DBA::update('thread', ['owner-id' => $new_cid], ['owner-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]);
+                               DBA::update('thread', ['owner-id' => $new_cid], ['owner-id' => $old_cid]);
+                       }
                } else {
                        /// @todo Check if some other data needs to be adjusted as well, possibly the "rel" status?
                }