]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/StorageManager.php
Merge pull request #10801 from annando/network-thread-view
[friendica.git] / src / Core / StorageManager.php
index 832d9819c5c3ea8423b03dac17cbf8af4d7c08ae..f206868885e66acec7d99c2383c2f885d4eb1609 100644 (file)
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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\Core;
 
-use Friendica\Database\DBA;
-use Friendica\Model\Storage\IStorage;
-
+use Exception;
+use Friendica\Core\Config\IConfig;
+use Friendica\Database\Database;
+use Friendica\Model\Storage;
+use Friendica\Network\HTTPException\InternalServerErrorException;
+use Psr\Log\LoggerInterface;
 
 /**
- * @brief Manage storage backends
+ * Manage storage backends
  *
  * Core code uses this class to get and set current storage backend class.
  * Addons use this class to register and unregister additional backends.
  */
 class StorageManager
 {
-       private static $default_backends = [
-               'Filesystem' => \Friendica\Model\Storage\Filesystem::class,
-               'Database' => \Friendica\Model\Storage\Database::class,
+       // Default tables to look for data
+       const TABLES = ['photo', 'attach'];
+
+       // Default storage backends
+       /** @var string[]  */
+       const DEFAULT_BACKENDS = [
+               Storage\Filesystem::NAME,
+               Storage\Database::NAME,
        ];
 
-       private static $backends = [];
+       /** @var string[] List of valid backend classes */
+       private $validBackends;
 
-       private static function setup()
+       /**
+        * @var Storage\IStorage[] A local cache for storage instances
+        */
+       private $backendInstances = [];
+
+       /** @var Database */
+       private $dba;
+       /** @var IConfig */
+       private $config;
+       /** @var LoggerInterface */
+       private $logger;
+       /** @var L10n */
+       private $l10n;
+
+       /** @var Storage\IWritableStorage */
+       private $currentBackend;
+
+       /**
+        * @param Database        $dba
+        * @param IConfig         $config
+        * @param LoggerInterface $logger
+        * @param L10n            $l10n
+        *
+        * @throws Storage\InvalidClassStorageException in case the active backend class is invalid
+        * @throws Storage\StorageException in case of unexpected errors during the active backend class loading
+        */
+       public function __construct(Database $dba, IConfig $config, LoggerInterface $logger, L10n $l10n)
        {
-               if (count(self::$backends) == 0) {
-                       self::$backends = Config::get('storage', 'backends', self::$default_backends);
-               }
+               $this->dba           = $dba;
+               $this->config        = $config;
+               $this->logger        = $logger;
+               $this->l10n          = $l10n;
+               $this->validBackends = $config->get('storage', 'backends', self::DEFAULT_BACKENDS);
+
+               $currentName = $this->config->get('storage', 'name');
+
+               // you can only use user backends as a "default" backend, so the second parameter is true
+               $this->currentBackend = $this->getWritableStorageByName($currentName);
        }
 
        /**
-        * @brief Return current storage backend class
+        * Return current storage backend class
         *
-        * @return string
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @return Storage\IWritableStorage
         */
-       public static function getBackend()
+       public function getBackend()
        {
-               return Config::get('storage', 'class', '');
+               return $this->currentBackend;
        }
 
        /**
-        * @brief Return storage backend class by registered name
+        * Returns a writable storage backend class by registered name
+        *
+        * @param string $name Backend name
+        *
+        * @return Storage\IWritableStorage
         *
-        * @param string  $name  Backend name
-        * @return string Empty if no backend registered at $name exists
+        * @throws Storage\InvalidClassStorageException in case there's no backend class for the name
+        * @throws Storage\StorageException in case of an unexpected failure during the hook call
         */
-       public static function getByName($name)
+       public function getWritableStorageByName(string $name): Storage\IWritableStorage
        {
-               self::setup();
-               return self::$backends[$name] ?? '';
+               $storage = $this->getByName($name, $this->validBackends);
+               if (!$storage instanceof Storage\IWritableStorage) {
+                       throw new Storage\InvalidClassStorageException(sprintf('Backend %s is not writable', $name));
+               }
+
+               return $storage;
        }
 
        /**
-        * @brief Set current storage backend class
+        * Return storage backend class by registered name
         *
-        * @param string $class Backend class name
-        * @return bool
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @param string     $name Backend name
+        * @param string[]|null $validBackends possible, manual override of the valid backends
+        *
+        * @return Storage\IStorage
+        *
+        * @throws Storage\InvalidClassStorageException in case there's no backend class for the name
+        * @throws Storage\StorageException in case of an unexpected failure during the hook call
         */
-       public static function setBackend($class)
+       public function getByName(string $name, array $validBackends = null): Storage\IStorage
        {
-               if (!in_array('Friendica\Model\Storage\IStorage', class_implements($class))) {
-                       return false;
+               // If there's no cached instance create a new instance
+               if (!isset($this->backendInstances[$name])) {
+                       // If the current name isn't a valid backend (or the SystemResource instance) create it
+                       if (!$this->isValidBackend($name, $validBackends)) {
+                               throw new Storage\InvalidClassStorageException(sprintf('Backend %s is not valid', $name));
+                       }
+
+                       switch ($name) {
+                               // Try the filesystem backend
+                               case Storage\Filesystem::getName():
+                                       $this->backendInstances[$name] = new Storage\Filesystem($this->config, $this->l10n);
+                                       break;
+                               // try the database backend
+                               case Storage\Database::getName():
+                                       $this->backendInstances[$name] = new Storage\Database($this->dba);
+                                       break;
+                               // at least, try if there's an addon for the backend
+                               case Storage\SystemResource::getName():
+                                       $this->backendInstances[$name] = new Storage\SystemResource();
+                                       break;
+                               case Storage\ExternalResource::getName():
+                                       $this->backendInstances[$name] = new Storage\ExternalResource();
+                                       break;
+                               default:
+                                       $data = [
+                                               'name'    => $name,
+                                               'storage' => null,
+                                       ];
+                                       try {
+                                               Hook::callAll('storage_instance', $data);
+                                               if (!($data['storage'] ?? null) instanceof Storage\IStorage) {
+                                                       throw new Storage\InvalidClassStorageException(sprintf('Backend %s was not found', $name));
+                                               }
+
+                                               $this->backendInstances[$data['name'] ?? $name] = $data['storage'];
+                                       } catch (InternalServerErrorException $exception) {
+                                               throw new Storage\StorageException(sprintf('Failed calling hook::storage_instance for backend %s', $name), $exception);
+                                       }
+                                       break;
+                       }
                }
 
-               Config::set('storage', 'class', $class);
+               return $this->backendInstances[$name];
+       }
 
-               return true;
+       /**
+        * Checks, if the storage is a valid backend
+        *
+        * @param string|null   $name          The name or class of the backend
+        * @param string[]|null $validBackends Possible, valid backends to check
+        *
+        * @return boolean True, if the backend is a valid backend
+        */
+       public function isValidBackend(string $name = null, array $validBackends = null): bool
+       {
+               $validBackends = $validBackends ?? array_merge($this->validBackends,
+                               [
+                                       Storage\SystemResource::getName(),
+                                       Storage\ExternalResource::getName(),
+                               ]);
+               return in_array($name, $validBackends);
        }
 
        /**
-        * @brief Get registered backends
+        * Set current storage backend class
+        *
+        * @param Storage\IWritableStorage $storage The storage class
         *
-        * @return array
+        * @return boolean True, if the set was successful
         */
-       public static function listBackends()
+       public function setBackend(Storage\IWritableStorage $storage): bool
        {
-               self::setup();
-               return self::$backends;
+               if ($this->config->set('storage', 'name', $storage::getName())) {
+                       $this->currentBackend = $storage;
+                       return true;
+               } else {
+                       return false;
+               }
        }
 
+       /**
+        * Get registered backends
+        *
+        * @return string[]
+        */
+       public function listBackends(): array
+       {
+               return $this->validBackends;
+       }
 
        /**
-        * @brief Register a storage backend class
+        * Register a storage backend class
+        *
+        * You have to register the hook "storage_instance" as well to make this class work!
         *
-        * @param string $name  User readable backend name
         * @param string $class Backend class name
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        *
+        * @return boolean True, if the registration was successful
         */
-       public static function register($name, $class)
+       public function register(string $class): bool
        {
-               /// @todo Check that $class implements IStorage
-               self::setup();
-               self::$backends[$name] = $class;
-               Config::set('storage', 'backends', self::$backends);
-       }
+               if (is_subclass_of($class, Storage\IStorage::class)) {
+                       /** @var Storage\IStorage $class */
+
+                       if ($this->isValidBackend($class::getName(), $this->validBackends)) {
+                               return true;
+                       }
 
+                       $backends   = $this->validBackends;
+                       $backends[] = $class::getName();
+
+                       if ($this->config->set('storage', 'backends', $backends)) {
+                               $this->validBackends = $backends;
+                               return true;
+                       } else {
+                               return false;
+                       }
+               } else {
+                       return false;
+               }
+       }
 
        /**
-        * @brief Unregister a storage backend class
+        * Unregister a storage backend class
+        *
+        * @param string $class Backend class name
         *
-        * @param string $name User readable backend name
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @return boolean True, if unregistering was successful
+        *
+        * @throws Storage\StorageException
         */
-       public static function unregister($name)
+       public function unregister(string $class): bool
        {
-               self::setup();
-               unset(self::$backends[$name]);
-               Config::set('storage', 'backends', self::$backends);
-       }
+               if (is_subclass_of($class, Storage\IStorage::class)) {
+                       /** @var Storage\IStorage $class */
 
+                       if ($this->currentBackend::getName() == $class::getName()) {
+                               throw new Storage\StorageException(sprintf('Cannot unregister %s, because it\'s currently active.', $class::getName()));
+                       }
+
+                       $key = array_search($class::getName(), $this->validBackends);
+
+                       if ($key !== false) {
+                               $backends = $this->validBackends;
+                               unset($backends[$key]);
+                               $backends = array_values($backends);
+                               if ($this->config->set('storage', 'backends', $backends)) {
+                                       $this->validBackends = $backends;
+                                       return true;
+                               } else {
+                                       return false;
+                               }
+                       } else {
+                               return true;
+                       }
+               } else {
+                       return false;
+               }
+       }
 
        /**
-        * @brief Move up to 5000 resources to storage $dest
+        * Move up to 5000 resources to storage $dest
         *
         * Copy existing data to destination storage and delete from source.
         * This method cannot move to legacy in-table `data` field.
         *
-        * @param string     $destination Storage class name
-        * @param array|null $tables      Tables to look in for resources. Optional, defaults to ['photo', 'attach']
-        * @param int        $limit       Limit of the process batch size, defaults to 5000
+        * @param Storage\IWritableStorage $destination Destination storage class name
+        * @param array                    $tables      Tables to look in for resources. Optional, defaults to ['photo', 'attach']
+        * @param int                      $limit       Limit of the process batch size, defaults to 5000
+        *
         * @return int Number of moved resources
-        * @throws \Exception
+        * @throws Storage\StorageException
+        * @throws Exception
         */
-       public static function move($destination, $tables = null, $limit = 5000)
+       public function move(Storage\IWritableStorage $destination, array $tables = self::TABLES, int $limit = 5000): int
        {
-               if (empty($destination)) {
-                       throw new \Exception('Can\'t move to NULL storage backend');
-               }
-               
-               if (is_null($tables)) {
-                       $tables = ['photo', 'attach'];
+               if (!$this->isValidBackend($destination, $this->validBackends)) {
+                       throw new Storage\StorageException(sprintf("Can't move to storage backend '%s'", $destination::getName()));
                }
 
                $moved = 0;
                foreach ($tables as $table) {
                        // Get the rows where backend class is not the destination backend class
-                       $resources = DBA::select(
-                               $table, 
+                       $resources = $this->dba->select(
+                               $table,
                                ['id', 'data', 'backend-class', 'backend-ref'],
-                               ['`backend-class` IS NULL or `backend-class` != ?', $destination],
+                               ['`backend-class` IS NULL or `backend-class` != ?', $destination::getName()],
                                ['limit' => $limit]
                        );
 
-                       while ($resource = DBA::fetch($resources)) {
-                               $id = $resource['id'];
-                               $data = $resource['data'];
-                               /** @var IStorage $backendClass */
-                               $backendClass = $resource['backend-class'];
-                               $backendRef = $resource['backend-ref'];
-                               if (!empty($backendClass)) {
-                                       Logger::log("get data from old backend " . $backendClass . " : " . $backendRef);
-                                       $data = $backendClass::get($backendRef);
+                       while ($resource = $this->dba->fetch($resources)) {
+                               $id        = $resource['id'];
+                               $sourceRef = $resource['backend-ref'];
+                               $source    = null;
+
+                               try {
+                                       $source = $this->getWritableStorageByName($resource['backend-class'] ?? '');
+                                       $this->logger->info('Get data from old backend.', ['oldBackend' => $source, 'oldReference' => $sourceRef]);
+                                       $data = $source->get($sourceRef);
+                               } catch (Storage\InvalidClassStorageException $exception) {
+                                       $this->logger->info('Get data from DB resource field.', ['oldReference' => $sourceRef]);
+                                       $data = $resource['data'];
+                               } catch (Storage\ReferenceStorageException $exception) {
+                                       $this->logger->info('Invalid source reference.', ['oldBackend' => $source, 'oldReference' => $sourceRef]);
+                                       continue;
                                }
 
-                               Logger::log("save data to new backend " . $destination);
-                               /** @var IStorage $destination */
-                               $ref = $destination::put($data);
-                               Logger::log("saved data as " . $ref);
-
-                               if ($ref !== '') {
-                                       Logger::log("update row");
-                                       if (DBA::update($table, ['backend-class' => $destination, 'backend-ref' => $ref, 'data' => ''], ['id' => $id])) {
-                                               if (!empty($backendClass)) {
-                                                       Logger::log("delete data from old backend " . $backendClass . " : " . $backendRef);
-                                                       $backendClass::delete($backendRef);
+                               $this->logger->info('Save data to new backend.', ['newBackend' => $destination::getName()]);
+                               $destinationRef = $destination->put($data);
+                               $this->logger->info('Saved data.', ['newReference' => $destinationRef]);
+
+                               if ($destinationRef !== '') {
+                                       $this->logger->info('update row');
+                                       if ($this->dba->update($table, ['backend-class' => $destination::getName(), 'backend-ref' => $destinationRef, 'data' => ''], ['id' => $id])) {
+                                               if (!empty($source)) {
+                                                       $this->logger->info('Delete data from old backend.', ['oldBackend' => $source, 'oldReference' => $sourceRef]);
+                                                       $source->delete($sourceRef);
                                                }
                                                $moved++;
                                        }
                                }
                        }
 
-                       DBA::close($resources);
+                       $this->dba->close($resources);
                }
 
                return $moved;
        }
 }
-