]> source.dussan.org Git - sonarqube.git/blob
d37230ed824fc5fd0f506775adac20405fe18f59
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2022 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.ce.task.projectanalysis.step;
21
22 import java.util.Optional;
23 import java.util.stream.Collectors;
24 import org.sonar.ce.task.projectanalysis.analysis.AnalysisMetadataHolder;
25 import org.sonar.ce.task.projectanalysis.qualitygate.Condition;
26 import org.sonar.ce.task.projectanalysis.qualitygate.MutableQualityGateHolder;
27 import org.sonar.ce.task.projectanalysis.qualitygate.QualityGate;
28 import org.sonar.ce.task.projectanalysis.qualitygate.QualityGateService;
29 import org.sonar.ce.task.step.ComputationStep;
30 import org.sonar.server.project.Project;
31
32 /**
33  * This step retrieves the QualityGate and stores it in
34  * {@link MutableQualityGateHolder}.
35  */
36 public class LoadQualityGateStep implements ComputationStep {
37
38   private final QualityGateService qualityGateService;
39   private final MutableQualityGateHolder qualityGateHolder;
40   private final AnalysisMetadataHolder analysisMetadataHolder;
41
42   public LoadQualityGateStep(QualityGateService qualityGateService, MutableQualityGateHolder qualityGateHolder,
43                              AnalysisMetadataHolder analysisMetadataHolder) {
44     this.qualityGateService = qualityGateService;
45     this.qualityGateHolder = qualityGateHolder;
46     this.analysisMetadataHolder = analysisMetadataHolder;
47   }
48
49   @Override
50   public void execute(ComputationStep.Context context) {
51     Optional<QualityGate> qualityGate = getProjectQualityGate();
52     if (!qualityGate.isPresent()) {
53       // No QG defined for the project, let's retrieve the default QG
54       qualityGate = Optional.of(getDefaultQualityGate());
55     }
56
57     if (analysisMetadataHolder.isPullRequest()) {
58       qualityGate = filterQGForPR(qualityGate);
59     }
60
61     qualityGateHolder.setQualityGate(qualityGate.orElseThrow(() -> new IllegalStateException("Quality gate not present")));
62   }
63
64   private static Optional<QualityGate> filterQGForPR(Optional<QualityGate> qualityGate) {
65     return qualityGate.map(qg -> new QualityGate(qg.getUuid(), qg.getName(),
66       qg.getConditions().stream().filter(Condition::useVariation).collect(Collectors.toList())));
67   }
68
69   private Optional<QualityGate> getProjectQualityGate() {
70     Project project = analysisMetadataHolder.getProject();
71     return qualityGateService.findQualityGate(project);
72   }
73
74   private QualityGate getDefaultQualityGate() {
75     return qualityGateService.findDefaultQualityGate();
76   }
77
78   @Override
79   public String getDescription() {
80     return "Load Quality gate";
81   }
82 }