]> source.dussan.org Git - sonarqube.git/blob
7750c8947ba898f320d555166f1e36e8f8350128
[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     String projectName = notif.getFieldValue("projectName");
57     appendField(sb, "Project", null, projectName);
58     appendField(sb, "Component", null, StringUtils.defaultString(notif.getFieldValue("componentName"), notif.getFieldValue("componentKey")));
59     appendField(sb, "Rule", null, notif.getFieldValue("ruleName"));
60     appendField(sb, "Message", null, notif.getFieldValue("message"));
61     appendField(sb, "Comment", null, notif.getFieldValue("comment"));
62     sb.append('\n');
63
64     appendField(sb, "Assignee", notif.getFieldValue("old.assignee"), notif.getFieldValue("new.assignee"));
65     appendField(sb, "Severity", notif.getFieldValue("old.severity"), notif.getFieldValue("new.severity"));
66     appendField(sb, "Resolution", notif.getFieldValue("old.resolution"), notif.getFieldValue("new.resolution"));
67     appendField(sb, "Status", notif.getFieldValue("old.status"), notif.getFieldValue("new.status"));
68     appendField(sb, "Message", notif.getFieldValue("old.message"), notif.getFieldValue("new.message"));
69
70     appendFooter(sb, notif);
71
72     EmailMessage message = new EmailMessage()
73       .setMessageId("issue-changes/" + issueKey)
74       .setSubject("Project "+ projectName +", change on issue #" + issueKey)
75       .setMessage(sb.toString());
76     if (author != null) {
77       message.setFrom(getUserFullName(author));
78     }
79     return message;
80   }
81
82   private void appendField(StringBuilder sb, String name, @Nullable String oldValue, @Nullable String newValue) {
83     if (oldValue != null || newValue != null) {
84       sb.append(name).append(": ");
85       if (newValue != null) {
86         sb.append(newValue);
87       }
88       if (oldValue != null) {
89         sb.append(" (was ").append(oldValue).append(")");
90       }
91       sb.append('\n');
92     }
93   }
94
95   private void appendFooter(StringBuilder sb, Notification notification) {
96     String issueKey = notification.getFieldValue("key");
97     sb.append("\n")
98       .append("See it in SonarQube: ").append(settings.getServerBaseURL()).append("/issue/show/").append(issueKey).append('\n');
99   }
100
101   private String getUserFullName(@Nullable String login) {
102     if (login == null) {
103       return null;
104     }
105     User user = userFinder.findByLogin(login);
106     if (user == null) {
107       // most probably user was deleted
108       return login;
109     }
110     return StringUtils.defaultIfBlank(user.name(), login);
111   }
112
113 }