]> source.dussan.org Git - sonarqube.git/blob
1ded44dd67008ce873a7ace346d1b061dde99473
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 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.platform.db.migration.version.v82;
21
22 import java.sql.SQLException;
23 import javax.annotation.Nullable;
24 import org.sonar.db.Database;
25 import org.sonar.server.platform.db.migration.step.DataChange;
26 import org.sonar.server.platform.db.migration.step.MassUpdate;
27
28 public class DeleteSecurityReviewRatingMeasures extends DataChange {
29
30   private static final String SECURITY_REVIEW_RATING_METRIC_KEY = "security_review_rating";
31   private static final String SECURITY_REVIEW_RATING_EFFORT_METRIC_KEY = "security_review_rating_effort";
32   private static final String SELECT_COMPONENTS_STATEMENT = "select c.uuid from components c where c.scope in ('PRJ') and c.qualifier in ('VW', 'SVW', 'APP', 'TRK')";
33
34   public DeleteSecurityReviewRatingMeasures(Database db) {
35     super(db);
36   }
37
38   @Override
39   protected void execute(Context context) throws SQLException {
40     Integer reviewRatingId = getMetricId(context, SECURITY_REVIEW_RATING_METRIC_KEY);
41     Integer reviewRatingEffortId = getMetricId(context, SECURITY_REVIEW_RATING_EFFORT_METRIC_KEY);
42     if (reviewRatingId != null) {
43       deleteFromProjectMeasures(context, reviewRatingId, reviewRatingEffortId);
44       deleteFromLiveMeasures(context, reviewRatingId, reviewRatingEffortId);
45     }
46   }
47
48   @Nullable
49   private static Integer getMetricId(Context context, String metricName) throws SQLException {
50     return context.prepareSelect("select id from metrics where name = ?")
51       .setString(1, metricName)
52       .get(row -> row.getNullableInt(1));
53   }
54
55   private static void deleteFromLiveMeasures(Context context, Integer reviewRatingId, @Nullable Integer reviewRatingEffortId) throws SQLException {
56     MassUpdate deleteFromLiveMeasures = context.prepareMassUpdate();
57
58     deleteFromLiveMeasures.select(SELECT_COMPONENTS_STATEMENT);
59     if (reviewRatingEffortId != null) {
60       deleteFromLiveMeasures.update("delete from live_measures where project_uuid = ? and metric_id in (?, ?)");
61     } else {
62       deleteFromLiveMeasures.update("delete from live_measures where project_uuid = ? and metric_id = ?");
63     }
64
65     deleteFromLiveMeasures.execute((row, update) -> {
66       String projectUuid = row.getString(1);
67       update.setString(1, projectUuid)
68         .setInt(2, reviewRatingId);
69       if (reviewRatingEffortId != null) {
70         update.setInt(3, reviewRatingEffortId);
71       }
72       return true;
73     });
74   }
75
76   private static void deleteFromProjectMeasures(Context context, Integer reviewRatingId, @Nullable Integer reviewRatingEffortId) throws SQLException {
77     MassUpdate deleteFromProjectMeasures = context.prepareMassUpdate();
78
79     deleteFromProjectMeasures.select(SELECT_COMPONENTS_STATEMENT);
80     if (reviewRatingEffortId != null) {
81       deleteFromProjectMeasures.update("delete from project_measures where component_uuid = ? and metric_id in (?, ?)");
82     } else {
83       deleteFromProjectMeasures.update("delete from project_measures where component_uuid = ? and metric_id = ?");
84     }
85
86     deleteFromProjectMeasures.execute((row, update) -> {
87       String componentUuid = row.getString(1);
88       update.setString(1, componentUuid)
89         .setInt(2, reviewRatingId);
90       if (reviewRatingEffortId != null) {
91         update.setInt(3, reviewRatingEffortId);
92       }
93       return true;
94     });
95   }
96 }