org.kiwiproject.ansible.vault.VaultDecryptCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kiwi Show documentation
Show all versions of kiwi Show documentation
Kiwi is a utility library. We really like Google's Guava, and also use Apache Commons.
But if they don't have something we need, and we think it is useful, this is where we put it.
package org.kiwiproject.ansible.vault;
import static java.util.Objects.nonNull;
import static org.kiwiproject.base.KiwiPreconditions.checkArgumentNotBlank;
import static org.kiwiproject.base.KiwiPreconditions.checkArgumentNotNull;
import lombok.Builder;
import javax.annotation.Nullable;
import java.nio.file.Paths;
import java.util.List;
/**
* Generates {@code ansible-vault decrypt} commands.
*/
@Builder
public class VaultDecryptCommand implements OsCommand {
public static final String OUTPUT_FILE_STDOUT = "-";
private final String ansibleVaultPath;
private final String vaultPasswordFilePath;
private final String encryptedFilePath;
private final String outputFilePath;
/**
* Create an instance.
*
* @param configuration the {@link VaultConfiguration} to use
* @param encryptedFilePath path to the encrypted file
* @return the command
*/
public static VaultDecryptCommand from(VaultConfiguration configuration, String encryptedFilePath) {
return from(configuration, encryptedFilePath, null);
}
/**
* Create an instance.
*
* @param configuration the {@link VaultConfiguration} to use
* @param encryptedFilePath path to the encrypted file
* @return the command
*/
public static VaultDecryptCommand toStdoutFrom(VaultConfiguration configuration, String encryptedFilePath) {
return from(configuration, encryptedFilePath, OUTPUT_FILE_STDOUT);
}
/**
* @param configuration the {@link VaultConfiguration} to use
* @param encryptedFilePath path to the encrypted file
* @param outputFilePath path of the file where the decrypted output should be stored
* @return the command
*/
public static VaultDecryptCommand from(VaultConfiguration configuration,
String encryptedFilePath,
@Nullable String outputFilePath) {
checkArgumentNotNull(configuration, "configuration cannot be null");
checkArgumentNotBlank(encryptedFilePath, "encryptedFilePath cannot be blank");
return VaultDecryptCommand.builder()
.ansibleVaultPath(configuration.getAnsibleVaultPath())
.vaultPasswordFilePath(configuration.getVaultPasswordFilePath())
.encryptedFilePath(encryptedFilePath)
.outputFilePath(outputFilePath)
.build();
}
@Override
public List getCommandParts() {
if (nonNull(outputFilePath)) {
return getCommandPartsWithOutputFile();
}
return getCommandPartsWithNoOutputFile();
}
private List getCommandPartsWithOutputFile() {
return List.of(
ansibleVaultPath,
"decrypt",
"--vault-password-file", vaultPasswordFilePath,
"--output", outputFilePath,
Paths.get(encryptedFilePath).toString()
);
}
private List getCommandPartsWithNoOutputFile() {
return List.of(
ansibleVaultPath,
"decrypt",
"--vault-password-file", vaultPasswordFilePath,
Paths.get(encryptedFilePath).toString()
);
}
}