From 0575d27ca7fb8db31ae325cef6dfd3680cf2fed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20=C5=BDivkov?= Date: Fri, 17 Jul 2015 13:00:59 +0200 Subject: [PATCH] Don't suggest inactive accounts When, for example, adding accounts to a group the drop down list would also suggest inactive accounts. Exclude the inactive accounts from the suggestion. NOTE: suggesting of reviewers doesn't have this issue as this is a different code. Ideally, suggesting accounts and suggesting reviewers should be refactored to use the same suggestion algorithm. However, this would be a larger change and better suited for the master branch. Change-Id: I6bd22739c326a77dbf6fc3f36ee245d9e6939e34 --- .../gerrit/server/account/SuggestAccounts.java | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/gerrit-server/src/main/java/com/google/gerrit/server/account/SuggestAccounts.java b/gerrit-server/src/main/java/com/google/gerrit/server/account/SuggestAccounts.java index 07936d9f60..5cb05e0a3d 100644 --- a/gerrit-server/src/main/java/com/google/gerrit/server/account/SuggestAccounts.java +++ b/gerrit-server/src/main/java/com/google/gerrit/server/account/SuggestAccounts.java @@ -45,6 +45,7 @@ class SuggestAccounts implements RestReadView { private final AccountControl accountControl; private final AccountLoader accountLoader; + private final AccountCache accountCache; private final ReviewDb db; private final boolean suggest; private final int suggestFrom; @@ -68,10 +69,12 @@ class SuggestAccounts implements RestReadView { @Inject SuggestAccounts(AccountControl.Factory accountControlFactory, AccountLoader.Factory accountLoaderFactory, + AccountCache accountCache, ReviewDb db, @GerritServerConfig Config cfg) { accountControl = accountControlFactory.get(); accountLoader = accountLoaderFactory.create(true); + this.accountCache = accountCache; this.db = db; this.suggestFrom = cfg.getInt("suggest", null, "from", 0); @@ -108,12 +111,12 @@ class SuggestAccounts implements RestReadView { Map queryEmail = new HashMap<>(); for (Account p : db.accounts().suggestByFullName(a, b, limit)) { - addSuggestion(matches, p.getId()); + addSuggestion(matches, p); } if (matches.size() < limit) { for (Account p : db.accounts() .suggestByPreferredEmail(a, b, limit - matches.size())) { - addSuggestion(matches, p.getId()); + addSuggestion(matches, p); } } if (matches.size() < limit) { @@ -146,11 +149,20 @@ class SuggestAccounts implements RestReadView { return m; } - private boolean addSuggestion(Map map, Account.Id id) { + private boolean addSuggestion(Map map, Account a) { + if (!a.isActive()) { + return false; + } + Account.Id id = a.getId(); if (!map.containsKey(id) && accountControl.canSee(id)) { map.put(id, accountLoader.get(id)); return true; } return false; } + + private boolean addSuggestion(Map map, Account.Id id) { + Account a = accountCache.get(id).getAccount(); + return addSuggestion(map, a); + } }