]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/MergeContact.php
Remove accept parameter for head/post again
[friendica.git] / src / Worker / MergeContact.php
index 653930f2fa47b2a0c28a84abb14b6ca510816df3..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,44 +23,55 @@ namespace Friendica\Worker;
 
 use Friendica\Core\Logger;
 use Friendica\Database\DBA;
+use Friendica\Database\DBStructure;
 
 class MergeContact
 {
        /**
         * Replace all occurences of the given contact id and replace it
         *
-        * @param integer $search_cid
-        * @param integer $replace_cid
+        * @param integer $new_cid
+        * @param integer $old_cid
         * @param integer $uid
         */
-       public static function execute(int $search_cid, int $replace_cid, int $uid)
+       public static function execute(int $new_cid, int $old_cid, int $uid)
        {
-               if (empty($search_cid) || empty($replace_cid) || ($search_cid == $replace_cid)) {
+               if (empty($new_cid) || empty($old_cid) || ($new_cid == $old_cid)) {
                        // Invalid request
                        return;
                }
 
-               Logger::info('Handling duplicate', ['search' => $replace_cid, 'replace' => $search_cid]);
+               Logger::info('Handling duplicate', ['search' => $old_cid, 'replace' => $new_cid]);
 
-               // Search and replace
-               DBA::update('item', ['contact-id' => $search_cid], ['contact-id' => $replace_cid]);
-               DBA::update('thread', ['contact-id' => $search_cid], ['contact-id' => $replace_cid]);
-               DBA::update('mail', ['contact-id' => $search_cid], ['contact-id' => $replace_cid]);
-               DBA::update('photo', ['contact-id' => $search_cid], ['contact-id' => $replace_cid]);
-               DBA::update('event', ['cid' => $search_cid], ['cid' => $replace_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]);
 
                // These fields only contain public contact entries (uid = 0)
                if ($uid == 0) {
-                       DBA::update('post-tag', ['cid' => $search_cid], ['cid' => $replace_cid]);
-                       DBA::update('item', ['author-id' => $search_cid], ['author-id' => $replace_cid]);
-                       DBA::update('item', ['owner-id' => $search_cid], ['owner-id' => $replace_cid]);
-                       DBA::update('thread', ['author-id' => $search_cid], ['author-id' => $replace_cid]);
-                       DBA::update('thread', ['owner-id' => $search_cid], ['owner-id' => $replace_cid]);
+                       DBA::update('post-tag', ['cid' => $new_cid], ['cid' => $old_cid]);
+                       DBA::delete('post-tag', ['cid' => $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?
                }
 
                // Remove the duplicate
-               DBA::delete('contact', ['id' => $replace_cid]);
+               DBA::delete('contact', ['id' => $old_cid]);
        }
 }