]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/PostUpdate.php
Issue 10768: Avoid MySQL problems when upgrading both index and structure
[friendica.git] / src / Database / PostUpdate.php
index 416dc92243798d5a445d186ea3d382b762e19729..aa657b0233d9d818167887aa08c26646d9207943 100644 (file)
 <?php
 /**
- * @file src/Database/PostUpdate.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Database;
 
-use Friendica\Core\Config;
-use Friendica\Database\DBM;
+use Friendica\Core\Logger;
+use Friendica\Core\Protocol;
+use Friendica\DI;
 use Friendica\Model\Contact;
+use Friendica\Model\GServer;
 use Friendica\Model\Item;
-use Friendica\Model\PermissionSet;
-use dba;
-
-require_once 'include/dba.php';
+use Friendica\Model\ItemURI;
+use Friendica\Model\Photo;
+use Friendica\Model\Post;
+use Friendica\Model\Post\Category;
+use Friendica\Model\Tag;
+use Friendica\Model\Verb;
+use Friendica\Util\Strings;
 
 /**
- * Post update functions
+ * These database-intensive post update routines are meant to be executed in the background by the cronjob.
+ *
+ * If there is a need for a intensive migration after a database structure change, update this file
+ * by adding a new method at the end with the number of the new DB_UPDATE_VERSION.
  */
 class PostUpdate
 {
+       // Needed for the helper function to read from the legacy term table
+       const OBJECT_TYPE_POST  = 1;
+
+       const VERSION = 1427;
+
        /**
-        * @brief Calls the post update functions
+        * Calls the post update functions
         */
        public static function update()
        {
-               if (!self::update1194()) {
-                       return;
+               if (!self::update1297()) {
+                       return false;
+               }
+               if (!self::update1322()) {
+                       return false;
+               }
+               if (!self::update1329()) {
+                       return false;
+               }
+               if (!self::update1341()) {
+                       return false;
+               }
+               if (!self::update1342()) {
+                       return false;
+               }
+               if (!self::update1345()) {
+                       return false;
+               }
+               if (!self::update1346()) {
+                       return false;
+               }
+               if (!self::update1347()) {
+                       return false;
+               }
+               if (!self::update1348()) {
+                       return false;
                }
-               if (!self::update1198()) {
-                       return;
+               if (!self::update1349()) {
+                       return false;
+               }
+               if (!self::update1383()) {
+                       return false;
                }
-               if (!self::update1206()) {
-                       return;
+               if (!self::update1384()) {
+                       return false;
                }
-               if (!self::update1278()) {
-                       return;
+               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;
+               }
+               return true;
        }
 
        /**
-        * @brief Updates the "global" field in the item table
+        * 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 update1194()
+       private static function update1297()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1194) {
+               if (DI::config()->get('system', 'post_update_version') >= 1297) {
                        return true;
                }
 
-               logger("Start", LOGGER_DEBUG);
+               if (!DBStructure::existsTable('item-delivery-data')) {
+                       DI::config()->set('system', 'post_update_version', 1297);
+                       return true;
+               }
 
-               $end_id = Config::get("system", "post_update_1194_end");
-               if (!$end_id) {
-                       $r = q("SELECT `id` FROM `item` WHERE `uid` != 0 ORDER BY `id` DESC LIMIT 1");
-                       if ($r) {
-                               Config::set("system", "post_update_1194_end", $r[0]["id"]);
-                               $end_id = Config::get("system", "post_update_1194_end");
-                       }
+               $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'];
+
+               Logger::info('Start update1297 with max iid: ' . $max_iid);
+
+               $condition = ['`queue_count` = 0 AND `iid` < ?', $max_iid];
+
+               DBA::update('item-delivery-data', ['queue_count' => -1], $condition);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error ' . DBA::errorNo() . ':' . DBA::errorMessage());
+                       return false;
                }
 
-               logger("End ID: ".$end_id, LOGGER_DEBUG);
+               Logger::info('Processed rows: ' . DBA::affectedRows());
 
-               $start_id = Config::get("system", "post_update_1194_start");
+               DI::config()->set('system', 'post_update_version', 1297);
 
-               $query1 = "SELECT `item`.`id` FROM `item` ";
+               Logger::info('Done');
 
-               $query2 = "INNER JOIN `item` AS `shadow` ON `item`.`uri` = `shadow`.`uri` AND `shadow`.`uid` = 0 ";
+               return true;
+       }
+       /**
+        * Remove contact duplicates
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function update1322()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1322) {
+                       return true;
+               }
+
+               Logger::info('Start');
 
-               $query3 = "WHERE `item`.`uid` != 0 AND `item`.`id` >= %d AND `item`.`id` <= %d
-                               AND `item`.`visible` AND NOT `item`.`private`
-                               AND NOT `item`.`deleted` AND NOT `item`.`moderated`
-                               AND `item`.`network` IN ('%s', '%s', '%s', '')
-                               AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
-                               AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
-                               AND NOT `item`.`global`";
+               $contacts = DBA::p("SELECT `nurl`, `uid` 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` IN (?, ?, ?) AND NOT `deleted`)
+                       AND (`network` IN (?, ?, ?) OR (`uid` = ?)) AND NOT `deleted` GROUP BY `nurl`, `uid`",
+                       Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB,
+                       Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB, 0);
 
-               $r = q($query1.$query2.$query3."  ORDER BY `item`.`id` LIMIT 1",
-                       intval($start_id), intval($end_id),
-                       dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
-               if (!$r) {
-                       Config::set("system", "post_update_version", 1194);
-                       logger("Update is done", LOGGER_DEBUG);
+               while ($contact = DBA::fetch($contacts)) {
+                       Logger::info('Remove duplicates', ['nurl' => $contact['nurl'], 'uid' => $contact['uid']]);
+                       Contact::removeDuplicates($contact['nurl'], $contact['uid']);
+               }
+
+               DBA::close($contact);
+               DI::config()->set('system', 'post_update_version', 1322);
+
+               Logger::info('Done');
+
+               return true;
+       }
+
+       /**
+        * update user notification data
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function update1329()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1329) {
                        return true;
-               } else {
-                       Config::set("system", "post_update_1194_start", $r[0]["id"]);
-                       $start_id = Config::get("system", "post_update_1194_start");
                }
 
-               logger("Start ID: ".$start_id, LOGGER_DEBUG);
+               if (!DBStructure::existsTable('item')) {
+                       DI::config()->set('system', 'post_update_version', 1329);
+                       return true;
+               }
+
+               $id = DI::config()->get('system', 'post_update_version_1329_id', 0);
+
+               Logger::info('Start', ['item' => $id]);
+
+               $start_id = $id;
+               $rows = 0;
+               $condition = ["`id` > ?", $id];
+               $params = ['order' => ['id'], 'limit' => 10000];
+               $items = DBA::select('item', ['id', 'uri-id', 'uid'], $condition, $params);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($item = DBA::fetch($items)) {
+                       $id = $item['id'];
+
+                       Post\UserNotification::setNotification($item['uri-id'], $item['uid']);
 
-               $r = q($query1.$query2.$query3."  ORDER BY `item`.`id` LIMIT 1000,1",
-                       intval($start_id), intval($end_id),
-                       dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
-               if ($r) {
-                       $pos_id = $r[0]["id"];
-               } else {
-                       $pos_id = $end_id;
+                       ++$rows;
                }
-               logger("Progress: Start: ".$start_id." position: ".$pos_id." end: ".$end_id, LOGGER_DEBUG);
+               DBA::close($items);
+
+               DI::config()->set('system', 'post_update_version_1329_id', $id);
 
-               q("UPDATE `item` ".$query2." SET `item`.`global` = 1 ".$query3,
-                       intval($start_id), intval($pos_id),
-                       dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
 
-               logger("Done", LOGGER_DEBUG);
+               if ($start_id == $id) {
+                       DI::config()->set('system', 'post_update_version', 1329);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
        }
 
        /**
-        * @brief set the author-id and owner-id in all item entries
+        * Fill the "tag" table with tags and mentions from the body
         *
-        * This job has to be started multiple times until all entries are set.
-        * It isn't started in the update function since it would consume too much time and can be done in the background.
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function update1341()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1341) {
+                       return true;
+               }
+
+               if (!DBStructure::existsTable('item-content')) {
+                       DI::config()->set('system', 'post_update_version', 1342);
+                       return true;
+               }
+
+               $id = DI::config()->get('system', 'post_update_version_1341_id', 0);
+
+               Logger::info('Start', ['item' => $id]);
+
+               $rows = 0;
+
+               $items = DBA::p("SELECT `uri-id`,`body` FROM `item-content` WHERE
+                       (`body` LIKE ? OR `body` LIKE ? OR `body` LIKE ?) AND `uri-id` >= ?
+                       ORDER BY `uri-id` LIMIT 100000", '%#%', '%@%', '%!%', $id);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($item = DBA::fetch($items)) {
+                       Tag::storeFromBody($item['uri-id'], $item['body'], '#!@', false);
+                       $id = $item['uri-id'];
+                       ++$rows;
+                       if ($rows % 1000 == 0) {
+                               DI::config()->set('system', 'post_update_version_1341_id', $id);
+                       }
+               }
+               DBA::close($items);
+
+               DI::config()->set('system', 'post_update_version_1341_id', $id);
+
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
+
+               // When there are less than 1,000 items processed this means that we reached the end
+               // The other entries will then be processed with the regular functionality
+               if ($rows < 1000) {
+                       DI::config()->set('system', 'post_update_version', 1341);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Fill the "tag" table with tags and mentions from the "term" table
         *
         * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       private static function update1198()
+       private static function update1342()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1198) {
+               if (DI::config()->get('system', 'post_update_version') >= 1342) {
+                       return true;
+               }
+
+               if (!DBStructure::existsTable('term') || !DBStructure::existsTable('item-content')) {
+                       DI::config()->set('system', 'post_update_version', 1342);
                        return true;
                }
 
-               logger("Start", LOGGER_DEBUG);
+               $id = DI::config()->get('system', 'post_update_version_1342_id', 0);
 
-               // Check if the first step is done (Setting "author-id" and "owner-id" in the item table)
-               $fields = ['author-link', 'author-name', 'author-avatar', 'owner-link', 'owner-name', 'owner-avatar', 'network', 'uid'];
-               $r = dba::select('item', $fields, ['author-id' => 0, 'owner-id' => 0], ['limit' => 1000]);
-               if (!$r) {
-                       // Are there unfinished entries in the thread table?
-                       $r = q("SELECT COUNT(*) AS `total` FROM `thread`
-                               INNER JOIN `item` ON `item`.`id` =`thread`.`iid`
-                               WHERE `thread`.`author-id` = 0 AND `thread`.`owner-id` = 0 AND
-                                       (`thread`.`uid` IN (SELECT `uid` from `user`) OR `thread`.`uid` = 0)");
+               Logger::info('Start', ['item' => $id]);
 
-                       if ($r && ($r[0]["total"] == 0)) {
-                               Config::set("system", "post_update_version", 1198);
-                               logger("Done", LOGGER_DEBUG);
-                               return true;
+               $rows = 0;
+
+               $terms = DBA::p("SELECT `term`.`tid`, `item`.`uri-id`, `term`.`type`, `term`.`term`, `term`.`url`, `item-content`.`body`
+                       FROM `term`
+                       INNER JOIN `item` ON `item`.`id` = `term`.`oid`
+                       INNER JOIN `item-content` ON `item-content`.`uri-id` = `item`.`uri-id`
+                       WHERE term.type IN (?, ?, ?, ?) AND `tid` >= ? ORDER BY `tid` LIMIT 100000",
+                       Tag::HASHTAG, Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION, $id);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($term = DBA::fetch($terms)) {
+                       if (($term['type'] == Tag::MENTION) && !empty($term['url']) && !strstr($term['body'], $term['url'])) {
+                $condition = ['nurl' => Strings::normaliseLink($term['url']), 'uid' => 0, 'deleted' => false];
+                $contact = DBA::selectFirst('contact', ['url', 'alias'], $condition, ['order' => ['id']]);
+                if (!DBA::isResult($contact)) {
+                        $ssl_url = str_replace('http://', 'https://', $term['url']);
+                        $condition = ['`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`', $term['url'], Strings::normaliseLink($term['url']), $ssl_url, 0];
+                        $contact = DBA::selectFirst('contact', ['url', 'alias'], $condition, ['order' => ['id']]);
+                }
+
+                if (DBA::isResult($contact) && (!strstr($term['body'], $contact['url']) && (empty($contact['alias']) || !strstr($term['body'], $contact['alias'])))) {
+                        $term['type'] = Tag::IMPLICIT_MENTION;
+                }
                        }
 
-                       // Update the thread table from the item table
-                       $r = q("UPDATE `thread` INNER JOIN `item` ON `item`.`id`=`thread`.`iid`
-                                       SET `thread`.`author-id` = `item`.`author-id`,
-                                       `thread`.`owner-id` = `item`.`owner-id`
-                               WHERE `thread`.`author-id` = 0 AND `thread`.`owner-id` = 0 AND
-                                       (`thread`.`uid` IN (SELECT `uid` from `user`) OR `thread`.`uid` = 0)");
-
-                       logger("Updated threads", LOGGER_DEBUG);
-                       if (DBM::is_result($r)) {
-                               Config::set("system", "post_update_version", 1198);
-                               logger("Done", LOGGER_DEBUG);
-                               return true;
+                       Tag::store($term['uri-id'], $term['type'], $term['term'], $term['url'], false);
+
+                       $id = $term['tid'];
+                       ++$rows;
+                       if ($rows % 1000 == 0) {
+                               DI::config()->set('system', 'post_update_version_1342_id', $id);
                        }
+               }
+               DBA::close($terms);
+
+               DI::config()->set('system', 'post_update_version_1342_id', $id);
+
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
+
+               // When there are less than 1,000 items processed this means that we reached the end
+               // The other entries will then be processed with the regular functionality
+               if ($rows < 1000) {
+                       DI::config()->set('system', 'post_update_version', 1342);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Fill the "post-delivery-data" table with data from the "item-delivery-data" table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function update1345()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1345) {
+                       return true;
+               }
+
+               if (!DBStructure::existsTable('item-delivery-data')) {
+                       DI::config()->set('system', 'post_update_version', 1345);
+                       return true;
+               }
+
+               $id = DI::config()->get('system', 'post_update_version_1345_id', 0);
+
+               Logger::info('Start', ['item' => $id]);
+
+               $rows = 0;
+
+               $deliveries = DBA::p("SELECT `uri-id`, `iid`, `item-delivery-data`.`postopts`, `item-delivery-data`.`inform`,
+                       `queue_count`, `queue_done`, `activitypub`, `dfrn`, `diaspora`, `ostatus`, `legacy_dfrn`, `queue_failed`
+                       FROM `item-delivery-data`
+                       INNER JOIN `item` ON `item`.`id` = `item-delivery-data`.`iid`
+                       WHERE `iid` >= ? ORDER BY `iid` LIMIT 10000", $id);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
                        return false;
                }
 
-               logger("Query done", LOGGER_DEBUG);
+               while ($delivery = DBA::fetch($deliveries)) {
+                       $id = $delivery['iid'];
+                       unset($delivery['iid']);
+                       DBA::insert('post-delivery-data', $delivery, Database::INSERT_UPDATE);
+                       ++$rows;
+               }
+               DBA::close($deliveries);
+
+               DI::config()->set('system', 'post_update_version_1345_id', $id);
+
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
+
+               // When there are less than 100 items processed this means that we reached the end
+               // The other entries will then be processed with the regular functionality
+               if ($rows < 100) {
+                       DI::config()->set('system', 'post_update_version', 1345);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
 
-               $item_arr = [];
-               foreach ($r as $item) {
-                       $index = $item["author-link"]."-".$item["owner-link"]."-".$item["uid"];
-                       $item_arr[$index] = ["author-link" => $item["author-link"],
-                                                       "owner-link" => $item["owner-link"],
-                                                       "uid" => $item["uid"]];
+       /**
+        * Generates the legacy item.file field string from an item ID.
+        * Includes only file and category terms.
+        *
+        * @param int $item_id
+        * @return string
+        * @throws \Exception
+        */
+       private static function fileTextFromItemId($item_id)
+       {
+               $file_text = '';
+
+               $condition = ['otype' => self::OBJECT_TYPE_POST, 'oid' => $item_id, 'type' => [Category::FILE, Category::CATEGORY]];
+               $tags = DBA::selectToArray('term', ['type', 'term', 'url'], $condition);
+               foreach ($tags as $tag) {
+                       if ($tag['type'] == Category::CATEGORY) {
+                               $file_text .= '<' . $tag['term'] . '>';
+                       } else {
+                               $file_text .= '[' . $tag['term'] . ']';
+                       }
                }
 
-               // Set the "author-id" and "owner-id" in the item table and add a new public contact entry if needed
-               foreach ($item_arr as $item) {
-                       $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
-                               'photo' => $item['author-avatar'], 'network' => $item['network']];
-                       $author_id = Contact::getIdForURL($item["author-link"], 0, false, $default);
+               return $file_text;
+       }
+
+       /**
+        * Fill the "tag" table with tags and mentions from the "term" table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function update1346()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1346) {
+                       return true;
+               }
+
+               if (!DBStructure::existsTable('term')) {
+                       DI::config()->set('system', 'post_update_version', 1346);
+                       return true;
+               }
+
+               $id = DI::config()->get('system', 'post_update_version_1346_id', 0);
+
+               Logger::info('Start', ['item' => $id]);
+
+               $rows = 0;
+
+               $terms = DBA::select('term', ['oid'],
+                       ["`type` IN (?, ?) AND `oid` >= ?", Category::CATEGORY, Category::FILE, $id],
+                       ['order' => ['oid'], 'limit' => 1000, 'group_by' => ['oid']]);
 
-                       $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
-                               'photo' => $item['owner-avatar'], 'network' => $item['network']];
-                       $owner_id = Contact::getIdForURL($item["owner-link"], 0, false, $default);
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
 
-                       if ($author_id == 0) {
-                               $author_id = -1;
+               while ($term = DBA::fetch($terms)) {
+                       $item = Post::selectFirst(['uri-id', 'uid'], ['id' => $term['oid']]);
+                       if (!DBA::isResult($item)) {
+                               continue;
                        }
-                       if ($owner_id == 0) {
-                               $owner_id = -1;
+
+                       $file = self::fileTextFromItemId($term['oid']);
+                       if (!empty($file)) {
+                               Category::storeTextByURIId($item['uri-id'], $item['uid'], $file);
+                       }
+
+                       $id = $term['oid'];
+                       ++$rows;
+                       if ($rows % 100 == 0) {
+                               DI::config()->set('system', 'post_update_version_1346_id', $id);
                        }
-                       dba::update('item', ['author-id' => $author_id, 'owner-id' => $owner_id], ['uid' => $item['uid'], 'author-link' => $item['author-link'], 'owner-link' => $item['owner-link'], 'author-id' => 0, 'owner-id' => 0]);
+               }
+               DBA::close($terms);
+
+               DI::config()->set('system', 'post_update_version_1346_id', $id);
+
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
+
+               // When there are less than 10 items processed this means that we reached the end
+               // The other entries will then be processed with the regular functionality
+               if ($rows < 10) {
+                       DI::config()->set('system', 'post_update_version', 1346);
+                       Logger::info('Done');
+                       return true;
                }
 
-               logger("Updated items", LOGGER_DEBUG);
                return false;
        }
 
        /**
-        * @brief update the "last-item" field in the "self" contact
-        *
-        * This field avoids cost intensive calls in the admin panel and in "nodeinfo"
+        * update the "vid" (verb) field in the item table
         *
         * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
         */
-       private static function update1206()
+       private static function update1347()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1206) {
+               if (DI::config()->get("system", "post_update_version") >= 1347) {
                        return true;
                }
 
-               logger("Start", LOGGER_DEBUG);
-               $r = q("SELECT `contact`.`id`, `contact`.`last-item`,
-                       (SELECT MAX(`changed`) FROM `item` USE INDEX (`uid_wall_changed`) WHERE `wall` AND `uid` = `user`.`uid`) AS `lastitem_date`
-                       FROM `user`
-                       INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`");
+               if (!DBStructure::existsTable('item-activity') || !DBStructure::existsTable('item')) {
+                       DI::config()->set('system', 'post_update_version', 1347);
+                       return true;
+               }
+
+               $id = DI::config()->get("system", "post_update_version_1347_id", 0);
+
+               Logger::info('Start', ['item' => $id]);
+
+               $start_id = $id;
+               $rows = 0;
+
+               $items = DBA::p("SELECT `item`.`id`, `item`.`verb` AS `item-verb`, `item-content`.`verb`, `item-activity`.`activity`
+                       FROM `item` LEFT JOIN `item-content` ON `item-content`.`uri-id` = `item`.`uri-id`
+                       LEFT JOIN `item-activity` ON `item-activity`.`uri-id` = `item`.`uri-id` AND `item`.`gravity` = ?
+                       WHERE `item`.`id` >= ? AND `item`.`vid` IS NULL ORDER BY `item`.`id` LIMIT 10000", GRAVITY_ACTIVITY, $id);
 
-               if (!DBM::is_result($r)) {
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
                        return false;
                }
-               foreach ($r as $user) {
-                       if (!empty($user["lastitem_date"]) && ($user["lastitem_date"] > $user["last-item"])) {
-                               dba::update('contact', ['last-item' => $user['lastitem_date']], ['id' => $user['id']]);
+
+               while ($item = DBA::fetch($items)) {
+                       $id = $item['id'];
+                       $verb = $item['item-verb'];
+                       if (empty($verb)) {
+                               $verb = $item['verb'];
+                       }
+                       if (empty($verb) && is_int($item['activity'])) {
+                               $verb = Item::ACTIVITIES[$item['activity']];
                        }
+                       if (empty($verb)) {
+                               continue;
+                       }
+
+                       DBA::update('item', ['vid' => Verb::getID($verb)], ['id' => $item['id']]);
+                       ++$rows;
                }
+               DBA::close($items);
 
-               Config::set("system", "post_update_version", 1206);
-               logger("Done", LOGGER_DEBUG);
-               return true;
+               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);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
        }
 
        /**
-        * @brief update the item related tables
+        * update the "gsid" (global server id) field in the contact table
         *
         * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
         */
-       private static function update1278()
+       private static function update1348()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1278) {
+               if (DI::config()->get("system", "post_update_version") >= 1348) {
                        return true;
                }
 
-               $id = Config::get("system", "post_update_version_1278_id", 0);
-
-               logger("Start from item " . $id, LOGGER_DEBUG);
+               $id = DI::config()->get("system", "post_update_version_1348_id", 0);
 
-               $fields = array_merge(Item::MIXED_CONTENT_FIELDLIST, ['network', 'author-id', 'owner-id', 'tag', 'file',
-                       'author-name', 'author-avatar', 'author-link', 'owner-name', 'owner-avatar', 'owner-link', 'id',
-                       'uid', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'psid', 'post-type', 'bookmark', 'type']);
+               Logger::info('Start', ['contact' => $id]);
 
                $start_id = $id;
                $rows = 0;
-               $condition = ["`id` > ?", $id];
+               $condition = ["`id` > ? AND `gsid` IS NULL AND `baseurl` != '' AND NOT `baseurl` IS NULL", $id];
                $params = ['order' => ['id'], 'limit' => 10000];
-               $items = Item::select($fields, $condition, $params);
-               while ($item = Item::fetch($items)) {
-                       $id = $item['id'];
+               $contacts = DBA::select('contact', ['id', 'baseurl'], $condition, $params);
 
-                       if (empty($item['author-id'])) {
-                               $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
-                                       'photo' => $item['author-avatar'], 'network' => $item['network']];
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
 
-                               $item['author-id'] = Contact::getIdForURL($item["author-link"], 0, false, $default);
-                       }
+               while ($contact = DBA::fetch($contacts)) {
+                       $id = $contact['id'];
 
-                       if (empty($item['owner-id'])) {
-                               $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
-                                       'photo' => $item['owner-avatar'], 'network' => $item['network']];
+                       DBA::update('contact',
+                               ['gsid' => GServer::getID($contact['baseurl'], true), 'baseurl' => GServer::cleanURL($contact['baseurl'])],
+                               ['id' => $contact['id']]);
 
-                               $item['owner-id'] = Contact::getIdForURL($item["owner-link"], 0, false, $default);
+                       ++$rows;
+               }
+               DBA::close($contacts);
+
+               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);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * update the "gsid" (global server id) field in the apcontact table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1349()
+       {
+               // Was the script completed?
+               if (DI::config()->get("system", "post_update_version") >= 1349) {
+                       return true;
+               }
+
+               $id = DI::config()->get("system", "post_update_version_1349_id", '');
+
+               Logger::info('Start', ['apcontact' => $id]);
+
+               $start_id = $id;
+               $rows = 0;
+               $condition = ["`url` > ? AND `gsid` IS NULL AND `baseurl` != '' AND NOT `baseurl` IS NULL", $id];
+               $params = ['order' => ['url'], 'limit' => 10000];
+               $apcontacts = DBA::select('apcontact', ['url', 'baseurl'], $condition, $params);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($apcontact = DBA::fetch($apcontacts)) {
+                       $id = $apcontact['url'];
+
+                       DBA::update('apcontact',
+                               ['gsid' => GServer::getID($apcontact['baseurl'], true), 'baseurl' => GServer::cleanURL($apcontact['baseurl'])],
+                               ['url' => $apcontact['url']]);
+
+                       ++$rows;
+               }
+               DBA::close($apcontacts);
+
+               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);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Remove orphaned photo entries
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1383()
+       {
+               // Was the script completed?
+               if (DI::config()->get("system", "post_update_version") >= 1383) {
+                       return true;
+               }
+
+               Logger::info('Start');
+
+               $deleted = 0;
+               $avatar = [4 => 'photo', 5 => 'thumb', 6 => 'micro'];
+
+               $photos = DBA::select('photo', ['id', 'contact-id', 'resource-id', 'scale'], ["`contact-id` != ? AND `album` = ?", 0, Photo::CONTACT_PHOTOS]);
+               while ($photo = DBA::fetch($photos)) {
+                       $delete = !in_array($photo['scale'], [4, 5, 6]);
+
+                       if (!$delete) {
+                               // Check if there is a contact entry with that photo
+                               $delete = !DBA::exists('contact', ["`id` = ? AND `" . $avatar[$photo['scale']] . "` LIKE ?",
+                                       $photo['contact-id'], '%' . $photo['resource-id'] . '%']);
                        }
 
-                       if (empty($item['psid'])) {
-                               $item['psid'] = PermissionSet::fetchIDForPost($item);
+                       if ($delete) {
+                               Photo::delete(['id' => $photo['id']]);
+                               $deleted++;
                        }
+               }
+               DBA::close($photos);
+
+               DI::config()->set("system", "post_update_version", 1383);
+               Logger::info('Done', ['deleted' => $deleted]);
+               return true;
+       }
+
+       /**
+        * update the "hash" field in the photo table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1384()
+       {
+               // Was the script completed?
+               if (DI::config()->get("system", "post_update_version") >= 1384) {
+                       return true;
+               }
 
-                       if ($item['post-type'] == 0) {
-                               if (!empty($item['type']) && ($item['type'] == 'note')) {
-                                       $item['post-type'] = Item::PT_PERSONAL_NOTE;
-                               } elseif (!empty($item['type']) && ($item['type'] == 'photo')) {
-                                       $item['post-type'] = Item::PT_IMAGE;
-                               } elseif (!empty($item['bookmark']) && $item['bookmark']) {
-                                       $item['post-type'] = Item::PT_PAGE;
-                               }
+               $condition = ["`hash` IS NULL"];
+               Logger::info('Start', ['rest' => DBA::count('photo', $condition)]);
+
+               $rows = 0;
+               $photos = DBA::select('photo', [], $condition, ['limit' => 100]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($photo = DBA::fetch($photos)) {
+                       $img = Photo::getImageForPhoto($photo);
+                       if (!empty($img)) {
+                               $md5 = md5($img->asString());
+                       } else {
+                               $md5 = '';
                        }
+                       DBA::update('photo', ['hash' => $md5], ['id' => $photo['id']]);
+                       ++$rows;
+               }
+               DBA::close($photos);
+
+               Logger::info('Processed', ['rows' => $rows]);
+
+               if ($rows <= 100) {
+                       DI::config()->set("system", "post_update_version", 1384);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * update the "external-id" field in the post table
+        *
+        * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       private static function update1400()
+       {
+               // Was the script completed?
+               if (DI::config()->get("system", "post_update_version") >= 1400) {
+                       return true;
+               }
+
+               if (!DBStructure::existsTable('item')) {
+                       DI::config()->set("system", "post_update_version", 1400);
+                       return true;
+               }
 
-                       Item::update($item, ['id' => $id]);
+               $condition = ["`extid` != ? AND EXISTS(SELECT `id` FROM `post-user` WHERE `uri-id` = `item`.`uri-id` AND `uid` = `item`.`uid` AND `external-id` IS NULL)", ''];
+               Logger::info('Start', ['rest' => DBA::count('item', $condition)]);
 
+               $rows = 0;
+               $items = DBA::select('item', ['uri-id', 'uid', 'extid'], $condition, ['order' => ['id'], 'limit' => 10000]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($item = DBA::fetch($items)) {
+                       Post::update(['external-id' => ItemURI::getIdByURI($item['extid'])], ['uri-id' => $item['uri-id'], 'uid' => $item['uid']]);
                        ++$rows;
                }
-               dba::close($items);
+               DBA::close($items);
+
+               Logger::info('Processed', ['rows' => $rows]);
 
-               Config::set("system", "post_update_version_1278_id", $id);
+               if ($rows <= 100) {
+                       DI::config()->set("system", "post_update_version", 1400);
+                       Logger::info('Done');
+                       return true;
+               }
 
-               logger("Processed rows: " . $rows . " - last processed item:  " . $id, LOGGER_DEBUG);
+               return false;
+       }
 
-               if ($start_id == $id) {
-                       Config::set("system", "post_update_version", 1278);
-                       logger("Done", LOGGER_DEBUG);
+       /**
+        * 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;
                }