123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Maxence Lange <maxence@nextcloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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 OCP\AppFramework\Http\DataResponse;
- use OCP\AppFramework\OCS\OCSBadRequestException;
- use OCP\AppFramework\OCSController;
- use OCP\Collaboration\Collaborators\ISearch;
- use OCP\IRequest;
- use OCP\IConfig;
- use OCP\IURLGenerator;
- use OCP\Share;
- use OCP\Share\IManager;
- class ShareesAPIController extends OCSController {
- /** @var IConfig */
- protected $config;
- /** @var IURLGenerator */
- protected $urlGenerator;
- /** @var 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' => [],
- 'remote_groups' => [],
- 'emails' => [],
- 'circles' => [],
- 'rooms' => [],
- ],
- 'users' => [],
- 'groups' => [],
- 'remotes' => [],
- 'remote_groups' => [],
- 'emails' => [],
- 'lookup' => [],
- 'circles' => [],
- 'rooms' => [],
- ];
- protected $reachedEndFor = [];
- /** @var ISearch */
- private $collaboratorSearch;
- /**
- * @param string $appName
- * @param IRequest $request
- * @param IConfig $config
- * @param IURLGenerator $urlGenerator
- * @param IManager $shareManager
- * @param ISearch $collaboratorSearch
- */
- public function __construct(
- string $appName,
- IRequest $request,
- IConfig $config,
- IURLGenerator $urlGenerator,
- IManager $shareManager,
- ISearch $collaboratorSearch
- ) {
- parent::__construct($appName, $request);
- $this->config = $config;
- $this->urlGenerator = $urlGenerator;
- $this->shareManager = $shareManager;
- $this->collaboratorSearch = $collaboratorSearch;
- }
- /**
- * @NoAdminRequired
- *
- * @param string $search
- * @param string $itemType
- * @param int $page
- * @param int $perPage
- * @param int|int[] $shareType
- * @param bool $lookup
- * @return DataResponse
- * @throws OCSBadRequestException
- */
- public function search(string $search = '', string $itemType = null, int $page = 1, int $perPage = 200, $shareType = null, bool $lookup = true): DataResponse {
- // only search for string larger than a given threshold
- $threshold = (int)$this->config->getSystemValue('sharing.minSearchStringLength', 0);
- if (strlen($search) < $threshold) {
- return new DataResponse($this->result);
- }
- // never return more than the max. number of results configured in the config.php
- $maxResults = (int)$this->config->getSystemValue('sharing.maxAutocompleteResults', 0);
- if ($maxResults > 0) {
- $perPage = min($perPage, $maxResults);
- }
- if ($perPage <= 0) {
- throw new OCSBadRequestException('Invalid perPage argument');
- }
- if ($page <= 0) {
- throw new OCSBadRequestException('Invalid page');
- }
- $shareTypes = [
- Share::SHARE_TYPE_USER,
- ];
- if ($itemType === null) {
- throw new OCSBadRequestException('Missing itemType');
- } elseif ($itemType === 'file' || $itemType === 'folder') {
- if ($this->shareManager->allowGroupSharing()) {
- $shareTypes[] = Share::SHARE_TYPE_GROUP;
- }
- if ($this->isRemoteSharingAllowed($itemType)) {
- $shareTypes[] = Share::SHARE_TYPE_REMOTE;
- }
- if ($this->isRemoteGroupSharingAllowed($itemType)) {
- $shareTypes[] = Share::SHARE_TYPE_REMOTE_GROUP;
- }
- if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_EMAIL)) {
- $shareTypes[] = Share::SHARE_TYPE_EMAIL;
- }
- if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_ROOM)) {
- $shareTypes[] = Share::SHARE_TYPE_ROOM;
- }
- } else {
- $shareTypes[] = Share::SHARE_TYPE_GROUP;
- $shareTypes[] = Share::SHARE_TYPE_EMAIL;
- }
- // FIXME: DI
- if (\OC::$server->getAppManager()->isEnabledForUser('circles') && class_exists('\OCA\Circles\ShareByCircleProvider')) {
- $shareTypes[] = Share::SHARE_TYPE_CIRCLE;
- }
- if (isset($_GET['shareType']) && is_array($_GET['shareType'])) {
- $shareTypes = array_intersect($shareTypes, $_GET['shareType']);
- sort($shareTypes);
- } else if (is_numeric($shareType)) {
- $shareTypes = array_intersect($shareTypes, [(int) $shareType]);
- sort($shareTypes);
- }
- $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);
- list($result, $hasMoreResults) = $this->collaboratorSearch->search($search, $shareTypes, $lookup, $this->limit, $this->offset);
- // extra treatment for 'exact' subarray, with a single merge expected keys might be lost
- if(isset($result['exact'])) {
- $result['exact'] = array_merge($this->result['exact'], $result['exact']);
- }
- $this->result = array_merge($this->result, $result);
- $response = new DataResponse($this->result);
- if ($hasMoreResults) {
- $response->addHeader('Link', $this->getPaginationLink($page, [
- 'search' => $search,
- 'itemType' => $itemType,
- 'shareType' => $shareTypes,
- 'perPage' => $perPage,
- ]));
- }
- return $response;
- }
- /**
- * Method to get out the static call for better testing
- *
- * @param string $itemType
- * @return bool
- */
- protected function isRemoteSharingAllowed(string $itemType): bool {
- try {
- // FIXME: static foo makes unit testing unnecessarily difficult
- $backend = \OC\Share\Share::getBackend($itemType);
- return $backend->isShareTypeAllowed(Share::SHARE_TYPE_REMOTE);
- } catch (\Exception $e) {
- return false;
- }
- }
- protected function isRemoteGroupSharingAllowed(string $itemType): bool {
- try {
- // FIXME: static foo makes unit testing unnecessarily difficult
- $backend = \OC\Share\Share::getBackend($itemType);
- return $backend->isShareTypeAllowed(Share::SHARE_TYPE_REMOTE_GROUP);
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * 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(int $page, array $params): string {
- 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;
- return '<' . $url . http_build_query($params) . '>; rel="next"';
- }
- /**
- * @return bool
- */
- protected function isV2(): bool {
- return $this->request->getScriptName() === '/ocs/v2.php';
- }
- }
|