]> source.dussan.org Git - sonarqube.git/blob
73d41db228a6fe4dc269b65dc0edc9100e9e0b03
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2013 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube 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  * SonarQube 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.plugins.core.issue.notification;
21
22 import org.sonar.api.batch.PostJob;
23 import org.sonar.api.batch.SensorContext;
24 import org.sonar.api.issue.internal.DefaultIssue;
25 import org.sonar.api.issue.internal.IssueChangeContext;
26 import org.sonar.api.resources.Project;
27 import org.sonar.api.rules.Rule;
28 import org.sonar.api.rules.RuleFinder;
29 import org.sonar.batch.issue.IssueCache;
30 import org.sonar.core.DryRunIncompatible;
31 import org.sonar.core.issue.IssueNotifications;
32
33 /**
34  * @since 3.6
35  */
36 @DryRunIncompatible
37 public class SendIssueNotificationsPostJob implements PostJob {
38
39   private final IssueCache issueCache;
40   private final IssueNotifications notifications;
41   private final RuleFinder ruleFinder;
42
43   public SendIssueNotificationsPostJob(IssueCache issueCache, IssueNotifications notifications, RuleFinder ruleFinder) {
44     this.issueCache = issueCache;
45     this.notifications = notifications;
46     this.ruleFinder = ruleFinder;
47   }
48
49   @Override
50   public void executeOn(Project project, SensorContext context) {
51     sendNotifications(project);
52   }
53
54   private void sendNotifications(Project project) {
55     int newIssues = 0;
56     IssueChangeContext context = IssueChangeContext.createScan(project.getAnalysisDate());
57     for (DefaultIssue issue : issueCache.all()) {
58       if (issue.isNew() && issue.resolution() == null) {
59         newIssues++;
60       }
61       if (!issue.isNew() && issue.isChanged()) {
62         Rule rule = ruleFinder.findByKey(issue.ruleKey());
63         // TODO warning - rules with status REMOVED are currently ignored, but should not
64         if (rule != null) {
65           notifications.sendChanges(issue, context, rule, project, null);
66         }
67       }
68     }
69     if (newIssues > 0) {
70       notifications.sendNewIssues(project, newIssues);
71     }
72   }
73 }