3 * Copyright (C) 2009-2022 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.server.platform.db.migration.version.v96;
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;
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;
34 public class AddWebhookSecretToAlmSettingsTable extends DdlChange {
37 static final String WEBHOOK_SECRET_COLUMN_NAME = "webhook_secret";
39 static final String ALM_SETTINGS_TABLE_NAME = "alm_settings";
41 private static final VarcharColumnDef COLUMN_DEFINITION = newVarcharColumnDefBuilder()
42 .setColumnName(WEBHOOK_SECRET_COLUMN_NAME)
44 .setLimit(WEBHOOK_SECRET_COLUMN_SIZE).build();
47 public AddWebhookSecretToAlmSettingsTable(Database db) {
52 public void execute(Context context) throws SQLException {
53 try (Connection connection = getDatabase().getDataSource().getConnection()) {
54 createWebhookSecretColumn(context, connection);
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)