]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/PostUpdate.php
Fix tests (#5400)
[friendica.git] / src / Database / PostUpdate.php
index 13da437796d709158d9b863404acd5dcd47df8c3..d391d531d5ae83e6aef1d0eecdb91b04099e0589 100644 (file)
@@ -7,6 +7,7 @@ namespace Friendica\Database;
 use Friendica\Core\Config;
 use Friendica\Database\DBM;
 use Friendica\Model\Contact;
+use Friendica\Model\Item;
 use dba;
 
 require_once 'include/dba.php';
@@ -30,6 +31,9 @@ class PostUpdate
                if (!self::update1206()) {
                        return;
                }
+               if (!self::update1276()) {
+                       return;
+               }
        }
 
        /**
@@ -217,4 +221,64 @@ class PostUpdate
                logger("Done", LOGGER_DEBUG);
                return true;
        }
+
+       /**
+        * @brief update the item related tables
+        *
+        * @return bool "true" when the job is done
+        */
+       private static function update1276()
+       {
+               // Was the script completed?
+               if (Config::get("system", "post_update_version") >= 1276) {
+                       return true;
+               }
+
+               $id = Config::get("system", "post_update_version_1276_id", 0);
+
+               logger("Start from item " . $id, LOGGER_DEBUG);
+
+               $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']);
+
+               $start_id = $id;
+               $rows = 0;
+               $condition = ["`id` > ?", $id];
+               $params = ['order' => ['id'], 'limit' => 10000];
+               $items = Item::select($fields, $condition, $params);
+               while ($item = Item::fetch($items)) {
+                       $id = $item['id'];
+
+                       if (empty($item['author-id'])) {
+                               $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
+                                       'photo' => $item['author-avatar'], 'network' => $item['network']];
+
+                               $item['author-id'] = Contact::getIdForURL($item["author-link"], 0, false, $default);
+                       }
+
+                       if (empty($item['owner-id'])) {
+                               $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
+                                       'photo' => $item['owner-avatar'], 'network' => $item['network']];
+
+                               $item['owner-id'] = Contact::getIdForURL($item["owner-link"], 0, false, $default);
+                       }
+
+                       Item::update($item, ['id' => $id]);
+
+                       ++$rows;
+               }
+               dba::close($items);
+
+               Config::set("system", "post_update_version_1276_id", $id);
+
+               logger("Processed rows: " . $rows . " - last processed item:  " . $id, LOGGER_DEBUG);
+
+               if ($start_id == $id) {
+                       Config::set("system", "post_update_version", 1276);
+                       logger("Done", LOGGER_DEBUG);
+                       return true;
+               }
+
+               return false;
+       }
 }