]> source.dussan.org Git - sonarqube.git/blob
82db0ca0b9ef92b79c8d6831b4c4ce2f65055a6e
[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 -> {
44         message.append("\"")
45           .append(profile.getProfileName()).append("\" - ")
46           .append(profile.getLanguage()).append("\n");
47         int newRules = profile.getNewRules();
48         if (newRules > 0) {
49           message.append(" ").append(newRules).append(" new rules\n");
50         }
51         int updatedRules = profile.getUpdatedRules();
52         if (updatedRules > 0) {
53           message.append(" ").append(updatedRules).append(" rules have been updated\n");
54         }
55         int removedRules = profile.getRemovedRules();
56         if (removedRules > 0) {
57           message.append(" ").append(removedRules).append(" rules removed\n");
58         }
59       });
60
61     message.append(
62       "This is a good time to review your quality profiles and update them to benefit from the latest evolutions.");
63
64     // And finally return the email that will be sent
65     return new EmailMessage()
66       .setMessageId(BUILT_IN_QUALITY_PROFILES)
67       .setSubject("empty")
68       .setMessage(message.toString());
69   }
70
71 }