> * @since 11.0.0 */ public function getSharesInFolder($userId, Folder $node, $reshares, $shallow = true); /** * Get all shares by the given user * * @param string $userId * @param int $shareType * @param Node|null $node * @param bool $reshares Also get the shares where $user is the owner instead of just the shares where $user is the initiator * @param int $limit The maximum number of shares to be returned, -1 for all shares * @param int $offset * @return \OCP\Share\IShare[] * @since 9.0.0 */ public function getSharesBy($userId, $shareType, $node, $reshares, $limit, $offset); /** * Get share by id * * @param string $id * @param string|null $recipientId * @return \OCP\Share\IShare * @throws ShareNotFound * @since 9.0.0 */ public function getShareById($id, $recipientId = null); /** * Get shares for a given path * * @param Node $path * @return \OCP\Share\IShare[] * @since 9.0.0 */ public function getSharesByPath(Node $path); /** * Get shared with the given user * * @param string $userId get shares where this user is the recipient * @param int $shareType * @param Node|null $node * @param int $limit The max number of entries returned, -1 for all * @param int $offset * @return \OCP\Share\IShare[] * @since 9.0.0 */ public function getSharedWith($userId, $shareType, $node, $limit, $offset); /** * Get a share by token * * @param string $token * @return \OCP\Share\IShare * @throws ShareNotFound * @since 9.0.0 */ public function getShareByToken(string $token); /** * 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); /** * 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); /** * 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); /** * Get the access list to the array of provided nodes. * * @see IManager::getAccessList() for sample docs * * @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) * @return array * @since 12 */ public function getAccessList($nodes, $currentAccess); /** * Get all the shares in this provider returned as iterable to reduce memory * overhead * * @return iterable * @since 18.0.0 */ public function getAllShares(): iterable; /** * Get all children of this share * * @return IShare[] * @since 9.0.0 */ public function getChildren(IShare $parent); }