]> source.dussan.org Git - sonarqube.git/blob
d26f07fc8e03faea856cc9f798e8e51cf873be77
[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.qualityprofile;
21
22 import java.io.UnsupportedEncodingException;
23 import java.net.URLEncoder;
24 import java.nio.charset.StandardCharsets;
25 import java.util.Comparator;
26 import org.sonar.api.notifications.Notification;
27 import org.sonar.api.platform.Server;
28 import org.sonar.plugins.emailnotifications.api.EmailMessage;
29 import org.sonar.plugins.emailnotifications.api.EmailTemplate;
30
31 import static org.sonar.server.qualityprofile.BuiltInQualityProfilesNotification.Profile;
32 import static org.sonar.server.qualityprofile.BuiltInQualityProfilesNotification.parse;
33 import static org.sonar.server.qualityprofile.BuiltInQualityProfilesNotificationSender.BUILT_IN_QUALITY_PROFILES;
34
35 public class BuiltInQualityProfilesNotificationTemplate extends EmailTemplate {
36
37   private final Server server;
38
39   public BuiltInQualityProfilesNotificationTemplate(Server server) {
40     this.server = server;
41   }
42
43   @Override
44   public EmailMessage format(Notification notification) {
45     if (!BUILT_IN_QUALITY_PROFILES.equals(notification.getType())) {
46       return null;
47     }
48
49     BuiltInQualityProfilesNotification profilesNotification = parse(notification);
50
51     StringBuilder message = new StringBuilder("Built-in quality profiles have been updated:\n");
52     profilesNotification.getProfiles().stream()
53       .sorted(Comparator.comparing(Profile::getLanguageName).thenComparing(Profile::getProfileName))
54       .forEach(profile -> {
55         message.append("\"")
56           .append(profile.getProfileName())
57           .append("\" - ")
58           .append(profile.getLanguageName())
59           .append(" ")
60           .append(server.getPublicRootUrl()).append("/profiles/changelog?language=")
61           .append(profile.getLanguageKey())
62           .append("&name=")
63           .append(encode(profile.getProfileName()))
64           .append("\n");
65         int newRules = profile.getNewRules();
66         if (newRules > 0) {
67           message.append(" ").append(newRules).append(" new rules\n");
68         }
69         int updatedRules = profile.getUpdatedRules();
70         if (updatedRules > 0) {
71           message.append(" ").append(updatedRules).append(" rules have been updated\n");
72         }
73         int removedRules = profile.getRemovedRules();
74         if (removedRules > 0) {
75           message.append(" ").append(removedRules).append(" rules removed\n");
76         }
77       });
78
79     message.append("This is a good time to review your quality profiles and update them to benefit from the latest evolutions. ");
80     message.append(server.getPublicRootUrl()).append("/profiles");
81
82     // And finally return the email that will be sent
83     return new EmailMessage()
84       .setMessageId(BUILT_IN_QUALITY_PROFILES)
85       .setSubject("empty")
86       .setMessage(message.toString());
87   }
88
89   public String encode(String text) {
90     try {
91       return URLEncoder.encode(text, StandardCharsets.UTF_8.name());
92     } catch (UnsupportedEncodingException e) {
93       throw new IllegalStateException(String.format("Cannot encode %s", text), e);
94     }
95   }
96 }