* @author Varun Patil * @license AGPL-3.0-or-later * * 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 * along with this program. If not, see . */ namespace OCA\Memories\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\JSONResponse; class ShareController extends ApiBase { /** * @NoAdminRequired * * Get the tokens of a node shared using an external link * * @param mixed $id * @param mixed $path */ public function links($id, $path) { $file = $this->getNodeByIdOrPath($id, $path); if (!$file) { return new JSONResponse([ 'message' => 'File not found', ], Http::STATUS_FORBIDDEN); } /** @var \OCP\Share\IManager $shareManager */ $shareManager = \OC::$server->get(\OCP\Share\IManager::class); $shares = $shareManager->getSharesBy($this->getUID(), \OCP\Share\IShare::TYPE_LINK, $file, true, 50, 0); if (empty($shares)) { return new JSONResponse([ 'message' => 'No external links found', ], Http::STATUS_NOT_FOUND); } $links = array_map([$this, 'makeShareResponse'], $shares); return new JSONResponse($links, Http::STATUS_OK); } /** * @NoAdminRequired * * Share a node using an external link * * @param mixed $id * @param mixed $path */ public function createNode($id, $path) { $file = $this->getNodeByIdOrPath($id, $path); if (!$file) { return new JSONResponse([ 'message' => 'You are not allowed to share this file', ], Http::STATUS_FORBIDDEN); } /** @var \OCP\Share\IManager $shareManager */ $shareManager = \OC::$server->get(\OCP\Share\IManager::class); /** @var \OCP\Share\IShare $share */ $share = $shareManager->newShare(); $share->setNode($file); $share->setShareType(\OCP\Share\IShare::TYPE_LINK); $share->setSharedBy($this->userSession->getUser()->getUID()); $share->setPermissions(\OCP\Constants::PERMISSION_READ); $share = $shareManager->createShare($share); return new JSONResponse($this->makeShareResponse($share), Http::STATUS_OK); } /** * @NoAdminRequired * * Delete an external link share */ public function deleteShare(string $id) { $uid = $this->getUID(); if (!$uid) { return new JSONResponse([ 'message' => 'You are not logged in', ], Http::STATUS_FORBIDDEN); } /** @var \OCP\Share\IManager $shareManager */ $shareManager = \OC::$server->get(\OCP\Share\IManager::class); $share = $shareManager->getShareById($id); if ($share->getSharedBy() !== $uid) { return new JSONResponse([ 'message' => 'You are not the owner of this share', ], Http::STATUS_FORBIDDEN); } $shareManager->deleteShare($share); return new JSONResponse([], Http::STATUS_OK); } private function getNodeByIdOrPath($id, $path) { $uid = $this->getUID(); if (!$uid) { return null; } $file = null; if ($id) { $file = $this->getUserFile($id); } elseif ($path) { try { $userFolder = $this->rootFolder->getUserFolder($uid); $file = $userFolder->get($path); } catch (\OCP\Files\NotFoundException $e) { return null; } } if (!$file || !$file->isShareable()) { return null; } return $file; } private function makeShareResponse(\OCP\Share\IShare $share) { /** @var \OCP\IURLGenerator $urlGenerator */ $urlGenerator = \OC::$server->get(\OCP\IURLGenerator::class); $tok = $share->getToken(); $exp = $share->getExpirationDate(); $url = $urlGenerator->linkToRouteAbsolute('memories.Public.showShare', [ 'token' => $tok, ]); return [ 'id' => $share->getFullId(), 'label' => $share->getLabel(), 'token' => $tok, 'url' => $url, 'hasPassword' => $share->getPassword() ? true : false, 'expiration' => $exp ? $exp->getTimestamp() : null, 'editable' => $share->getPermissions() & \OCP\Constants::PERMISSION_UPDATE, ]; } }