diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-12-08 22:57:33 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-12-08 22:57:33 +0100 |
commit | 25a87d4058b3ec7f21649940949b6fc0237968dc (patch) | |
tree | b21a76a5272e5a3599c28b787541fed98ddc4638 /lib/public/files/storage/istoragefactory.php | |
parent | f219f5a7a62fe88b364b9a5f50e9730eba1ee84c (diff) | |
parent | a369d7812463c2afddf1640c42643de6312ab9ba (diff) | |
download | nextcloud-server-25a87d4058b3ec7f21649940949b6fc0237968dc.tar.gz nextcloud-server-25a87d4058b3ec7f21649940949b6fc0237968dc.zip |
Merge pull request #12577 from owncloud/public-mount-api
Add a public api for apps to add mounts
Diffstat (limited to 'lib/public/files/storage/istoragefactory.php')
-rw-r--r-- | lib/public/files/storage/istoragefactory.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/public/files/storage/istoragefactory.php b/lib/public/files/storage/istoragefactory.php new file mode 100644 index 00000000000..769d7011de4 --- /dev/null +++ b/lib/public/files/storage/istoragefactory.php @@ -0,0 +1,32 @@ +<?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 OCP\Files\Storage; + +/** + * Creates storage instances and manages and applies storage wrappers + */ +interface IStorageFactory { + /** + * allow modifier storage behaviour by adding wrappers around storages + * + * $callback should be a function of type (string $mountPoint, Storage $storage) => Storage + * + * @param string $wrapperName + * @param callable $callback + */ + public function addStorageWrapper($wrapperName, $callback); + + /** + * @param string|boolean $mountPoint + * @param string $class + * @param array $arguments + * @return \OCP\Files\Storage + */ + public function getInstance($mountPoint, $class, $arguments); +} |