]> source.dussan.org Git - sonarqube.git/blob
7a5eb221ac521a0dc5ae5c1137d56de3101d12cb
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program 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  * This program 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.server.issue.notification;
21
22 import java.io.UnsupportedEncodingException;
23 import java.net.URLEncoder;
24 import java.util.Arrays;
25 import java.util.Date;
26 import java.util.Iterator;
27 import java.util.Locale;
28 import javax.annotation.Nullable;
29 import org.sonar.api.config.EmailSettings;
30 import org.sonar.api.i18n.I18n;
31 import org.sonar.api.notifications.Notification;
32 import org.sonar.api.rules.RuleType;
33 import org.sonar.api.utils.DateUtils;
34 import org.sonar.plugins.emailnotifications.api.EmailMessage;
35 import org.sonar.plugins.emailnotifications.api.EmailTemplate;
36 import org.sonar.server.issue.notification.NewIssuesStatistics.Metric;
37
38 import static com.google.common.base.Preconditions.checkNotNull;
39
40 /**
41  * Base class to create emails for new issues
42  */
43 public abstract class AbstractNewIssuesEmailTemplate extends EmailTemplate {
44
45   protected static final char NEW_LINE = '\n';
46   protected static final String TAB = "    ";
47   protected static final String DOT = ".";
48   protected static final String COUNT = DOT + "count";
49   protected static final String LABEL = DOT + "label";
50
51   static final String FIELD_PROJECT_NAME = "projectName";
52   static final String FIELD_PROJECT_KEY = "projectKey";
53   static final String FIELD_PROJECT_DATE = "projectDate";
54   static final String FIELD_PROJECT_UUID = "projectUuid";
55   static final String FIELD_PROJECT_VERSION = "projectVersion";
56   static final String FIELD_ASSIGNEE = "assignee";
57   static final String FIELD_BRANCH = "branch";
58
59   protected final EmailSettings settings;
60   protected final I18n i18n;
61
62   public AbstractNewIssuesEmailTemplate(EmailSettings settings, I18n i18n) {
63     this.settings = settings;
64     this.i18n = i18n;
65   }
66
67   public static String encode(String toEncode) {
68     try {
69       return URLEncoder.encode(toEncode, "UTF-8");
70     } catch (UnsupportedEncodingException e) {
71       throw new IllegalStateException("Encoding not supported", e);
72     }
73   }
74
75   @Override
76   public EmailMessage format(Notification notification) {
77     if (shouldNotFormat(notification)) {
78       return null;
79     }
80     String projectName = checkNotNull(notification.getFieldValue(FIELD_PROJECT_NAME));
81     String branchName = notification.getFieldValue(FIELD_BRANCH);
82     String fullProjectName = computeFullProjectName(projectName, branchName);
83
84     StringBuilder message = new StringBuilder();
85     message.append("Project: ").append(fullProjectName).append(NEW_LINE);
86     String version = notification.getFieldValue(FIELD_PROJECT_VERSION);
87     if (version != null) {
88       message.append("Version: ").append(version).append(NEW_LINE);
89     }
90     message.append(NEW_LINE);
91     appendRuleType(message, notification);
92     appendAssignees(message, notification);
93     appendRules(message, notification);
94     appendTags(message, notification);
95     appendComponents(message, notification);
96     appendFooter(message, notification);
97
98     return new EmailMessage()
99       .setMessageId(notification.getType() + "/" + notification.getFieldValue(FIELD_PROJECT_KEY))
100       .setSubject(subject(notification, fullProjectName))
101       .setMessage(message.toString());
102   }
103
104   private static String computeFullProjectName(String projectName, @Nullable String branchName) {
105     if (branchName == null || branchName.isEmpty()) {
106       return projectName;
107     }
108     return String.format("%s (%s)", projectName, branchName);
109   }
110
111   protected abstract boolean shouldNotFormat(Notification notification);
112
113   protected String subject(Notification notification, String fullProjectName) {
114     int issueCount = Integer.parseInt(notification.getFieldValue(Metric.RULE_TYPE + COUNT));
115     return String.format("%s: %s new issue%s (new debt: %s)",
116       fullProjectName,
117       issueCount,
118       issueCount > 1 ? "s" : "",
119       notification.getFieldValue(Metric.EFFORT + COUNT));
120   }
121
122   private static boolean doNotHaveValue(Notification notification, Metric metric) {
123     return notification.getFieldValue(metric + DOT + "1" + LABEL) == null;
124   }
125
126   private static void genericAppendOfMetric(Metric metric, String label, StringBuilder message, Notification notification) {
127     if (doNotHaveValue(notification, metric)) {
128       return;
129     }
130
131     message
132       .append(TAB)
133       .append(label)
134       .append(NEW_LINE);
135     int i = 1;
136     while (notification.getFieldValue(metric + DOT + i + LABEL) != null && i <= 5) {
137       String name = notification.getFieldValue(metric + DOT + i + LABEL);
138       message
139         .append(TAB).append(TAB)
140         .append(name)
141         .append(": ")
142         .append(notification.getFieldValue(metric + DOT + i + COUNT))
143         .append(NEW_LINE);
144       i += 1;
145     }
146
147     message.append(NEW_LINE);
148   }
149
150   protected void appendAssignees(StringBuilder message, Notification notification) {
151     genericAppendOfMetric(Metric.ASSIGNEE, "Assignees", message, notification);
152   }
153
154   protected void appendComponents(StringBuilder message, Notification notification) {
155     genericAppendOfMetric(Metric.COMPONENT, "Most impacted files", message, notification);
156   }
157
158   protected void appendTags(StringBuilder message, Notification notification) {
159     genericAppendOfMetric(Metric.TAG, "Tags", message, notification);
160   }
161
162   protected void appendRules(StringBuilder message, Notification notification) {
163     genericAppendOfMetric(Metric.RULE, "Rules", message, notification);
164   }
165
166   protected void appendRuleType(StringBuilder message, Notification notification) {
167     String count = notification.getFieldValue(Metric.RULE_TYPE + COUNT);
168     message
169       .append(String.format("%s new issue%s (new debt: %s)",
170         count,
171         Integer.valueOf(count) > 1 ? "s" : "",
172         notification.getFieldValue(Metric.EFFORT + COUNT)))
173       .append(NEW_LINE).append(NEW_LINE)
174       .append(TAB)
175       .append("Type")
176       .append(NEW_LINE)
177       .append(TAB)
178       .append(TAB);
179
180     for (Iterator<RuleType> ruleTypeIterator = Arrays.asList(RuleType.BUG, RuleType.VULNERABILITY, RuleType.CODE_SMELL).iterator(); ruleTypeIterator.hasNext();) {
181       RuleType ruleType = ruleTypeIterator.next();
182       String ruleTypeLabel = i18n.message(getLocale(), "issue.type." + ruleType, ruleType.name());
183       message.append(ruleTypeLabel).append(": ").append(notification.getFieldValue(Metric.RULE_TYPE + DOT + ruleType + COUNT));
184       if (ruleTypeIterator.hasNext()) {
185         message.append(TAB);
186       }
187     }
188
189     message
190       .append(NEW_LINE)
191       .append(NEW_LINE);
192   }
193
194   protected void appendFooter(StringBuilder message, Notification notification) {
195     String projectKey = notification.getFieldValue(FIELD_PROJECT_KEY);
196     String dateString = notification.getFieldValue(FIELD_PROJECT_DATE);
197     if (projectKey != null && dateString != null) {
198       Date date = DateUtils.parseDateTime(dateString);
199       String url = String.format("%s/project/issues?id=%s",
200         settings.getServerBaseURL(), encode(projectKey));
201       String branchName = notification.getFieldValue(FIELD_BRANCH);
202       if (branchName != null) {
203         url += "&branch=" + encode(branchName);
204       }
205       url += "&createdAt=" + encode(DateUtils.formatDateTime(date));
206       message
207         .append("More details at: ")
208         .append(url)
209         .append(NEW_LINE);
210     }
211   }
212
213   private static Locale getLocale() {
214     return Locale.ENGLISH;
215   }
216
217 }