]> source.dussan.org Git - sonarqube.git/blob
d6c133308df0b99cec66782f2ae61d81a870d8bf
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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.v2.config;
21
22 import javax.annotation.Nullable;
23 import org.sonar.server.common.user.service.UserService;
24 import org.sonar.server.health.CeStatusNodeCheck;
25 import org.sonar.server.health.DbConnectionNodeCheck;
26 import org.sonar.server.health.EsStatusNodeCheck;
27 import org.sonar.server.health.HealthChecker;
28 import org.sonar.server.health.WebServerStatusNodeCheck;
29 import org.sonar.server.platform.NodeInformation;
30 import org.sonar.server.platform.ws.LivenessChecker;
31 import org.sonar.server.platform.ws.LivenessCheckerImpl;
32 import org.sonar.server.user.SystemPasscode;
33 import org.sonar.server.user.UserSession;
34 import org.sonar.server.v2.api.user.controller.DefaultUserController;
35 import org.sonar.server.v2.api.user.controller.UserController;
36 import org.sonar.server.v2.api.user.converter.UsersSearchRestResponseGenerator;
37 import org.sonar.server.v2.controller.DefautLivenessController;
38 import org.sonar.server.v2.controller.HealthController;
39 import org.sonar.server.v2.controller.LivenessController;
40 import org.springframework.context.annotation.Bean;
41 import org.springframework.context.annotation.Configuration;
42 import org.springframework.context.annotation.Import;
43
44 @Configuration
45 @Import(CommonWebConfig.class)
46 public class PlatformLevel4WebConfig {
47
48   @Bean
49   public LivenessChecker livenessChecker(DbConnectionNodeCheck dbConnectionNodeCheck, WebServerStatusNodeCheck webServerStatusNodeCheck, CeStatusNodeCheck ceStatusNodeCheck,
50     @Nullable EsStatusNodeCheck esStatusNodeCheck) {
51     return new LivenessCheckerImpl(dbConnectionNodeCheck, webServerStatusNodeCheck, ceStatusNodeCheck, esStatusNodeCheck);
52   }
53
54   @Bean
55   public LivenessController livenessController(LivenessChecker livenessChecker, UserSession userSession, SystemPasscode systemPasscode) {
56     return new DefautLivenessController(livenessChecker, systemPasscode, userSession);
57   }
58
59   @Bean
60   public HealthController healthController(HealthChecker healthChecker, SystemPasscode systemPasscode, NodeInformation nodeInformation,
61     UserSession userSession) {
62     return new HealthController(healthChecker, systemPasscode, nodeInformation, userSession);
63   }
64
65   @Bean
66   public UsersSearchRestResponseGenerator usersSearchResponseGenerator(UserSession userSession) {
67     return new UsersSearchRestResponseGenerator(userSession);
68   }
69
70   @Bean
71   public UserController userController(UserSession userSession, UsersSearchRestResponseGenerator usersSearchResponseGenerator, UserService userService) {
72     return new DefaultUserController(userSession, userService, usersSearchResponseGenerator);
73   }
74
75 }