]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/PostUpdate.php
The "term" table is removed
[friendica.git] / src / Database / PostUpdate.php
index 2e3af8597b2e50ab9a75f16444807cdac521aa63..73ac374accd130f78518859863b65c17551e872e 100644 (file)
@@ -1,24 +1,52 @@
 <?php
 /**
- * @file src/Database/PostUpdate.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\Core\Logger;
 use Friendica\Core\Protocol;
+use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Item;
 use Friendica\Model\ItemURI;
 use Friendica\Model\PermissionSet;
+use Friendica\Model\Post\Category;
+use Friendica\Model\Tag;
+use Friendica\Model\UserItem;
+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;
+
        /**
-        * @brief Calls the post update functions
+        * Calls the post update functions
         */
        public static function update()
        {
@@ -40,12 +68,30 @@ class PostUpdate
                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;
+               }
 
                return true;
        }
 
        /**
-        * @brief Updates the "global" field in the item table
+        * Updates the "global" field in the item table
         *
         * @return bool "true" when the job is done
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@@ -53,24 +99,24 @@ class PostUpdate
        private static function update1194()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1194) {
+               if (DI::config()->get("system", "post_update_version") >= 1194) {
                        return true;
                }
 
                Logger::log("Start", Logger::DEBUG);
 
-               $end_id = Config::get("system", "post_update_1194_end");
+               $end_id = DI::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");
+                               DI::config()->set("system", "post_update_1194_end", $r[0]["id"]);
+                               $end_id = DI::config()->get("system", "post_update_1194_end");
                        }
                }
 
                Logger::log("End ID: ".$end_id, Logger::DEBUG);
 
-               $start_id = Config::get("system", "post_update_1194_start");
+               $start_id = DI::config()->get("system", "post_update_1194_start");
 
                $query1 = "SELECT `item`.`id` FROM `item` ";
 
@@ -86,12 +132,12 @@ class PostUpdate
                        intval($start_id), intval($end_id),
                        DBA::escape(Protocol::DFRN), DBA::escape(Protocol::DIASPORA), DBA::escape(Protocol::OSTATUS));
                if (!$r) {
-                       Config::set("system", "post_update_version", 1194);
+                       DI::config()->set("system", "post_update_version", 1194);
                        Logger::log("Update is done", Logger::DEBUG);
                        return true;
                } else {
-                       Config::set("system", "post_update_1194_start", $r[0]["id"]);
-                       $start_id = Config::get("system", "post_update_1194_start");
+                       DI::config()->set("system", "post_update_1194_start", $r[0]["id"]);
+                       $start_id = DI::config()->get("system", "post_update_1194_start");
                }
 
                Logger::log("Start ID: ".$start_id, Logger::DEBUG);
@@ -114,7 +160,7 @@ class PostUpdate
        }
 
        /**
-        * @brief update the "last-item" field in the "self" contact
+        * update the "last-item" field in the "self" contact
         *
         * This field avoids cost intensive calls in the admin panel and in "nodeinfo"
         *
@@ -124,7 +170,7 @@ class PostUpdate
        private static function update1206()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1206) {
+               if (DI::config()->get("system", "post_update_version") >= 1206) {
                        return true;
                }
 
@@ -143,13 +189,13 @@ class PostUpdate
                        }
                }
 
-               Config::set("system", "post_update_version", 1206);
+               DI::config()->set("system", "post_update_version", 1206);
                Logger::log("Done", Logger::DEBUG);
                return true;
        }
 
        /**
-        * @brief update the item related tables
+        * update the item related tables
         *
         * @return bool "true" when the job is done
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@@ -158,11 +204,11 @@ class PostUpdate
        private static function update1279()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1279) {
+               if (DI::config()->get("system", "post_update_version") >= 1279) {
                        return true;
                }
 
-               $id = Config::get("system", "post_update_version_1279_id", 0);
+               $id = DI::config()->get("system", "post_update_version_1279_id", 0);
 
                Logger::log("Start from item " . $id, Logger::DEBUG);
 
@@ -200,14 +246,20 @@ class PostUpdate
                        }
 
                        if (empty($item['psid'])) {
-                               $item['psid'] = PermissionSet::fetchIDForPost($item);
-                       } else {
-                               $item['allow_cid'] = null;
-                               $item['allow_gid'] = null;
-                               $item['deny_cid'] = null;
-                               $item['deny_gid'] = null;
+                               $item['psid'] = PermissionSet::getIdFromACL(
+                                       $item['uid'],
+                                       $item['allow_cid'],
+                                       $item['allow_gid'],
+                                       $item['deny_cid'],
+                                       $item['deny_gid']
+                               );
                        }
 
+                       $item['allow_cid'] = null;
+                       $item['allow_gid'] = null;
+                       $item['deny_cid'] = null;
+                       $item['deny_gid'] = null;
+
                        if ($item['post-type'] == 0) {
                                if (!empty($item['type']) && ($item['type'] == 'note')) {
                                        $item['post-type'] = Item::PT_PERSONAL_NOTE;
@@ -231,7 +283,7 @@ class PostUpdate
                }
                DBA::close($items);
 
-               Config::set("system", "post_update_version_1279_id", $id);
+               DI::config()->set("system", "post_update_version_1279_id", $id);
 
                Logger::log("Processed rows: " . $rows . " - last processed item:  " . $id, Logger::DEBUG);
 
@@ -250,7 +302,7 @@ class PostUpdate
                                DBA::update('item', $fields, $condition);
                        }
 
-                       Config::set("system", "post_update_version", 1279);
+                       DI::config()->set("system", "post_update_version", 1279);
                        Logger::log("Done", Logger::DEBUG);
                        return true;
                }
@@ -301,7 +353,7 @@ class PostUpdate
        }
 
        /**
-        * @brief update item-uri data. Prerequisite for the next item structure update.
+        * update item-uri data. Prerequisite for the next item structure update.
         *
         * @return bool "true" when the job is done
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@@ -309,11 +361,11 @@ class PostUpdate
        private static function update1281()
        {
                // Was the script completed?
-               if (Config::get("system", "post_update_version") >= 1281) {
+               if (DI::config()->get("system", "post_update_version") >= 1281) {
                        return true;
                }
 
-               $id = Config::get("system", "post_update_version_1281_id", 0);
+               $id = DI::config()->get("system", "post_update_version_1281_id", 0);
 
                Logger::log("Start from item " . $id, Logger::DEBUG);
 
@@ -365,7 +417,7 @@ class PostUpdate
                }
                DBA::close($items);
 
-               Config::set("system", "post_update_version_1281_id", $id);
+               DI::config()->set("system", "post_update_version_1281_id", $id);
 
                Logger::log("Processed rows: " . $rows . " - last processed item:  " . $id, Logger::DEBUG);
 
@@ -376,7 +428,7 @@ class PostUpdate
                        Logger::log("Updating item-uri in item-content", Logger::DEBUG);
                        DBA::e("UPDATE `item-content` INNER JOIN `item-uri` ON `item-uri`.`uri` = `item-content`.`uri` SET `item-content`.`uri-id` = `item-uri`.`id` WHERE `item-content`.`uri-id` IS NULL");
 
-                       Config::set("system", "post_update_version", 1281);
+                       DI::config()->set("system", "post_update_version", 1281);
                        Logger::log("Done", Logger::DEBUG);
                        return true;
                }
@@ -393,7 +445,7 @@ class PostUpdate
        private static function update1297()
        {
                // Was the script completed?
-               if (Config::get('system', 'post_update_version') >= 1297) {
+               if (DI::config()->get('system', 'post_update_version') >= 1297) {
                        return true;
                }
 
@@ -413,14 +465,14 @@ class PostUpdate
 
                Logger::info('Processed rows: ' . DBA::affectedRows());
 
-               Config::set('system', 'post_update_version', 1297);
+               DI::config()->set('system', 'post_update_version', 1297);
 
                Logger::info('Done');
 
                return true;
        }
        /**
-        * Set the delivery queue count to a negative value for all items preceding the feature.
+        * Remove contact duplicates
         *
         * @return bool "true" when the job is done
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@@ -428,13 +480,13 @@ class PostUpdate
        private static function update1322()
        {
                // Was the script completed?
-               if (Config::get('system', 'post_update_version') >= 1322) {
+               if (DI::config()->get('system', 'post_update_version') >= 1322) {
                        return true;
                }
 
                Logger::info('Start');
 
-               $contacts = DBA::p("SELECT ANY_VALUE(`id`) AS `id`, ANY_VALUE(`nurl`) AS `nurl` FROM `contact`
+               $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`",
@@ -442,15 +494,380 @@ class PostUpdate
                        Protocol::DIASPORA, Protocol::OSTATUS, Protocol::ACTIVITYPUB, 0);
 
                while ($contact = DBA::fetch($contacts)) {
-                       Logger::info('Remove duplicates', ['id' => $contact['id']]);
-                       Contact::handleDuplicateByID($contact['id']);
+                       Logger::info('Remove duplicates', ['nurl' => $contact['nurl'], 'uid' => $contact['uid']]);
+                       Contact::removeDuplicates($contact['nurl'], $contact['uid']);
                }
 
                DBA::close($contact);
-               Config::set('system', 'post_update_version', 1322);
+               DI::config()->set('system', 'post_update_version', 1322);
 
                Logger::info('Done');
 
                return true;
        }
+
+       /**
+        * update user-item data with notifications
+        *
+        * @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;
+               }
+
+               $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'], $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'];
+
+                       UserItem::setNotification($item['id']);
+
+                       ++$rows;
+               }
+               DBA::close($items);
+
+               DI::config()->set('system', 'post_update_version_1329_id', $id);
+
+               Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
+
+               if ($start_id == $id) {
+                       DI::config()->set('system', 'post_update_version', 1329);
+                       Logger::info('Done');
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Fill the "tag" table with tags and mentions from the body
+        *
+        * @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;
+               }
+
+               $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 update1342()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1342) {
+                       return true;
+               }
+
+               $id = DI::config()->get('system', 'post_update_version_1342_id', 0);
+
+               Logger::info('Start', ['item' => $id]);
+
+               $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;
+                }
+                       }
+
+                       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;
+               }
+
+               $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;
+               }
+
+               while ($delivery = DBA::fetch($deliveries)) {
+                       $id = $delivery['iid'];
+                       unset($delivery['iid']);
+                       DBA::insert('post-delivery-data', $delivery, true);
+                       ++$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;
+       }
+
+       /**
+        * 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'] . ']';
+                       }
+               }
+
+               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;
+               }
+
+               $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']]);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($term = DBA::fetch($terms)) {
+                       $item = Item::selectFirst(['uri-id', 'uid'], ['id' => $term['oid']]);
+                       if (!DBA::isResult($item)) {
+                               continue;
+                       }
+
+                       $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::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;
+               }
+
+               return false;
+       }
+
+       /**
+        * 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 update1347()
+       {
+               // Was the script completed?
+               if (DI::config()->get("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;
+               $condition = ["`id` > ? AND `vid` IS NULL", $id];
+               $params = ['order' => ['id'], 'limit' => 10000];
+               $items = Item::select(['id', 'verb'], $condition, $params);
+
+               if (DBA::errorNo() != 0) {
+                       Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]);
+                       return false;
+               }
+
+               while ($item = Item::fetch($items)) {
+                       $id = $item['id'];
+
+                       DBA::update('item', ['vid' => Verb::getID($item['verb'])], ['id' => $item['id']]);
+
+                       ++$rows;
+               }
+               DBA::close($items);
+
+               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;
+       }
 }