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.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;
45 @Import(CommonWebConfig.class)
46 public class PlatformLevel4WebConfig {
49 public LivenessChecker livenessChecker(DbConnectionNodeCheck dbConnectionNodeCheck, WebServerStatusNodeCheck webServerStatusNodeCheck, CeStatusNodeCheck ceStatusNodeCheck,
50 @Nullable EsStatusNodeCheck esStatusNodeCheck) {
51 return new LivenessCheckerImpl(dbConnectionNodeCheck, webServerStatusNodeCheck, ceStatusNodeCheck, esStatusNodeCheck);
55 public LivenessController livenessController(LivenessChecker livenessChecker, UserSession userSession, SystemPasscode systemPasscode) {
56 return new DefautLivenessController(livenessChecker, systemPasscode, userSession);
60 public HealthController healthController(HealthChecker healthChecker, SystemPasscode systemPasscode, NodeInformation nodeInformation,
61 UserSession userSession) {
62 return new HealthController(healthChecker, systemPasscode, nodeInformation, userSession);
66 public UsersSearchRestResponseGenerator usersSearchResponseGenerator(UserSession userSession) {
67 return new UsersSearchRestResponseGenerator(userSession);
71 public UserController userController(UserSession userSession, UsersSearchRestResponseGenerator usersSearchResponseGenerator, UserService userService) {
72 return new DefaultUserController(userSession, userService, usersSearchResponseGenerator);