]> source.dussan.org Git - sonarqube.git/blob
a24c2439b6d0d97fb0a2cfbc8780344efce8992b
[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.apache.commons.lang.StringUtils;
23 import org.sonar.api.config.EmailSettings;
24 import org.sonar.api.notifications.Notification;
25 import org.sonar.api.user.User;
26 import org.sonar.api.user.UserFinder;
27 import org.sonar.plugins.emailnotifications.api.EmailMessage;
28 import org.sonar.plugins.emailnotifications.api.EmailTemplate;
29
30 import javax.annotation.Nullable;
31
32 /**
33  * Creates email message for notification "issue-changes".
34  *
35  * @since 3.6
36  */
37 public class IssueChangesEmailTemplate extends EmailTemplate {
38
39   private final EmailSettings settings;
40   private final UserFinder userFinder;
41
42   public IssueChangesEmailTemplate(EmailSettings settings, UserFinder userFinder) {
43     this.settings = settings;
44     this.userFinder = userFinder;
45   }
46
47   @Override
48   public EmailMessage format(Notification notif) {
49     if (!"issue-changes".equals(notif.getType())) {
50       return null;
51     }
52     String issueKey = notif.getFieldValue("key");
53     String author = notif.getFieldValue("changeAuthor");
54
55     StringBuilder sb = new StringBuilder();
56     appendField(sb, "Project", null, notif.getFieldValue("projectName"));
57     appendField(sb, "Component", null, StringUtils.defaultString(notif.getFieldValue("componentName"), notif.getFieldValue("componentKey")));
58     appendField(sb, "Rule", null, notif.getFieldValue("ruleName"));
59     appendField(sb, "Message", null, notif.getFieldValue("message"));
60     sb.append('\n');
61
62     appendField(sb, "Assignee", notif.getFieldValue("old.assignee"), notif.getFieldValue("new.assignee"));
63     appendField(sb, "Severity", notif.getFieldValue("old.severity"), notif.getFieldValue("new.severity"));
64     appendField(sb, "Resolution", notif.getFieldValue("old.resolution"), notif.getFieldValue("new.resolution"));
65     appendField(sb, "Status", notif.getFieldValue("old.status"), notif.getFieldValue("new.status"));
66     appendField(sb, "Message", notif.getFieldValue("old.message"), notif.getFieldValue("new.message"));
67
68     appendFooter(sb, notif);
69
70     EmailMessage message = new EmailMessage()
71       .setMessageId("issue-changes/" + issueKey)
72       .setSubject("Issue #" + issueKey)
73       .setMessage(sb.toString());
74     if (author != null) {
75       message.setFrom(getUserFullName(author));
76     }
77     return message;
78   }
79
80   private void appendField(StringBuilder sb, String name, @Nullable String oldValue, @Nullable String newValue) {
81     if (oldValue != null || newValue != null) {
82       sb.append(name).append(": ");
83       if (newValue != null) {
84         sb.append(newValue);
85       }
86       if (oldValue != null) {
87         sb.append(" (was ").append(oldValue).append(")");
88       }
89       sb.append('\n');
90     }
91   }
92
93   private void appendFooter(StringBuilder sb, Notification notification) {
94     String issueKey = notification.getFieldValue("key");
95     sb.append("\n")
96       .append("See it in SonarQube: ").append(settings.getServerBaseURL()).append("/issue/show/").append(issueKey).append('\n');
97   }
98
99   private String getUserFullName(@Nullable String login) {
100     if (login == null) {
101       return null;
102     }
103     User user = userFinder.findByLogin(login);
104     if (user == null) {
105       // most probably user was deleted
106       return login;
107     }
108     return StringUtils.defaultIfBlank(user.name(), login);
109   }
110
111 }