2015-08-08 23:15:12 +03:00
|
|
|
<?php
|
2018-04-23 23:05:21 +03:00
|
|
|
declare(strict_types=1);
|
2015-08-08 23:15:12 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Maxence Lange <maxence@nextcloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-08-08 23:15:12 +03:00
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2016-08-26 11:52:06 +03:00
|
|
|
namespace OCA\Files_Sharing\Controller;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2017-02-22 02:24:40 +03:00
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2016-08-26 11:52:06 +03:00
|
|
|
use OCP\AppFramework\OCS\OCSBadRequestException;
|
|
|
|
use OCP\AppFramework\OCSController;
|
2017-08-31 23:47:02 +03:00
|
|
|
use OCP\Collaboration\Collaborators\ISearch;
|
2015-08-26 10:40:20 +03:00
|
|
|
use OCP\IRequest;
|
2015-08-12 15:23:48 +03:00
|
|
|
use OCP\IConfig;
|
2015-08-08 23:15:12 +03:00
|
|
|
use OCP\IURLGenerator;
|
2015-08-13 12:06:03 +03:00
|
|
|
use OCP\Share;
|
2017-08-31 23:47:02 +03:00
|
|
|
use OCP\Share\IManager;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2016-08-26 11:52:06 +03:00
|
|
|
class ShareesAPIController extends OCSController {
|
2015-08-12 15:23:48 +03:00
|
|
|
/** @var IConfig */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $config;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
|
|
|
/** @var IURLGenerator */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $urlGenerator;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2017-08-31 23:47:02 +03:00
|
|
|
/** @var IManager */
|
2016-03-18 18:39:03 +03:00
|
|
|
protected $shareManager;
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
/** @var bool */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $shareWithGroupOnly = false;
|
2015-08-26 10:40:20 +03:00
|
|
|
|
2015-08-26 13:30:07 +03:00
|
|
|
/** @var bool */
|
|
|
|
protected $shareeEnumeration = true;
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
/** @var int */
|
|
|
|
protected $offset = 0;
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
protected $limit = 10;
|
|
|
|
|
|
|
|
/** @var array */
|
|
|
|
protected $result = [
|
|
|
|
'exact' => [
|
|
|
|
'users' => [],
|
|
|
|
'groups' => [],
|
|
|
|
'remotes' => [],
|
2018-07-02 12:29:03 +03:00
|
|
|
'remote_groups' => [],
|
2016-10-24 14:16:05 +03:00
|
|
|
'emails' => [],
|
2017-03-17 22:48:33 +03:00
|
|
|
'circles' => [],
|
2015-08-26 10:40:20 +03:00
|
|
|
],
|
|
|
|
'users' => [],
|
|
|
|
'groups' => [],
|
|
|
|
'remotes' => [],
|
2018-07-02 12:29:03 +03:00
|
|
|
'remote_groups' => [],
|
2016-10-24 14:16:05 +03:00
|
|
|
'emails' => [],
|
2016-11-18 16:08:42 +03:00
|
|
|
'lookup' => [],
|
2017-03-17 22:48:33 +03:00
|
|
|
'circles' => [],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
protected $reachedEndFor = [];
|
2017-08-31 23:47:02 +03:00
|
|
|
/** @var ISearch */
|
|
|
|
private $collaboratorSearch;
|
2015-08-13 11:13:23 +03:00
|
|
|
|
2015-08-08 23:15:12 +03:00
|
|
|
/**
|
2016-08-26 11:52:06 +03:00
|
|
|
* @param string $appName
|
|
|
|
* @param IRequest $request
|
2015-08-12 15:23:48 +03:00
|
|
|
* @param IConfig $config
|
2015-08-13 12:06:03 +03:00
|
|
|
* @param IURLGenerator $urlGenerator
|
2017-08-31 23:47:02 +03:00
|
|
|
* @param IManager $shareManager
|
|
|
|
* @param ISearch $collaboratorSearch
|
2015-08-08 23:15:12 +03:00
|
|
|
*/
|
2017-08-31 23:47:02 +03:00
|
|
|
public function __construct(
|
2018-04-23 23:05:21 +03:00
|
|
|
string $appName,
|
2017-08-31 23:47:02 +03:00
|
|
|
IRequest $request,
|
|
|
|
IConfig $config,
|
|
|
|
IURLGenerator $urlGenerator,
|
|
|
|
IManager $shareManager,
|
|
|
|
ISearch $collaboratorSearch
|
2017-01-27 14:52:17 +03:00
|
|
|
) {
|
2016-08-26 11:52:06 +03:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
|
2015-08-12 15:23:48 +03:00
|
|
|
$this->config = $config;
|
2015-08-08 23:15:12 +03:00
|
|
|
$this->urlGenerator = $urlGenerator;
|
2016-03-18 18:39:03 +03:00
|
|
|
$this->shareManager = $shareManager;
|
2017-08-31 23:47:02 +03:00
|
|
|
$this->collaboratorSearch = $collaboratorSearch;
|
2016-02-12 17:27:39 +03:00
|
|
|
}
|
|
|
|
|
2015-08-12 15:19:34 +03:00
|
|
|
/**
|
2016-08-26 11:52:06 +03:00
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @param string $search
|
|
|
|
* @param string $itemType
|
|
|
|
* @param int $page
|
|
|
|
* @param int $perPage
|
|
|
|
* @param int|int[] $shareType
|
2016-11-18 16:08:42 +03:00
|
|
|
* @param bool $lookup
|
2017-02-22 02:24:40 +03:00
|
|
|
* @return DataResponse
|
2016-08-26 11:52:06 +03:00
|
|
|
* @throws OCSBadRequestException
|
2015-08-12 15:19:34 +03:00
|
|
|
*/
|
2018-04-23 23:05:21 +03:00
|
|
|
public function search(string $search = '', string $itemType = null, int $page = 1, int $perPage = 200, $shareType = null, bool $lookup = true): DataResponse {
|
2017-02-21 20:10:38 +03:00
|
|
|
|
|
|
|
// only search for string larger than a given threshold
|
2017-02-22 17:14:36 +03:00
|
|
|
$threshold = (int)$this->config->getSystemValue('sharing.minSearchStringLength', 0);
|
2017-02-21 20:10:38 +03:00
|
|
|
if (strlen($search) < $threshold) {
|
2017-02-22 02:24:40 +03:00
|
|
|
return new DataResponse($this->result);
|
2017-02-21 20:10:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// never return more than the max. number of results configured in the config.php
|
2017-02-22 17:14:36 +03:00
|
|
|
$maxResults = (int)$this->config->getSystemValue('sharing.maxAutocompleteResults', 0);
|
2017-02-21 20:10:38 +03:00
|
|
|
if ($maxResults > 0) {
|
|
|
|
$perPage = min($perPage, $maxResults);
|
|
|
|
}
|
2015-09-15 13:37:09 +03:00
|
|
|
if ($perPage <= 0) {
|
2016-08-26 11:52:06 +03:00
|
|
|
throw new OCSBadRequestException('Invalid perPage argument');
|
2015-09-15 13:37:09 +03:00
|
|
|
}
|
|
|
|
if ($page <= 0) {
|
2016-08-26 11:52:06 +03:00
|
|
|
throw new OCSBadRequestException('Invalid page');
|
2015-09-15 13:37:09 +03:00
|
|
|
}
|
2015-08-12 18:05:20 +03:00
|
|
|
|
|
|
|
$shareTypes = [
|
2015-08-13 12:06:03 +03:00
|
|
|
Share::SHARE_TYPE_USER,
|
2015-08-12 18:05:20 +03:00
|
|
|
];
|
2016-03-18 18:39:03 +03:00
|
|
|
|
2017-08-31 23:47:02 +03:00
|
|
|
if ($itemType === null) {
|
|
|
|
throw new OCSBadRequestException('Missing itemType');
|
|
|
|
} elseif ($itemType === 'file' || $itemType === 'folder') {
|
2016-11-10 16:16:35 +03:00
|
|
|
if ($this->shareManager->allowGroupSharing()) {
|
|
|
|
$shareTypes[] = Share::SHARE_TYPE_GROUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->isRemoteSharingAllowed($itemType)) {
|
|
|
|
$shareTypes[] = Share::SHARE_TYPE_REMOTE;
|
|
|
|
}
|
|
|
|
|
2018-07-02 12:29:03 +03:00
|
|
|
if ($this->isRemoteGroupSharingAllowed($itemType)) {
|
|
|
|
$shareTypes[] = Share::SHARE_TYPE_REMOTE_GROUP;
|
|
|
|
}
|
|
|
|
|
2016-11-10 16:16:35 +03:00
|
|
|
if ($this->shareManager->shareProviderExists(Share::SHARE_TYPE_EMAIL)) {
|
|
|
|
$shareTypes[] = Share::SHARE_TYPE_EMAIL;
|
|
|
|
}
|
|
|
|
} else {
|
2016-03-18 18:39:03 +03:00
|
|
|
$shareTypes[] = Share::SHARE_TYPE_GROUP;
|
2016-11-10 16:16:35 +03:00
|
|
|
$shareTypes[] = Share::SHARE_TYPE_EMAIL;
|
2016-03-18 18:39:03 +03:00
|
|
|
}
|
|
|
|
|
2017-09-13 17:21:23 +03:00
|
|
|
// FIXME: DI
|
2017-07-11 14:21:24 +03:00
|
|
|
if (\OC::$server->getAppManager()->isEnabledForUser('circles') && class_exists('\OCA\Circles\ShareByCircleProvider')) {
|
2017-03-17 22:48:33 +03:00
|
|
|
$shareTypes[] = Share::SHARE_TYPE_CIRCLE;
|
|
|
|
}
|
|
|
|
|
2016-07-29 16:37:08 +03:00
|
|
|
if (isset($_GET['shareType']) && is_array($_GET['shareType'])) {
|
|
|
|
$shareTypes = array_intersect($shareTypes, $_GET['shareType']);
|
2015-08-12 18:05:20 +03:00
|
|
|
sort($shareTypes);
|
2016-08-26 11:52:06 +03:00
|
|
|
} else if (is_numeric($shareType)) {
|
|
|
|
$shareTypes = array_intersect($shareTypes, [(int) $shareType]);
|
2015-08-12 18:05:20 +03:00
|
|
|
sort($shareTypes);
|
|
|
|
}
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->shareWithGroupOnly = $this->config->getAppValue('core', 'shareapi_only_share_with_group_members', 'no') === 'yes';
|
2015-08-26 13:30:07 +03:00
|
|
|
$this->shareeEnumeration = $this->config->getAppValue('core', 'shareapi_allow_share_dialog_user_enumeration', 'yes') === 'yes';
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->limit = (int) $perPage;
|
|
|
|
$this->offset = $perPage * ($page - 1);
|
2015-08-12 15:19:34 +03:00
|
|
|
|
2017-08-31 23:47:02 +03:00
|
|
|
list($result, $hasMoreResults) = $this->collaboratorSearch->search($search, $shareTypes, $lookup, $this->limit, $this->offset);
|
2017-03-17 22:48:33 +03:00
|
|
|
|
2017-09-06 23:51:18 +03:00
|
|
|
// extra treatment for 'exact' subarray, with a single merge expected keys might be lost
|
2017-09-13 13:32:47 +03:00
|
|
|
if(isset($result['exact'])) {
|
|
|
|
$result['exact'] = array_merge($this->result['exact'], $result['exact']);
|
|
|
|
}
|
2017-09-06 17:09:29 +03:00
|
|
|
$this->result = array_merge($this->result, $result);
|
|
|
|
$response = new DataResponse($this->result);
|
2017-03-17 22:48:33 +03:00
|
|
|
|
2017-08-31 23:47:02 +03:00
|
|
|
if ($hasMoreResults) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$response->addHeader('Link', $this->getPaginationLink($page, [
|
|
|
|
'search' => $search,
|
|
|
|
'itemType' => $itemType,
|
|
|
|
'shareType' => $shareTypes,
|
2015-09-15 13:14:14 +03:00
|
|
|
'perPage' => $perPage,
|
2015-08-26 10:40:20 +03:00
|
|
|
]));
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
2015-08-11 19:03:07 +03:00
|
|
|
|
2016-07-29 16:37:08 +03:00
|
|
|
/**
|
2017-08-31 23:47:02 +03:00
|
|
|
* Method to get out the static call for better testing
|
2017-06-14 16:07:21 +03:00
|
|
|
*
|
2017-08-31 23:47:02 +03:00
|
|
|
* @param string $itemType
|
2017-06-14 16:07:21 +03:00
|
|
|
* @return bool
|
|
|
|
*/
|
2018-04-23 23:05:21 +03:00
|
|
|
protected function isRemoteSharingAllowed(string $itemType): bool {
|
2017-08-31 23:47:02 +03:00
|
|
|
try {
|
2017-09-13 13:32:47 +03:00
|
|
|
// FIXME: static foo makes unit testing unnecessarily difficult
|
2017-08-31 23:47:02 +03:00
|
|
|
$backend = \OC\Share\Share::getBackend($itemType);
|
|
|
|
return $backend->isShareTypeAllowed(Share::SHARE_TYPE_REMOTE);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return false;
|
2017-06-14 16:07:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-02 12:29:03 +03:00
|
|
|
protected function isRemoteGroupSharingAllowed(string $itemType): bool {
|
2018-07-04 11:39:13 +03:00
|
|
|
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;
|
|
|
|
}
|
2018-07-02 12:29:03 +03:00
|
|
|
}
|
|
|
|
|
2017-08-31 23:47:02 +03:00
|
|
|
|
2015-08-11 19:03:07 +03:00
|
|
|
/**
|
2015-08-26 10:40:20 +03:00
|
|
|
* Generates a bunch of pagination links for the current page
|
2015-08-13 11:13:23 +03:00
|
|
|
*
|
2015-08-26 10:40:20 +03:00
|
|
|
* @param int $page Current page
|
|
|
|
* @param array $params Parameters for the URL
|
|
|
|
* @return string
|
2015-08-13 11:13:23 +03:00
|
|
|
*/
|
2018-04-23 23:05:21 +03:00
|
|
|
protected function getPaginationLink(int $page, array $params): string {
|
2015-08-26 10:40:20 +03:00
|
|
|
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') . '?';
|
2015-08-13 11:13:23 +03:00
|
|
|
}
|
2015-08-26 10:40:20 +03:00
|
|
|
$params['page'] = $page + 1;
|
2018-01-26 02:02:03 +03:00
|
|
|
return '<' . $url . http_build_query($params) . '>; rel="next"';
|
2015-08-13 11:13:23 +03:00
|
|
|
}
|
|
|
|
|
2015-08-13 11:57:08 +03:00
|
|
|
/**
|
2015-08-26 10:40:20 +03:00
|
|
|
* @return bool
|
2015-08-13 11:57:08 +03:00
|
|
|
*/
|
2018-04-23 23:05:21 +03:00
|
|
|
protected function isV2(): bool {
|
2015-08-26 10:40:20 +03:00
|
|
|
return $this->request->getScriptName() === '/ocs/v2.php';
|
2015-08-11 19:03:07 +03:00
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|