]> source.dussan.org Git - sonarqube.git/blob
d8f96c2fb8db39e46abcb2385eb90db860a06f39
[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.sonar.api.config.EmailSettings;
23 import org.sonar.api.notifications.Notification;
24 import org.sonar.api.utils.DateUtils;
25 import org.sonar.plugins.emailnotifications.api.EmailMessage;
26 import org.sonar.plugins.emailnotifications.api.EmailTemplate;
27
28 import java.io.UnsupportedEncodingException;
29 import java.net.URLEncoder;
30 import java.util.Date;
31
32 /**
33  * Creates email message for notification "new-issues".
34  *
35  * @since 2.10
36  */
37 public class NewIssuesEmailTemplate extends EmailTemplate {
38
39   private final EmailSettings settings;
40
41   public NewIssuesEmailTemplate(EmailSettings settings) {
42     this.settings = settings;
43   }
44
45   @Override
46   public EmailMessage format(Notification notification) {
47     if (!"new-issues".equals(notification.getType())) {
48       return null;
49     }
50     String projectName = notification.getFieldValue("projectName");
51     String violationsCount = notification.getFieldValue("count");
52
53     StringBuilder sb = new StringBuilder();
54     sb.append("Project: ").append(projectName).append('\n');
55     sb.append(violationsCount).append(" new issues").append('\n');
56     appendFooter(sb, notification);
57
58     EmailMessage message = new EmailMessage()
59       .setMessageId("new-issues/" + notification.getFieldValue("projectKey"))
60       .setSubject(projectName + ": new issues")
61       .setMessage(sb.toString());
62
63     return message;
64   }
65
66   private void appendFooter(StringBuilder sb, Notification notification) {
67     String projectKey = notification.getFieldValue("projectKey");
68     String dateString = notification.getFieldValue("projectDate");
69     if (projectKey != null && dateString != null) {
70       Date date = DateUtils.parseDateTime(dateString);
71       String url = String.format("%s/issues/search?componentRoots=%s&createdAfter=%s",
72         settings.getServerBaseURL(), encode(projectKey), encode(DateUtils.formatDateTime(date)));
73       sb.append("\n").append("See it in SonarQube: ").append(url).append("\n");
74     }
75   }
76
77   public static String encode(String toEncode) {
78     try {
79       return URLEncoder.encode(toEncode, "UTF-8");
80     } catch (UnsupportedEncodingException e) {
81       throw new IllegalStateException(e);
82     }
83   }
84
85 }