summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/server/mail/send/ProjectWatch.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/gerrit/server/mail/send/ProjectWatch.java')
-rw-r--r--java/com/google/gerrit/server/mail/send/ProjectWatch.java246
1 files changed, 246 insertions, 0 deletions
diff --git a/java/com/google/gerrit/server/mail/send/ProjectWatch.java b/java/com/google/gerrit/server/mail/send/ProjectWatch.java
new file mode 100644
index 0000000000..9a86fdb218
--- /dev/null
+++ b/java/com/google/gerrit/server/mail/send/ProjectWatch.java
@@ -0,0 +1,246 @@
+// Copyright (C) 2013 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.gerrit.server.mail.send;
+
+import com.google.common.base.Strings;
+import com.google.common.collect.ImmutableSet;
+import com.google.common.flogger.FluentLogger;
+import com.google.gerrit.common.data.GroupDescription;
+import com.google.gerrit.common.data.GroupReference;
+import com.google.gerrit.index.query.Predicate;
+import com.google.gerrit.index.query.QueryParseException;
+import com.google.gerrit.mail.Address;
+import com.google.gerrit.reviewdb.client.Account;
+import com.google.gerrit.reviewdb.client.AccountGroup;
+import com.google.gerrit.reviewdb.client.Project;
+import com.google.gerrit.server.CurrentUser;
+import com.google.gerrit.server.IdentifiedUser;
+import com.google.gerrit.server.account.AccountState;
+import com.google.gerrit.server.account.ProjectWatches.NotifyType;
+import com.google.gerrit.server.account.ProjectWatches.ProjectWatchKey;
+import com.google.gerrit.server.git.NotifyConfig;
+import com.google.gerrit.server.project.ProjectState;
+import com.google.gerrit.server.query.change.ChangeData;
+import com.google.gerrit.server.query.change.ChangeQueryBuilder;
+import com.google.gerrit.server.query.change.SingleGroupUser;
+import com.google.gwtorm.server.OrmException;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+public class ProjectWatch {
+ private static final FluentLogger logger = FluentLogger.forEnclosingClass();
+
+ protected final EmailArguments args;
+ protected final ProjectState projectState;
+ protected final Project.NameKey project;
+ protected final ChangeData changeData;
+
+ public ProjectWatch(
+ EmailArguments args,
+ Project.NameKey project,
+ ProjectState projectState,
+ ChangeData changeData) {
+ this.args = args;
+ this.project = project;
+ this.projectState = projectState;
+ this.changeData = changeData;
+ }
+
+ /** Returns all watchers that are relevant */
+ public final Watchers getWatchers(NotifyType type, boolean includeWatchersFromNotifyConfig)
+ throws OrmException {
+ Watchers matching = new Watchers();
+ Set<Account.Id> projectWatchers = new HashSet<>();
+
+ for (AccountState a : args.accountQueryProvider.get().byWatchedProject(project)) {
+ Account.Id accountId = a.getAccount().getId();
+ for (Map.Entry<ProjectWatchKey, ImmutableSet<NotifyType>> e :
+ a.getProjectWatches().entrySet()) {
+ if (project.equals(e.getKey().project())
+ && add(matching, accountId, e.getKey(), e.getValue(), type)) {
+ // We only want to prevent matching All-Projects if this filter hits
+ projectWatchers.add(accountId);
+ }
+ }
+ }
+
+ for (AccountState a : args.accountQueryProvider.get().byWatchedProject(args.allProjectsName)) {
+ for (Map.Entry<ProjectWatchKey, ImmutableSet<NotifyType>> e :
+ a.getProjectWatches().entrySet()) {
+ if (args.allProjectsName.equals(e.getKey().project())) {
+ Account.Id accountId = a.getAccount().getId();
+ if (!projectWatchers.contains(accountId)) {
+ add(matching, accountId, e.getKey(), e.getValue(), type);
+ }
+ }
+ }
+ }
+
+ if (!includeWatchersFromNotifyConfig) {
+ return matching;
+ }
+
+ for (ProjectState state : projectState.tree()) {
+ for (NotifyConfig nc : state.getConfig().getNotifyConfigs()) {
+ if (nc.isNotify(type)) {
+ try {
+ add(matching, nc);
+ } catch (QueryParseException e) {
+ logger.atWarning().log(
+ "Project %s has invalid notify %s filter \"%s\": %s",
+ state.getName(), nc.getName(), nc.getFilter(), e.getMessage());
+ }
+ }
+ }
+ }
+
+ return matching;
+ }
+
+ public static class Watchers {
+ static class List {
+ protected final Set<Account.Id> accounts = new HashSet<>();
+ protected final Set<Address> emails = new HashSet<>();
+
+ private static List union(List... others) {
+ List union = new List();
+ for (List other : others) {
+ union.accounts.addAll(other.accounts);
+ union.emails.addAll(other.emails);
+ }
+ return union;
+ }
+ }
+
+ protected final List to = new List();
+ protected final List cc = new List();
+ protected final List bcc = new List();
+
+ List all() {
+ return List.union(to, cc, bcc);
+ }
+
+ List list(NotifyConfig.Header header) {
+ switch (header) {
+ case TO:
+ return to;
+ case CC:
+ return cc;
+ default:
+ case BCC:
+ return bcc;
+ }
+ }
+ }
+
+ private void add(Watchers matching, NotifyConfig nc) throws OrmException, QueryParseException {
+ for (GroupReference ref : nc.getGroups()) {
+ CurrentUser user = new SingleGroupUser(ref.getUUID());
+ if (filterMatch(user, nc.getFilter())) {
+ deliverToMembers(matching.list(nc.getHeader()), ref.getUUID());
+ }
+ }
+
+ if (!nc.getAddresses().isEmpty()) {
+ if (filterMatch(null, nc.getFilter())) {
+ matching.list(nc.getHeader()).emails.addAll(nc.getAddresses());
+ }
+ }
+ }
+
+ private void deliverToMembers(Watchers.List matching, AccountGroup.UUID startUUID) {
+ Set<AccountGroup.UUID> seen = new HashSet<>();
+ List<AccountGroup.UUID> q = new ArrayList<>();
+
+ seen.add(startUUID);
+ q.add(startUUID);
+
+ while (!q.isEmpty()) {
+ AccountGroup.UUID uuid = q.remove(q.size() - 1);
+ GroupDescription.Basic group = args.groupBackend.get(uuid);
+ if (group == null) {
+ continue;
+ }
+ if (!Strings.isNullOrEmpty(group.getEmailAddress())) {
+ // If the group has an email address, do not expand membership.
+ matching.emails.add(new Address(group.getEmailAddress()));
+ continue;
+ }
+
+ if (!(group instanceof GroupDescription.Internal)) {
+ // Non-internal groups cannot be expanded by the server.
+ continue;
+ }
+
+ GroupDescription.Internal ig = (GroupDescription.Internal) group;
+ matching.accounts.addAll(ig.getMembers());
+ for (AccountGroup.UUID m : ig.getSubgroups()) {
+ if (seen.add(m)) {
+ q.add(m);
+ }
+ }
+ }
+ }
+
+ private boolean add(
+ Watchers matching,
+ Account.Id accountId,
+ ProjectWatchKey key,
+ Set<NotifyType> watchedTypes,
+ NotifyType type)
+ throws OrmException {
+ IdentifiedUser user = args.identifiedUserFactory.create(accountId);
+
+ try {
+ if (filterMatch(user, key.filter())) {
+ // If we are set to notify on this type, add the user.
+ // Otherwise, still return true to stop notifications for this user.
+ if (watchedTypes.contains(type)) {
+ matching.bcc.accounts.add(accountId);
+ }
+ return true;
+ }
+ } catch (QueryParseException e) {
+ // Ignore broken filter expressions.
+ }
+ return false;
+ }
+
+ private boolean filterMatch(CurrentUser user, String filter)
+ throws OrmException, QueryParseException {
+ ChangeQueryBuilder qb;
+ Predicate<ChangeData> p = null;
+
+ if (user == null) {
+ qb = args.queryBuilder.asUser(args.anonymousUser);
+ } else {
+ qb = args.queryBuilder.asUser(user);
+ p = qb.is_visible();
+ }
+
+ if (filter != null) {
+ Predicate<ChangeData> filterPredicate = qb.parse(filter);
+ if (p == null) {
+ p = filterPredicate;
+ } else {
+ p = Predicate.and(filterPredicate, p);
+ }
+ }
+ return p == null || p.asMatchable().match(changeData);
+ }
+}