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-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
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;
|
|
|
|
|
2018-10-17 21:03:44 +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 ICollection {
|
|
|
|
|
2018-10-18 14:00:25 +03:00
|
|
|
/**
|
|
|
|
* @return int
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-10-18 14:00:25 +03:00
|
|
|
*/
|
|
|
|
public function getId(): int;
|
|
|
|
|
2018-10-24 15:25:35 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-10-24 15:25:35 +03:00
|
|
|
*/
|
|
|
|
public function getName(): string;
|
|
|
|
|
2019-02-11 14:57:38 +03:00
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @since 16.0.0
|
|
|
|
*/
|
|
|
|
public function setName(string $name): void;
|
|
|
|
|
2018-09-14 13:34:24 +03:00
|
|
|
/**
|
|
|
|
* @return IResource[]
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-09-14 13:34:24 +03:00
|
|
|
*/
|
|
|
|
public function getResources(): array;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a resource to a collection
|
|
|
|
*
|
|
|
|
* @param IResource $resource
|
|
|
|
* @throws ResourceException when the resource is already part of the collection
|
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 addResource(IResource $resource): void;
|
2018-09-14 13:34:24 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a resource from a collection
|
|
|
|
*
|
|
|
|
* @param IResource $resource
|
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 removeResource(IResource $resource): void;
|
2018-10-17 21:03:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Can a user/guest access the collection
|
|
|
|
*
|
2019-02-11 14:57:38 +03:00
|
|
|
* @param IUser|null $user
|
2018-10-17 21:03:44 +03:00
|
|
|
* @return bool
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2018-10-17 21:03:44 +03:00
|
|
|
*/
|
2019-02-11 14:57:38 +03:00
|
|
|
public function canAccess(?IUser $user): bool;
|
2018-09-14 13:34:24 +03:00
|
|
|
}
|