aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/api
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/api')
-rw-r--r--apps/files_sharing/api/ocssharewrapper.php61
-rw-r--r--apps/files_sharing/api/remote.php229
-rw-r--r--apps/files_sharing/api/server2server.php311
-rw-r--r--apps/files_sharing/api/share20ocs.php695
-rw-r--r--apps/files_sharing/api/sharees.php536
5 files changed, 0 insertions, 1832 deletions
diff --git a/apps/files_sharing/api/ocssharewrapper.php b/apps/files_sharing/api/ocssharewrapper.php
deleted file mode 100644
index a51ad1eb2c9..00000000000
--- a/apps/files_sharing/api/ocssharewrapper.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-/**
- * @author Roeland Jago Douma <rullzer@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @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\API;
-
-class OCSShareWrapper {
-
- /**
- * @return Share20OCS
- */
- private function getShare20OCS() {
- return new Share20OCS(
- \OC::$server->getShareManager(),
- \OC::$server->getGroupManager(),
- \OC::$server->getUserManager(),
- \OC::$server->getRequest(),
- \OC::$server->getRootFolder(),
- \OC::$server->getURLGenerator(),
- \OC::$server->getUserSession()->getUser());
- }
-
- public function getAllShares() {
- return $this->getShare20OCS()->getShares();
- }
-
- public function createShare() {
- return $this->getShare20OCS()->createShare();
- }
-
- public function getShare($params) {
- $id = $params['id'];
- return $this->getShare20OCS()->getShare($id);
- }
-
- public function updateShare($params) {
- $id = $params['id'];
- return $this->getShare20OCS()->updateShare($id);
- }
-
- public function deleteShare($params) {
- $id = $params['id'];
- return $this->getShare20OCS()->deleteShare($id);
- }
-}
diff --git a/apps/files_sharing/api/remote.php b/apps/files_sharing/api/remote.php
deleted file mode 100644
index 1b5eb28aa86..00000000000
--- a/apps/files_sharing/api/remote.php
+++ /dev/null
@@ -1,229 +0,0 @@
-<?php
-/**
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Roeland Jago Douma <rullzer@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @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\API;
-
-use OC\Files\Filesystem;
-use OCA\FederatedFileSharing\DiscoveryManager;
-use OCA\Files_Sharing\External\Manager;
-
-class Remote {
-
- /**
- * Get list of pending remote shares
- *
- * @param array $params empty
- * @return \OC_OCS_Result
- */
- public static function getOpenShares($params) {
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new Manager(
- \OC::$server->getDatabaseConnection(),
- Filesystem::getMountManager(),
- Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- \OC_User::getUser()
- );
-
- return new \OC_OCS_Result($externalManager->getOpenShares());
- }
-
- /**
- * Accept a remote share
- *
- * @param array $params contains the shareID 'id' which should be accepted
- * @return \OC_OCS_Result
- */
- public static function acceptShare($params) {
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new Manager(
- \OC::$server->getDatabaseConnection(),
- Filesystem::getMountManager(),
- Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- \OC_User::getUser()
- );
-
- if ($externalManager->acceptShare((int) $params['id'])) {
- return new \OC_OCS_Result();
- }
-
- // Make sure the user has no notification for something that does not exist anymore.
- $externalManager->processNotification((int) $params['id']);
-
- return new \OC_OCS_Result(null, 404, "wrong share ID, share doesn't exist.");
- }
-
- /**
- * Decline a remote share
- *
- * @param array $params contains the shareID 'id' which should be declined
- * @return \OC_OCS_Result
- */
- public static function declineShare($params) {
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new Manager(
- \OC::$server->getDatabaseConnection(),
- Filesystem::getMountManager(),
- Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- \OC_User::getUser()
- );
-
- if ($externalManager->declineShare((int) $params['id'])) {
- return new \OC_OCS_Result();
- }
-
- // Make sure the user has no notification for something that does not exist anymore.
- $externalManager->processNotification((int) $params['id']);
-
- return new \OC_OCS_Result(null, 404, "wrong share ID, share doesn't exist.");
- }
-
- /**
- * @param array $share Share with info from the share_external table
- * @return array enriched share info with data from the filecache
- */
- private static function extendShareInfo($share) {
- $view = new \OC\Files\View('/' . \OC_User::getUser() . '/files/');
- $info = $view->getFileInfo($share['mountpoint']);
-
- $share['mimetype'] = $info->getMimetype();
- $share['mtime'] = $info->getMtime();
- $share['permissions'] = $info->getPermissions();
- $share['type'] = $info->getType();
- $share['file_id'] = $info->getId();
-
- return $share;
- }
-
- /**
- * List accepted remote shares
- *
- * @param array $params
- * @return \OC_OCS_Result
- */
- public static function getShares($params) {
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new Manager(
- \OC::$server->getDatabaseConnection(),
- Filesystem::getMountManager(),
- Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- \OC_User::getUser()
- );
-
- $shares = $externalManager->getAcceptedShares();
-
- $shares = array_map('self::extendShareInfo', $shares);
-
- return new \OC_OCS_Result($shares);
- }
-
- /**
- * Get info of a remote share
- *
- * @param array $params contains the shareID 'id'
- * @return \OC_OCS_Result
- */
- public static function getShare($params) {
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new Manager(
- \OC::$server->getDatabaseConnection(),
- Filesystem::getMountManager(),
- Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- \OC_User::getUser()
- );
-
- $shareInfo = $externalManager->getShare($params['id']);
-
- if ($shareInfo === false) {
- return new \OC_OCS_Result(null, 404, 'share does not exist');
- } else {
- $shareInfo = self::extendShareInfo($shareInfo);
- return new \OC_OCS_Result($shareInfo);
- }
- }
-
- /**
- * Unshare a remote share
- *
- * @param array $params contains the shareID 'id' which should be unshared
- * @return \OC_OCS_Result
- */
- public static function unshare($params) {
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new Manager(
- \OC::$server->getDatabaseConnection(),
- Filesystem::getMountManager(),
- Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- \OC_User::getUser()
- );
-
- $shareInfo = $externalManager->getShare($params['id']);
-
- if ($shareInfo === false) {
- return new \OC_OCS_Result(null, 404, 'Share does not exist');
- }
-
- $mountPoint = '/' . \OC_User::getUser() . '/files' . $shareInfo['mountpoint'];
-
- if ($externalManager->removeShare($mountPoint) === true) {
- return new \OC_OCS_Result(null);
- } else {
- return new \OC_OCS_Result(null, 403, 'Could not unshare');
- }
- }
-}
diff --git a/apps/files_sharing/api/server2server.php b/apps/files_sharing/api/server2server.php
deleted file mode 100644
index 11b24d9148b..00000000000
--- a/apps/files_sharing/api/server2server.php
+++ /dev/null
@@ -1,311 +0,0 @@
-<?php
-/**
- * @author Arthur Schiwon <blizzz@owncloud.com>
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @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\API;
-
-use OCA\FederatedFileSharing\DiscoveryManager;
-use OCA\Files_Sharing\Activity;
-use OCP\Files\NotFoundException;
-
-class Server2Server {
-
- /**
- * create a new share
- *
- * @param array $params
- * @return \OC_OCS_Result
- */
- public function createShare($params) {
-
- if (!$this->isS2SEnabled(true)) {
- return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
- }
-
- $remote = isset($_POST['remote']) ? $_POST['remote'] : null;
- $token = isset($_POST['token']) ? $_POST['token'] : null;
- $name = isset($_POST['name']) ? $_POST['name'] : null;
- $owner = isset($_POST['owner']) ? $_POST['owner'] : null;
- $shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : null;
- $remoteId = isset($_POST['remoteId']) ? (int)$_POST['remoteId'] : null;
-
- if ($remote && $token && $name && $owner && $remoteId && $shareWith) {
-
- if(!\OCP\Util::isValidFileName($name)) {
- return new \OC_OCS_Result(null, 400, 'The mountpoint name contains invalid characters.');
- }
-
- // FIXME this should be a method in the user management instead
- \OCP\Util::writeLog('files_sharing', 'shareWith before, ' . $shareWith, \OCP\Util::DEBUG);
- \OCP\Util::emitHook(
- '\OCA\Files_Sharing\API\Server2Server',
- 'preLoginNameUsedAsUserName',
- array('uid' => &$shareWith)
- );
- \OCP\Util::writeLog('files_sharing', 'shareWith after, ' . $shareWith, \OCP\Util::DEBUG);
-
- if (!\OCP\User::userExists($shareWith)) {
- return new \OC_OCS_Result(null, 400, 'User does not exists');
- }
-
- \OC_Util::setupFS($shareWith);
-
- $discoveryManager = new DiscoveryManager(
- \OC::$server->getMemCacheFactory(),
- \OC::$server->getHTTPClientService()
- );
- $externalManager = new \OCA\Files_Sharing\External\Manager(
- \OC::$server->getDatabaseConnection(),
- \OC\Files\Filesystem::getMountManager(),
- \OC\Files\Filesystem::getLoader(),
- \OC::$server->getHTTPHelper(),
- \OC::$server->getNotificationManager(),
- $discoveryManager,
- $shareWith
- );
-
- try {
- $externalManager->addShare($remote, $token, '', $name, $owner, false, $shareWith, $remoteId);
- $shareId = \OC::$server->getDatabaseConnection()->lastInsertId('*PREFIX*share_external');
-
- $user = $owner . '@' . $this->cleanupRemote($remote);
-
- \OC::$server->getActivityManager()->publishActivity(
- Activity::FILES_SHARING_APP, Activity::SUBJECT_REMOTE_SHARE_RECEIVED, array($user, trim($name, '/')), '', array(),
- '', '', $shareWith, Activity::TYPE_REMOTE_SHARE, Activity::PRIORITY_LOW);
-
- $urlGenerator = \OC::$server->getURLGenerator();
-
- $notificationManager = \OC::$server->getNotificationManager();
- $notification = $notificationManager->createNotification();
- $notification->setApp('files_sharing')
- ->setUser($shareWith)
- ->setDateTime(new \DateTime())
- ->setObject('remote_share', $shareId)
- ->setSubject('remote_share', [$user, trim($name, '/')]);
-
- $declineAction = $notification->createAction();
- $declineAction->setLabel('decline')
- ->setLink($urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'ocs/v1.php/apps/files_sharing/api/v1/remote_shares/pending/' . $shareId)), 'DELETE');
- $notification->addAction($declineAction);
-
- $acceptAction = $notification->createAction();
- $acceptAction->setLabel('accept')
- ->setLink($urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'ocs/v1.php/apps/files_sharing/api/v1/remote_shares/pending/' . $shareId)), 'POST');
- $notification->addAction($acceptAction);
-
- $notificationManager->notify($notification);
-
- return new \OC_OCS_Result();
- } catch (\Exception $e) {
- \OCP\Util::writeLog('files_sharing', 'server can not add remote share, ' . $e->getMessage(), \OCP\Util::ERROR);
- return new \OC_OCS_Result(null, 500, 'internal server error, was not able to add share from ' . $remote);
- }
- }
-
- return new \OC_OCS_Result(null, 400, 'server can not add remote share, missing parameter');
- }
-
- /**
- * accept server-to-server share
- *
- * @param array $params
- * @return \OC_OCS_Result
- */
- public function acceptShare($params) {
-
- if (!$this->isS2SEnabled()) {
- return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
- }
-
- $id = $params['id'];
- $token = isset($_POST['token']) ? $_POST['token'] : null;
- $share = self::getShare($id, $token);
-
- if ($share) {
- list($file, $link) = self::getFile($share['uid_owner'], $share['file_source']);
-
- $event = \OC::$server->getActivityManager()->generateEvent();
- $event->setApp(Activity::FILES_SHARING_APP)
- ->setType(Activity::TYPE_REMOTE_SHARE)
- ->setAffectedUser($share['uid_owner'])
- ->setSubject(Activity::SUBJECT_REMOTE_SHARE_ACCEPTED, [$share['share_with'], basename($file)])
- ->setObject('files', $share['file_source'], $file)
- ->setLink($link);
- \OC::$server->getActivityManager()->publish($event);
- }
-
- return new \OC_OCS_Result();
- }
-
- /**
- * decline server-to-server share
- *
- * @param array $params
- * @return \OC_OCS_Result
- */
- public function declineShare($params) {
-
- if (!$this->isS2SEnabled()) {
- return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
- }
-
- $id = $params['id'];
- $token = isset($_POST['token']) ? $_POST['token'] : null;
-
- $share = $this->getShare($id, $token);
-
- if ($share) {
- // userId must be set to the user who unshares
- \OCP\Share::unshare($share['item_type'], $share['item_source'], $share['share_type'], $share['share_with'], $share['uid_owner']);
-
- list($file, $link) = $this->getFile($share['uid_owner'], $share['file_source']);
-
- $event = \OC::$server->getActivityManager()->generateEvent();
- $event->setApp(Activity::FILES_SHARING_APP)
- ->setType(Activity::TYPE_REMOTE_SHARE)
- ->setAffectedUser($share['uid_owner'])
- ->setSubject(Activity::SUBJECT_REMOTE_SHARE_DECLINED, [$share['share_with'], basename($file)])
- ->setObject('files', $share['file_source'], $file)
- ->setLink($link);
- \OC::$server->getActivityManager()->publish($event);
- }
-
- return new \OC_OCS_Result();
- }
-
- /**
- * remove server-to-server share if it was unshared by the owner
- *
- * @param array $params
- * @return \OC_OCS_Result
- */
- public function unshare($params) {
-
- if (!$this->isS2SEnabled()) {
- return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
- }
-
- $id = $params['id'];
- $token = isset($_POST['token']) ? $_POST['token'] : null;
-
- $query = \OCP\DB::prepare('SELECT * FROM `*PREFIX*share_external` WHERE `remote_id` = ? AND `share_token` = ?');
- $query->execute(array($id, $token));
- $share = $query->fetchRow();
-
- if ($token && $id && !empty($share)) {
-
- $remote = $this->cleanupRemote($share['remote']);
-
- $owner = $share['owner'] . '@' . $remote;
- $mountpoint = $share['mountpoint'];
- $user = $share['user'];
-
- $query = \OCP\DB::prepare('DELETE FROM `*PREFIX*share_external` WHERE `remote_id` = ? AND `share_token` = ?');
- $query->execute(array($id, $token));
-
- if ($share['accepted']) {
- $path = trim($mountpoint, '/');
- } else {
- $path = trim($share['name'], '/');
- }
-
- $notificationManager = \OC::$server->getNotificationManager();
- $notification = $notificationManager->createNotification();
- $notification->setApp('files_sharing')
- ->setUser($share['user'])
- ->setObject('remote_share', (int) $share['id']);
- $notificationManager->markProcessed($notification);
-
- \OC::$server->getActivityManager()->publishActivity(
- Activity::FILES_SHARING_APP, Activity::SUBJECT_REMOTE_SHARE_UNSHARED, array($owner, $path), '', array(),
- '', '', $user, Activity::TYPE_REMOTE_SHARE, Activity::PRIORITY_MEDIUM);
- }
-
- return new \OC_OCS_Result();
- }
-
- private function cleanupRemote($remote) {
- $remote = substr($remote, strpos($remote, '://') + 3);
-
- return rtrim($remote, '/');
- }
-
- /**
- * get share
- *
- * @param int $id
- * @param string $token
- * @return array
- */
- private function getShare($id, $token) {
- $query = \OCP\DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ? AND `token` = ? AND `share_type` = ?');
- $query->execute(array($id, $token, \OCP\Share::SHARE_TYPE_REMOTE));
- $share = $query->fetchRow();
-
- return $share;
- }
-
- /**
- * get file
- *
- * @param string $user
- * @param int $fileSource
- * @return array with internal path of the file and a absolute link to it
- */
- private function getFile($user, $fileSource) {
- \OC_Util::setupFS($user);
-
- try {
- $file = \OC\Files\Filesystem::getPath($fileSource);
- } catch (NotFoundException $e) {
- $file = null;
- }
- $args = \OC\Files\Filesystem::is_dir($file) ? array('dir' => $file) : array('dir' => dirname($file), 'scrollto' => $file);
- $link = \OCP\Util::linkToAbsolute('files', 'index.php', $args);
-
- return array($file, $link);
-
- }
-
- /**
- * check if server-to-server sharing is enabled
- *
- * @param bool $incoming
- * @return bool
- */
- private function isS2SEnabled($incoming = false) {
-
- $result = \OCP\App::isEnabled('files_sharing');
-
- if ($incoming) {
- $result = $result && \OCA\Files_Sharing\Helper::isIncomingServer2serverShareEnabled();
- } else {
- $result = $result && \OCA\Files_Sharing\Helper::isOutgoingServer2serverShareEnabled();
- }
-
- return $result;
- }
-
-}
diff --git a/apps/files_sharing/api/share20ocs.php b/apps/files_sharing/api/share20ocs.php
deleted file mode 100644
index 61d5044cf84..00000000000
--- a/apps/files_sharing/api/share20ocs.php
+++ /dev/null
@@ -1,695 +0,0 @@
-<?php
-/**
- * @author Roeland Jago Douma <rullzer@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @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\API;
-
-use OCP\Files\NotFoundException;
-use OCP\IGroupManager;
-use OCP\IUserManager;
-use OCP\IRequest;
-use OCP\IURLGenerator;
-use OCP\IUser;
-use OCP\Files\IRootFolder;
-use OCP\Share;
-use OCP\Share\IManager;
-
-use OCP\Share\Exceptions\ShareNotFound;
-use OCP\Share\Exceptions\GenericShareException;
-
-/**
- * Class Share20OCS
- *
- * @package OCA\Files_Sharing\API
- */
-class Share20OCS {
-
- /** @var IManager */
- private $shareManager;
- /** @var IGroupManager */
- private $groupManager;
- /** @var IUserManager */
- private $userManager;
- /** @var IRequest */
- private $request;
- /** @var IRootFolder */
- private $rootFolder;
- /** @var IURLGenerator */
- private $urlGenerator;
- /** @var IUser */
- private $currentUser;
-
- /**
- * Share20OCS constructor.
- *
- * @param IManager $shareManager
- * @param IGroupManager $groupManager
- * @param IUserManager $userManager
- * @param IRequest $request
- * @param IRootFolder $rootFolder
- * @param IURLGenerator $urlGenerator
- * @param IUser $currentUser
- */
- public function __construct(
- IManager $shareManager,
- IGroupManager $groupManager,
- IUserManager $userManager,
- IRequest $request,
- IRootFolder $rootFolder,
- IURLGenerator $urlGenerator,
- IUser $currentUser
- ) {
- $this->shareManager = $shareManager;
- $this->userManager = $userManager;
- $this->groupManager = $groupManager;
- $this->request = $request;
- $this->rootFolder = $rootFolder;
- $this->urlGenerator = $urlGenerator;
- $this->currentUser = $currentUser;
- }
-
- /**
- * Convert an IShare to an array for OCS output
- *
- * @param \OCP\Share\IShare $share
- * @return array
- * @throws NotFoundException In case the node can't be resolved.
- */
- protected function formatShare(\OCP\Share\IShare $share) {
- $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(),
- 'displayname_file_owner' => $shareOwner !== null ? $shareOwner->getDisplayName() : $share->getShareOwner(),
- ];
-
- $node = $share->getNode();
- $result['path'] = $this->rootFolder->getUserFolder($share->getShareOwner())->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();
-
- if ($share->getShareType() === \OCP\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() === \OCP\Share::SHARE_TYPE_GROUP) {
- $result['share_with'] = $share->getSharedWith();
- $result['share_with_displayname'] = $share->getSharedWith();
- } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK) {
-
- $result['share_with'] = $share->getPassword();
- $result['share_with_displayname'] = $share->getPassword();
-
- $result['token'] = $share->getToken();
- $result['url'] = $this->urlGenerator->linkToRouteAbsolute('files_sharing.sharecontroller.showShare', ['token' => $share->getToken()]);
-
- $expiration = $share->getExpirationDate();
- if ($expiration !== null) {
- $result['expiration'] = $expiration->format('Y-m-d 00:00:00');
- }
-
- } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_REMOTE) {
- $result['share_with'] = $share->getSharedWith();
- $result['share_with_displayname'] = $share->getSharedWith();
- $result['token'] = $share->getToken();
- }
-
- $result['mail_send'] = $share->getMailSend() ? 1 : 0;
-
- return $result;
- }
-
- /**
- * Get a specific share by id
- *
- * @param string $id
- * @return \OC_OCS_Result
- */
- public function getShare($id) {
- if (!$this->shareManager->shareApiEnabled()) {
- return new \OC_OCS_Result(null, 404, 'Share API is disabled');
- }
-
- try {
- $share = $this->getShareById($id);
- } catch (ShareNotFound $e) {
- return new \OC_OCS_Result(null, 404, 'wrong share ID, share doesn\'t exist.');
- }
-
- if ($this->canAccessShare($share)) {
- try {
- $share = $this->formatShare($share);
- return new \OC_OCS_Result([$share]);
- } catch (NotFoundException $e) {
- //Fall trough
- }
- }
-
- return new \OC_OCS_Result(null, 404, 'wrong share ID, share doesn\'t exist.');
- }
-
- /**
- * Delete a share
- *
- * @param string $id
- * @return \OC_OCS_Result
- */
- public function deleteShare($id) {
- if (!$this->shareManager->shareApiEnabled()) {
- return new \OC_OCS_Result(null, 404, 'Share API is disabled');
- }
-
- try {
- $share = $this->getShareById($id);
- } catch (ShareNotFound $e) {
- return new \OC_OCS_Result(null, 404, 'wrong share ID, share doesn\'t exist.');
- }
-
- if (!$this->canAccessShare($share)) {
- return new \OC_OCS_Result(null, 404, 'could not delete share');
- }
-
- $this->shareManager->deleteShare($share);
-
- return new \OC_OCS_Result();
- }
-
- /**
- * @return \OC_OCS_Result
- */
- public function createShare() {
- $share = $this->shareManager->newShare();
-
- if (!$this->shareManager->shareApiEnabled()) {
- return new \OC_OCS_Result(null, 404, 'Share API is disabled');
- }
-
- // Verify path
- $path = $this->request->getParam('path', null);
- if ($path === null) {
- return new \OC_OCS_Result(null, 404, 'please specify a file or folder path');
- }
-
- $userFolder = $this->rootFolder->getUserFolder($this->currentUser->getUID());
- try {
- $path = $userFolder->get($path);
- } catch (\OCP\Files\NotFoundException $e) {
- return new \OC_OCS_Result(null, 404, 'wrong path, file/folder doesn\'t exist');
- }
-
- $share->setNode($path);
-
- // Parse permissions (if available)
- $permissions = $this->request->getParam('permissions', null);
- if ($permissions === null) {
- $permissions = \OCP\Constants::PERMISSION_ALL;
- } else {
- $permissions = (int)$permissions;
- }
-
- if ($permissions < 0 || $permissions > \OCP\Constants::PERMISSION_ALL) {
- return new \OC_OCS_Result(null, 404, 'invalid permissions');
- }
-
- // Shares always require read permissions
- $permissions |= \OCP\Constants::PERMISSION_READ;
-
- if ($path instanceof \OCP\Files\File) {
- // Single file shares should never have delete or create permissions
- $permissions &= ~\OCP\Constants::PERMISSION_DELETE;
- $permissions &= ~\OCP\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('OCA\Files_Sharing\External\Storage')) {
- $permissions &= ~($permissions & ~$path->getPermissions());
- }
-
- $shareWith = $this->request->getParam('shareWith', null);
- $shareType = (int)$this->request->getParam('shareType', '-1');
-
- if ($shareType === \OCP\Share::SHARE_TYPE_USER) {
- // Valid user is required to share
- if ($shareWith === null || !$this->userManager->userExists($shareWith)) {
- return new \OC_OCS_Result(null, 404, 'please specify a valid user');
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === \OCP\Share::SHARE_TYPE_GROUP) {
- if (!$this->shareManager->allowGroupSharing()) {
- return new \OC_OCS_Result(null, 404, 'group sharing is disabled by the administrator');
- }
-
- // Valid group is required to share
- if ($shareWith === null || !$this->groupManager->groupExists($shareWith)) {
- return new \OC_OCS_Result(null, 404, 'please specify a valid group');
- }
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else if ($shareType === \OCP\Share::SHARE_TYPE_LINK) {
- //Can we even share links?
- if (!$this->shareManager->shareApiAllowLinks()) {
- return new \OC_OCS_Result(null, 404, 'public link sharing is disabled by the administrator');
- }
-
- /*
- * For now we only allow 1 link share.
- * Return the existing link share if this is a duplicate
- */
- $existingShares = $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_LINK, $path, false, 1, 0);
- if (!empty($existingShares)) {
- return new \OC_OCS_Result($this->formatShare($existingShares[0]));
- }
-
- $publicUpload = $this->request->getParam('publicUpload', null);
- if ($publicUpload === 'true') {
- // Check if public upload is allowed
- if (!$this->shareManager->shareApiLinkAllowPublicUpload()) {
- return new \OC_OCS_Result(null, 403, 'public upload disabled by the administrator');
- }
-
- // Public upload can only be set for folders
- if ($path instanceof \OCP\Files\File) {
- return new \OC_OCS_Result(null, 404, 'public upload is only possible for public shared folders');
- }
-
- $share->setPermissions(
- \OCP\Constants::PERMISSION_READ |
- \OCP\Constants::PERMISSION_CREATE |
- \OCP\Constants::PERMISSION_UPDATE
- );
- } else {
- $share->setPermissions(\OCP\Constants::PERMISSION_READ);
- }
-
- // Set password
- $password = $this->request->getParam('password', '');
-
- if ($password !== '') {
- $share->setPassword($password);
- }
-
- //Expire date
- $expireDate = $this->request->getParam('expireDate', '');
-
- if ($expireDate !== '') {
- try {
- $expireDate = $this->parseDate($expireDate);
- $share->setExpirationDate($expireDate);
- } catch (\Exception $e) {
- return new \OC_OCS_Result(null, 404, 'Invalid Date. Format must be YYYY-MM-DD.');
- }
- }
-
- } else if ($shareType === \OCP\Share::SHARE_TYPE_REMOTE) {
- if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
- return new \OC_OCS_Result(null, 403, 'Sharing '.$path->getPath().' failed, because the backend does not allow shares from type '.$shareType);
- }
-
- $share->setSharedWith($shareWith);
- $share->setPermissions($permissions);
- } else {
- return new \OC_OCS_Result(null, 400, "unknown share type");
- }
-
- $share->setShareType($shareType);
- $share->setSharedBy($this->currentUser->getUID());
-
- try {
- $share = $this->shareManager->createShare($share);
- } catch (GenericShareException $e) {
- $code = $e->getCode() === 0 ? 403 : $e->getCode();
- return new \OC_OCS_Result(null, $code, $e->getHint());
- }catch (\Exception $e) {
- return new \OC_OCS_Result(null, 403, $e->getMessage());
- }
-
- $share = $this->formatShare($share);
- return new \OC_OCS_Result($share);
- }
-
- /**
- * @param \OCP\Files\File|\OCP\Files\Folder $node
- * @return \OC_OCS_Result
- */
- private function getSharedWithMe($node = null) {
- $userShares = $this->shareManager->getSharedWith($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_USER, $node, -1, 0);
- $groupShares = $this->shareManager->getSharedWith($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_GROUP, $node, -1, 0);
-
- $shares = array_merge($userShares, $groupShares);
-
- $formatted = [];
- foreach ($shares as $share) {
- if ($this->canAccessShare($share)) {
- try {
- $formatted[] = $this->formatShare($share);
- } catch (NotFoundException $e) {
- // Ignore this share
- }
- }
- }
-
- return new \OC_OCS_Result($formatted);
- }
-
- /**
- * @param \OCP\Files\Folder $folder
- * @return \OC_OCS_Result
- */
- private function getSharesInDir($folder) {
- if (!($folder instanceof \OCP\Files\Folder)) {
- return new \OC_OCS_Result(null, 400, "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->getUID(), \OCP\Share::SHARE_TYPE_USER, $node, false, -1, 0));
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_GROUP, $node, false, -1, 0));
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_LINK, $node, false, -1, 0));
- if ($this->shareManager->outgoingServer2ServerSharesAllowed()) {
- $shares = array_merge($shares, $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_REMOTE, $node, false, -1, 0));
- }
- }
-
- $formatted = [];
- foreach ($shares as $share) {
- try {
- $formatted[] = $this->formatShare($share);
- } catch (NotFoundException $e) {
- //Ignore this share
- }
- }
-
- return new \OC_OCS_Result($formatted);
- }
-
- /**
- * The getShares function.
- *
- * - 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 \OC_OCS_Result
- */
- public function getShares() {
- if (!$this->shareManager->shareApiEnabled()) {
- return new \OC_OCS_Result();
- }
-
- $sharedWithMe = $this->request->getParam('shared_with_me', null);
- $reshares = $this->request->getParam('reshares', null);
- $subfiles = $this->request->getParam('subfiles');
- $path = $this->request->getParam('path', null);
-
- if ($path !== null) {
- $userFolder = $this->rootFolder->getUserFolder($this->currentUser->getUID());
- try {
- $path = $userFolder->get($path);
- } catch (\OCP\Files\NotFoundException $e) {
- return new \OC_OCS_Result(null, 404, 'wrong path, file/folder doesn\'t exist');
- }
- }
-
- if ($sharedWithMe === 'true') {
- return $this->getSharedWithMe($path);
- }
-
- if ($subfiles === 'true') {
- return $this->getSharesInDir($path);
- }
-
- if ($reshares === 'true') {
- $reshares = true;
- } else {
- $reshares = false;
- }
-
- // Get all shares
- $userShares = $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_USER, $path, $reshares, -1, 0);
- $groupShares = $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_GROUP, $path, $reshares, -1, 0);
- $linkShares = $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_LINK, $path, $reshares, -1, 0);
- $shares = array_merge($userShares, $groupShares, $linkShares);
-
- if ($this->shareManager->outgoingServer2ServerSharesAllowed()) {
- $federatedShares = $this->shareManager->getSharesBy($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_REMOTE, $path, $reshares, -1, 0);
- $shares = array_merge($shares, $federatedShares);
- }
-
-
- $formatted = [];
- foreach ($shares as $share) {
- try {
- $formatted[] = $this->formatShare($share);
- } catch (NotFoundException $e) {
- //Ignore share
- }
- }
-
- return new \OC_OCS_Result($formatted);
- }
-
- /**
- * @param int $id
- * @return \OC_OCS_Result
- */
- public function updateShare($id) {
- if (!$this->shareManager->shareApiEnabled()) {
- return new \OC_OCS_Result(null, 404, 'Share API is disabled');
- }
-
- try {
- $share = $this->getShareById($id);
- } catch (ShareNotFound $e) {
- return new \OC_OCS_Result(null, 404, 'wrong share ID, share doesn\'t exist.');
- }
-
- if (!$this->canAccessShare($share)) {
- return new \OC_OCS_Result(null, 404, 'wrong share Id, share doesn\'t exist.');
- }
-
- $permissions = $this->request->getParam('permissions', null);
- $password = $this->request->getParam('password', null);
- $publicUpload = $this->request->getParam('publicUpload', null);
- $expireDate = $this->request->getParam('expireDate', null);
-
- /*
- * expirationdate, password and publicUpload only make sense for link shares
- */
- if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK) {
- if ($permissions === null && $password === null && $publicUpload === null && $expireDate === null) {
- return new \OC_OCS_Result(null, 400, 'Wrong or no update parameter given');
- }
-
- $newPermissions = null;
- if ($publicUpload === 'true') {
- $newPermissions = \OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE;
- } else if ($publicUpload === 'false') {
- $newPermissions = \OCP\Constants::PERMISSION_READ;
- }
-
- if ($permissions !== null) {
- $newPermissions = (int)$permissions;
- }
-
- if ($newPermissions !== null &&
- $newPermissions !== \OCP\Constants::PERMISSION_READ &&
- $newPermissions !== (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE)) {
- return new \OC_OCS_Result(null, 400, 'can\'t change permission for public link share');
- }
-
- if ($newPermissions === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE)) {
- if (!$this->shareManager->shareApiLinkAllowPublicUpload()) {
- return new \OC_OCS_Result(null, 403, 'public upload disabled by the administrator');
- }
-
- if (!($share->getNode() instanceof \OCP\Files\Folder)) {
- return new \OC_OCS_Result(null, 400, "public upload is only possible for public shared folders");
- }
- }
-
- if ($newPermissions !== null) {
- $share->setPermissions($newPermissions);
- }
-
- if ($expireDate === '') {
- $share->setExpirationDate(null);
- } else if ($expireDate !== null) {
- try {
- $expireDate = $this->parseDate($expireDate);
- } catch (\Exception $e) {
- return new \OC_OCS_Result(null, 400, $e->getMessage());
- }
- $share->setExpirationDate($expireDate);
- }
-
- if ($password === '') {
- $share->setPassword(null);
- } else if ($password !== null) {
- $share->setPassword($password);
- }
-
- } else {
- // For other shares only permissions is valid.
- if ($permissions === null) {
- return new \OC_OCS_Result(null, 400, 'Wrong or no update parameter given');
- } else {
- $permissions = (int)$permissions;
- $share->setPermissions($permissions);
- }
- }
-
- if ($permissions !== null) {
- /* Check if this is an incomming share */
- $incomingShares = $this->shareManager->getSharedWith($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_USER, $share->getNode(), -1, 0);
- $incomingShares = array_merge($incomingShares, $this->shareManager->getSharedWith($this->currentUser->getUID(), \OCP\Share::SHARE_TYPE_GROUP, $share->getNode(), -1, 0));
-
- if (!empty($incomingShares)) {
- $maxPermissions = 0;
- foreach ($incomingShares as $incomingShare) {
- $maxPermissions |= $incomingShare->getPermissions();
- }
-
- if ($share->getPermissions() & ~$maxPermissions) {
- return new \OC_OCS_Result(null, 404, 'Cannot increase permissions');
- }
- }
- }
-
-
- try {
- $share = $this->shareManager->updateShare($share);
- } catch (\Exception $e) {
- return new \OC_OCS_Result(null, 400, $e->getMessage());
- }
-
- return new \OC_OCS_Result($this->formatShare($share));
- }
-
- /**
- * @param \OCP\Share\IShare $share
- * @return bool
- */
- protected function canAccessShare(\OCP\Share\IShare $share) {
- // 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->getUID() ||
- $share->getSharedBy() === $this->currentUser->getUID()
- ) {
- return true;
- }
-
- // If the share is shared with you (or a group you are a member of)
- if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER &&
- $share->getSharedWith() === $this->currentUser->getUID()) {
- return true;
- }
-
- if ($share->getShareType() === \OCP\Share::SHARE_TYPE_GROUP) {
- $sharedWith = $this->groupManager->get($share->getSharedWith());
- if ($sharedWith->inGroup($this->currentUser)) {
- return true;
- }
- }
-
- 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($expireDate) {
- 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($id) {
- $share = null;
-
- // First check if it is an internal share.
- try {
- $share = $this->shareManager->getShareById('ocinternal:'.$id);
- } catch (ShareNotFound $e) {
- if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
- throw new ShareNotFound();
- }
-
- $share = $this->shareManager->getShareById('ocFederatedSharing:' . $id);
- }
-
- return $share;
- }
-}
diff --git a/apps/files_sharing/api/sharees.php b/apps/files_sharing/api/sharees.php
deleted file mode 100644
index 4e005c5e26c..00000000000
--- a/apps/files_sharing/api/sharees.php
+++ /dev/null
@@ -1,536 +0,0 @@
-<?php
-/**
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Roeland Jago Douma <rullzer@owncloud.com>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @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\API;
-
-use OCP\AppFramework\Http;
-use OCP\Contacts\IManager;
-use OCP\IGroup;
-use OCP\IGroupManager;
-use OCP\ILogger;
-use OCP\IRequest;
-use OCP\IUser;
-use OCP\IUserManager;
-use OCP\IConfig;
-use OCP\IUserSession;
-use OCP\IURLGenerator;
-use OCP\Share;
-
-class Sharees {
-
- /** @var IGroupManager */
- protected $groupManager;
-
- /** @var IUserManager */
- protected $userManager;
-
- /** @var IManager */
- protected $contactsManager;
-
- /** @var IConfig */
- protected $config;
-
- /** @var IUserSession */
- protected $userSession;
-
- /** @var IRequest */
- protected $request;
-
- /** @var IURLGenerator */
- protected $urlGenerator;
-
- /** @var ILogger */
- protected $logger;
-
- /** @var \OCP\Share\IManager */
- protected $shareManager;
-
- /** @var bool */
- protected $shareWithGroupOnly = false;
-
- /** @var bool */
- protected $shareeEnumeration = true;
-
- /** @var int */
- protected $offset = 0;
-
- /** @var int */
- protected $limit = 10;
-
- /** @var array */
- protected $result = [
- 'exact' => [
- 'users' => [],
- 'groups' => [],
- 'remotes' => [],
- ],
- 'users' => [],
- 'groups' => [],
- 'remotes' => [],
- ];
-
- protected $reachedEndFor = [];
-
- /**
- * @param IGroupManager $groupManager
- * @param IUserManager $userManager
- * @param IManager $contactsManager
- * @param IConfig $config
- * @param IUserSession $userSession
- * @param IURLGenerator $urlGenerator
- * @param IRequest $request
- * @param ILogger $logger
- * @param \OCP\Share\IManager $shareManager
- */
- public function __construct(IGroupManager $groupManager,
- IUserManager $userManager,
- IManager $contactsManager,
- IConfig $config,
- IUserSession $userSession,
- IURLGenerator $urlGenerator,
- IRequest $request,
- ILogger $logger,
- \OCP\Share\IManager $shareManager) {
- $this->groupManager = $groupManager;
- $this->userManager = $userManager;
- $this->contactsManager = $contactsManager;
- $this->config = $config;
- $this->userSession = $userSession;
- $this->urlGenerator = $urlGenerator;
- $this->request = $request;
- $this->logger = $logger;
- $this->shareManager = $shareManager;
- }
-
- /**
- * @param string $search
- */
- protected function getUsers($search) {
- $this->result['users'] = $this->result['exact']['users'] = $users = [];
-
- $userGroups = [];
- if ($this->shareWithGroupOnly) {
- // Search in all the groups this user is part of
- $userGroups = $this->groupManager->getUserGroupIds($this->userSession->getUser());
- foreach ($userGroups as $userGroup) {
- $usersTmp = $this->groupManager->displayNamesInGroup($userGroup, $search, $this->limit, $this->offset);
- foreach ($usersTmp as $uid => $userDisplayName) {
- $users[$uid] = $userDisplayName;
- }
- }
- } else {
- // Search in all users
- $usersTmp = $this->userManager->searchDisplayName($search, $this->limit, $this->offset);
-
- foreach ($usersTmp as $user) {
- $users[$user->getUID()] = $user->getDisplayName();
- }
- }
-
- if (!$this->shareeEnumeration || sizeof($users) < $this->limit) {
- $this->reachedEndFor[] = 'users';
- }
-
- $foundUserById = false;
- foreach ($users as $uid => $userDisplayName) {
- if (strtolower($uid) === strtolower($search) || strtolower($userDisplayName) === strtolower($search)) {
- if (strtolower($uid) === strtolower($search)) {
- $foundUserById = true;
- }
- $this->result['exact']['users'][] = [
- 'label' => $userDisplayName,
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_USER,
- 'shareWith' => $uid,
- ],
- ];
- } else {
- $this->result['users'][] = [
- 'label' => $userDisplayName,
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_USER,
- 'shareWith' => $uid,
- ],
- ];
- }
- }
-
- if ($this->offset === 0 && !$foundUserById) {
- // On page one we try if the search result has a direct hit on the
- // user id and if so, we add that to the exact match list
- $user = $this->userManager->get($search);
- if ($user instanceof IUser) {
- $addUser = true;
-
- if ($this->shareWithGroupOnly) {
- // Only add, if we have a common group
- $commonGroups = array_intersect($userGroups, $this->groupManager->getUserGroupIds($user));
- $addUser = !empty($commonGroups);
- }
-
- if ($addUser) {
- array_push($this->result['exact']['users'], [
- 'label' => $user->getDisplayName(),
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_USER,
- 'shareWith' => $user->getUID(),
- ],
- ]);
- }
- }
- }
-
- if (!$this->shareeEnumeration) {
- $this->result['users'] = [];
- }
- }
-
- /**
- * @param string $search
- */
- protected function getGroups($search) {
- $this->result['groups'] = $this->result['exact']['groups'] = [];
-
- $groups = $this->groupManager->search($search, $this->limit, $this->offset);
- $groups = array_map(function (IGroup $group) { return $group->getGID(); }, $groups);
-
- if (!$this->shareeEnumeration || sizeof($groups) < $this->limit) {
- $this->reachedEndFor[] = 'groups';
- }
-
- $userGroups = [];
- if (!empty($groups) && $this->shareWithGroupOnly) {
- // Intersect all the groups that match with the groups this user is a member of
- $userGroups = $this->groupManager->getUserGroups($this->userSession->getUser());
- $userGroups = array_map(function (IGroup $group) { return $group->getGID(); }, $userGroups);
- $groups = array_intersect($groups, $userGroups);
- }
-
- foreach ($groups as $gid) {
- if (strtolower($gid) === strtolower($search)) {
- $this->result['exact']['groups'][] = [
- 'label' => $gid,
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_GROUP,
- 'shareWith' => $gid,
- ],
- ];
- } else {
- $this->result['groups'][] = [
- 'label' => $gid,
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_GROUP,
- 'shareWith' => $gid,
- ],
- ];
- }
- }
-
- if ($this->offset === 0 && empty($this->result['exact']['groups'])) {
- // On page one we try if the search result has a direct hit on the
- // user id and if so, we add that to the exact match list
- $group = $this->groupManager->get($search);
- if ($group instanceof IGroup && (!$this->shareWithGroupOnly || in_array($group->getGID(), $userGroups))) {
- array_push($this->result['exact']['groups'], [
- 'label' => $group->getGID(),
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_GROUP,
- 'shareWith' => $group->getGID(),
- ],
- ]);
- }
- }
-
- if (!$this->shareeEnumeration) {
- $this->result['groups'] = [];
- }
- }
-
- /**
- * @param string $search
- * @return array possible sharees
- */
- protected function getRemote($search) {
- $this->result['remotes'] = [];
-
- // Search in contacts
- //@todo Pagination missing
- $addressBookContacts = $this->contactsManager->search($search, ['CLOUD', 'FN']);
- $foundRemoteById = false;
- foreach ($addressBookContacts as $contact) {
- if (isset($contact['isLocalSystemBook'])) {
- continue;
- }
- if (isset($contact['CLOUD'])) {
- $cloudIds = $contact['CLOUD'];
- if (!is_array($cloudIds)) {
- $cloudIds = [$cloudIds];
- }
- foreach ($cloudIds as $cloudId) {
- list(, $serverUrl) = $this->splitUserRemote($cloudId);
- if (strtolower($contact['FN']) === strtolower($search) || strtolower($cloudId) === strtolower($search)) {
- if (strtolower($cloudId) === strtolower($search)) {
- $foundRemoteById = true;
- }
- $this->result['exact']['remotes'][] = [
- 'label' => $contact['FN'],
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_REMOTE,
- 'shareWith' => $cloudId,
- 'server' => $serverUrl,
- ],
- ];
- } else {
- $this->result['remotes'][] = [
- 'label' => $contact['FN'],
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_REMOTE,
- 'shareWith' => $cloudId,
- 'server' => $serverUrl,
- ],
- ];
- }
- }
- }
- }
-
- if (!$this->shareeEnumeration) {
- $this->result['remotes'] = [];
- }
-
- if (!$foundRemoteById && substr_count($search, '@') >= 1 && substr_count($search, ' ') === 0 && $this->offset === 0) {
- $this->result['exact']['remotes'][] = [
- 'label' => $search,
- 'value' => [
- 'shareType' => Share::SHARE_TYPE_REMOTE,
- 'shareWith' => $search,
- ],
- ];
- }
-
- $this->reachedEndFor[] = 'remotes';
- }
-
- /**
- * split user and remote from federated cloud id
- *
- * @param string $address federated share address
- * @return array [user, remoteURL]
- * @throws \Exception
- */
- public function splitUserRemote($address) {
- if (strpos($address, '@') === false) {
- throw new \Exception('Invalid Federated Cloud ID');
- }
-
- // Find the first character that is not allowed in user names
- $id = str_replace('\\', '/', $address);
- $posSlash = strpos($id, '/');
- $posColon = strpos($id, ':');
-
- if ($posSlash === false && $posColon === false) {
- $invalidPos = strlen($id);
- } else if ($posSlash === false) {
- $invalidPos = $posColon;
- } else if ($posColon === false) {
- $invalidPos = $posSlash;
- } else {
- $invalidPos = min($posSlash, $posColon);
- }
-
- // Find the last @ before $invalidPos
- $pos = $lastAtPos = 0;
- while ($lastAtPos !== false && $lastAtPos <= $invalidPos) {
- $pos = $lastAtPos;
- $lastAtPos = strpos($id, '@', $pos + 1);
- }
-
- if ($pos !== false) {
- $user = substr($id, 0, $pos);
- $remote = substr($id, $pos + 1);
- $remote = $this->fixRemoteURL($remote);
- if (!empty($user) && !empty($remote)) {
- return array($user, $remote);
- }
- }
-
- throw new \Exception('Invalid Federated Cloud ID');
- }
-
- /**
- * Strips away a potential file names and trailing slashes:
- * - http://localhost
- * - http://localhost/
- * - http://localhost/index.php
- * - http://localhost/index.php/s/{shareToken}
- *
- * all return: http://localhost
- *
- * @param string $remote
- * @return string
- */
- protected function fixRemoteURL($remote) {
- $remote = str_replace('\\', '/', $remote);
- if ($fileNamePosition = strpos($remote, '/index.php')) {
- $remote = substr($remote, 0, $fileNamePosition);
- }
- $remote = rtrim($remote, '/');
-
- return $remote;
- }
-
- /**
- * @return \OC_OCS_Result
- */
- public function search() {
- $search = isset($_GET['search']) ? (string) $_GET['search'] : '';
- $itemType = isset($_GET['itemType']) ? (string) $_GET['itemType'] : null;
- $page = isset($_GET['page']) ? (int) $_GET['page'] : 1;
- $perPage = isset($_GET['perPage']) ? (int) $_GET['perPage'] : 200;
-
- if ($perPage <= 0) {
- return new \OC_OCS_Result(null, Http::STATUS_BAD_REQUEST, 'Invalid perPage argument');
- }
- if ($page <= 0) {
- return new \OC_OCS_Result(null, Http::STATUS_BAD_REQUEST, 'Invalid page');
- }
-
- $shareTypes = [
- Share::SHARE_TYPE_USER,
- ];
-
- if ($this->shareManager->allowGroupSharing()) {
- $shareTypes[] = Share::SHARE_TYPE_GROUP;
- }
-
- $shareTypes[] = Share::SHARE_TYPE_REMOTE;
-
- if (isset($_GET['shareType']) && is_array($_GET['shareType'])) {
- $shareTypes = array_intersect($shareTypes, $_GET['shareType']);
- sort($shareTypes);
-
- } else if (isset($_GET['shareType']) && is_numeric($_GET['shareType'])) {
- $shareTypes = array_intersect($shareTypes, [(int) $_GET['shareType']]);
- sort($shareTypes);
- }
-
- if (in_array(Share::SHARE_TYPE_REMOTE, $shareTypes) && !$this->isRemoteSharingAllowed($itemType)) {
- // Remove remote shares from type array, because it is not allowed.
- $shareTypes = array_diff($shareTypes, [Share::SHARE_TYPE_REMOTE]);
- }
-
- $this->shareWithGroupOnly = $this->config->getAppValue('core', 'shareapi_only_share_with_group_members', 'no') === 'yes';
- $this->shareeEnumeration = $this->config->getAppValue('core', 'shareapi_allow_share_dialog_user_enumeration', 'yes') === 'yes';
- $this->limit = (int) $perPage;
- $this->offset = $perPage * ($page - 1);
-
- return $this->searchSharees($search, $itemType, $shareTypes, $page, $perPage);
- }
-
- /**
- * Method to get out the static call for better testing
- *
- * @param string $itemType
- * @return bool
- */
- protected function isRemoteSharingAllowed($itemType) {
- try {
- $backend = Share::getBackend($itemType);
- return $backend->isShareTypeAllowed(Share::SHARE_TYPE_REMOTE);
- } catch (\Exception $e) {
- return false;
- }
- }
-
- /**
- * Testable search function that does not need globals
- *
- * @param string $search
- * @param string $itemType
- * @param array $shareTypes
- * @param int $page
- * @param int $perPage
- * @return \OC_OCS_Result
- */
- protected function searchSharees($search, $itemType, array $shareTypes, $page, $perPage) {
- // Verify arguments
- if ($itemType === null) {
- return new \OC_OCS_Result(null, Http::STATUS_BAD_REQUEST, 'Missing itemType');
- }
-
- // Get users
- if (in_array(Share::SHARE_TYPE_USER, $shareTypes)) {
- $this->getUsers($search);
- }
-
- // Get groups
- if (in_array(Share::SHARE_TYPE_GROUP, $shareTypes)) {
- $this->getGroups($search);
- }
-
- // Get remote
- if (in_array(Share::SHARE_TYPE_REMOTE, $shareTypes)) {
- $this->getRemote($search);
- }
-
- $response = new \OC_OCS_Result($this->result);
- $response->setItemsPerPage($perPage);
-
- if (sizeof($this->reachedEndFor) < 3) {
- $response->addHeader('Link', $this->getPaginationLink($page, [
- 'search' => $search,
- 'itemType' => $itemType,
- 'shareType' => $shareTypes,
- 'perPage' => $perPage,
- ]));
- }
-
- return $response;
- }
-
- /**
- * Generates a bunch of pagination links for the current page
- *
- * @param int $page Current page
- * @param array $params Parameters for the URL
- * @return string
- */
- protected function getPaginationLink($page, array $params) {
- if ($this->isV2()) {
- $url = $this->urlGenerator->getAbsoluteURL('/ocs/v2.php/apps/files_sharing/api/v1/sharees') . '?';
- } else {
- $url = $this->urlGenerator->getAbsoluteURL('/ocs/v1.php/apps/files_sharing/api/v1/sharees') . '?';
- }
- $params['page'] = $page + 1;
- $link = '<' . $url . http_build_query($params) . '>; rel="next"';
-
- return $link;
- }
-
- /**
- * @return bool
- */
- protected function isV2() {
- return $this->request->getScriptName() === '/ocs/v2.php';
- }
-}