]> source.dussan.org Git - sonarqube.git/blob
d201ad278e5581175739a4ca46430d8cbf51522d
[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.v92;
21
22 import java.sql.SQLException;
23 import org.sonar.db.Database;
24 import org.sonar.db.DatabaseUtils;
25 import org.sonar.server.platform.db.migration.def.VarcharColumnDef;
26 import org.sonar.server.platform.db.migration.sql.CreateIndexBuilder;
27 import org.sonar.server.platform.db.migration.sql.CreateTableBuilder;
28 import org.sonar.server.platform.db.migration.step.DdlChange;
29
30 import static org.sonar.server.platform.db.migration.def.BigIntegerColumnDef.newBigIntegerColumnDefBuilder;
31 import static org.sonar.server.platform.db.migration.def.VarcharColumnDef.UUID_SIZE;
32 import static org.sonar.server.platform.db.migration.def.VarcharColumnDef.newVarcharColumnDefBuilder;
33
34 public class CreateQGateUserPermissionsTable extends DdlChange {
35   private static final String TABLE_NAME = "qgate_user_permissions";
36   private static final String QUALITY_GATE_UUID_INDEX = "quality_gate_uuid_idx";
37
38   public CreateQGateUserPermissionsTable(Database db) {
39     super(db);
40   }
41
42   @Override
43   public void execute(Context context) throws SQLException {
44     if (tableExists()) {
45       return;
46     }
47
48     VarcharColumnDef qualityGateUuidColumn = newVarcharColumnBuilder("quality_gate_uuid").setIsNullable(false).setLimit(UUID_SIZE).build();
49     context.execute(new CreateTableBuilder(getDialect(), TABLE_NAME)
50       .addPkColumn(newVarcharColumnDefBuilder().setColumnName("uuid").setIsNullable(false).setLimit(UUID_SIZE).build())
51       .addColumn(qualityGateUuidColumn)
52       .addColumn(newVarcharColumnBuilder("user_uuid").setIsNullable(false).setLimit(UUID_SIZE).build())
53       .addColumn(newBigIntegerColumnDefBuilder().setColumnName("created_at").setIsNullable(false).build())
54       .build());
55
56     CreateIndexBuilder builder = new CreateIndexBuilder()
57       .setTable(TABLE_NAME)
58       .setName(QUALITY_GATE_UUID_INDEX)
59       .setUnique(false)
60       .addColumn(qualityGateUuidColumn);
61     context.execute(builder.build());
62   }
63
64   private static VarcharColumnDef.Builder newVarcharColumnBuilder(String column) {
65     return newVarcharColumnDefBuilder().setColumnName(column);
66   }
67
68   private boolean tableExists() throws SQLException {
69     try (var connection = getDatabase().getDataSource().getConnection()) {
70       return DatabaseUtils.tableExists(TABLE_NAME, connection);
71     }
72   }
73 }