All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zhokhov.jambalaya.tenancy.flyway.TenantFlywayMigrator Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
/*
 * Copyright 2021 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.zhokhov.jambalaya.tenancy.flyway;

import edu.umd.cs.findbugs.annotations.NonNull;
import org.flywaydb.core.Flyway;
import org.flywaydb.core.api.configuration.FluentConfiguration;
import org.flywaydb.core.internal.jdbc.DriverDataSource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;

import static com.zhokhov.jambalaya.checks.Preconditions.checkNotBlank;

/**
 * @author Alexey Zhokhov
 */
public class TenantFlywayMigrator {

    private static final Logger LOG = LoggerFactory.getLogger(TenantFlywayMigrator.class);

    private final String url;
    private final String username;
    private final String password;

    public TenantFlywayMigrator(String url, String username, String password) {
        // TODO temp solution, remove after add otel support to Flyway
        this.url = url.replace("jdbc:otel:", "jdbc:");
        this.username = username;
        this.password = password;
    }

    // TODO validate schema name
    public synchronized void migrateSchema(@NonNull String schemaName) {
        checkNotBlank(schemaName, "schemaName");

        LOG.info("Migrating schema: {}", schemaName);

        DataSource dataSource = new DriverDataSource(
                Thread.currentThread().getContextClassLoader(),
                null,
                url,
                username,
                password
        );

        FluentConfiguration fluentConfiguration = new FluentConfiguration()
                .dataSource(dataSource)
                .defaultSchema(schemaName)
                .schemas(schemaName);

        Flyway flyway = fluentConfiguration.load();
        flyway.migrate();

        LOG.info("Successfully migrated schema: {}", schemaName);
    }

    // TODO validate schema name
    public synchronized void dropSchema(@NonNull String schemaName) throws SQLException {
        checkNotBlank(schemaName, "schemaName");

        LOG.info("Dropping schema: {}", schemaName);

        DataSource dataSource = new DriverDataSource(
                Thread.currentThread().getContextClassLoader(),
                null,
                url,
                username,
                password
        );

        try (Connection connection = dataSource.getConnection()) {
            // TODO SQL injection here, validate schema name!
            String sql = "DROP SCHEMA " + schemaName + " CASCADE;";

            try (Statement statement = connection.createStatement()) {
                statement.execute(sql);

                LOG.info("Successfully dropped schema: {}", schemaName);
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy