2018-09-14 13:34:24 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-10-16 18:48:16 +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>
|
|
|
|
* @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;
|
|
|
|
|
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 IProvider {
|
|
|
|
|
2019-01-24 13:50:01 +03:00
|
|
|
/**
|
2019-02-22 11:58:15 +03:00
|
|
|
* Get the resource type of the provider
|
2019-01-24 13:50:01 +03:00
|
|
|
*
|
|
|
|
* @return string
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2019-01-24 13:50:01 +03:00
|
|
|
*/
|
|
|
|
public function getType(): string;
|
|
|
|
|
2018-10-17 21:03:44 +03:00
|
|
|
/**
|
2019-03-14 14:30:34 +03:00
|
|
|
* Get the rich object data of a resource
|
2018-10-17 21:03:44 +03:00
|
|
|
*
|
|
|
|
* @param IResource $resource
|
2019-03-14 14:30:34 +03:00
|
|
|
* @return array
|
2019-02-07 18:04:15 +03:00
|
|
|
* @since 16.0.0
|
2019-01-24 14:03:52 +03:00
|
|
|
*/
|
2019-03-14 14:30:34 +03:00
|
|
|
public function getResourceRichObject(IResource $resource): array;
|
2019-01-24 14:03:52 +03:00
|
|
|
|
2018-10-17 21:03:44 +03:00
|
|
|
/**
|
|
|
|
* Can a user/guest access the collection
|
|
|
|
*
|
|
|
|
* @param IResource $resource
|
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 canAccessResource(IResource $resource, ?IUser $user): bool;
|
2018-09-14 13:34:24 +03:00
|
|
|
}
|