diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-05-17 20:00:28 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-05-18 14:35:50 +0200 |
commit | 4a53542e457bf419007fcf63048eeb94d88ae514 (patch) | |
tree | 8caad7f40f505ea69c32cab25dde6dbc0b481e45 /lib/public/files/config | |
parent | 765782445a24fb1b239f2a3cd5c7b239ae4f6455 (diff) | |
download | nextcloud-server-4a53542e457bf419007fcf63048eeb94d88ae514.tar.gz nextcloud-server-4a53542e457bf419007fcf63048eeb94d88ae514.zip |
Move \OCP\Files to PSR-4
Diffstat (limited to 'lib/public/files/config')
-rw-r--r-- | lib/public/files/config/icachedmountinfo.php | 62 | ||||
-rw-r--r-- | lib/public/files/config/ihomemountprovider.php | 43 | ||||
-rw-r--r-- | lib/public/files/config/imountprovider.php | 42 | ||||
-rw-r--r-- | lib/public/files/config/imountprovidercollection.php | 74 | ||||
-rw-r--r-- | lib/public/files/config/iusermountcache.php | 104 |
5 files changed, 0 insertions, 325 deletions
diff --git a/lib/public/files/config/icachedmountinfo.php b/lib/public/files/config/icachedmountinfo.php deleted file mode 100644 index e09c1a7f014..00000000000 --- a/lib/public/files/config/icachedmountinfo.php +++ /dev/null @@ -1,62 +0,0 @@ -<?php -/** - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCP\Files\Config; - -use OCP\Files\Node; -use OCP\IUser; - -/** - * Holds information about a mount for a user - * - * @since 9.0.0 - */ -interface ICachedMountInfo { - /** - * @return IUser - * @since 9.0.0 - */ - public function getUser(); - - /** - * @return int the numeric storage id of the mount - * @since 9.0.0 - */ - public function getStorageId(); - - /** - * @return int the fileid of the root of the mount - * @since 9.0.0 - */ - public function getRootId(); - - /** - * @return Node the root node of the mount - * @since 9.0.0 - */ - public function getMountPointNode(); - - /** - * @return string the mount point of the mount for the user - * @since 9.0.0 - */ - public function getMountPoint(); -} diff --git a/lib/public/files/config/ihomemountprovider.php b/lib/public/files/config/ihomemountprovider.php deleted file mode 100644 index bedcd3cfacc..00000000000 --- a/lib/public/files/config/ihomemountprovider.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCP\Files\Config; - -use OCP\Files\Storage\IStorageFactory; -use OCP\IUser; - -/** - * Provides - * - * @since 9.1.0 - */ -interface IHomeMountProvider { - /** - * Get all mountpoints applicable for the user - * - * @param \OCP\IUser $user - * @param \OCP\Files\Storage\IStorageFactory $loader - * @return \OCP\Files\Mount\IMountPoint|null - * @since 9.1.0 - */ - public function getHomeMountForUser(IUser $user, IStorageFactory $loader); -} diff --git a/lib/public/files/config/imountprovider.php b/lib/public/files/config/imountprovider.php deleted file mode 100644 index d1498fd5f61..00000000000 --- a/lib/public/files/config/imountprovider.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php -/** - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCP\Files\Config; - -use OCP\Files\Storage\IStorageFactory; -use OCP\IUser; - -/** - * Provides - * @since 8.0.0 - */ -interface IMountProvider { - /** - * Get all mountpoints applicable for the user - * - * @param \OCP\IUser $user - * @param \OCP\Files\Storage\IStorageFactory $loader - * @return \OCP\Files\Mount\IMountPoint[] - * @since 8.0.0 - */ - public function getMountsForUser(IUser $user, IStorageFactory $loader); -} diff --git a/lib/public/files/config/imountprovidercollection.php b/lib/public/files/config/imountprovidercollection.php deleted file mode 100644 index 29208cb6f53..00000000000 --- a/lib/public/files/config/imountprovidercollection.php +++ /dev/null @@ -1,74 +0,0 @@ -<?php -/** - * @author Morris Jobke <hey@morrisjobke.de> - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCP\Files\Config; - -use OCP\Files\Mount\IMountPoint; -use OCP\IUser; - -/** - * Manages the different mount providers - * @since 8.0.0 - */ -interface IMountProviderCollection { - /** - * Get all configured mount points for the user - * - * @param \OCP\IUser $user - * @return \OCP\Files\Mount\IMountPoint[] - * @since 8.0.0 - */ - public function getMountsForUser(IUser $user); - - /** - * Get the configured home mount for this user - * - * @param \OCP\IUser $user - * @return \OCP\Files\Mount\IMountPoint - * @since 9.1.0 - */ - public function getHomeMountForUser(IUser $user); - - /** - * Add a provider for mount points - * - * @param \OCP\Files\Config\IMountProvider $provider - * @since 8.0.0 - */ - public function registerProvider(IMountProvider $provider); - - /** - * Add a provider for home mount points - * - * @param \OCP\Files\Config\IHomeMountProvider $provider - * @since 9.1.0 - */ - public function registerHomeProvider(IHomeMountProvider $provider); - - /** - * Get the mount cache which can be used to search for mounts without setting up the filesystem - * - * @return IUserMountCache - * @since 9.0.0 - */ - public function getMountCache(); -} diff --git a/lib/public/files/config/iusermountcache.php b/lib/public/files/config/iusermountcache.php deleted file mode 100644 index 2f2c11da1a0..00000000000 --- a/lib/public/files/config/iusermountcache.php +++ /dev/null @@ -1,104 +0,0 @@ -<?php -/** - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2016, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCP\Files\Config; - -use OCP\Files\Mount\IMountPoint; -use OCP\IUser; - -/** - * Cache mounts points per user in the cache so we can easily look them up - * - * @since 9.0.0 - */ -interface IUserMountCache { - /** - * Register mounts for a user to the cache - * - * @param IUser $user - * @param IMountPoint[] $mounts - * @since 9.0.0 - */ - public function registerMounts(IUser $user, array $mounts); - - /** - * Get all cached mounts for a user - * - * @param IUser $user - * @return ICachedMountInfo[] - * @since 9.0.0 - */ - public function getMountsForUser(IUser $user); - - /** - * Get all cached mounts by storage - * - * @param int $numericStorageId - * @return ICachedMountInfo[] - * @since 9.0.0 - */ - public function getMountsForStorageId($numericStorageId); - - /** - * Get all cached mounts by root - * - * @param int $rootFileId - * @return ICachedMountInfo[] - * @since 9.0.0 - */ - public function getMountsForRootId($rootFileId); - - /** - * Get all cached mounts that contain a file - * - * @param int $fileId - * @return ICachedMountInfo[] - * @since 9.0.0 - */ - public function getMountsForFileId($fileId); - - /** - * Remove all cached mounts for a user - * - * @param IUser $user - * @since 9.0.0 - */ - public function removeUserMounts(IUser $user); - - /** - * Remove all mounts for a user and storage - * - * @param $storageId - * @param string $userId - * @return mixed - * @since 9.0.0 - */ - public function removeUserStorageMount($storageId, $userId); - - /** - * Remove all cached mounts for a storage - * - * @param $storageId - * @return mixed - * @since 9.0.0 - */ - public function remoteStorageMounts($storageId); -} |