]> source.dussan.org Git - sonarqube.git/blob
708abb1d8b1c4a0a77f3d93b119d2da42fb024c6
[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.server.platform.db.migration.version.v96;
21
22 import com.google.common.annotations.VisibleForTesting;
23 import java.sql.Connection;
24 import java.sql.SQLException;
25 import org.sonar.db.Database;
26 import org.sonar.db.DatabaseUtils;
27 import org.sonar.server.platform.db.migration.def.VarcharColumnDef;
28 import org.sonar.server.platform.db.migration.sql.AddColumnsBuilder;
29 import org.sonar.server.platform.db.migration.step.DdlChange;
30
31 import static org.sonar.server.platform.db.migration.def.VarcharColumnDef.newVarcharColumnDefBuilder;
32 import static org.sonar.server.platform.db.migration.version.v96.DbConstants.WEBHOOK_SECRET_COLUMN_SIZE;
33
34 public class AddWebhookSecretToAlmSettingsTable extends DdlChange {
35
36   @VisibleForTesting
37   static final String WEBHOOK_SECRET_COLUMN_NAME = "webhook_secret";
38   @VisibleForTesting
39   static final String ALM_SETTINGS_TABLE_NAME = "alm_settings";
40
41   private static final VarcharColumnDef COLUMN_DEFINITION = newVarcharColumnDefBuilder()
42     .setColumnName(WEBHOOK_SECRET_COLUMN_NAME)
43     .setIsNullable(true)
44     .setLimit(WEBHOOK_SECRET_COLUMN_SIZE).build();
45
46
47   public AddWebhookSecretToAlmSettingsTable(Database db) {
48     super(db);
49   }
50
51   @Override
52   public void execute(Context context) throws SQLException {
53     try (Connection connection = getDatabase().getDataSource().getConnection()) {
54       createWebhookSecretColumn(context, connection);
55     }
56   }
57
58   private void createWebhookSecretColumn(Context context, Connection connection) {
59     if (!DatabaseUtils.tableColumnExists(connection, ALM_SETTINGS_TABLE_NAME, WEBHOOK_SECRET_COLUMN_NAME)) {
60       context.execute(new AddColumnsBuilder(getDialect(), ALM_SETTINGS_TABLE_NAME)
61         .addColumn(COLUMN_DEFINITION)
62         .build());
63     }
64   }
65
66 }