]> git.mxchange.org Git - friendica.git/commitdiff
Added post update to remove duplicated contacts
authorMichael Vogel <icarus@dabo.de>
Thu, 29 Aug 2019 04:06:41 +0000 (06:06 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 29 Aug 2019 04:06:41 +0000 (06:06 +0200)
src/Database/PostUpdate.php

index acafea900c78fb62dafd7ef4e8e7fd4ff0b2edaf..76ec3ea01ce9a6868c7b08520a22229929c25301 100644 (file)
@@ -37,6 +37,9 @@ class PostUpdate
                if (!self::update1297()) {
                        return false;
                }
+               if (!self::update1322()) {
+                       return false;
+               }
 
                return true;
        }
@@ -414,6 +417,38 @@ class PostUpdate
 
                Logger::info('Done');
 
+               return true;
+       }
+       /**
+        * Set the delivery queue count to a negative value for all items preceding the feature.
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function update1322()
+       {
+               // Was the script completed?
+               if (Config::get('system', 'post_update_version') >= 1322) {
+                       return true;
+               }
+
+               Logger::info('Start');
+
+               $contacts = DBA::p("SELECT ANY_VALUE(`id`) AS `id` FROM `contact`
+                       WHERE EXISTS (SELECT `nurl` FROM `contact` AS `c2`
+                               WHERE `c2`.`nurl` = `contact`.`nurl` AND `c2`.`id` != `contact`.`id` AND `c2`.`uid` = `contact`.`uid` AND `c2`.`network` = `contact`.`network`)
+                       AND `network` IN (?, ?, ?) GROUP BY `nurl`", Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB);
+
+               while ($contact = DBA::fetch($contacts)) {
+                       Logger::info('Remove duplicates', ['id' => $contact['id']]);
+                       Contact::handleDuplicateByID($contact['id']);
+               }
+
+               DBA::close($contact);
+               Config::set('system', 'post_update_version', 1322);
+
+               Logger::info('Done');
+
                return true;
        }
 }