]> source.dussan.org Git - sonarqube.git/blob
4e2dec4edc2be332901c8cd8f576659fcb6af7c9
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.issue.notification;
21
22 import com.google.common.collect.Multimap;
23 import java.util.Collection;
24 import java.util.Map;
25 import java.util.Objects;
26 import org.sonar.api.issue.Issue;
27 import org.sonar.api.notifications.Notification;
28 import org.sonar.api.notifications.NotificationChannel;
29 import org.sonar.server.notification.NotificationDispatcher;
30 import org.sonar.server.notification.NotificationDispatcherMetadata;
31 import org.sonar.server.notification.NotificationManager;
32
33 /**
34  * This dispatcher means: "notify me when an issue is resolved as false positive or won't fix".
35  */
36 public class DoNotFixNotificationDispatcher extends NotificationDispatcher {
37
38   public static final String KEY = "NewFalsePositiveIssue";
39
40   private final NotificationManager notifications;
41
42   public DoNotFixNotificationDispatcher(NotificationManager notifications) {
43     super(IssueChangeNotification.TYPE);
44     this.notifications = notifications;
45   }
46
47   @Override
48   public String getKey() {
49     return KEY;
50   }
51
52   public static NotificationDispatcherMetadata newMetadata() {
53     return NotificationDispatcherMetadata.create(KEY)
54       .setProperty(NotificationDispatcherMetadata.GLOBAL_NOTIFICATION, String.valueOf(true))
55       .setProperty(NotificationDispatcherMetadata.PER_PROJECT_NOTIFICATION, String.valueOf(true));
56   }
57
58   @Override
59   public void dispatch(Notification notification, Context context) {
60     String newResolution = notification.getFieldValue("new.resolution");
61     if (Objects.equals(newResolution, Issue.RESOLUTION_FALSE_POSITIVE) || Objects.equals(newResolution, Issue.RESOLUTION_WONT_FIX)) {
62       String author = notification.getFieldValue("changeAuthor");
63       String projectKey = notification.getFieldValue("projectKey");
64       Multimap<String, NotificationChannel> subscribedRecipients = notifications.findNotificationSubscribers(this, projectKey);
65       notify(author, context, subscribedRecipients);
66     }
67   }
68
69   private static void notify(String author, Context context, Multimap<String, NotificationChannel> subscribedRecipients) {
70     for (Map.Entry<String, Collection<NotificationChannel>> channelsByRecipients : subscribedRecipients.asMap().entrySet()) {
71       String login = channelsByRecipients.getKey();
72       // Do not notify the person that resolved the issue
73       if (!Objects.equals(author, login)) {
74         for (NotificationChannel channel : channelsByRecipients.getValue()) {
75           context.addUser(login, channel);
76         }
77       }
78     }
79   }
80
81 }