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