123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Maxence Lange <maxence@nextcloud.com>
- * @author Michael Jobst <mjobst+github@tecratech.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @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/>
- *
- */
- namespace OCA\Files_Sharing\Controller;
- use OCA\Files\Helper;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\AppFramework\OCS\OCSBadRequestException;
- use OCP\AppFramework\OCS\OCSException;
- use OCP\AppFramework\OCS\OCSForbiddenException;
- use OCP\AppFramework\OCS\OCSNotFoundException;
- use OCP\AppFramework\OCSController;
- use OCP\AppFramework\QueryException;
- use OCP\Constants;
- use OCP\Files\Node;
- use OCP\Files\NotFoundException;
- use OCP\IConfig;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\IUserManager;
- use OCP\IRequest;
- use OCP\IServerContainer;
- use OCP\IURLGenerator;
- use OCP\Files\IRootFolder;
- use OCP\Lock\LockedException;
- use OCP\Share;
- use OCP\Share\IManager;
- use OCP\Share\Exceptions\ShareNotFound;
- use OCP\Share\Exceptions\GenericShareException;
- use OCP\Lock\ILockingProvider;
- use OCP\Share\IShare;
- use OCA\Files_Sharing\External\Storage;
- /**
- * Class Share20OCS
- *
- * @package OCA\Files_Sharing\API
- */
- class ShareAPIController extends OCSController {
- /** @var IManager */
- private $shareManager;
- /** @var IGroupManager */
- private $groupManager;
- /** @var IUserManager */
- private $userManager;
- /** @var IRootFolder */
- private $rootFolder;
- /** @var IURLGenerator */
- private $urlGenerator;
- /** @var string */
- private $currentUser;
- /** @var IL10N */
- private $l;
- /** @var \OCP\Files\Node */
- private $lockedNode;
- /** @var IConfig */
- private $config;
- /** @var IAppManager */
- private $appManager;
- /** @var IServerContainer */
- private $serverContainer;
- /**
- * Share20OCS constructor.
- *
- * @param string $appName
- * @param IRequest $request
- * @param IManager $shareManager
- * @param IGroupManager $groupManager
- * @param IUserManager $userManager
- * @param IRootFolder $rootFolder
- * @param IURLGenerator $urlGenerator
- * @param string $userId
- * @param IL10N $l10n
- * @param IConfig $config
- * @param IAppManager $appManager
- * @param IServerContainer $serverContainer
- */
- public function __construct(
- string $appName,
- IRequest $request,
- IManager $shareManager,
- IGroupManager $groupManager,
- IUserManager $userManager,
- IRootFolder $rootFolder,
- IURLGenerator $urlGenerator,
- string $userId = null,
- IL10N $l10n,
- IConfig $config,
- IAppManager $appManager,
- IServerContainer $serverContainer
- ) {
- parent::__construct($appName, $request);
- $this->shareManager = $shareManager;
- $this->userManager = $userManager;
- $this->groupManager = $groupManager;
- $this->request = $request;
- $this->rootFolder = $rootFolder;
- $this->urlGenerator = $urlGenerator;
- $this->currentUser = $userId;
- $this->l = $l10n;
- $this->config = $config;
- $this->appManager = $appManager;
- $this->serverContainer = $serverContainer;
- }
- /**
- * Convert an IShare to an array for OCS output
- *
- * @param \OCP\Share\IShare $share
- * @param Node|null $recipientNode
- * @return array
- * @throws NotFoundException In case the node can't be resolved.
- *
- * @suppress PhanUndeclaredClassMethod
- */
- protected function formatShare(\OCP\Share\IShare $share, Node $recipientNode = null): array {
- $sharedBy = $this->userManager->get($share->getSharedBy());
- $shareOwner = $this->userManager->get($share->getShareOwner());
- $result = [
- 'id' => $share->getId(),
- 'share_type' => $share->getShareType(),
- 'uid_owner' => $share->getSharedBy(),
- 'displayname_owner' => $sharedBy !== null ? $sharedBy->getDisplayName() : $share->getSharedBy(),
- 'permissions' => $share->getPermissions(),
- 'stime' => $share->getShareTime()->getTimestamp(),
- 'parent' => null,
- 'expiration' => null,
- 'token' => null,
- 'uid_file_owner' => $share->getShareOwner(),
- 'note' => $share->getNote(),
- 'label' => $share->getLabel(),
- 'displayname_file_owner' => $shareOwner !== null ? $shareOwner->getDisplayName() : $share->getShareOwner(),
- ];
- $userFolder = $this->rootFolder->getUserFolder($this->currentUser);
- if ($recipientNode) {
- $node = $recipientNode;
- } else {
- $nodes = $userFolder->getById($share->getNodeId());
- if (empty($nodes)) {
- // fallback to guessing the path
- $node = $userFolder->get($share->getTarget());
- if ($node === null || $share->getTarget() === '') {
- throw new NotFoundException();
- }
- } else {
- $node = $nodes[0];
- }
- }
- $result['path'] = $userFolder->getRelativePath($node->getPath());
- if ($node instanceOf \OCP\Files\Folder) {
- $result['item_type'] = 'folder';
- } else {
- $result['item_type'] = 'file';
- }
- $result['mimetype'] = $node->getMimetype();
- $result['storage_id'] = $node->getStorage()->getId();
- $result['storage'] = $node->getStorage()->getCache()->getNumericStorageId();
- $result['item_source'] = $node->getId();
- $result['file_source'] = $node->getId();
- $result['file_parent'] = $node->getParent()->getId();
- $result['file_target'] = $share->getTarget();
- $expiration = $share->getExpirationDate();
- if ($expiration !== null) {
- $result['expiration'] = $expiration->format('Y-m-d 00:00:00');
- }
- if ($share->getShareType() === Share::SHARE_TYPE_USER) {
- $sharedWith = $this->userManager->get($share->getSharedWith());
- $result['share_with'] = $share->getSharedWith();
- $result['share_with_displayname'] = $sharedWith !== null ? $sharedWith->getDisplayName() : $share->getSharedWith();
- } else if ($share->getShareType() === Share::SHARE_TYPE_GROUP) {
- $group = $this->groupManager->get($share->getSharedWith());
- $result['share_with'] = $share->getSharedWith();
- $result['share_with_displayname'] = $group !== null ? $group->getDisplayName() : $share->getSharedWith();
- } else if ($share->getShareType() === Share::SHARE_TYPE_LINK) {
- // "share_with" and "share_with_displayname" for passwords of link
- // shares was deprecated in Nextcloud 15, use "password" instead.
- $result['share_with'] = $share->getPassword();
- $result['share_with_displayname'] = $share->getPassword();
- $result['password'] = $share->getPassword();
- $result['send_password_by_talk'] = $share->getSendPasswordByTalk();
- $result['token'] = $share->getToken();
- $result['url'] = $this->urlGenerator->linkToRouteAbsolute('files_sharing.sharecontroller.showShare', ['token' => $share->getToken()]);
- } else if ($share->getShareType() === Share::SHARE_TYPE_REMOTE || $share->getShareType() === Share::SHARE_TYPE_REMOTE_GROUP) {
- $result['share_with'] = $share->getSharedWith();
- $result['share_with_displayname'] = $this->getDisplayNameFromAddressBook($share->getSharedWith(), 'CLOUD');
- $result['token'] = $share->getToken();
- } else if ($share->getShareType() === Share::SHARE_TYPE_EMAIL) {
- $result['share_with'] = $share->getSharedWith();
- $result['password'] = $share->getPassword();
- $result['send_password_by_talk'] = $share->getSendPasswordByTalk();
- $result['share_with_displayname'] = $this->getDisplayNameFromAddressBook($share->getSharedWith(), 'EMAIL');
- $result['token'] = $share->getToken();
- } else if ($share->getShareType() === Share::SHARE_TYPE_CIRCLE) {
- // getSharedWith() returns either "name (type, owner)" or
- // "name (type, owner) [id]", depending on the Circles app version.
- $hasCircleId = (substr($share->getSharedWith(), -1) === ']');
- $result['share_with_displayname'] = $share->getSharedWithDisplayName();
- if (empty($result['share_with_displayname'])) {
- $displayNameLength = ($hasCircleId? strrpos($share->getSharedWith(), ' '): strlen($share->getSharedWith()));
- $result['share_with_displayname'] = substr($share->getSharedWith(), 0, $displayNameLength);
- }
- $result['share_with_avatar'] = $share->getSharedWithAvatar();
- $shareWithStart = ($hasCircleId? strrpos($share->getSharedWith(), '[') + 1: 0);
- $shareWithLength = ($hasCircleId? -1: strpos($share->getSharedWith(), ' '));
- if (is_bool($shareWithLength)) {
- $shareWithLength = -1;
- }
- $result['share_with'] = substr($share->getSharedWith(), $shareWithStart, $shareWithLength);
- } else if ($share->getShareType() === Share::SHARE_TYPE_ROOM) {
- $result['share_with'] = $share->getSharedWith();
- $result['share_with_displayname'] = '';
- try {
- $result = array_merge($result, $this->getRoomShareHelper()->formatShare($share));
- } catch (QueryException $e) {
- }
- }
- $result['mail_send'] = $share->getMailSend() ? 1 : 0;
- $result['hide_download'] = $share->getHideDownload() ? 1 : 0;
- return $result;
- }
- /**
- * Check if one of the users address books knows the exact property, if
- * yes we return the full name.
- *
- * @param string $query
- * @param string $property
- * @return string
- */
- private function getDisplayNameFromAddressBook(string $query, string $property): string {
- // FIXME: If we inject the contacts manager it gets initialized bofore any address books are registered
- $result = \OC::$server->getContactsManager()->search($query, [$property]);
- foreach ($result as $r) {
- foreach($r[$property] as $value) {
- if ($value === $query) {
- return $r['FN'];
- }
- }
- }
- return $query;
- }
- /**
- * Get a specific share by id
- *
- * @NoAdminRequired
- *
- * @param string $id
- * @return DataResponse
- * @throws OCSNotFoundException
- */
- public function getShare(string $id): DataResponse {
- try {
- $share = $this->getShareById($id);
- } catch (ShareNotFound $e) {
- throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist'));
- }
- if ($this->canAccessShare($share)) {
- try {
- $share = $this->formatShare($share);
- return new DataResponse([$share]);
- } catch (NotFoundException $e) {
- //Fall trough
- }
- }
- throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist'));
- }
- /**
- * Delete a share
- *
- * @NoAdminRequired
- *
- * @param string $id
- * @return DataResponse
- * @throws OCSNotFoundException
- */
- public function deleteShare(string $id): DataResponse {
- try {
- $share = $this->getShareById($id);
- } catch (ShareNotFound $e) {
- throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist'));
- }
- try {
- $this->lock($share->getNode());
- } catch (LockedException $e) {
- throw new OCSNotFoundException($this->l->t('could not delete share'));
- }
- if (!$this->canAccessShare($share)) {
- throw new OCSNotFoundException($this->l->t('Could not delete share'));
- }
- if (($share->getShareType() === Share::SHARE_TYPE_GROUP ||
- $share->getShareType() === Share::SHARE_TYPE_ROOM) &&
- $share->getShareOwner() !== $this->currentUser &&
- $share->getSharedBy() !== $this->currentUser) {
- $this->shareManager->deleteFromSelf($share, $this->currentUser);
- } else {
- $this->shareManager->deleteShare($share);
- }
- return new DataResponse();
- }
- /**
- * @NoAdminRequired
- *
- * @param string $path
- * @param int $permissions
- * @param int $shareType
- * @param string $shareWith
- * @param string $publicUpload
- * @param string $password
- * @param string $sendPasswordByTalk
- * @param string $expireDate
- * @param string $label
- *
- * @return DataResponse
- * @throws NotFoundException
- * @throws OCSBadRequestException
- * @throws OCSException
- * @throws OCSForbiddenException
- * @throws OCSNotFoundException
- * @throws \OCP\Files\InvalidPathException
- * @suppress PhanUndeclaredClassMethod
- */
- public function createShare(
- string $path = null,
- int $permissions = null,
- int $shareType = -1,
- string $shareWith = null,
- string $publicUpload = 'false',
- string $password = '',
- string $sendPasswordByTalk = null,
- string $expireDate = '',
- string $label = ''
- ): DataResponse {
- $share = $this->shareManager->newShare();
- if ($permissions === null) {
- $permissions = $this->config->getAppValue('core', 'shareapi_default_permissions', Constants::PERMISSION_ALL);
- }
- // Verify path
- if ($path === null) {
- throw new OCSNotFoundException($this->l->t('Please specify a file or folder path'));
- }
- $userFolder = $this->rootFolder->getUserFolder($this->currentUser);
- try {
- $path = $userFolder->get($path);
- } catch (NotFoundException $e) {
- throw new OCSNotFoundException($this->l->t('Wrong path, file/folder doesn\'t exist'));
- }
- $share->setNode($path);
- try {
- $this->lock($share->getNode());
- } catch (LockedException $e) {
- throw new OCSNotFoundException($this->l->t('Could not create share'));
- }
- if ($permissions < 0 || $permissions > Constants::PERMISSION_ALL) {
- throw new OCSNotFoundException($this->l->t('invalid permissions'));
- }
- // Shares always require read permissions
- $permissions |= Constants::PERMISSION_READ;
- if ($path instanceof \OCP\Files\File) {
- // Single file shares should never have delete or create permissions
- $permissions &= ~Constants::PERMISSION_DELETE;
- $permissions &= ~Constants::PERMISSION_CREATE;
- }
- /*
- * Hack for https://github.com/owncloud/core/issues/22587
- * We check the permissions via webdav. But the permissions of the mount point
- * do not equal the share permissions. Here we fix that for federated mounts.
- */
- if ($path->getStorage()->instanceOfStorage(Storage::class)) {
- $permissions &= ~($permissions & ~$path->getPermissions());
- }
- if ($shareType === Share::SHARE_TYPE_USER) {
- // Valid user is required to share
- if ($shareWith === null || !$this->userManager->userExists($shareWith)) {
- throw new OCSNotFoundException($this->l->t('Please specify a valid user'));
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === Share::SHARE_TYPE_GROUP) {
- if (!$this->shareManager->allowGroupSharing()) {
- throw new OCSNotFoundException($this->l->t('Group sharing is disabled by the administrator'));
- }
- // Valid group is required to share
- if ($shareWith === null || !$this->groupManager->groupExists($shareWith)) {
- throw new OCSNotFoundException($this->l->t('Please specify a valid group'));
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === Share::SHARE_TYPE_LINK) {
- //Can we even share links?
- if (!$this->shareManager->shareApiAllowLinks()) {
- throw new OCSNotFoundException($this->l->t('Public link sharing is disabled by the administrator'));
- }
- if ($publicUpload === 'true') {
- // Check if public upload is allowed
- if (!$this->shareManager->shareApiLinkAllowPublicUpload()) {
- throw new OCSForbiddenException($this->l->t('Public upload disabled by the administrator'));
- }
- // Public upload can only be set for folders
- if ($path instanceof \OCP\Files\File) {
- throw new OCSNotFoundException($this->l->t('Public upload is only possible for publicly shared folders'));
- }
- $share->setPermissions(
- Constants::PERMISSION_READ |
- Constants::PERMISSION_CREATE |
- Constants::PERMISSION_UPDATE |
- Constants::PERMISSION_DELETE
- );
- } else {
- $share->setPermissions(Constants::PERMISSION_READ);
- }
- // Set password
- if ($password !== '') {
- $share->setPassword($password);
- }
- if (!empty($label)) {
- $share->setLabel($label);
- }
- if ($sendPasswordByTalk === 'true') {
- if (!$this->appManager->isEnabledForUser('spreed')) {
- throw new OCSForbiddenException($this->l->t('Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled', [$path->getPath()]));
- }
- $share->setSendPasswordByTalk(true);
- }
- //Expire date
- if ($expireDate !== '') {
- try {
- $expireDate = $this->parseDate($expireDate);
- $share->setExpirationDate($expireDate);
- } catch (\Exception $e) {
- throw new OCSNotFoundException($this->l->t('Invalid date, date format must be YYYY-MM-DD'));
- }
- }
- } else if ($shareType === Share::SHARE_TYPE_REMOTE) {
- if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
- throw new OCSForbiddenException($this->l->t('Sharing %1$s failed because the back end does not allow shares from type %2$s', [$path->getPath(), $shareType]));
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === Share::SHARE_TYPE_REMOTE_GROUP) {
- if (!$this->shareManager->outgoingServer2ServerGroupSharesAllowed()) {
- throw new OCSForbiddenException($this->l->t('Sharing %1$s failed because the back end does not allow shares from type %2$s', [$path->getPath(), $shareType]));
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === Share::SHARE_TYPE_EMAIL) {
- if ($share->getNodeType() === 'file') {
- $share->setPermissions(Constants::PERMISSION_READ);
- } else {
- $share->setPermissions($permissions);
- }
- $share->setSharedWith($shareWith);
- if ($sendPasswordByTalk === 'true') {
- if (!$this->appManager->isEnabledForUser('spreed')) {
- throw new OCSForbiddenException($this->l->t('Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled', [$path->getPath()]));
- }
- $share->setSendPasswordByTalk(true);
- }
- } else if ($shareType === Share::SHARE_TYPE_CIRCLE) {
- if (!\OC::$server->getAppManager()->isEnabledForUser('circles') || !class_exists('\OCA\Circles\ShareByCircleProvider')) {
- throw new OCSNotFoundException($this->l->t('You cannot share to a Circle if the app is not enabled'));
- }
- $circle = \OCA\Circles\Api\v1\Circles::detailsCircle($shareWith);
- // Valid circle is required to share
- if ($circle === null) {
- throw new OCSNotFoundException($this->l->t('Please specify a valid circle'));
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === Share::SHARE_TYPE_ROOM) {
- try {
- $this->getRoomShareHelper()->createShare($share, $shareWith, $permissions, $expireDate);
- } catch (QueryException $e) {
- throw new OCSForbiddenException($this->l->t('Sharing %s failed because the back end does not support room shares', [$path->getPath()]));
- }
- } else {
- throw new OCSBadRequestException($this->l->t('Unknown share type'));
- }
- $share->setShareType($shareType);
- $share->setSharedBy($this->currentUser);
- try {
- $share = $this->shareManager->createShare($share);
- } catch (GenericShareException $e) {
- $code = $e->getCode() === 0 ? 403 : $e->getCode();
- throw new OCSException($e->getHint(), $code);
- } catch (\Exception $e) {
- throw new OCSForbiddenException($e->getMessage(), $e);
- }
- $output = $this->formatShare($share);
- return new DataResponse($output);
- }
- /**
- * @param \OCP\Files\File|\OCP\Files\Folder $node
- * @param boolean $includeTags
- * @return DataResponse
- */
- private function getSharedWithMe($node = null, bool $includeTags): DataResponse {
- $userShares = $this->shareManager->getSharedWith($this->currentUser, Share::SHARE_TYPE_USER, $node, -1, 0);
- $groupShares = $this->shareManager->getSharedWith($this->currentUser, Share::SHARE_TYPE_GROUP, $node, -1, 0);
- $circleShares = $this->shareManager->getSharedWith($this->currentUser, Share::SHARE_TYPE_CIRCLE, $node, -1, 0);
- $roomShares = $this->shareManager->getSharedWith($this->currentUser, Share::SHARE_TYPE_ROOM, $node, -1, 0);
- $shares = array_merge($userShares, $groupShares, $circleShares, $roomShares);
- $shares = array_filter($shares, function (IShare $share) {
- return $share->getShareOwner() !== $this->currentUser;
- });
- $formatted = [];
- foreach ($shares as $share) {
- if ($this->canAccessShare($share)) {
- try {
- $formatted[] = $this->formatShare($share);
- } catch (NotFoundException $e) {
- // Ignore this share
- }
- }
- }
- if ($includeTags) {
- $formatted = Helper::populateTags($formatted, 'file_source', \OC::$server->getTagManager());
- }
- return new DataResponse($formatted);
- }
- /**
- * @param \OCP\Files\Folder $folder
- * @return DataResponse
- * @throws OCSBadRequestException
- */
- private function getSharesInDir(Node $folder): DataResponse {
- if (!($folder instanceof \OCP\Files\Folder)) {
- throw new OCSBadRequestException($this->l->t('Not a directory'));
- }
- $nodes = $folder->getDirectoryListing();
- /** @var \OCP\Share\IShare[] $shares */
- $shares = [];
- foreach ($nodes as $node) {
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_USER, $node, false, -1, 0));
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_GROUP, $node, false, -1, 0));
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_LINK, $node, false, -1, 0));
- if($this->shareManager->shareProviderExists(Share::SHARE_TYPE_EMAIL)) {
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_EMAIL, $node, false, -1, 0));
- }
- if ($this->shareManager->outgoingServer2ServerSharesAllowed()) {
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_REMOTE, $node, false, -1, 0));
- }
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_ROOM, $node, false, -1, 0));
- }
- $formatted = [];
- foreach ($shares as $share) {
- try {
- $formatted[] = $this->formatShare($share);
- } catch (NotFoundException $e) {
- //Ignore this share
- }
- }
- return new DataResponse($formatted);
- }
- /**
- * The getShares function.
- *
- * @NoAdminRequired
- *
- * @param string $shared_with_me
- * @param string $reshares
- * @param string $subfiles
- * @param string $path
- *
- * - Get shares by the current user
- * - Get shares by the current user and reshares (?reshares=true)
- * - Get shares with the current user (?shared_with_me=true)
- * - Get shares for a specific path (?path=...)
- * - Get all shares in a folder (?subfiles=true&path=..)
- *
- * @return DataResponse
- * @throws OCSNotFoundException
- */
- public function getShares(
- string $shared_with_me = 'false',
- string $reshares = 'false',
- string $subfiles = 'false',
- string $path = null,
- string $include_tags = 'false'
- ): DataResponse {
- if ($path !== null) {
- $userFolder = $this->rootFolder->getUserFolder($this->currentUser);
- try {
- $path = $userFolder->get($path);
- $this->lock($path);
- } catch (\OCP\Files\NotFoundException $e) {
- throw new OCSNotFoundException($this->l->t('Wrong path, file/folder doesn\'t exist'));
- } catch (LockedException $e) {
- throw new OCSNotFoundException($this->l->t('Could not lock path'));
- }
- }
- $include_tags = $include_tags === 'true';
- if ($shared_with_me === 'true') {
- $result = $this->getSharedWithMe($path, $include_tags);
- return $result;
- }
- if ($subfiles === 'true') {
- $result = $this->getSharesInDir($path);
- return $result;
- }
- if ($reshares === 'true') {
- $reshares = true;
- } else {
- $reshares = false;
- }
- // Get all shares
- $userShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_USER, $path, $reshares, -1, 0);
- $groupShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_GROUP, $path, $reshares, -1, 0);
- $linkShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_LINK, $path, $reshares, -1, 0);
- if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_EMAIL)) {
- $mailShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_EMAIL, $path, $reshares, -1, 0);
- } else {
- $mailShares = [];
- }
- if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_CIRCLE)) {
- $circleShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_CIRCLE, $path, $reshares, -1, 0);
- } else {
- $circleShares = [];
- }
- $roomShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_ROOM, $path, $reshares, -1, 0);
- $shares = array_merge($userShares, $groupShares, $linkShares, $mailShares, $circleShares, $roomShares);
- if ($this->shareManager->outgoingServer2ServerSharesAllowed()) {
- $federatedShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_REMOTE, $path, $reshares, -1, 0);
- $shares = array_merge($shares, $federatedShares);
- }
- if ($this->shareManager->outgoingServer2ServerGroupSharesAllowed()) {
- $federatedShares = $this->shareManager->getSharesBy($this->currentUser, Share::SHARE_TYPE_REMOTE_GROUP, $path, $reshares, -1, 0);
- $shares = array_merge($shares, $federatedShares);
- }
- $formatted = $miniFormatted = [];
- $resharingRight = false;
- foreach ($shares as $share) {
- /** @var IShare $share */
- try {
- $format = $this->formatShare($share, $path);
- $formatted[] = $format;
- if ($share->getSharedBy() === $this->currentUser) {
- $miniFormatted[] = $format;
- }
- if (!$resharingRight && $this->shareProviderResharingRights($this->currentUser, $share, $path)) {
- $resharingRight = true;
- }
- } catch (\Exception $e) {
- //Ignore share
- }
- }
- if (!$resharingRight) {
- $formatted = $miniFormatted;
- }
- if ($include_tags) {
- $formatted = Helper::populateTags($formatted, 'file_source', \OC::$server->getTagManager());
- }
- return new DataResponse($formatted);
- }
- /**
- * @NoAdminRequired
- *
- * @param string $id
- * @param int $permissions
- * @param string $password
- * @param string $sendPasswordByTalk
- * @param string $publicUpload
- * @param string $expireDate
- * @param string $note
- * @param string $label
- * @param string $hideDownload
- * @return DataResponse
- * @throws LockedException
- * @throws NotFoundException
- * @throws OCSBadRequestException
- * @throws OCSForbiddenException
- * @throws OCSNotFoundException
- */
- public function updateShare(
- string $id,
- int $permissions = null,
- string $password = null,
- string $sendPasswordByTalk = null,
- string $publicUpload = null,
- string $expireDate = null,
- string $note = null,
- string $label = null,
- string $hideDownload = null
- ): DataResponse {
- try {
- $share = $this->getShareById($id);
- } catch (ShareNotFound $e) {
- throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist'));
- }
- $this->lock($share->getNode());
- if (!$this->canAccessShare($share, false)) {
- throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist'));
- }
- if ($share->getShareOwner() !== $this->currentUser && $share->getSharedBy() !== $this->currentUser) {
- throw new OCSForbiddenException('You are not allowed to edit incomming shares');
- }
- if ($permissions === null &&
- $password === null &&
- $sendPasswordByTalk === null &&
- $publicUpload === null &&
- $expireDate === null &&
- $note === null &&
- $label === null &&
- $hideDownload === null
- ) {
- throw new OCSBadRequestException($this->l->t('Wrong or no update parameter given'));
- }
- if($note !== null) {
- $share->setNote($note);
- }
- /*
- * expirationdate, password and publicUpload only make sense for link shares
- */
- if ($share->getShareType() === Share::SHARE_TYPE_LINK) {
- // Update hide download state
- if ($hideDownload === 'true') {
- $share->setHideDownload(true);
- } else if ($hideDownload === 'false') {
- $share->setHideDownload(false);
- }
- $newPermissions = null;
- if ($publicUpload === 'true') {
- $newPermissions = Constants::PERMISSION_READ | Constants::PERMISSION_CREATE | Constants::PERMISSION_UPDATE | Constants::PERMISSION_DELETE;
- } else if ($publicUpload === 'false') {
- $newPermissions = Constants::PERMISSION_READ;
- }
- if ($permissions !== null) {
- $newPermissions = (int)$permissions;
- $newPermissions = $newPermissions & ~Constants::PERMISSION_SHARE;
- }
- if ($newPermissions !== null &&
- !in_array($newPermissions, [
- Constants::PERMISSION_READ,
- Constants::PERMISSION_READ | Constants::PERMISSION_CREATE | Constants::PERMISSION_UPDATE, // legacy
- Constants::PERMISSION_READ | Constants::PERMISSION_CREATE | Constants::PERMISSION_UPDATE | Constants::PERMISSION_DELETE, // correct
- Constants::PERMISSION_CREATE, // hidden file list
- Constants::PERMISSION_READ | Constants::PERMISSION_UPDATE, // allow to edit single files
- ], true)
- ) {
- throw new OCSBadRequestException($this->l->t('Can\'t change permissions for public share links'));
- }
- if (
- // legacy
- $newPermissions === (Constants::PERMISSION_READ | Constants::PERMISSION_CREATE | Constants::PERMISSION_UPDATE) ||
- // correct
- $newPermissions === (Constants::PERMISSION_READ | Constants::PERMISSION_CREATE | Constants::PERMISSION_UPDATE | Constants::PERMISSION_DELETE)
- ) {
- if (!$this->shareManager->shareApiLinkAllowPublicUpload()) {
- throw new OCSForbiddenException($this->l->t('Public upload disabled by the administrator'));
- }
- if (!($share->getNode() instanceof \OCP\Files\Folder)) {
- throw new OCSBadRequestException($this->l->t('Public upload is only possible for publicly shared folders'));
- }
- // normalize to correct public upload permissions
- $newPermissions = Constants::PERMISSION_READ | Constants::PERMISSION_CREATE | Constants::PERMISSION_UPDATE | Constants::PERMISSION_DELETE;
- }
- if ($newPermissions !== null) {
- $share->setPermissions($newPermissions);
- $permissions = $newPermissions;
- }
- if ($expireDate === '') {
- $share->setExpirationDate(null);
- } else if ($expireDate !== null) {
- try {
- $expireDate = $this->parseDate($expireDate);
- } catch (\Exception $e) {
- throw new OCSBadRequestException($e->getMessage(), $e);
- }
- $share->setExpirationDate($expireDate);
- }
- if ($password === '') {
- $share->setPassword(null);
- } else if ($password !== null) {
- $share->setPassword($password);
- }
- if ($label !== null) {
- $share->setLabel($label);
- }
- if ($sendPasswordByTalk === 'true') {
- if (!$this->appManager->isEnabledForUser('spreed')) {
- throw new OCSForbiddenException($this->l->t('Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled'));
- }
- $share->setSendPasswordByTalk(true);
- } else if ($sendPasswordByTalk !== null) {
- $share->setSendPasswordByTalk(false);
- }
- } else {
- if ($permissions !== null) {
- $permissions = (int)$permissions;
- $share->setPermissions($permissions);
- }
- if ($share->getShareType() === Share::SHARE_TYPE_EMAIL) {
- if ($password === '') {
- $share->setPassword(null);
- } else if ($password !== null) {
- $share->setPassword($password);
- }
- if ($sendPasswordByTalk === 'true') {
- if (!$this->appManager->isEnabledForUser('spreed')) {
- throw new OCSForbiddenException($this->l->t('Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled'));
- }
- $share->setSendPasswordByTalk(true);
- } else {
- $share->setSendPasswordByTalk(false);
- }
- }
- if ($expireDate === '') {
- $share->setExpirationDate(null);
- } else if ($expireDate !== null) {
- try {
- $expireDate = $this->parseDate($expireDate);
- } catch (\Exception $e) {
- throw new OCSBadRequestException($e->getMessage(), $e);
- }
- $share->setExpirationDate($expireDate);
- }
- }
- try {
- $share = $this->shareManager->updateShare($share);
- } catch (GenericShareException $e) {
- $code = $e->getCode() === 0 ? 403 : $e->getCode();
- throw new OCSException($e->getHint(), $code);
- } catch (\Exception $e) {
- throw new OCSBadRequestException($e->getMessage(), $e);
- }
- return new DataResponse($this->formatShare($share));
- }
- /**
- * @suppress PhanUndeclaredClassMethod
- */
- protected function canAccessShare(\OCP\Share\IShare $share, bool $checkGroups = true): bool {
- // A file with permissions 0 can't be accessed by us. So Don't show it
- if ($share->getPermissions() === 0) {
- return false;
- }
- // Owner of the file and the sharer of the file can always get share
- if ($share->getShareOwner() === $this->currentUser ||
- $share->getSharedBy() === $this->currentUser
- ) {
- return true;
- }
- // If the share is shared with you (or a group you are a member of)
- if ($share->getShareType() === Share::SHARE_TYPE_USER &&
- $share->getSharedWith() === $this->currentUser
- ) {
- return true;
- }
- if ($checkGroups && $share->getShareType() === Share::SHARE_TYPE_GROUP) {
- $sharedWith = $this->groupManager->get($share->getSharedWith());
- $user = $this->userManager->get($this->currentUser);
- if ($user !== null && $sharedWith !== null && $sharedWith->inGroup($user)) {
- return true;
- }
- }
- if ($share->getShareType() === Share::SHARE_TYPE_CIRCLE) {
- // TODO: have a sanity check like above?
- return true;
- }
- if ($share->getShareType() === Share::SHARE_TYPE_ROOM) {
- try {
- return $this->getRoomShareHelper()->canAccessShare($share, $this->currentUser);
- } catch (QueryException $e) {
- return false;
- }
- }
- return false;
- }
- /**
- * Make sure that the passed date is valid ISO 8601
- * So YYYY-MM-DD
- * If not throw an exception
- *
- * @param string $expireDate
- *
- * @throws \Exception
- * @return \DateTime
- */
- private function parseDate(string $expireDate): \DateTime {
- try {
- $date = new \DateTime($expireDate);
- } catch (\Exception $e) {
- throw new \Exception('Invalid date. Format must be YYYY-MM-DD');
- }
- if ($date === false) {
- throw new \Exception('Invalid date. Format must be YYYY-MM-DD');
- }
- $date->setTime(0, 0, 0);
- return $date;
- }
- /**
- * Since we have multiple providers but the OCS Share API v1 does
- * not support this we need to check all backends.
- *
- * @param string $id
- * @return \OCP\Share\IShare
- * @throws ShareNotFound
- */
- private function getShareById(string $id): IShare {
- $share = null;
- // First check if it is an internal share.
- try {
- $share = $this->shareManager->getShareById('ocinternal:' . $id, $this->currentUser);
- return $share;
- } catch (ShareNotFound $e) {
- // Do nothing, just try the other share type
- }
- try {
- if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_CIRCLE)) {
- $share = $this->shareManager->getShareById('ocCircleShare:' . $id, $this->currentUser);
- return $share;
- }
- } catch (ShareNotFound $e) {
- // Do nothing, just try the other share type
- }
- try {
- if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_EMAIL)) {
- $share = $this->shareManager->getShareById('ocMailShare:' . $id, $this->currentUser);
- return $share;
- }
- } catch (ShareNotFound $e) {
- // Do nothing, just try the other share type
- }
- try {
- $share = $this->shareManager->getShareById('ocRoomShare:' . $id, $this->currentUser);
- return $share;
- } catch (ShareNotFound $e) {
- // Do nothing, just try the other share type
- }
- if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
- throw new ShareNotFound();
- }
- $share = $this->shareManager->getShareById('ocFederatedSharing:' . $id, $this->currentUser);
- return $share;
- }
- /**
- * Lock a Node
- *
- * @param \OCP\Files\Node $node
- * @throws LockedException
- */
- private function lock(\OCP\Files\Node $node) {
- $node->lock(ILockingProvider::LOCK_SHARED);
- $this->lockedNode = $node;
- }
- /**
- * Cleanup the remaining locks
- * @throws @LockedException
- */
- public function cleanup() {
- if ($this->lockedNode !== null) {
- $this->lockedNode->unlock(ILockingProvider::LOCK_SHARED);
- }
- }
- /**
- * Returns the helper of ShareAPIController for room shares.
- *
- * If the Talk application is not enabled or the helper is not available
- * a QueryException is thrown instead.
- *
- * @return \OCA\Spreed\Share\Helper\ShareAPIController
- * @throws QueryException
- */
- private function getRoomShareHelper() {
- if (!$this->appManager->isEnabledForUser('spreed')) {
- throw new QueryException();
- }
- return $this->serverContainer->query('\OCA\Spreed\Share\Helper\ShareAPIController');
- }
- /**
- * Returns if we can find resharing rights in an IShare object for a specific user.
- *
- * @suppress PhanUndeclaredClassMethod
- *
- * @param string $userId
- * @param IShare $share
- * @param Node $node
- * @return bool
- * @throws NotFoundException
- * @throws \OCP\Files\InvalidPathException
- */
- private function shareProviderResharingRights(string $userId, IShare $share, $node): bool {
- if ($share->getShareOwner() === $userId) {
- return true;
- }
- // we check that current user have parent resharing rights on the current file
- if ($node !== null && ($node->getPermissions() & \OCP\Constants::PERMISSION_SHARE) !== 0) {
- return true;
- }
- if ((\OCP\Constants::PERMISSION_SHARE & $share->getPermissions()) === 0) {
- return false;
- }
- if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER && $share->getSharedWith() === $userId) {
- return true;
- }
- if ($share->getShareType() === \OCP\Share::SHARE_TYPE_GROUP && $this->groupManager->isInGroup($userId, $share->getSharedWith())) {
- return true;
- }
- if ($share->getShareType() === \OCP\Share::SHARE_TYPE_CIRCLE && \OC::$server->getAppManager()->isEnabledForUser('circles') &&
- class_exists('\OCA\Circles\Api\v1\Circles')) {
- $hasCircleId = (substr($share->getSharedWith(), -1) === ']');
- $shareWithStart = ($hasCircleId ? strrpos($share->getSharedWith(), '[') + 1 : 0);
- $shareWithLength = ($hasCircleId ? -1 : strpos($share->getSharedWith(), ' '));
- if (is_bool($shareWithLength)) {
- $shareWithLength = -1;
- }
- $sharedWith = substr($share->getSharedWith(), $shareWithStart, $shareWithLength);
- try {
- $member = \OCA\Circles\Api\v1\Circles::getMember($sharedWith, $userId, 1);
- if ($member->getLevel() >= 4) {
- return true;
- }
- return false;
- } catch (QueryException $e) {
- return false;
- }
- }
- return false;
- }
- }
|