]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/PostUpdate.php
Merge pull request #11895 from annando/smarty-sub-dir
[friendica.git] / src / Database / PostUpdate.php
index 9659a862cfd344458e1e85fae5ee422f54aac258..9216d800da42f643860b872c17b24df27aa099c8 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
  *
@@ -25,6 +25,7 @@ use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
 use Friendica\DI;
 use Friendica\Model\Contact;
+use Friendica\Model\Conversation;
 use Friendica\Model\GServer;
 use Friendica\Model\Item;
 use Friendica\Model\ItemURI;
@@ -33,6 +34,9 @@ use Friendica\Model\Post;
 use Friendica\Model\Post\Category;
 use Friendica\Model\Tag;
 use Friendica\Model\Verb;
+use Friendica\Protocol\ActivityPub\Processor;
+use Friendica\Protocol\ActivityPub\Receiver;
+use Friendica\Util\JsonLD;
 use Friendica\Util\Strings;
 
 /**
@@ -45,7 +49,8 @@ class PostUpdate
 {
        // Needed for the helper function to read from the legacy term table
        const OBJECT_TYPE_POST  = 1;
-       const VERSION = 1400;
+
+       const VERSION = 1452;
 
        /**
         * Calls the post update functions
@@ -91,6 +96,24 @@ class PostUpdate
                if (!self::update1400()) {
                        return false;
                }
+               if (!self::update1424()) {
+                       return false;
+               }
+               if (!self::update1425()) {
+                       return false;
+               }
+               if (!self::update1426()) {
+                       return false;
+               }
+               if (!self::update1427()) {
+                       return false;
+               }
+               if (!self::update1452()) {
+                       return false;
+               }
+               if (!self::update1483()) {
+                       return false;
+               }
                return true;
        }
 
@@ -113,7 +136,7 @@ class PostUpdate
                }
 
                $max_item_delivery_data = DBA::selectFirst('item-delivery-data', ['iid'], ['queue_count > 0 OR queue_done > 0'], ['order' => ['iid']]);
-               $max_iid = $max_item_delivery_data['iid'];
+               $max_iid = $max_item_delivery_data['iid'] ?? 0;
 
                Logger::info('Start update1297 with max iid: ' . $max_iid);
 
@@ -518,7 +541,7 @@ class PostUpdate
        private static function update1347()
        {
                // Was the script completed?
-               if (DI::config()->get("system", "post_update_version") >= 1347) {
+               if (DI::config()->get('system', 'post_update_version') >= 1347) {
                        return true;
                }
 
@@ -527,7 +550,7 @@ class PostUpdate
                        return true;
                }
 
-               $id = DI::config()->get("system", "post_update_version_1347_id", 0);
+               $id = DI::config()->get('system', 'post_update_version_1347_id', 0);
 
                Logger::info('Start', ['item' => $id]);
 
@@ -562,12 +585,12 @@ class PostUpdate
                }
                DBA::close($items);
 
-               DI::config()->set("system", "post_update_version_1347_id", $id);
+               DI::config()->set('system', 'post_update_version_1347_id', $id);
 
                Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
 
                if ($start_id == $id) {
-                       DI::config()->set("system", "post_update_version", 1347);
+                       DI::config()->set('system', 'post_update_version', 1347);
                        Logger::info('Done');
                        return true;
                }
@@ -585,11 +608,11 @@ class PostUpdate
        private static function update1348()
        {
                // Was the script completed?
-               if (DI::config()->get("system", "post_update_version") >= 1348) {
+               if (DI::config()->get('system', 'post_update_version') >= 1348) {
                        return true;
                }
 
-               $id = DI::config()->get("system", "post_update_version_1348_id", 0);
+               $id = DI::config()->get('system', 'post_update_version_1348_id', 0);
 
                Logger::info('Start', ['contact' => $id]);
 
@@ -615,12 +638,12 @@ class PostUpdate
                }
                DBA::close($contacts);
 
-               DI::config()->set("system", "post_update_version_1348_id", $id);
+               DI::config()->set('system', 'post_update_version_1348_id', $id);
 
                Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
 
                if ($start_id == $id) {
-                       DI::config()->set("system", "post_update_version", 1348);
+                       DI::config()->set('system', 'post_update_version', 1348);
                        Logger::info('Done');
                        return true;
                }
@@ -638,11 +661,11 @@ class PostUpdate
        private static function update1349()
        {
                // Was the script completed?
-               if (DI::config()->get("system", "post_update_version") >= 1349) {
+               if (DI::config()->get('system', 'post_update_version') >= 1349) {
                        return true;
                }
 
-               $id = DI::config()->get("system", "post_update_version_1349_id", '');
+               $id = DI::config()->get('system', 'post_update_version_1349_id', '');
 
                Logger::info('Start', ['apcontact' => $id]);
 
@@ -668,12 +691,12 @@ class PostUpdate
                }
                DBA::close($apcontacts);
 
-               DI::config()->set("system", "post_update_version_1349_id", $id);
+               DI::config()->set('system', 'post_update_version_1349_id', $id);
 
                Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
 
                if ($start_id == $id) {
-                       DI::config()->set("system", "post_update_version", 1349);
+                       DI::config()->set('system', 'post_update_version', 1349);
                        Logger::info('Done');
                        return true;
                }
@@ -691,7 +714,7 @@ class PostUpdate
        private static function update1383()
        {
                // Was the script completed?
-               if (DI::config()->get("system", "post_update_version") >= 1383) {
+               if (DI::config()->get('system', 'post_update_version') >= 1383) {
                        return true;
                }
 
@@ -717,7 +740,7 @@ class PostUpdate
                }
                DBA::close($photos);
 
-               DI::config()->set("system", "post_update_version", 1383);
+               DI::config()->set('system', 'post_update_version', 1383);
                Logger::info('Done', ['deleted' => $deleted]);
                return true;
        }
@@ -732,7 +755,7 @@ class PostUpdate
        private static function update1384()
        {
                // Was the script completed?
-               if (DI::config()->get("system", "post_update_version") >= 1384) {
+               if (DI::config()->get('system', 'post_update_version') >= 1384) {
                        return true;
                }
 
@@ -740,7 +763,7 @@ class PostUpdate
                Logger::info('Start', ['rest' => DBA::count('photo', $condition)]);
 
                $rows = 0;
-               $photos = DBA::select('photo', [], $condition, ['limit' => 10000]);
+               $photos = DBA::select('photo', [], $condition, ['limit' => 100]);
 
                if (DBA::errorNo() != 0) {
                        Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
@@ -762,7 +785,7 @@ class PostUpdate
                Logger::info('Processed', ['rows' => $rows]);
 
                if ($rows <= 100) {
-                       DI::config()->set("system", "post_update_version", 1384);
+                       DI::config()->set('system', 'post_update_version', 1384);
                        Logger::info('Done');
                        return true;
                }
@@ -771,7 +794,7 @@ class PostUpdate
        }
 
        /**
-        * update the "hash" field in the photo table
+        * update the "external-id" field in the post table
         *
         * @return bool "true" when the job is done
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@@ -780,12 +803,12 @@ class PostUpdate
        private static function update1400()
        {
                // Was the script completed?
-               if (DI::config()->get("system", "post_update_version") >= 1400) {
+               if (DI::config()->get('system', 'post_update_version') >= 1400) {
                        return true;
                }
 
                if (!DBStructure::existsTable('item')) {
-                       DI::config()->set("system", "post_update_version", 1400);
+                       DI::config()->set('system', 'post_update_version', 1400);
                        return true;
                }
 
@@ -809,11 +832,292 @@ class PostUpdate
                Logger::info('Processed', ['rows' => $rows]);
 
                if ($rows <= 100) {
-                       DI::config()->set("system", "post_update_version", 1400);
+                       DI::config()->set('system', 'post_update_version', 1400);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * update the "uri-id" field in the contact table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1424()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1424) {
+                       return true;
+               }
+
+               $condition = ["`uri-id` IS NULL"];
+               Logger::info('Start', ['rest' => DBA::count('contact', $condition)]);
+
+               $rows = 0;
+               $contacts = DBA::select('contact', ['id', 'url'], $condition, ['limit' => 1000]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($contact = DBA::fetch($contacts)) {
+                       DBA::update('contact', ['uri-id' => ItemURI::getIdByURI($contact['url'])], ['id' => $contact['id']]);
+                       ++$rows;
+               }
+               DBA::close($contacts);
+
+               Logger::info('Processed', ['rows' => $rows]);
+
+               if ($rows <= 100) {
+                       DI::config()->set('system', 'post_update_version', 1424);
                        Logger::info('Done');
                        return true;
                }
 
                return false;
        }
+
+       /**
+        * update the "uri-id" field in the fcontact table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1425()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1425) {
+                       return true;
+               }
+
+               $condition = ["`uri-id` IS NULL"];
+               Logger::info('Start', ['rest' => DBA::count('fcontact', $condition)]);
+
+               $rows = 0;
+               $fcontacts = DBA::select('fcontact', ['id', 'url', 'guid'], $condition, ['limit' => 1000]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($fcontact = DBA::fetch($fcontacts)) {
+                       if (!empty($fcontact['guid'])) {
+                               $uriid = ItemURI::insert(['uri' => $fcontact['url'], 'guid' => $fcontact['guid']]);
+                       } else {
+                               $uriid = ItemURI::getIdByURI($fcontact['url']);
+                       }
+                       DBA::update('fcontact', ['uri-id' => $uriid], ['id' => $fcontact['id']]);
+                       ++$rows;
+               }
+               DBA::close($fcontacts);
+
+               Logger::info('Processed', ['rows' => $rows]);
+
+               if ($rows <= 100) {
+                       DI::config()->set('system', 'post_update_version', 1425);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * update the "uri-id" field in the apcontact table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1426()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1426) {
+                       return true;
+               }
+
+               $condition = ["`uri-id` IS NULL"];
+               Logger::info('Start', ['rest' => DBA::count('apcontact', $condition)]);
+
+               $rows = 0;
+               $apcontacts = DBA::select('apcontact', ['url', 'uuid'], $condition, ['limit' => 1000]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($apcontact = DBA::fetch($apcontacts)) {
+                       if (!empty($apcontact['uuid'])) {
+                               $uriid = ItemURI::insert(['uri' => $apcontact['url'], 'guid' => $apcontact['uuid']]);
+                       } else {
+                               $uriid = ItemURI::getIdByURI($apcontact['url']);
+                       }
+                       DBA::update('apcontact', ['uri-id' => $uriid], ['url' => $apcontact['url']]);
+                       ++$rows;
+               }
+               DBA::close($apcontacts);
+
+               Logger::info('Processed', ['rows' => $rows]);
+
+               if ($rows <= 100) {
+                       DI::config()->set('system', 'post_update_version', 1426);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * update the "uri-id" field in the event table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1427()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1427) {
+                       return true;
+               }
+
+               $condition = ["`uri-id` IS NULL"];
+               Logger::info('Start', ['rest' => DBA::count('event', $condition)]);
+
+               $rows = 0;
+               $events = DBA::select('event', ['id', 'uri', 'guid'], $condition, ['limit' => 1000]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($event = DBA::fetch($events)) {
+                       if (!empty($event['guid'])) {
+                               $uriid = ItemURI::insert(['uri' => $event['uri'], 'guid' => $event['guid']]);
+                       } else {
+                               $uriid = ItemURI::getIdByURI($event['uri']);
+                       }
+                       DBA::update('event', ['uri-id' => $uriid], ['id' => $event['id']]);
+                       ++$rows;
+               }
+               DBA::close($events);
+
+               Logger::info('Processed', ['rows' => $rows]);
+
+               if ($rows <= 100) {
+                       DI::config()->set('system', 'post_update_version', 1427);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Fill the receivers of the post via the raw source
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1452()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1452) {
+                       return true;
+               }
+
+               $id = DI::config()->get('system', 'post_update_version_1452_id', 0);
+
+               Logger::info('Start', ['uri-id' => $id]);
+
+               $rows     = 0;
+               $received = '';
+
+               $conversations = DBA::p("SELECT `post-view`.`uri-id`, `conversation`.`source`, `conversation`.`received` FROM `conversation`
+                       INNER JOIN `post-view` ON `post-view`.`uri` = `conversation`.`item-uri`
+                       WHERE NOT `source` IS NULL AND `conversation`.`protocol` = ? AND `uri-id` > ? LIMIT ?",
+                       Conversation::PARCEL_ACTIVITYPUB, $id, 1000);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($conversation = DBA::fetch($conversations)) {
+                       $id       = $conversation['uri-id'];
+                       $received = $conversation['received'];
+
+                       $raw = json_decode($conversation['source'], true);
+                       if (empty($raw)) {
+                               continue;
+                       }
+                       $activity = JsonLD::compact($raw);
+
+                       $urls = Receiver::getReceiverURL($activity);
+                       Processor::storeReceivers($conversation['uri-id'], $urls);
+
+                       if (!empty($activity['as:object'])) {
+                               $urls = array_merge($urls, Receiver::getReceiverURL($activity['as:object']));
+                               Processor::storeReceivers($conversation['uri-id'], $urls);
+                       }
+                       ++$rows;
+               }
+
+               DBA::close($conversations);
+
+               DI::config()->set('system', 'post_update_version_1452_id', $id);
+
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id, 'last-received' => $received]);
+
+               if ($rows <= 100) {
+                       DI::config()->set('system', 'post_update_version', 1452);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Correct the parent.
+        * This fixes a bug that was introduced in the development of version 2022.09
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1483()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1483) {
+                       return true;
+               }
+
+               Logger::info('Start');
+
+               $posts = DBA::select('post-view', ['uri-id'], ['conversation' => './']);
+               while ($post = DBA::fetch($posts)) {
+                       $parent = Item::getParent($post['uri-id']);
+                       if ($parent != 0) {
+                               DBA::update('post', ['parent-uri-id' => $parent], ['uri-id' => $post['uri-id']]);
+                               DBA::update('post-user', ['parent-uri-id' => $parent], ['uri-id' => $post['uri-id']]);
+                       }
+               }
+               DBA::close($posts);
+
+               DI::config()->set('system', 'post_update_version', 1483);
+               Logger::info('Done');
+               return true;
+       }
 }