2015-10-30 15:09:07 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-07-21 18:07:57 +03:00
|
|
|
*
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2015-10-30 15:09:07 +03:00
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2016-01-27 14:13:53 +03:00
|
|
|
|
|
|
|
namespace OCP\Share;
|
2015-10-30 15:09:07 +03:00
|
|
|
|
2016-10-31 22:19:00 +03:00
|
|
|
use OCP\Files\Folder;
|
2016-03-11 10:51:07 +03:00
|
|
|
use OCP\Share\Exceptions\ShareNotFound;
|
2016-01-29 17:26:04 +03:00
|
|
|
use OCP\Files\Node;
|
2015-10-30 15:09:07 +03:00
|
|
|
|
2016-01-27 14:13:53 +03:00
|
|
|
/**
|
|
|
|
* Interface IShareProvider
|
|
|
|
*
|
|
|
|
* @package OCP\Share
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2015-10-30 15:09:07 +03:00
|
|
|
interface IShareProvider {
|
|
|
|
|
2016-01-13 15:02:23 +03:00
|
|
|
/**
|
|
|
|
* Return the identifier of this provider.
|
|
|
|
*
|
|
|
|
* @return string Containing only [a-zA-Z0-9]
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2016-01-13 15:02:23 +03:00
|
|
|
*/
|
|
|
|
public function identifier();
|
|
|
|
|
2015-10-30 15:09:07 +03:00
|
|
|
/**
|
2016-01-27 22:51:26 +03:00
|
|
|
* Create a share
|
2015-10-30 15:09:07 +03:00
|
|
|
*
|
2016-01-27 14:13:53 +03:00
|
|
|
* @param \OCP\Share\IShare $share
|
|
|
|
* @return \OCP\Share\IShare The share object
|
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-01-27 14:13:53 +03:00
|
|
|
public function create(\OCP\Share\IShare $share);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a share
|
|
|
|
*
|
2016-01-27 14:13:53 +03:00
|
|
|
* @param \OCP\Share\IShare $share
|
|
|
|
* @return \OCP\Share\IShare The share object
|
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-01-27 14:13:53 +03:00
|
|
|
public function update(\OCP\Share\IShare $share);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a share
|
|
|
|
*
|
2016-01-27 14:13:53 +03:00
|
|
|
* @param \OCP\Share\IShare $share
|
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-01-27 14:13:53 +03:00
|
|
|
public function delete(\OCP\Share\IShare $share);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
2016-01-21 16:31:09 +03:00
|
|
|
/**
|
|
|
|
* Unshare a file from self as recipient.
|
2016-01-27 22:51:26 +03:00
|
|
|
* This may require special handling. If a user unshares a group
|
|
|
|
* share from their self then the original group share should still exist.
|
2016-01-21 16:31:09 +03:00
|
|
|
*
|
2016-01-27 14:13:53 +03:00
|
|
|
* @param \OCP\Share\IShare $share
|
2016-02-02 18:55:41 +03:00
|
|
|
* @param string $recipient UserId of the recipient
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2016-01-21 16:31:09 +03:00
|
|
|
*/
|
2016-02-02 18:55:41 +03:00
|
|
|
public function deleteFromSelf(\OCP\Share\IShare $share, $recipient);
|
2016-01-21 16:31:09 +03:00
|
|
|
|
2016-01-29 12:27:39 +03:00
|
|
|
/**
|
|
|
|
* Move a share as a recipient.
|
|
|
|
* This is updating the share target. Thus the mount point of the recipient.
|
|
|
|
* This may require special handling. If a user moves a group share
|
|
|
|
* the target should only be changed for them.
|
|
|
|
*
|
|
|
|
* @param \OCP\Share\IShare $share
|
2016-02-02 18:55:41 +03:00
|
|
|
* @param string $recipient userId of recipient
|
2016-01-29 12:27:39 +03:00
|
|
|
* @return \OCP\Share\IShare
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2016-02-02 18:55:41 +03:00
|
|
|
public function move(\OCP\Share\IShare $share, $recipient);
|
2016-01-29 12:27:39 +03:00
|
|
|
|
2016-06-18 23:04:56 +03:00
|
|
|
/**
|
|
|
|
* Get all shares by the given user in a folder
|
|
|
|
*
|
|
|
|
* @param string $userId
|
2016-10-31 22:19:00 +03:00
|
|
|
* @param Folder $node
|
2016-06-18 23:04:56 +03:00
|
|
|
* @param bool $reshares Also get the shares where $user is the owner instead of just the shares where $user is the initiator
|
|
|
|
* @return \OCP\Share\IShare[]
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-06-18 23:04:56 +03:00
|
|
|
*/
|
2016-10-31 22:19:00 +03:00
|
|
|
public function getSharesInFolder($userId, Folder $node, $reshares);
|
2016-06-18 23:04:56 +03:00
|
|
|
|
2015-10-30 15:09:07 +03:00
|
|
|
/**
|
|
|
|
* Get all shares by the given user
|
|
|
|
*
|
2016-02-02 18:55:41 +03:00
|
|
|
* @param string $userId
|
2015-10-30 15:09:07 +03:00
|
|
|
* @param int $shareType
|
2016-03-11 10:51:07 +03:00
|
|
|
* @param Node|null $node
|
2016-01-20 16:17:25 +03:00
|
|
|
* @param bool $reshares Also get the shares where $user is the owner instead of just the shares where $user is the initiator
|
2015-12-03 12:51:41 +03:00
|
|
|
* @param int $limit The maximum number of shares to be returned, -1 for all shares
|
2015-10-30 15:09:07 +03:00
|
|
|
* @param int $offset
|
2016-02-05 22:00:07 +03:00
|
|
|
* @return \OCP\Share\IShare[]
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-02-02 18:55:41 +03:00
|
|
|
public function getSharesBy($userId, $shareType, $node, $reshares, $limit, $offset);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get share by id
|
|
|
|
*
|
|
|
|
* @param int $id
|
2016-02-02 18:55:41 +03:00
|
|
|
* @param string|null $recipientId
|
2016-01-27 22:51:26 +03:00
|
|
|
* @return \OCP\Share\IShare
|
2015-10-30 15:10:08 +03:00
|
|
|
* @throws ShareNotFound
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-02-02 18:55:41 +03:00
|
|
|
public function getShareById($id, $recipientId = null);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get shares for a given path
|
|
|
|
*
|
2016-03-11 10:51:07 +03:00
|
|
|
* @param Node $path
|
2016-01-27 22:51:26 +03:00
|
|
|
* @return \OCP\Share\IShare[]
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-03-11 10:51:07 +03:00
|
|
|
public function getSharesByPath(Node $path);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get shared with the given user
|
|
|
|
*
|
2016-02-02 18:57:50 +03:00
|
|
|
* @param string $userId get shares where this user is the recipient
|
2015-10-30 15:09:07 +03:00
|
|
|
* @param int $shareType
|
2016-01-29 17:26:04 +03:00
|
|
|
* @param Node|null $node
|
2015-12-03 12:51:41 +03:00
|
|
|
* @param int $limit The max number of entries returned, -1 for all
|
|
|
|
* @param int $offset
|
2016-01-27 22:51:26 +03:00
|
|
|
* @return \OCP\Share\IShare[]
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-02-02 18:55:41 +03:00
|
|
|
public function getSharedWith($userId, $shareType, $node, $limit, $offset);
|
2015-10-30 15:09:07 +03:00
|
|
|
|
|
|
|
/**
|
2016-01-14 18:44:59 +03:00
|
|
|
* Get a share by token
|
2015-10-30 15:09:07 +03:00
|
|
|
*
|
|
|
|
* @param string $token
|
2016-01-27 22:51:26 +03:00
|
|
|
* @return \OCP\Share\IShare
|
2016-01-14 18:44:59 +03:00
|
|
|
* @throws ShareNotFound
|
2016-01-27 14:13:53 +03:00
|
|
|
* @since 9.0.0
|
2015-10-30 15:09:07 +03:00
|
|
|
*/
|
2016-01-14 18:44:59 +03:00
|
|
|
public function getShareByToken($token);
|
2016-04-04 13:28:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A user is deleted from the system
|
|
|
|
* So clean up the relevant shares.
|
|
|
|
*
|
|
|
|
* @param string $uid
|
|
|
|
* @param int $shareType
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
public function userDeleted($uid, $shareType);
|
2016-04-12 10:46:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A group is deleted from the system.
|
|
|
|
* We have to clean up all shares to this group.
|
|
|
|
* Providers not handling group shares should just return
|
|
|
|
*
|
|
|
|
* @param string $gid
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
public function groupDeleted($gid);
|
2016-04-13 16:00:12 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A user is deleted from a group
|
|
|
|
* We have to clean up all the related user specific group shares
|
|
|
|
* Providers not handling group shares should just return
|
|
|
|
*
|
|
|
|
* @param string $uid
|
|
|
|
* @param string $gid
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
public function userDeletedFromGroup($uid, $gid);
|
2016-12-22 23:44:21 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the access list to the array of provided nodes.
|
2017-04-11 13:40:36 +03:00
|
|
|
*
|
|
|
|
* @see IManager::getAccessList() for sample docs
|
2016-12-22 23:44:21 +03:00
|
|
|
*
|
|
|
|
* @param Node[] $nodes The list of nodes to get access for
|
|
|
|
* @param bool $currentAccess If current access is required (like for removed shares that might get revived later)
|
2017-03-27 17:06:31 +03:00
|
|
|
* @return array
|
2016-12-22 23:44:21 +03:00
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
public function getAccessList($nodes, $currentAccess);
|
2015-10-30 15:09:07 +03:00
|
|
|
}
|