]> git.mxchange.org Git - friendica.git/blobdiff - update.php
Merge pull request #11688 from MrPetovan/bug/11635-mod-photos-posted
[friendica.git] / update.php
index 7b5f6778be7df92807978de0e88126016fa10e9f..2c5e2f5c1c99fcc1448a375fc0c6dcadf1ccba30 100644 (file)
@@ -17,7 +17,7 @@
  * 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/>.
  *
- * Automatic post-databse structure change updates
+ * Automatic post-database structure change updates
  *
  * These functions are responsible for doing critical post update changes to the data (not the structure) in the database.
  *
  * If you need to run a script before the database update, name the function "pre_update_4712()"
  */
 
+use Friendica\Core\Config\ValueObject\Cache;
 use Friendica\Core\Logger;
 use Friendica\Core\Storage\Capability\ICanReadFromStorage;
+use Friendica\Core\Storage\Type\Database as DatabaseStorage;
 use Friendica\Core\Update;
 use Friendica\Core\Worker;
 use Friendica\Database\Database;
@@ -55,6 +57,7 @@ use Friendica\Model\Notification;
 use Friendica\Model\Photo;
 use Friendica\Model\Post;
 use Friendica\Model\Profile;
+use Friendica\Model\User;
 use Friendica\Security\PermissionSet\Repository\PermissionSet;
 use Friendica\Worker\Delivery;
 
@@ -987,9 +990,9 @@ function update_1434()
 {
        $name = DI::config()->get('storage', 'name');
 
-       // in case of an empty config, set "Database" as default storage backend
+       // In case of an empty config, set "Database" as default storage backend
        if (empty($name)) {
-               DI::config()->set('storage', 'name', \Friendica\Core\Storage\Type\Database::getName());
+               DI::config()->set('storage', 'name', DatabaseStorage::getName());
        }
 
        // In case of a Using deprecated storage class value, set the right name for it
@@ -1078,12 +1081,29 @@ function update_1446()
 
        // In case the distributed cache driver is the default value, but the current cache driver isn't default,
        // we assume that the distributed cache driver should be the same as the current cache driver
-       if (
-               $distributed_cache_driver_source === \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC
-               && $cache_driver_source > \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC
-       ) {
+       if ($distributed_cache_driver_source === Cache::SOURCE_STATIC && $cache_driver_source > Cache::SOURCE_STATIC) {
                DI::config()->set('system', 'distributed_cache_driver', DI::config()->get('system', 'cache_driver'));
        }
 
        return Update::SUCCESS;
 }
+
+function update_1451()
+{
+       DBA::update('user', ['account-type' => User::ACCOUNT_TYPE_COMMUNITY], ['page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]]);
+       DBA::update('contact', ['contact-type' => Contact::TYPE_COMMUNITY], ["`forum` OR `prv`"]);
+       DBA::update('contact', ['manually-approve' => true], ['prv' => true]);
+
+       return Update::SUCCESS;
+}
+
+function update_1457()
+{
+       $pinned = DBA::select('post-thread-user', ['uri-id'], ['pinned' => true]);
+       while ($post = DBA::fetch($pinned)) {
+               Post\Collection::add($post['uri-id'], Post\Collection::FEATURED);
+       }
+       DBA::close($pinned);
+
+       return Update::SUCCESS;
+}