You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PlatformLevel4WebConfig.java 3.4KB

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