summaryrefslogtreecommitdiffstats
path: root/lib/private/Collaboration
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2022-04-06 12:55:29 +0200
committerLouis Chemineau <louis@chmn.me>2022-04-06 15:41:41 +0200
commit0e06ee68c0af2a953a5b32865c48a8bdfa6396b3 (patch)
tree80f49a8cfd6ee51f9f4e9e835e48a92cf2bbbc86 /lib/private/Collaboration
parent3b98db15e1386aac18bc7041e3d1c9b1b5617e17 (diff)
downloadnextcloud-server-0e06ee68c0af2a953a5b32865c48a8bdfa6396b3.tar.gz
nextcloud-server-0e06ee68c0af2a953a5b32865c48a8bdfa6396b3.zip
Add settings to not match userID during full match
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'lib/private/Collaboration')
-rw-r--r--lib/private/Collaboration/Collaborators/UserPlugin.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Collaboration/Collaborators/UserPlugin.php b/lib/private/Collaboration/Collaborators/UserPlugin.php
index 1c00bb26c94..4d8bc4cbf3a 100644
--- a/lib/private/Collaboration/Collaborators/UserPlugin.php
+++ b/lib/private/Collaboration/Collaborators/UserPlugin.php
@@ -54,6 +54,8 @@ class UserPlugin implements ISearchPlugin {
protected $shareeEnumerationPhone;
/* @var bool */
protected $shareeEnumerationFullMatch;
+ /* @var bool */
+ protected $shareeEnumerationFullMatchUserId;
/** @var IConfig */
private $config;
@@ -87,6 +89,7 @@ class UserPlugin implements ISearchPlugin {
$this->shareeEnumerationInGroupOnly = $this->shareeEnumeration && $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_to_group', 'no') === 'yes';
$this->shareeEnumerationPhone = $this->shareeEnumeration && $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_to_phone', 'no') === 'yes';
$this->shareeEnumerationFullMatch = $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_full_match', 'yes') === 'yes';
+ $this->shareeEnumerationFullMatchUserId = $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_full_match_userid', 'yes') === 'yes';
}
public function search($search, $limit, $offset, ISearchResult $searchResult) {
@@ -228,7 +231,7 @@ class UserPlugin implements ISearchPlugin {
}
}
- if ($this->shareeEnumerationFullMatch && $offset === 0 && !$foundUserById) {
+ if ($this->shareeEnumerationFullMatch && $this->shareeEnumerationFullMatchUserId && $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);