package de.kopis.glacier.commands;
/*
* #%L
* uploader
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2012 Carsten Ringe
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
import java.io.File;
import java.io.IOException;
import java.net.URL;
import joptsimple.OptionSet;
import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.services.glacier.model.CreateVaultRequest;
import com.amazonaws.services.glacier.model.CreateVaultResult;
import com.amazonaws.services.glacier.model.DescribeVaultRequest;
import com.amazonaws.services.glacier.model.DescribeVaultResult;
import de.kopis.glacier.parsers.GlacierUploaderOptionParser;
import de.kopis.glacier.printers.VaultPrinter;
public class CreateVaultCommand extends AbstractCommand {
public CreateVaultCommand(final URL endpoint, final File credentials) throws IOException {
super(endpoint, credentials);
}
public void createVault(final String vaultName) {
log.info("Creating vault " + vaultName + "...");
try {
final CreateVaultRequest createVaultRequest = new CreateVaultRequest(vaultName);
final CreateVaultResult createVaultResult = client.createVault(createVaultRequest);
log.info("Vault " + vaultName + " created. " + createVaultResult);
final DescribeVaultRequest describeVaultRequest = new DescribeVaultRequest().withVaultName(vaultName);
final DescribeVaultResult describeVaultResult = client.describeVault(describeVaultRequest);
new VaultPrinter().printVault(describeVaultResult, System.out);
} catch (final AmazonServiceException e) {
log.error("Couldn't create vault.");
} catch (final AmazonClientException e) {
log.error("Couldn't create vault.");
}
}
@Override
public void exec(OptionSet options, GlacierUploaderOptionParser optionParser) {
final String vaultName = options.valueOf(optionParser.VAULT);
this.createVault(vaultName);
}
@Override
public boolean valid(OptionSet options, GlacierUploaderOptionParser optionParser) {
return options.has(optionParser.CREATE_VAULT);
}
}