org.liquibase.maven.plugins.LiquibaseRollbackOneChangeSetMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-maven-plugin Show documentation
Show all versions of liquibase-maven-plugin Show documentation
A Maven plugin wraps up some of the functionality of Liquibase
package org.liquibase.maven.plugins;
import liquibase.Liquibase;
import liquibase.changelog.ChangeLogParameters;
import liquibase.command.*;
import liquibase.database.Database;
import liquibase.exception.LiquibaseException;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.liquibase.maven.property.PropertyElement;
import java.util.HashMap;
import java.util.Map;
/**
*
* Reverts (rolls back) one non-sequential changeSet made during a previous change to your database. It is only available for Liquibase Pro users.
*
* @goal rollbackOneChangeSet
*
*/
public class LiquibaseRollbackOneChangeSetMojo extends AbstractLiquibaseChangeLogMojo {
/**
*
* The changeset ID to rollback
*
* @parameter property="liquibase.changeSetId"
*
*/
@PropertyElement
protected String changeSetId;
/**
*
* Specifies the author of the changeSet you want to rollback.
*
* @parameter property="liquibase.changeSetAuthor"
*
*/
@PropertyElement
protected String changeSetAuthor;
/**
*
* Specifies the path to the changelog which contains the change-set you want to rollback.
*
* @parameter property="liquibase.changeSetPath"
*
*/
@PropertyElement
protected String changeSetPath;
/**
*
* A required flag which indicates you intend to run rollbackOneChangeSet
*
* @parameter property="liquibase.force"
*
*/
@PropertyElement
protected String force;
/**
*
* Specifies the path to a rollback script
*
* @parameter property="liquibase.rollbackScript"
*
*/
@PropertyElement
protected String rollbackScript;
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
commandName = "rollbackOneChangeSet";
super.execute();
}
@Override
protected void printSettings(String indent) {
super.printSettings(indent);
getLog().info(indent + "Changeset ID: " + changeSetId);
getLog().info(indent + "Changeset Author: " + changeSetAuthor);
getLog().info(indent + "Changeset Path: " + changeSetPath);
getLog().info(indent + "Rollback script: " + rollbackScript);
}
@Override
protected void performLiquibaseTask(Liquibase liquibase) throws LiquibaseException {
super.performLiquibaseTask(liquibase);
//
// Check the Pro license
//
Database database = liquibase.getDatabase();
CommandScope liquibaseCommand = new CommandScope("rollbackOneChangeSet");
Map argsMap = getCommandArgsObjectMap(liquibase);
ChangeLogParameters clp = new ChangeLogParameters(database);
argsMap.put("changeLogParameters", clp);
if (force == null || (force != null && ! Boolean.parseBoolean(force))) {
throw new LiquibaseException("Invalid value for --force. You must specify 'liquibase.force=true' to use rollbackOneChangeSet.");
}
argsMap.put("force", Boolean.TRUE);
argsMap.put("liquibase", liquibase);
for (Map.Entry entry : argsMap.entrySet()) {
liquibaseCommand.addArgumentValue(entry.getKey(), entry.getValue());
}
liquibaseCommand.execute();
}
private Map getCommandArgsObjectMap(Liquibase liquibase) throws LiquibaseException {
Database database = liquibase.getDatabase();
Map argsMap = new HashMap<>();
argsMap.put("changeSetId", this.changeSetId);
argsMap.put("changeSetAuthor", this.changeSetAuthor);
argsMap.put("changeSetPath", this.changeSetPath);
argsMap.put("force", this.force);
argsMap.put("rollbackScript", this.rollbackScript);
argsMap.put("changeLogFile", this.changeLogFile);
argsMap.put("database", database);
argsMap.put("changeLog", liquibase.getDatabaseChangeLog());
argsMap.put("resourceAccessor", liquibase.getResourceAccessor());
return argsMap;
}
}