]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/PostUpdate.php
Remove deprecated code
[friendica.git] / src / Database / PostUpdate.php
index 59b6964084862ef452c33f661de6faf40b0b1221..7fd28419ea60106eeef11689bb7cb57968a55ed5 100644 (file)
@@ -4,23 +4,25 @@
  */
 namespace Friendica\Database;
 
-use Friendica\Core\Config;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
-use Friendica\Core\L10n;
+use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Item;
 use Friendica\Model\ItemURI;
 use Friendica\Model\PermissionSet;
-use Friendica\Database\DBA;
+use Friendica\Model\UserItem;
 
 /**
- * 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
 {
        /**
-        * @brief Calls the post update functions
+        * Calls the post update functions
         */
        public static function update()
        {
@@ -36,36 +38,46 @@ class PostUpdate
                if (!self::update1281()) {
                        return false;
                }
+               if (!self::update1297()) {
+                       return false;
+               }
+               if (!self::update1322()) {
+                       return false;
+               }
+               if (!self::update1329()) {
+                       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
         */
        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` ";
 
@@ -81,12 +93,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);
@@ -109,16 +121,17 @@ 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"
         *
         * @return bool "true" when the job is done
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        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;
                }
 
@@ -137,24 +150,26 @@ 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
+        * @throws \ImagickException
         */
        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);
 
@@ -192,14 +207,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;
@@ -223,7 +244,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);
 
@@ -242,7 +263,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;
                }
@@ -293,18 +314,19 @@ 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
         */
        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);
 
@@ -356,7 +378,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);
 
@@ -367,7 +389,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;
                }
@@ -375,48 +397,123 @@ class PostUpdate
                return false;
        }
 
-       // Post-update script of PR 5596
-       function fixGenderStrings() {
-           $allGenders = DBA::select('contact', ['id', 'gender']);
-        $allLangs = L10n::getAvailableLanguages();
-        $success = 0;
-        $fail = 0;
-           foreach($allGenders as $key=>$gender) {
-            foreach($allLangs as $key=>$lang) {
-
-                $a = new \stdClass();
-                $a->strings = [];
-
-                // First we get the the localizations
-                if (file_exists("view/lang/$lang/strings.php")) {
-                    include "view/lang/$lang/strings.php";
-                }
-                if (file_exists("addon/morechoice/lang/$lang/strings.php")) {
-                    include "addon/morechoice/lang/$lang/strings.php";
-                }
-
-                $localizedStrings = $a->strings;
-                unset($a);
-
-                $key = array_search($gender['gender'], $localizedStrings);
-                if($key !== false) {
-                    break;
-                }
-
-                // defaulting to empty string
-                $key = '';
-            }
-            DBA::update('contact', ['gender' => $key], ['id' => $gender['id']]);
-            logger::log('Updated contact ' . $gender['id'] . ' to gender ' . $key . ' (was: ' . $gender['gender'] . ')');
-
-            if ($key == '') {
-                $fail++;
-            }
-            else {
-                $success++;
-            }
-        }
-
-           Logger::log("Gender fix completed. Success: $success. Fail: $fail");
-    }
+       /**
+        * 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 update1297()
+       {
+               // Was the script completed?
+               if (DI::config()->get('system', 'post_update_version') >= 1297) {
+                       return true;
+               }
+
+               $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::info('Processed rows: ' . DBA::affectedRows());
+
+               DI::config()->set('system', 'post_update_version', 1297);
+
+               Logger::info('Done');
+
+               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');
+
+               $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);
+
+               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-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;
+       }
 }