2013-05-09 00:35:10 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Storage;
|
|
|
|
|
2014-11-24 17:54:42 +03:00
|
|
|
use OCP\Files\Storage\IStorageFactory;
|
|
|
|
|
|
|
|
class StorageFactory implements IStorageFactory {
|
2013-06-07 19:07:13 +04:00
|
|
|
/**
|
|
|
|
* @var callable[] $storageWrappers
|
|
|
|
*/
|
|
|
|
private $storageWrappers = array();
|
2013-05-09 00:35:10 +04:00
|
|
|
|
2013-06-07 19:07:13 +04:00
|
|
|
/**
|
|
|
|
* allow modifier storage behaviour by adding wrappers around storages
|
|
|
|
*
|
|
|
|
* $callback should be a function of type (string $mountPoint, Storage $storage) => Storage
|
|
|
|
*
|
2014-11-24 17:54:42 +03:00
|
|
|
* @param string $wrapperName
|
2013-06-07 19:07:13 +04:00
|
|
|
* @param callable $callback
|
|
|
|
*/
|
2014-06-02 17:06:15 +04:00
|
|
|
public function addStorageWrapper($wrapperName, $callback) {
|
|
|
|
$this->storageWrappers[$wrapperName] = $callback;
|
2013-06-07 19:07:13 +04:00
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-11-24 17:54:42 +03:00
|
|
|
* Create an instance of a storage and apply the registered storage wrappers
|
|
|
|
*
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string|boolean $mountPoint
|
|
|
|
* @param string $class
|
2014-11-24 17:54:42 +03:00
|
|
|
* @param array $arguments
|
|
|
|
* @return \OCP\Files\Storage
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2014-11-24 17:54:42 +03:00
|
|
|
public function getInstance($mountPoint, $class, $arguments) {
|
2013-06-07 19:07:13 +04:00
|
|
|
return $this->wrap($mountPoint, new $class($arguments));
|
|
|
|
}
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
/**
|
|
|
|
* @param string|boolean $mountPoint
|
2014-11-24 17:54:42 +03:00
|
|
|
* @param \OCP\Files\Storage $storage
|
|
|
|
* @return \OCP\Files\Storage
|
2014-02-19 12:31:54 +04:00
|
|
|
*/
|
2013-06-07 19:07:13 +04:00
|
|
|
public function wrap($mountPoint, $storage) {
|
|
|
|
foreach ($this->storageWrappers as $wrapper) {
|
|
|
|
$storage = $wrapper($mountPoint, $storage);
|
|
|
|
}
|
|
|
|
return $storage;
|
2013-05-09 00:35:10 +04:00
|
|
|
}
|
|
|
|
}
|