2018-11-29 08:27:04 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-11-29 08:27:04 +00:00
|
|
|
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
use Exception;
|
2020-01-19 20:29:36 +00:00
|
|
|
use Friendica\Core\Config\IConfig;
|
2020-01-05 00:58:49 +00:00
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Model\Storage;
|
2021-08-10 19:30:40 +00:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2020-01-05 00:58:49 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-11-29 08:27:04 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Manage storage backends
|
2018-11-29 08:27:04 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
{
|
2020-01-05 00:58:49 +00:00
|
|
|
// Default tables to look for data
|
|
|
|
const TABLES = ['photo', 'attach'];
|
|
|
|
|
|
|
|
// Default storage backends
|
2021-08-15 22:08:06 +00:00
|
|
|
/** @var string[] */
|
2020-01-05 00:58:49 +00:00
|
|
|
const DEFAULT_BACKENDS = [
|
2021-08-15 22:08:06 +00:00
|
|
|
Storage\Filesystem::NAME,
|
|
|
|
Storage\Database::NAME,
|
2018-11-29 08:27:04 +00:00
|
|
|
];
|
|
|
|
|
2021-08-15 22:08:06 +00:00
|
|
|
/** @var string[] List of valid backend classes */
|
|
|
|
private $validBackends;
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2020-01-08 21:51:37 +00:00
|
|
|
/**
|
|
|
|
* @var Storage\IStorage[] A local cache for storage instances
|
|
|
|
*/
|
|
|
|
private $backendInstances = [];
|
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
/** @var Database */
|
|
|
|
private $dba;
|
2020-01-19 20:29:36 +00:00
|
|
|
/** @var IConfig */
|
2020-01-05 00:58:49 +00:00
|
|
|
private $config;
|
|
|
|
/** @var LoggerInterface */
|
|
|
|
private $logger;
|
2020-01-08 21:51:37 +00:00
|
|
|
/** @var L10n */
|
|
|
|
private $l10n;
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2021-08-10 21:56:30 +00:00
|
|
|
/** @var Storage\IWritableStorage */
|
2020-01-05 00:58:49 +00:00
|
|
|
private $currentBackend;
|
2018-11-29 08:27:04 +00:00
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
/**
|
|
|
|
* @param Database $dba
|
2020-01-19 20:29:36 +00:00
|
|
|
* @param IConfig $config
|
2020-01-05 00:58:49 +00:00
|
|
|
* @param LoggerInterface $logger
|
2020-01-08 21:51:37 +00:00
|
|
|
* @param L10n $l10n
|
2021-08-10 21:56:30 +00:00
|
|
|
*
|
|
|
|
* @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
|
2020-01-05 00:58:49 +00:00
|
|
|
*/
|
2021-08-01 12:00:48 +00:00
|
|
|
public function __construct(Database $dba, IConfig $config, LoggerInterface $logger, L10n $l10n)
|
2018-11-29 08:27:04 +00:00
|
|
|
{
|
2021-08-10 21:56:30 +00:00
|
|
|
$this->dba = $dba;
|
|
|
|
$this->config = $config;
|
|
|
|
$this->logger = $logger;
|
|
|
|
$this->l10n = $l10n;
|
2021-08-15 22:08:06 +00:00
|
|
|
$this->validBackends = $config->get('storage', 'backends', self::DEFAULT_BACKENDS);
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2021-08-10 21:56:30 +00:00
|
|
|
$currentName = $this->config->get('storage', 'name');
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2020-01-17 18:31:34 +00:00
|
|
|
// you can only use user backends as a "default" backend, so the second parameter is true
|
2021-08-10 20:07:52 +00:00
|
|
|
$this->currentBackend = $this->getWritableStorageByName($currentName);
|
2018-11-29 08:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Return current storage backend class
|
2019-04-10 06:35:44 +00:00
|
|
|
*
|
2021-08-10 21:56:30 +00:00
|
|
|
* @return Storage\IWritableStorage
|
2018-11-29 08:27:04 +00:00
|
|
|
*/
|
2020-01-05 00:58:49 +00:00
|
|
|
public function getBackend()
|
2018-11-29 08:27:04 +00:00
|
|
|
{
|
2020-01-05 00:58:49 +00:00
|
|
|
return $this->currentBackend;
|
2018-11-29 08:27:04 +00:00
|
|
|
}
|
|
|
|
|
2021-08-01 12:00:48 +00:00
|
|
|
/**
|
2021-08-10 20:07:52 +00:00
|
|
|
* Returns a writable storage backend class by registered name
|
2021-08-01 12:00:48 +00:00
|
|
|
*
|
2021-08-10 19:30:40 +00:00
|
|
|
* @param string $name Backend name
|
2021-08-01 12:00:48 +00:00
|
|
|
*
|
2021-08-10 20:07:52 +00:00
|
|
|
* @return Storage\IWritableStorage
|
2021-08-01 12:00:48 +00:00
|
|
|
*
|
2021-08-10 21:56:30 +00:00
|
|
|
* @throws Storage\InvalidClassStorageException in case there's no backend class for the name
|
2021-08-10 19:30:40 +00:00
|
|
|
* @throws Storage\StorageException in case of an unexpected failure during the hook call
|
2021-08-01 12:00:48 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function getWritableStorageByName(string $name): Storage\IWritableStorage
|
2021-08-01 12:00:48 +00:00
|
|
|
{
|
2021-08-15 22:08:06 +00:00
|
|
|
$storage = $this->getByName($name, $this->validBackends);
|
2021-08-10 21:56:30 +00:00
|
|
|
if ($storage instanceof Storage\IWritableStorage) {
|
|
|
|
return $storage;
|
|
|
|
} else {
|
|
|
|
throw new Storage\InvalidClassStorageException(sprintf('Backend %s is not writable', $name));
|
2021-08-01 12:00:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-29 08:27:04 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Return storage backend class by registered name
|
2018-11-29 08:27:04 +00:00
|
|
|
*
|
2021-08-10 21:56:30 +00:00
|
|
|
* @param string $name Backend name
|
2021-08-15 22:08:06 +00:00
|
|
|
* @param string[]|null $validBackends possible, manual override of the valid backends
|
2020-01-05 00:58:49 +00:00
|
|
|
*
|
2021-08-10 19:30:40 +00:00
|
|
|
* @return Storage\IStorage
|
2020-01-08 21:51:37 +00:00
|
|
|
*
|
2021-08-10 21:56:30 +00:00
|
|
|
* @throws Storage\InvalidClassStorageException in case there's no backend class for the name
|
2021-08-10 19:30:40 +00:00
|
|
|
* @throws Storage\StorageException in case of an unexpected failure during the hook call
|
2020-01-05 00:58:49 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function getByName(string $name, array $validBackends = null): Storage\IStorage
|
2020-01-05 00:58:49 +00:00
|
|
|
{
|
2020-01-08 21:51:37 +00:00
|
|
|
// 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
|
2021-08-10 21:56:30 +00:00
|
|
|
if ($this->isValidBackend($name, $validBackends)) {
|
2020-01-08 21:51:37 +00:00
|
|
|
switch ($name) {
|
|
|
|
// Try the filesystem backend
|
|
|
|
case Storage\Filesystem::getName():
|
2021-08-01 12:00:48 +00:00
|
|
|
$this->backendInstances[$name] = new Storage\Filesystem($this->config, $this->l10n);
|
2020-01-08 21:51:37 +00:00
|
|
|
break;
|
|
|
|
// try the database backend
|
|
|
|
case Storage\Database::getName():
|
2021-08-01 12:00:48 +00:00
|
|
|
$this->backendInstances[$name] = new Storage\Database($this->dba);
|
2020-01-08 21:51:37 +00:00
|
|
|
break;
|
|
|
|
// at least, try if there's an addon for the backend
|
|
|
|
case Storage\SystemResource::getName():
|
2020-01-17 19:23:30 +00:00
|
|
|
$this->backendInstances[$name] = new Storage\SystemResource();
|
2020-01-08 21:51:37 +00:00
|
|
|
break;
|
2021-06-24 17:30:22 +00:00
|
|
|
case Storage\ExternalResource::getName():
|
2021-08-01 12:00:48 +00:00
|
|
|
$this->backendInstances[$name] = new Storage\ExternalResource();
|
2021-06-24 17:30:22 +00:00
|
|
|
break;
|
2020-01-08 21:51:37 +00:00
|
|
|
default:
|
|
|
|
$data = [
|
2020-01-17 19:23:30 +00:00
|
|
|
'name' => $name,
|
2020-01-08 21:51:37 +00:00
|
|
|
'storage' => null,
|
|
|
|
];
|
2021-08-10 19:30:40 +00:00
|
|
|
try {
|
|
|
|
Hook::callAll('storage_instance', $data);
|
|
|
|
if (($data['storage'] ?? null) instanceof Storage\IStorage) {
|
|
|
|
$this->backendInstances[$data['name'] ?? $name] = $data['storage'];
|
|
|
|
} else {
|
2021-08-10 21:56:30 +00:00
|
|
|
throw new Storage\InvalidClassStorageException(sprintf('Backend %s was not found', $name));
|
2021-08-10 19:30:40 +00:00
|
|
|
}
|
|
|
|
} catch (InternalServerErrorException $exception) {
|
|
|
|
throw new Storage\StorageException(sprintf('Failed calling hook::storage_instance for backend %s', $name), $exception);
|
2020-01-08 21:51:37 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2021-08-10 21:56:30 +00:00
|
|
|
throw new Storage\InvalidClassStorageException(sprintf('Backend %s is not valid', $name));
|
2020-01-08 21:51:37 +00:00
|
|
|
}
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
2020-01-08 21:51:37 +00:00
|
|
|
return $this->backendInstances[$name];
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks, if the storage is a valid backend
|
|
|
|
*
|
2021-08-15 22:08:06 +00:00
|
|
|
* @param string|null $name The name or class of the backend
|
|
|
|
* @param string[]|null $validBackends Possible, valid backends to check
|
2020-01-05 00:58:49 +00:00
|
|
|
*
|
|
|
|
* @return boolean True, if the backend is a valid backend
|
2018-11-29 08:27:04 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function isValidBackend(string $name = null, array $validBackends = null): bool
|
2020-01-17 22:25:11 +00:00
|
|
|
{
|
2021-08-15 22:08:06 +00:00
|
|
|
$validBackends = $validBackends ?? array_merge($this->validBackends,
|
2021-08-10 21:56:30 +00:00
|
|
|
[
|
2021-08-15 22:08:06 +00:00
|
|
|
Storage\SystemResource::getName(),
|
|
|
|
Storage\ExternalResource::getName(),
|
2021-08-10 21:56:30 +00:00
|
|
|
]);
|
2021-08-15 22:08:06 +00:00
|
|
|
return in_array($name, $validBackends);
|
2020-01-17 22:25:11 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 08:27:04 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Set current storage backend class
|
2018-11-29 08:27:04 +00:00
|
|
|
*
|
2021-08-10 20:07:52 +00:00
|
|
|
* @param Storage\IWritableStorage $storage The storage class
|
2020-01-05 00:58:49 +00:00
|
|
|
*
|
|
|
|
* @return boolean True, if the set was successful
|
2018-11-29 08:27:04 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function setBackend(Storage\IWritableStorage $storage): bool
|
2018-11-29 08:27:04 +00:00
|
|
|
{
|
2021-08-01 12:00:48 +00:00
|
|
|
if ($this->config->set('storage', 'name', $storage::getName())) {
|
|
|
|
$this->currentBackend = $storage;
|
2020-01-05 00:58:49 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-29 08:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Get registered backends
|
2018-11-29 08:27:04 +00:00
|
|
|
*
|
2021-08-15 22:08:06 +00:00
|
|
|
* @return Storage\IWritableStorage[]
|
2018-11-29 08:27:04 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function listBackends(): array
|
2018-11-29 08:27:04 +00:00
|
|
|
{
|
2021-08-15 22:08:06 +00:00
|
|
|
return $this->validBackends;
|
2018-11-29 08:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-08 21:51:37 +00:00
|
|
|
* Register a storage backend class
|
|
|
|
*
|
|
|
|
* You have to register the hook "storage_instance" as well to make this class work!
|
2018-11-29 08:27:04 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $class Backend class name
|
2020-01-05 00:58:49 +00:00
|
|
|
*
|
|
|
|
* @return boolean True, if the registration was successful
|
2018-11-29 08:27:04 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function register(string $class): bool
|
2018-11-29 08:27:04 +00:00
|
|
|
{
|
2020-01-06 16:42:28 +00:00
|
|
|
if (is_subclass_of($class, Storage\IStorage::class)) {
|
|
|
|
/** @var Storage\IStorage $class */
|
|
|
|
|
2021-08-15 22:08:06 +00:00
|
|
|
if (array_search($class::getName(), $this->validBackends, true) !== false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$backends = $this->validBackends;
|
|
|
|
$backends[] = $class::getName();
|
2020-01-06 16:42:28 +00:00
|
|
|
|
|
|
|
if ($this->config->set('storage', 'backends', $backends)) {
|
2021-08-15 22:08:06 +00:00
|
|
|
$this->validBackends = $backends;
|
2020-01-06 16:42:28 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-05 00:58:49 +00:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-11-29 08:27:04 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Unregister a storage backend class
|
2018-11-29 08:27:04 +00:00
|
|
|
*
|
2020-01-06 16:42:28 +00:00
|
|
|
* @param string $class Backend class name
|
2020-01-05 00:58:49 +00:00
|
|
|
*
|
|
|
|
* @return boolean True, if unregistering was successful
|
2021-08-15 22:08:06 +00:00
|
|
|
*
|
|
|
|
* @throws Storage\StorageException
|
2018-11-29 08:27:04 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function unregister(string $class): bool
|
2018-11-29 08:27:04 +00:00
|
|
|
{
|
2020-01-06 16:42:28 +00:00
|
|
|
if (is_subclass_of($class, Storage\IStorage::class)) {
|
|
|
|
/** @var Storage\IStorage $class */
|
|
|
|
|
2021-08-15 22:08:06 +00:00
|
|
|
if ($this->currentBackend::getName() == $class::getName()) {
|
|
|
|
throw new Storage\StorageException(sprintf('Cannot unregister %s, because it\'s currently active.', $class::getName()));
|
2020-01-06 16:42:28 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 22:08:06 +00:00
|
|
|
$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;
|
|
|
|
}
|
2020-01-06 16:42:28 +00:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-29 08:27:04 +00:00
|
|
|
}
|
2018-12-01 16:44:54 +00:00
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Move up to 5000 resources to storage $dest
|
2018-12-01 16:44:54 +00:00
|
|
|
*
|
2018-12-12 16:50:34 +00:00
|
|
|
* Copy existing data to destination storage and delete from source.
|
|
|
|
* This method cannot move to legacy in-table `data` field.
|
|
|
|
*
|
2021-08-10 20:07:52 +00:00
|
|
|
* @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
|
2020-01-05 00:58:49 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @return int Number of moved resources
|
2020-01-05 00:58:49 +00:00
|
|
|
* @throws Storage\StorageException
|
|
|
|
* @throws Exception
|
2018-12-01 16:44:54 +00:00
|
|
|
*/
|
2021-08-10 21:56:30 +00:00
|
|
|
public function move(Storage\IWritableStorage $destination, array $tables = self::TABLES, int $limit = 5000): int
|
2018-12-01 16:44:54 +00:00
|
|
|
{
|
2021-08-15 22:08:06 +00:00
|
|
|
if (!$this->isValidBackend($destination, $this->validBackends)) {
|
2020-01-17 20:01:37 +00:00
|
|
|
throw new Storage\StorageException(sprintf("Can't move to storage backend '%s'", $destination::getName()));
|
2018-12-01 16:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$moved = 0;
|
|
|
|
foreach ($tables as $table) {
|
2018-12-12 16:50:34 +00:00
|
|
|
// Get the rows where backend class is not the destination backend class
|
2020-01-05 00:58:49 +00:00
|
|
|
$resources = $this->dba->select(
|
|
|
|
$table,
|
2018-12-12 16:50:34 +00:00
|
|
|
['id', 'data', 'backend-class', 'backend-ref'],
|
2020-01-06 16:42:28 +00:00
|
|
|
['`backend-class` IS NULL or `backend-class` != ?', $destination::getName()],
|
2019-03-20 04:41:57 +00:00
|
|
|
['limit' => $limit]
|
2018-12-12 16:50:34 +00:00
|
|
|
);
|
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
while ($resource = $this->dba->fetch($resources)) {
|
|
|
|
$id = $resource['id'];
|
|
|
|
$sourceRef = $resource['backend-ref'];
|
2021-08-10 21:56:30 +00:00
|
|
|
$source = null;
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2021-08-10 21:56:30 +00:00
|
|
|
try {
|
|
|
|
$source = $this->getWritableStorageByName($resource['backend-class'] ?? '');
|
2020-01-05 00:58:49 +00:00
|
|
|
$this->logger->info('Get data from old backend.', ['oldBackend' => $source, 'oldReference' => $sourceRef]);
|
|
|
|
$data = $source->get($sourceRef);
|
2021-08-10 21:56:30 +00:00
|
|
|
} 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;
|
2019-03-20 04:41:57 +00:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:24:45 +00:00
|
|
|
$this->logger->info('Save data to new backend.', ['newBackend' => $destination::getName()]);
|
2020-01-05 00:58:49 +00:00
|
|
|
$destinationRef = $destination->put($data);
|
|
|
|
$this->logger->info('Saved data.', ['newReference' => $destinationRef]);
|
|
|
|
|
|
|
|
if ($destinationRef !== '') {
|
|
|
|
$this->logger->info('update row');
|
2021-03-12 08:55:55 +00:00
|
|
|
if ($this->dba->update($table, ['backend-class' => $destination::getName(), 'backend-ref' => $destinationRef, 'data' => ''], ['id' => $id])) {
|
2020-01-05 00:58:49 +00:00
|
|
|
if (!empty($source)) {
|
|
|
|
$this->logger->info('Delete data from old backend.', ['oldBackend' => $source, 'oldReference' => $sourceRef]);
|
|
|
|
$source->delete($sourceRef);
|
2018-12-01 16:44:54 +00:00
|
|
|
}
|
2019-03-20 04:41:57 +00:00
|
|
|
$moved++;
|
2018-12-01 16:44:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-20 04:41:57 +00:00
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
$this->dba->close($resources);
|
2018-12-01 16:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $moved;
|
|
|
|
}
|
2018-12-12 16:50:34 +00:00
|
|
|
}
|