]> git.mxchange.org Git - friendica.git/blobdiff - update.php
- Fixing SystemResource
[friendica.git] / update.php
index 523232ef3e972d3ce419518f80eef2bf3d3caac6..145446bae0c6e79acee436efe340234998c0491b 100644 (file)
@@ -22,7 +22,7 @@ use Friendica\Worker\Delivery;
  * This function is responsible for doing post update changes to the data
  * (not the structure) in the database.
  *
- * Database structure changes are done in config/dbstructure.config.php
+ * Database structure changes are done in static/dbstructure.config.php
  *
  * If there is a need for a post process to a structure change, update this file
  * by adding a new function at the end with the number of the new DB_UPDATE_VERSION.
@@ -33,8 +33,8 @@ use Friendica\Worker\Delivery;
  * You are currently on version 4711 and you are preparing changes that demand an update script.
  *
  * 1. Create a function "update_4712()" here in the update.php
- * 2. Apply the needed structural changes in config/dbStructure.php
- * 3. Set DB_UPDATE_VERSION in config/dbstructure.config.php to 4712.
+ * 2. Apply the needed structural changes in static/dbStructure.php
+ * 3. Set DB_UPDATE_VERSION in static/dbstructure.config.php to 4712.
  *
  * If you need to run a script before the database update, name the function "pre_update_4712()"
  */
@@ -373,7 +373,7 @@ function update_1309()
 function update_1315()
 {
        DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]);
-       return Update::Success;
+       return Update::SUCCESS;
 }
 
 function update_1318()
@@ -382,5 +382,51 @@ function update_1318()
        DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]);
 
        Worker::add(PRIORITY_LOW, 'ProfileUpdate');
-       return Update::Success;
+       return Update::SUCCESS;
+}
+
+function update_1323()
+{
+       $users = DBA::select('user', ['uid']);
+       while ($user = DBA::fetch($users)) {
+               Contact::updateSelfFromUserID($user['uid']);
+       }
+       DBA::close($users);
+
+       return Update::SUCCESS;
+}
+
+function update_1327()
+{
+       $contacts = DBA::select('contact', ['uid', 'id', 'blocked', 'readonly'], ["`uid` != ? AND (`blocked` OR `readonly`) AND NOT `pending`", 0]);
+       while ($contact = DBA::fetch($contacts)) {
+               Contact::setBlockedForUser($contact['id'], $contact['uid'], $contact['blocked']);
+               Contact::setIgnoredForUser($contact['id'], $contact['uid'], $contact['readonly']);
+       }
+       DBA::close($contacts);
+
+       return Update::SUCCESS;
+}
+
+function update_1329()
+{
+       $currStorage = Config::get('storage', 'class', '');
+
+       if (!empty($currStorage)) {
+               $storageName = array_key_first(\Friendica\Core\StorageManager::DEFAULT_BACKENDS, $currStorage);
+               Config::set('storage', 'name', $storageName);
+               Config::delete('storage', 'class');
+       }
+
+       $photos = DBA::select('photos', ['backend-class', 'id'], ['backend-class IS NOT NULL']);
+       foreach ($photos as $photo) {
+               DBA::update('photos', ['backend-class' => $photo['backend-class']::NAME], ['id' => $photo['id']]);
+       }
+
+       $attachs = DBA::select('attach', ['backend-class', 'id'], ['backend-class IS NOT NULL']);
+       foreach ($attachs as $attach) {
+               DBA::update('photos', ['backend-class' => $attach['backend-class']::NAME], ['id' => $attach['id']]);
+       }
+
+       return Update::SUCCESS;
 }