2018-09-14 13:34:24 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-09-14 13:34:24 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-09-14 13:34:24 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2019-12-19 15:16:31 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
2018-09-14 13:34:24 +03: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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-09-14 13:34:24 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Collaboration\Resources;
|
|
|
|
|
2019-02-11 14:57:38 +03:00
|
|
|
use OCP\IUser;
|
|
|
|
|
2018-09-14 13:34:24 +03:00
|
|
|
/**
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-09-14 13:34:24 +03:00
|
|
|
*/
|
|
|
|
interface IManager extends IProvider {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
* @return ICollection
|
2018-10-24 15:25:35 +03:00
|
|
|
* @throws CollectionException when the collection could not be found
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-09-14 13:34:24 +03:00
|
|
|
*/
|
|
|
|
public function getCollection(int $id): ICollection;
|
|
|
|
|
2019-02-11 14:57:38 +03:00
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
* @param IUser|null $user
|
|
|
|
* @return ICollection
|
|
|
|
* @throws CollectionException when the collection could not be found
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function getCollectionForUser(int $id, ?IUser $user): ICollection;
|
|
|
|
|
2018-10-18 14:00:25 +03:00
|
|
|
/**
|
2018-10-24 15:25:35 +03:00
|
|
|
* @param string $name
|
2018-10-18 14:00:25 +03:00
|
|
|
* @return ICollection
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-10-18 14:00:25 +03:00
|
|
|
*/
|
2018-10-24 15:25:35 +03:00
|
|
|
public function newCollection(string $name): ICollection;
|
2018-10-18 14:00:25 +03:00
|
|
|
|
2019-02-11 14:57:38 +03:00
|
|
|
/**
|
|
|
|
* Can a user/guest access the collection
|
|
|
|
*
|
|
|
|
* @param ICollection $collection
|
|
|
|
* @param IUser|null $user
|
|
|
|
* @return bool
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function canAccessCollection(ICollection $collection, ?IUser $user): bool;
|
2019-01-29 14:23:14 +03:00
|
|
|
|
2019-02-22 11:54:03 +03:00
|
|
|
/**
|
|
|
|
* @param IUser|null $user
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function invalidateAccessCacheForUser(?IUser $user): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IResource $resource
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function invalidateAccessCacheForResource(IResource $resource): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IResource $resource
|
|
|
|
* @param IUser|null $user
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function invalidateAccessCacheForResourceByUser(IResource $resource, ?IUser $user): void;
|
|
|
|
|
2019-02-22 13:37:04 +03:00
|
|
|
/**
|
|
|
|
* @param IProvider $provider
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function invalidateAccessCacheForProvider(IProvider $provider): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IProvider $provider
|
|
|
|
* @param IUser|null $user
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function invalidateAccessCacheForProviderByUser(IProvider $provider, ?IUser $user): void;
|
|
|
|
|
2019-01-29 14:23:14 +03:00
|
|
|
/**
|
2019-02-11 14:57:38 +03:00
|
|
|
* @param string $type
|
|
|
|
* @param string $id
|
|
|
|
* @return IResource
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2019-01-29 14:23:14 +03:00
|
|
|
*/
|
2019-02-11 14:57:38 +03:00
|
|
|
public function createResource(string $type, string $id): IResource;
|
2019-01-29 14:23:14 +03:00
|
|
|
|
2018-09-14 13:34:24 +03:00
|
|
|
/**
|
|
|
|
* @param string $type
|
|
|
|
* @param string $id
|
2019-02-11 14:57:38 +03:00
|
|
|
* @param IUser|null $user
|
2018-09-14 13:34:24 +03:00
|
|
|
* @return IResource
|
2019-02-11 14:57:38 +03:00
|
|
|
* @throws ResourceException
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-09-14 13:34:24 +03:00
|
|
|
*/
|
2019-02-11 14:57:38 +03:00
|
|
|
public function getResourceForUser(string $type, string $id, ?IUser $user): IResource;
|
2018-09-14 13:34:24 +03:00
|
|
|
|
2019-01-24 13:43:18 +03:00
|
|
|
/**
|
2019-02-22 17:11:09 +03:00
|
|
|
* @param string $provider
|
|
|
|
* @since 16.0.0
|
2019-09-29 21:57:00 +03:00
|
|
|
* @deprecated 18.0.0 Use IProviderManager::registerResourceProvider instead
|
2019-01-24 13:43:18 +03:00
|
|
|
*/
|
2019-02-22 17:11:09 +03:00
|
|
|
public function registerResourceProvider(string $provider): void;
|
2018-09-14 13:34:24 +03:00
|
|
|
}
|