3 * Copyright (C) 2009-2023 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.server.v2.config;
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;
46 @Import(CommonWebConfig.class)
47 @ComponentScan("com.sonar.github.provisioning.permissions.web.config")
48 public class PlatformLevel4WebConfig {
51 public LivenessChecker livenessChecker(DbConnectionNodeCheck dbConnectionNodeCheck, WebServerStatusNodeCheck webServerStatusNodeCheck, CeStatusNodeCheck ceStatusNodeCheck,
52 @Nullable EsStatusNodeCheck esStatusNodeCheck) {
53 return new LivenessCheckerImpl(dbConnectionNodeCheck, webServerStatusNodeCheck, ceStatusNodeCheck, esStatusNodeCheck);
57 public LivenessController livenessController(LivenessChecker livenessChecker, UserSession userSession, SystemPasscode systemPasscode) {
58 return new DefaultLivenessController(livenessChecker, systemPasscode, userSession);
62 public HealthController healthController(HealthChecker healthChecker, SystemPasscode systemPasscode, NodeInformation nodeInformation,
63 UserSession userSession) {
64 return new HealthController(healthChecker, systemPasscode, nodeInformation, userSession);
68 public UsersSearchRestResponseGenerator usersSearchResponseGenerator(UserSession userSession) {
69 return new UsersSearchRestResponseGenerator(userSession);
73 public UserController userController(
74 UserSession userSession,
75 UsersSearchRestResponseGenerator usersSearchResponseGenerator,
76 UserService userService) {
77 return new DefaultUserController(userSession, userService, usersSearchResponseGenerator);