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