From 0c68a5b475d79c3f5cdcd3cb205187b290f2d0fc Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 26 Sep 2025 11:28:25 +0200 Subject: [PATCH] feat(Share\IManager): add `matchUserId` method and update docs Add missing `matchUserId` method for full-match-autocomplete options and update docs to make it clearer what each options exactly means. Signed-off-by: Ferdinand Thiessen --- lib/private/Share20/Manager.php | 4 ++++ lib/public/Share/IManager.php | 9 ++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index b9b5426452c..cf6b668471e 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -1932,6 +1932,10 @@ class Manager implements IManager { return $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_full_match_email', 'yes') === 'yes'; } + public function matchUserId(): bool { + return $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_full_match_userid', 'yes') === 'yes'; + } + public function ignoreSecondDisplayName(): bool { return $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_full_match_ignore_second_dn', 'no') === 'yes'; } diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php index 23713f2e462..f6bb3e1059f 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -441,7 +441,8 @@ interface IManager { public function limitEnumerationToPhone(): bool; /** - * Check if user enumeration is allowed to return on full match + * Check if user enumeration is allowed to return also on full match + * and ignore limitations to phonebook or groups. * * @return bool * @since 21.0.1 @@ -449,7 +450,8 @@ interface IManager { public function allowEnumerationFullMatch(): bool; /** - * Check if the search should match the email + * When `allowEnumerationFullMatch` is enabled and `matchEmail` is set, + * then also return results for full email matches. * * @return bool * @since 25.0.0 @@ -457,7 +459,8 @@ interface IManager { public function matchEmail(): bool; /** - * Check if the search should ignore the second in parentheses display name if there is any + * When `allowEnumerationFullMatch` is enabled and `ignoreSecondDisplayName` is set, + * then the search should ignore matches on the second displayname and only use the first. * * @return bool * @since 25.0.0