]> source.dussan.org Git - sonarqube.git/blob
222525acfac0f14d8836f61aee2fb75db8a013ab
[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.util.Comparator;
23 import org.sonar.api.notifications.Notification;
24 import org.sonar.plugins.emailnotifications.api.EmailMessage;
25 import org.sonar.plugins.emailnotifications.api.EmailTemplate;
26 import org.sonar.server.qualityprofile.BuiltInQualityProfilesNotification.Profile;
27
28 import static org.sonar.server.qualityprofile.BuiltInQualityProfilesNotificationSender.BUILT_IN_QUALITY_PROFILES;
29
30 public class BuiltInQualityProfilesNotificationTemplate extends EmailTemplate {
31
32   @Override
33   public EmailMessage format(Notification notification) {
34     if (!BUILT_IN_QUALITY_PROFILES.equals(notification.getType())) {
35       return null;
36     }
37
38     BuiltInQualityProfilesNotification profilesNotification = BuiltInQualityProfilesNotification.parse(notification);
39
40     StringBuilder message = new StringBuilder("Built-in quality profiles have been updated:\n");
41     profilesNotification.getProfiles().stream()
42       .sorted(Comparator.comparing(Profile::getLanguage).thenComparing(Profile::getProfileName))
43       .forEach(profile -> message.append("\"").append(profile.getProfileName()).append("\" - ").append(profile.getLanguage()).append("\n"));
44
45     message.append(
46       "This is a good time to review your quality profiles and update them to benefit from the latest evolutions.");
47
48     // And finally return the email that will be sent
49     return new EmailMessage()
50       .setMessageId(BUILT_IN_QUALITY_PROFILES)
51       .setSubject("empty")
52       .setMessage(message.toString());
53   }
54
55 }