2015-08-08 23:15:12 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-08-08 23:15:12 +03:00
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace OCA\Files_Sharing\API;
|
|
|
|
|
2015-09-15 16:51:54 +03:00
|
|
|
use OCP\AppFramework\Http;
|
2015-08-13 12:06:03 +03:00
|
|
|
use OCP\Contacts\IManager;
|
2015-08-11 17:22:05 +03:00
|
|
|
use OCP\IGroup;
|
2015-08-08 23:15:12 +03:00
|
|
|
use OCP\IGroupManager;
|
2015-08-13 12:06:03 +03:00
|
|
|
use OCP\ILogger;
|
2015-08-26 10:40:20 +03:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IUser;
|
2015-08-08 23:15:12 +03:00
|
|
|
use OCP\IUserManager;
|
2015-08-12 15:23:48 +03:00
|
|
|
use OCP\IConfig;
|
2015-08-08 23:15:12 +03:00
|
|
|
use OCP\IUserSession;
|
|
|
|
use OCP\IURLGenerator;
|
2015-08-13 12:06:03 +03:00
|
|
|
use OCP\Share;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
|
|
|
class Sharees {
|
|
|
|
|
|
|
|
/** @var IGroupManager */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $groupManager;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
|
|
|
/** @var IUserManager */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $userManager;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2015-08-13 12:06:03 +03:00
|
|
|
/** @var IManager */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $contactsManager;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
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 IUserSession */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $userSession;
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
/** @var IRequest */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $request;
|
2015-08-26 10:40:20 +03:00
|
|
|
|
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
|
|
|
|
2015-08-13 12:06:03 +03:00
|
|
|
/** @var ILogger */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $logger;
|
2015-08-13 12:06:03 +03:00
|
|
|
|
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' => [],
|
|
|
|
],
|
|
|
|
'users' => [],
|
|
|
|
'groups' => [],
|
|
|
|
'remotes' => [],
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $reachedEndFor = [];
|
2015-08-13 11:13:23 +03:00
|
|
|
|
2015-08-08 23:15:12 +03:00
|
|
|
/**
|
|
|
|
* @param IGroupManager $groupManager
|
|
|
|
* @param IUserManager $userManager
|
2015-08-13 12:06:03 +03:00
|
|
|
* @param IManager $contactsManager
|
2015-08-12 15:23:48 +03:00
|
|
|
* @param IConfig $config
|
2015-08-08 23:15:12 +03:00
|
|
|
* @param IUserSession $userSession
|
2015-08-13 12:06:03 +03:00
|
|
|
* @param IURLGenerator $urlGenerator
|
2015-08-26 10:40:20 +03:00
|
|
|
* @param IRequest $request
|
2015-08-13 12:06:03 +03:00
|
|
|
* @param ILogger $logger
|
2015-08-08 23:15:12 +03:00
|
|
|
*/
|
|
|
|
public function __construct(IGroupManager $groupManager,
|
2015-08-11 15:57:51 +03:00
|
|
|
IUserManager $userManager,
|
2015-08-13 12:06:03 +03:00
|
|
|
IManager $contactsManager,
|
2015-08-12 15:23:48 +03:00
|
|
|
IConfig $config,
|
2015-08-08 23:15:12 +03:00
|
|
|
IUserSession $userSession,
|
2015-08-13 12:06:03 +03:00
|
|
|
IURLGenerator $urlGenerator,
|
2015-08-26 10:40:20 +03:00
|
|
|
IRequest $request,
|
|
|
|
ILogger $logger) {
|
2015-08-08 23:15:12 +03:00
|
|
|
$this->groupManager = $groupManager;
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
$this->contactsManager = $contactsManager;
|
2015-08-12 15:23:48 +03:00
|
|
|
$this->config = $config;
|
2015-08-08 23:15:12 +03:00
|
|
|
$this->userSession = $userSession;
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
2015-08-26 11:51:26 +03:00
|
|
|
$this->request = $request;
|
2015-08-13 12:06:03 +03:00
|
|
|
$this->logger = $logger;
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $search
|
|
|
|
*/
|
2015-08-26 10:40:20 +03:00
|
|
|
protected function getUsers($search) {
|
|
|
|
$this->result['users'] = $this->result['exact']['users'] = $users = [];
|
|
|
|
|
2015-12-02 18:01:01 +03:00
|
|
|
$userGroups = [];
|
2015-08-26 10:40:20 +03:00
|
|
|
if ($this->shareWithGroupOnly) {
|
2015-08-08 23:15:12 +03:00
|
|
|
// Search in all the groups this user is part of
|
2015-08-11 16:43:44 +03:00
|
|
|
$userGroups = $this->groupManager->getUserGroupIds($this->userSession->getUser());
|
2015-08-08 23:15:12 +03:00
|
|
|
foreach ($userGroups as $userGroup) {
|
2015-08-26 11:51:26 +03:00
|
|
|
$usersTmp = $this->groupManager->displayNamesInGroup($userGroup, $search, $this->limit, $this->offset);
|
|
|
|
foreach ($usersTmp as $uid => $userDisplayName) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$users[$uid] = $userDisplayName;
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Search in all users
|
2015-08-26 10:40:20 +03:00
|
|
|
$usersTmp = $this->userManager->searchDisplayName($search, $this->limit, $this->offset);
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
foreach ($usersTmp as $user) {
|
2015-08-08 23:15:12 +03:00
|
|
|
$users[$user->getUID()] = $user->getDisplayName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-26 13:30:07 +03:00
|
|
|
if (!$this->shareeEnumeration || sizeof($users) < $this->limit) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->reachedEndFor[] = 'users';
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
$foundUserById = false;
|
|
|
|
foreach ($users as $uid => $userDisplayName) {
|
2015-08-26 12:45:11 +03:00
|
|
|
if (strtolower($uid) === $search || strtolower($userDisplayName) === $search) {
|
|
|
|
if (strtolower($uid) === $search) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$foundUserById = true;
|
|
|
|
}
|
|
|
|
$this->result['exact']['users'][] = [
|
2015-08-26 11:51:26 +03:00
|
|
|
'label' => $userDisplayName,
|
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_USER,
|
|
|
|
'shareWith' => $uid,
|
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$this->result['users'][] = [
|
|
|
|
'label' => $userDisplayName,
|
2015-08-26 11:51:26 +03:00
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_USER,
|
|
|
|
'shareWith' => $uid,
|
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
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) {
|
2015-12-02 18:01:01 +03:00
|
|
|
$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(),
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
2015-08-26 10:40:20 +03:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 13:30:07 +03:00
|
|
|
|
|
|
|
if (!$this->shareeEnumeration) {
|
|
|
|
$this->result['users'] = [];
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $search
|
|
|
|
*/
|
2015-08-26 10:40:20 +03:00
|
|
|
protected function getGroups($search) {
|
|
|
|
$this->result['groups'] = $this->result['exact']['groups'] = [];
|
|
|
|
|
|
|
|
$groups = $this->groupManager->search($search, $this->limit, $this->offset);
|
2015-08-11 17:22:05 +03:00
|
|
|
$groups = array_map(function (IGroup $group) { return $group->getGID(); }, $groups);
|
2015-08-08 23:15:12 +03:00
|
|
|
|
2015-08-26 13:30:07 +03:00
|
|
|
if (!$this->shareeEnumeration || sizeof($groups) < $this->limit) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->reachedEndFor[] = 'groups';
|
|
|
|
}
|
|
|
|
|
|
|
|
$userGroups = [];
|
|
|
|
if (!empty($groups) && $this->shareWithGroupOnly) {
|
2015-08-08 23:15:12 +03:00
|
|
|
// Intersect all the groups that match with the groups this user is a member of
|
|
|
|
$userGroups = $this->groupManager->getUserGroups($this->userSession->getUser());
|
2015-08-11 17:22:05 +03:00
|
|
|
$userGroups = array_map(function (IGroup $group) { return $group->getGID(); }, $userGroups);
|
2015-08-08 23:15:12 +03:00
|
|
|
$groups = array_intersect($groups, $userGroups);
|
|
|
|
}
|
|
|
|
|
2015-08-11 17:22:05 +03:00
|
|
|
foreach ($groups as $gid) {
|
2015-08-26 12:45:11 +03:00
|
|
|
if (strtolower($gid) === $search) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->result['exact']['groups'][] = [
|
|
|
|
'label' => $search,
|
2015-08-26 11:51:26 +03:00
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_GROUP,
|
|
|
|
'shareWith' => $search,
|
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$this->result['groups'][] = [
|
|
|
|
'label' => $gid,
|
2015-08-26 11:51:26 +03:00
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_GROUP,
|
|
|
|
'shareWith' => $gid,
|
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
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);
|
2015-08-26 12:45:11 +03:00
|
|
|
if ($group instanceof IGroup && (!$this->shareWithGroupOnly || in_array($group->getGID(), $userGroups))) {
|
|
|
|
array_push($this->result['exact']['groups'], [
|
2015-08-26 10:40:20 +03:00
|
|
|
'label' => $group->getGID(),
|
2015-08-26 11:51:26 +03:00
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_GROUP,
|
|
|
|
'shareWith' => $group->getGID(),
|
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
2015-08-26 13:30:07 +03:00
|
|
|
|
|
|
|
if (!$this->shareeEnumeration) {
|
|
|
|
$this->result['groups'] = [];
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $search
|
|
|
|
* @return array possible sharees
|
|
|
|
*/
|
2015-08-12 15:19:34 +03:00
|
|
|
protected function getRemote($search) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->result['remotes'] = [];
|
2015-08-08 23:15:12 +03:00
|
|
|
|
|
|
|
// Search in contacts
|
2015-08-26 10:40:20 +03:00
|
|
|
//@todo Pagination missing
|
2015-08-08 23:15:12 +03:00
|
|
|
$addressBookContacts = $this->contactsManager->search($search, ['CLOUD', 'FN']);
|
2015-08-26 12:45:11 +03:00
|
|
|
$foundRemoteById = false;
|
2015-08-08 23:15:12 +03:00
|
|
|
foreach ($addressBookContacts as $contact) {
|
2016-02-02 13:24:26 +03:00
|
|
|
if (isset($contact['isLocalSystemBook'])) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
if (isset($contact['CLOUD'])) {
|
2016-01-28 18:01:34 +03:00
|
|
|
$cloudIds = $contact['CLOUD'];
|
|
|
|
if (!is_array($cloudIds)) {
|
|
|
|
$cloudIds = [$cloudIds];
|
|
|
|
}
|
|
|
|
foreach ($cloudIds as $cloudId) {
|
2016-02-12 17:27:39 +03:00
|
|
|
list(, $serverUrl) = $this->splitUserRemote($cloudId);
|
2015-08-26 12:45:11 +03:00
|
|
|
if (strtolower($contact['FN']) === $search || strtolower($cloudId) === $search) {
|
|
|
|
if (strtolower($cloudId) === $search) {
|
|
|
|
$foundRemoteById = true;
|
|
|
|
}
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->result['exact']['remotes'][] = [
|
|
|
|
'label' => $contact['FN'],
|
2015-08-26 11:51:26 +03:00
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_REMOTE,
|
|
|
|
'shareWith' => $cloudId,
|
2016-02-12 17:27:39 +03:00
|
|
|
'server' => $serverUrl,
|
2015-08-26 11:51:26 +03:00
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$this->result['remotes'][] = [
|
|
|
|
'label' => $contact['FN'],
|
2015-08-26 11:51:26 +03:00
|
|
|
'value' => [
|
|
|
|
'shareType' => Share::SHARE_TYPE_REMOTE,
|
|
|
|
'shareWith' => $cloudId,
|
2016-02-12 17:27:39 +03:00
|
|
|
'server' => $serverUrl,
|
2015-08-26 11:51:26 +03:00
|
|
|
],
|
2015-08-26 10:40:20 +03:00
|
|
|
];
|
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-26 13:30:07 +03:00
|
|
|
if (!$this->shareeEnumeration) {
|
|
|
|
$this->result['remotes'] = [];
|
|
|
|
}
|
|
|
|
|
2015-08-26 12:45:11 +03:00
|
|
|
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,
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->reachedEndFor[] = 'remotes';
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
2016-02-12 17:27:39 +03:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
|
2015-08-12 15:19:34 +03:00
|
|
|
/**
|
|
|
|
* @return \OC_OCS_Result
|
|
|
|
*/
|
2015-08-12 15:23:48 +03:00
|
|
|
public function search() {
|
2015-08-12 16:03:50 +03:00
|
|
|
$search = isset($_GET['search']) ? (string) $_GET['search'] : '';
|
|
|
|
$itemType = isset($_GET['itemType']) ? (string) $_GET['itemType'] : null;
|
2015-09-15 13:37:09 +03:00
|
|
|
$page = isset($_GET['page']) ? (int) $_GET['page'] : 1;
|
|
|
|
$perPage = isset($_GET['perPage']) ? (int) $_GET['perPage'] : 200;
|
|
|
|
|
|
|
|
if ($perPage <= 0) {
|
2015-09-15 16:51:54 +03:00
|
|
|
return new \OC_OCS_Result(null, Http::STATUS_BAD_REQUEST, 'Invalid perPage argument');
|
2015-09-15 13:37:09 +03:00
|
|
|
}
|
|
|
|
if ($page <= 0) {
|
2015-09-15 16:51:54 +03:00
|
|
|
return new \OC_OCS_Result(null, Http::STATUS_BAD_REQUEST, '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,
|
|
|
|
Share::SHARE_TYPE_GROUP,
|
|
|
|
Share::SHARE_TYPE_REMOTE,
|
2015-08-12 18:05:20 +03:00
|
|
|
];
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2015-08-13 12:06:03 +03:00
|
|
|
if (in_array(Share::SHARE_TYPE_REMOTE, $shareTypes) && !$this->isRemoteSharingAllowed($itemType)) {
|
2015-08-12 18:05:20 +03:00
|
|
|
// Remove remote shares from type array, because it is not allowed.
|
2015-08-13 12:06:03 +03:00
|
|
|
$shareTypes = array_diff($shareTypes, [Share::SHARE_TYPE_REMOTE]);
|
2015-08-12 18:05:20 +03:00
|
|
|
}
|
2015-08-11 19:03:07 +03:00
|
|
|
|
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
|
|
|
|
2016-01-12 12:05:09 +03:00
|
|
|
return $this->searchSharees($search, $itemType, $shareTypes, $page, $perPage);
|
2015-08-12 18:05:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get out the static call for better testing
|
|
|
|
*
|
|
|
|
* @param string $itemType
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function isRemoteSharingAllowed($itemType) {
|
|
|
|
try {
|
2015-08-13 12:06:03 +03:00
|
|
|
$backend = Share::getBackend($itemType);
|
|
|
|
return $backend->isShareTypeAllowed(Share::SHARE_TYPE_REMOTE);
|
2015-08-12 18:05:20 +03:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-12 15:19:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Testable search function that does not need globals
|
|
|
|
*
|
|
|
|
* @param string $search
|
|
|
|
* @param string $itemType
|
2015-08-12 18:05:20 +03:00
|
|
|
* @param array $shareTypes
|
2015-08-12 15:19:34 +03:00
|
|
|
* @param int $page
|
|
|
|
* @param int $perPage
|
|
|
|
* @return \OC_OCS_Result
|
|
|
|
*/
|
2015-08-26 11:51:26 +03:00
|
|
|
protected function searchSharees($search, $itemType, array $shareTypes, $page, $perPage) {
|
2015-08-08 23:15:12 +03:00
|
|
|
// Verify arguments
|
2015-08-11 19:03:07 +03:00
|
|
|
if ($itemType === null) {
|
2015-09-15 16:51:54 +03:00
|
|
|
return new \OC_OCS_Result(null, Http::STATUS_BAD_REQUEST, 'Missing itemType');
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get users
|
2015-08-13 12:06:03 +03:00
|
|
|
if (in_array(Share::SHARE_TYPE_USER, $shareTypes)) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->getUsers($search);
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get groups
|
2015-08-13 12:06:03 +03:00
|
|
|
if (in_array(Share::SHARE_TYPE_GROUP, $shareTypes)) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->getGroups($search);
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get remote
|
2015-08-13 12:06:03 +03:00
|
|
|
if (in_array(Share::SHARE_TYPE_REMOTE, $shareTypes)) {
|
2015-08-26 10:40:20 +03:00
|
|
|
$this->getRemote($search);
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
$response = new \OC_OCS_Result($this->result);
|
2015-08-11 19:03:07 +03:00
|
|
|
$response->setItemsPerPage($perPage);
|
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
if (sizeof($this->reachedEndFor) < 3) {
|
|
|
|
$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
|
|
|
|
|
|
|
/**
|
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
|
|
|
*/
|
2015-08-26 10:40:20 +03:00
|
|
|
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') . '?';
|
2015-08-13 11:13:23 +03:00
|
|
|
}
|
2015-08-26 10:40:20 +03:00
|
|
|
$params['page'] = $page + 1;
|
|
|
|
$link = '<' . $url . http_build_query($params) . '>; rel="next"';
|
2015-08-13 11:13:23 +03:00
|
|
|
|
2015-08-26 10:40:20 +03:00
|
|
|
return $link;
|
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
|
|
|
*/
|
2015-08-26 10:40:20 +03:00
|
|
|
protected function isV2() {
|
|
|
|
return $this->request->getScriptName() === '/ocs/v2.php';
|
2015-08-11 19:03:07 +03:00
|
|
|
}
|
2015-08-08 23:15:12 +03:00
|
|
|
}
|