]> source.dussan.org Git - sonarqube.git/blob
5fab56c976d7cb980fab32078a1b8f746e5fb340
[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.List;
23 import org.sonar.api.notifications.Notification;
24 import org.sonar.db.DbClient;
25 import org.sonar.db.DbSession;
26 import org.sonar.server.notification.NotificationDispatcher;
27 import org.sonar.server.notification.email.EmailNotificationChannel;
28
29 import static org.sonar.server.qualityprofile.BuiltInQualityProfilesNotification.BUILT_IN_QUALITY_PROFILES;
30
31 public class BuiltInQualityProfilesNotificationDispatcher extends NotificationDispatcher {
32
33   public static final String KEY = "BuiltInQP";
34
35   private final EmailNotificationChannel emailNotificationChannel;
36   private final DbClient dbClient;
37
38   public BuiltInQualityProfilesNotificationDispatcher(EmailNotificationChannel emailNotificationChannel, DbClient dbClient) {
39     super(BUILT_IN_QUALITY_PROFILES);
40     this.emailNotificationChannel = emailNotificationChannel;
41     this.dbClient = dbClient;
42   }
43
44   @Override
45   public String getKey() {
46     return KEY;
47   }
48
49   @Override
50   public void dispatch(Notification notification, Context context) {
51     getRecipients().forEach(login -> context.addUser(login, emailNotificationChannel));
52   }
53
54   private List<String> getRecipients() {
55     try (DbSession session = dbClient.openSession(false)) {
56       return dbClient.authorizationDao().selectQualityProfileAdministratorLogins(session);
57     }
58   }
59 }