org.sonar.plugins.issueassign.notification.IssueNotifications Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-issue-assign-plugin Show documentation
Show all versions of sonar-issue-assign-plugin Show documentation
Assigns issues to Sonar users
The newest version!
/*
* SonarQube Issue Assign Plugin
* Copyright (C) 2014 SonarSource
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.plugins.issueassign.notification;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.component.Component;
import org.sonar.api.issue.Issue;
import org.sonar.api.notifications.Notification;
import org.sonar.api.notifications.NotificationManager;
import org.sonar.api.resources.Project;
import org.sonar.api.rule.Severity;
import org.sonar.api.utils.DateUtils;
import java.util.List;
import java.util.Map;
/**
* Send notifications related to issues.
*/
public class IssueNotifications {
private static final Logger LOG = LoggerFactory.getLogger(IssueNotifications.class);
private final NotificationManager notificationsManager;
public IssueNotifications(NotificationManager notificationsManager) {
this.notificationsManager = notificationsManager;
}
public void sendIssues(Project project, Map> newIssuesByAssignee, String notificationType) {
for (Map.Entry> entry : newIssuesByAssignee.entrySet()) {
String assignee = entry.getKey();
List newIssues = entry.getValue();
LOG.debug("Generating notification to {}.", assignee);
Notification notification = newNotification(project, notificationType)
.setDefaultMessage(newIssues.size() + " new issues on " + project.getLongName() + ".\n")
.setFieldValue("projectDate", DateUtils.formatDateTime(project.getAnalysisDate()))
.setFieldValue("count", String.valueOf(newIssues.size()))
.setFieldValue("assignee", assignee);
for (String severity : Severity.ALL) {
notification.setFieldValue("count-" + severity, String.valueOf(getCountOfSeverityType(severity, newIssues)));
}
notificationsManager.scheduleForSending(notification);
}
}
private Notification newNotification(Component project, String key) {
return new Notification(key)
.setFieldValue("projectName", project.longName())
.setFieldValue("projectKey", project.key());
}
private int getCountOfSeverityType(String severity, List issues) {
int count = 0;
for (Issue issue : issues) {
if (severity.equals( issue.severity())) {
count++;
}
}
return count;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy