Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* SonarQube
* Copyright (C) 2009-2018 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.sonar.server.qualitygate.ws;
import java.util.Optional;
import javax.annotation.Nullable;
import org.sonar.api.server.ws.Request;
import org.sonar.api.server.ws.WebService;
import org.sonar.api.server.ws.WebService.NewAction;
import org.sonar.db.DbClient;
import org.sonar.db.DbSession;
import org.sonar.db.component.ComponentDto;
import org.sonar.db.organization.OrganizationDto;
import org.sonar.db.qualitygate.QGateWithOrgDto;
import org.sonar.db.qualitygate.QualityGateConditionDto;
import org.sonar.db.qualitygate.QualityGateDto;
import org.sonar.server.exceptions.NotFoundException;
import org.sonar.server.organization.DefaultOrganizationProvider;
import org.sonar.server.user.UserSession;
import org.sonarqube.ws.Qualitygates;
import static com.google.common.base.Preconditions.checkArgument;
import static java.lang.String.format;
import static org.sonar.api.web.UserRole.ADMIN;
import static org.sonar.db.permission.OrganizationPermission.ADMINISTER_QUALITY_GATES;
import static org.sonar.server.qualitygate.ws.QualityGatesWsParameters.PARAM_ORGANIZATION;
import static org.sonar.server.user.AbstractUserSession.insufficientPrivilegesException;
import static org.sonar.server.ws.WsUtils.checkFound;
import static org.sonar.server.ws.WsUtils.checkFoundWithOptional;
public class QualityGatesWsSupport {
private final DbClient dbClient;
private final UserSession userSession;
private final DefaultOrganizationProvider defaultOrganizationProvider;
public QualityGatesWsSupport(DbClient dbClient, UserSession userSession, DefaultOrganizationProvider defaultOrganizationProvider) {
this.dbClient = dbClient;
this.userSession = userSession;
this.defaultOrganizationProvider = defaultOrganizationProvider;
}
QualityGateConditionDto getCondition(DbSession dbSession, long id) {
return checkFound(dbClient.gateConditionDao().selectById(id, dbSession), "No quality gate condition with id '%d'", id);
}
boolean isQualityGateAdmin(OrganizationDto organization) {
return userSession.hasPermission(ADMINISTER_QUALITY_GATES, organization);
}
WebService.NewParam createOrganizationParam(NewAction action) {
return action
.createParam(PARAM_ORGANIZATION)
.setDescription("Organization key. If no organization is provided, the default organization is used.")
.setSince("7.0")
.setRequired(false)
.setInternal(false)
.setExampleValue("my-org");
}
Qualitygates.Actions getActions(OrganizationDto organization, QualityGateDto qualityGate, @Nullable QualityGateDto defaultQualityGate) {
Long defaultId = defaultQualityGate == null ? null : defaultQualityGate.getId();
boolean isDefault = qualityGate.getId().equals(defaultId);
boolean isBuiltIn = qualityGate.isBuiltIn();
boolean isQualityGateAdmin = isQualityGateAdmin(organization);
return Qualitygates.Actions.newBuilder()
.setCopy(isQualityGateAdmin)
.setRename(!isBuiltIn && isQualityGateAdmin)
.setManageConditions(!isBuiltIn && isQualityGateAdmin)
.setDelete(!isDefault && !isBuiltIn && isQualityGateAdmin)
.setSetAsDefault(!isDefault && isQualityGateAdmin)
.setAssociateProjects(!isDefault && isQualityGateAdmin)
.build();
}
OrganizationDto getOrganization(DbSession dbSession, Request request) {
String organizationKey = Optional.ofNullable(request.param(PARAM_ORGANIZATION))
.orElseGet(() -> defaultOrganizationProvider.get().getKey());
Optional organizationDto = dbClient.organizationDao().selectByKey(dbSession, organizationKey);
return checkFoundWithOptional(organizationDto, "No organization with key '%s'", organizationKey);
}
void checkCanEdit(QGateWithOrgDto qualityGate) {
checkNotBuiltIn(qualityGate);
userSession.checkPermission(ADMINISTER_QUALITY_GATES, qualityGate.getOrganizationUuid());
}
void checkCanAdminProject(OrganizationDto organization, ComponentDto project) {
if (userSession.hasPermission(ADMINISTER_QUALITY_GATES, organization)
|| userSession.hasComponentPermission(ADMIN, project)) {
return;
}
throw insufficientPrivilegesException();
}
void checkProjectBelongsToOrganization(OrganizationDto organization, ComponentDto project) {
if (project.getOrganizationUuid().equals(organization.getUuid())) {
return;
}
throw new NotFoundException(format("Project '%s' doesn't exist in organization '%s'", project.getKey(), organization.getKey()));
}
private static void checkNotBuiltIn(QualityGateDto qualityGate) {
checkArgument(!qualityGate.isBuiltIn(), "Operation forbidden for built-in Quality Gate '%s'", qualityGate.getName());
}
}