]> source.dussan.org Git - sonarqube.git/blob
1b7c64e1319c1913faaf8f1e731fdf833e9806b7
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 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.pushapi.sonarlint;
21
22 import java.io.IOException;
23 import java.util.List;
24 import java.util.Set;
25 import java.util.stream.Collectors;
26 import javax.servlet.AsyncContext;
27 import javax.servlet.http.HttpServletResponse;
28 import org.sonar.api.server.ws.Request;
29 import org.sonar.api.server.ws.Response;
30 import org.sonar.api.server.ws.WebService;
31 import org.sonar.db.DbClient;
32 import org.sonar.db.DbSession;
33 import org.sonar.db.project.ProjectDto;
34 import org.sonar.server.pushapi.ServerPushAction;
35 import org.sonar.server.user.UserSession;
36 import org.sonar.server.ws.ServletRequest;
37 import org.sonar.server.ws.ServletResponse;
38
39 public class SonarLintPushAction extends ServerPushAction {
40
41   private static final String PROJECT_PARAM_KEY = "projectKeys";
42   private static final String LANGUAGE_PARAM_KEY = "languages";
43   private final SonarLintClientsRegistry clientsRegistry;
44   private final SonarLintClientPermissionsValidator permissionsValidator;
45   private final UserSession userSession;
46   private final DbClient dbClient;
47   private final SonarLintPushEventExecutorService sonarLintPushEventExecutorService;
48
49   public SonarLintPushAction(SonarLintClientsRegistry sonarLintClientRegistry, UserSession userSession, DbClient dbClient,
50     SonarLintClientPermissionsValidator permissionsValidator, SonarLintPushEventExecutorService sonarLintPushEventExecutorService) {
51     this.clientsRegistry = sonarLintClientRegistry;
52     this.userSession = userSession;
53     this.dbClient = dbClient;
54     this.permissionsValidator = permissionsValidator;
55     this.sonarLintPushEventExecutorService = sonarLintPushEventExecutorService;
56   }
57
58   @Override
59   public void define(WebService.NewController controller) {
60     WebService.NewAction action = controller
61       .createAction("sonarlint_events")
62       .setInternal(true)
63       .setDescription("Endpoint for listening to server side events. Currently it notifies listener about change to activation of a rule")
64       .setSince("9.4")
65       .setHandler(this);
66
67     action
68       .createParam(PROJECT_PARAM_KEY)
69       .setDescription("Comma-separated list of projects keys for which events will be delivered")
70       .setRequired(true)
71       .setExampleValue("example-project-key,example-project-key2");
72
73     action
74       .createParam(LANGUAGE_PARAM_KEY)
75       .setDescription("Comma-separated list of languages for which events will be delivered")
76       .setRequired(true)
77       .setExampleValue("java,cobol");
78   }
79
80   @Override
81   public void handle(Request request, Response response) throws IOException {
82     userSession.checkLoggedIn();
83
84     ServletRequest servletRequest = (ServletRequest) request;
85     ServletResponse servletResponse = (ServletResponse) response;
86
87     var params = new SonarLintPushActionParamsValidator(request);
88     params.validateParams();
89
90     List<ProjectDto> projectDtos = permissionsValidator.validateUserCanReceivePushEventForProjects(userSession, params.projectKeys);
91
92     if (!isServerSideEventsRequest(servletRequest)) {
93       servletResponse.stream().setStatus(HttpServletResponse.SC_NOT_ACCEPTABLE);
94       return;
95     }
96
97     setHeadersForResponse(servletResponse);
98
99     AsyncContext asyncContext = servletRequest.startAsync();
100     asyncContext.setTimeout(0);
101
102     Set<String> projectUuids = projectDtos.stream().map(ProjectDto::getUuid).collect(Collectors.toSet());
103
104     SonarLintClient sonarLintClient = new SonarLintClient(sonarLintPushEventExecutorService, asyncContext, projectUuids, params.getLanguages(), userSession.getUuid());
105
106     clientsRegistry.registerClient(sonarLintClient);
107   }
108
109   class SonarLintPushActionParamsValidator {
110
111     private final Request request;
112     private final Set<String> projectKeys;
113     private final Set<String> languages;
114
115     SonarLintPushActionParamsValidator(Request request) {
116       this.request = request;
117       this.projectKeys = parseParam(PROJECT_PARAM_KEY);
118       this.languages = parseParam(LANGUAGE_PARAM_KEY);
119     }
120
121     Set<String> getLanguages() {
122       return languages;
123     }
124
125     private Set<String> parseParam(String paramKey) {
126       String paramProjectKeys = request.getParam(paramKey).getValue();
127       if (paramProjectKeys == null) {
128         throw new IllegalArgumentException("Param " + paramKey + " was not provided.");
129       }
130       return Set.of(paramProjectKeys.trim().split(","));
131     }
132
133     private void validateParams() {
134       List<ProjectDto> projectDtos;
135       try (DbSession dbSession = dbClient.openSession(false)) {
136         projectDtos = dbClient.projectDao().selectProjectsByKeys(dbSession, projectKeys);
137       }
138       if (projectDtos.size() < projectKeys.size() || projectDtos.isEmpty()) {
139         throw new IllegalArgumentException("Param " + PROJECT_PARAM_KEY + " is invalid.");
140       }
141     }
142
143   }
144
145 }