aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2018-08-06 09:55:24 +0200
committerThomas Citharel <tcit@tcit.fr>2018-08-06 09:55:24 +0200
commit03f1fef1601c21a2c387a20db9e46b21273c15c9 (patch)
tree3fe2b909216f4b99542ca521b6a765c68b990736
parenta311798674880ba7d40c0ad1d3ae0d6b42f1d9b4 (diff)
downloadnextcloud-server-03f1fef1601c21a2c387a20db9e46b21273c15c9.tar.gz
nextcloud-server-03f1fef1601c21a2c387a20db9e46b21273c15c9.zip
Ignore deactivated users in collaborators user search plugin
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
-rw-r--r--lib/private/Collaboration/Collaborators/UserPlugin.php4
-rw-r--r--tests/lib/Collaboration/Collaborators/UserPluginTest.php6
2 files changed, 8 insertions, 2 deletions
diff --git a/lib/private/Collaboration/Collaborators/UserPlugin.php b/lib/private/Collaboration/Collaborators/UserPlugin.php
index 62f76876031..971b7025564 100644
--- a/lib/private/Collaboration/Collaborators/UserPlugin.php
+++ b/lib/private/Collaboration/Collaborators/UserPlugin.php
@@ -79,7 +79,9 @@ class UserPlugin implements ISearchPlugin {
$usersTmp = $this->userManager->searchDisplayName($search, $limit, $offset);
foreach ($usersTmp as $user) {
- $users[$user->getUID()] = $user->getDisplayName();
+ if ($user->isEnabled()) { // Don't keep deactivated users
+ $users[$user->getUID()] = $user->getDisplayName();
+ }
}
}
diff --git a/tests/lib/Collaboration/Collaborators/UserPluginTest.php b/tests/lib/Collaboration/Collaborators/UserPluginTest.php
index cfb97de8676..7513f9da5b6 100644
--- a/tests/lib/Collaboration/Collaborators/UserPluginTest.php
+++ b/tests/lib/Collaboration/Collaborators/UserPluginTest.php
@@ -89,7 +89,7 @@ class UserPluginTest extends TestCase {
);
}
- public function getUserMock($uid, $displayName) {
+ public function getUserMock($uid, $displayName, $enabled = true) {
$user = $this->createMock(IUser::class);
$user->expects($this->any())
@@ -100,6 +100,10 @@ class UserPluginTest extends TestCase {
->method('getDisplayName')
->willReturn($displayName);
+ $user->expects($this->any())
+ ->method('isEnabled')
+ ->willReturn($enabled);
+
return $user;
}