import org.sonarqube.ws.client.github.configuration.GithubConfigurationService;
import org.sonarqube.ws.client.github.provisioning.permissions.GithubPermissionsService;
import org.sonarqube.ws.client.gitlab.configuration.GitlabConfigurationService;
+import org.sonarqube.ws.client.gitlab.provisioning.permissions.GitlabPermissionService;
import org.sonarqube.ws.client.gitlab.synchronization.run.GitlabSynchronizationRunService;
import org.sonarqube.ws.client.governancereports.GovernanceReportsService;
import org.sonarqube.ws.client.hotspots.HotspotsService;
private final GithubConfigurationService githubConfigurationService;
private final GithubPermissionsService githubPermissionsService;
private final GitlabConfigurationService gitlabConfigurationService;
+ private final GitlabPermissionService gitlabPermissionsService;
private final GitlabSynchronizationRunService gitlabSynchronizationRunService;
this.githubConfigurationService = new GithubConfigurationService(wsConnector);
this.githubPermissionsService = new GithubPermissionsService(wsConnector);
this.gitlabConfigurationService = new GitlabConfigurationService(wsConnector);
+ this.gitlabPermissionsService = new GitlabPermissionService(wsConnector);
this.gitlabSynchronizationRunService = new GitlabSynchronizationRunService(wsConnector);
}
return gitlabConfigurationService;
}
+ @Override
+ public GitlabPermissionService gitlabPermissionsService() {
+ return gitlabPermissionsService;
+ }
+
@Override
public GitlabSynchronizationRunService gitlabSynchronizationRunService() {
return gitlabSynchronizationRunService;
import org.sonarqube.ws.client.github.configuration.GithubConfigurationService;
import org.sonarqube.ws.client.github.provisioning.permissions.GithubPermissionsService;
import org.sonarqube.ws.client.gitlab.configuration.GitlabConfigurationService;
+import org.sonarqube.ws.client.gitlab.provisioning.permissions.GitlabPermissionService;
import org.sonarqube.ws.client.gitlab.synchronization.run.GitlabSynchronizationRunService;
import org.sonarqube.ws.client.governancereports.GovernanceReportsService;
import org.sonarqube.ws.client.hotspots.HotspotsService;
GitlabConfigurationService gitlabConfigurationService();
+ GitlabPermissionService gitlabPermissionsService();
+
GitlabSynchronizationRunService gitlabSynchronizationRunService();
GovernanceReportsService governanceReports();
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2024 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonarqube.ws.client.gitlab.provisioning.permissions;
+
+import org.sonarqube.ws.client.github.provisioning.permissions.SonarqubePermissions;
+
+public record AddGitlabPermissionMappingRequest(String gitlabRole, SonarqubePermissions permissions) {
+
+}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2024 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonarqube.ws.client.gitlab.provisioning.permissions;
+
+import com.google.gson.Gson;
+import org.sonarqube.ws.MediaTypes;
+import org.sonarqube.ws.client.BaseService;
+import org.sonarqube.ws.client.PostRequest;
+import org.sonarqube.ws.client.WsConnector;
+import org.sonarqube.ws.client.WsResponse;
+
+public class GitlabPermissionService extends BaseService {
+
+ public GitlabPermissionService(WsConnector wsConnector) {
+ super(wsConnector, "api/v2");
+ }
+
+ public void addPermissionMapping(AddGitlabPermissionMappingRequest addLabPermissionMappingRequest) {
+ callEndpointToAddPermissionMapping(addLabPermissionMappingRequest).close();
+ }
+
+ private WsResponse callEndpointToAddPermissionMapping(AddGitlabPermissionMappingRequest addGitlabPermissionMappingRequest) {
+ return call(
+ new PostRequest(path("dop-translation/gitlab-permission-mappings"))
+ .setBody(new Gson().toJson(addGitlabPermissionMappingRequest))
+ .setMediaType(MediaTypes.JSON));
+ }
+}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2024 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+@ParametersAreNonnullByDefault
+package org.sonarqube.ws.client.gitlab.provisioning.permissions;
+
+import javax.annotation.ParametersAreNonnullByDefault;