sop-java/sop-java-picocli/src/main/java/sop/cli/picocli/commands/GenerateKeyCmd.java

86 lines
2.5 KiB
Java
Raw Normal View History

2022-01-11 13:46:05 +01:00
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package sop.cli.picocli.commands;
import picocli.CommandLine;
import sop.Ready;
import sop.cli.picocli.SopCLI;
import sop.exception.SOPGPException;
import sop.operation.GenerateKey;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
2022-01-11 13:46:05 +01:00
@CommandLine.Command(name = "generate-key",
resourceBundle = "msg_generate-key",
2022-01-11 13:46:05 +01:00
exitCodeOnInvalidInput = 37)
2022-05-29 21:17:03 +02:00
public class GenerateKeyCmd extends AbstractSopCmd {
2022-01-11 13:46:05 +01:00
@CommandLine.Option(names = "--no-armor",
negatable = true)
boolean armor = true;
2022-08-04 12:48:32 +02:00
@CommandLine.Parameters(paramLabel = "USERID")
2022-01-11 13:46:05 +01:00
List<String> userId = new ArrayList<>();
@CommandLine.Option(names = "--with-key-password",
2022-05-24 21:53:14 +02:00
paramLabel = "PASSWORD")
String withKeyPassword;
2023-04-11 15:06:37 +02:00
@CommandLine.Option(names = "--profile",
2023-04-14 14:06:34 +02:00
paramLabel = "PROFILE")
String profile;
2023-04-11 15:06:37 +02:00
@CommandLine.Option(names = "--signing-only")
boolean signingOnly = false;
2022-01-11 13:46:05 +01:00
@Override
public void run() {
2022-05-29 21:17:03 +02:00
GenerateKey generateKey = throwIfUnsupportedSubcommand(
SopCLI.getSop().generateKey(), "generate-key");
2022-01-11 13:46:05 +01:00
if (profile != null) {
try {
generateKey.profile(profile);
} catch (SOPGPException.UnsupportedProfile e) {
String errorMsg = getMsg("sop.error.usage.profile_not_supported", "generate-key", profile);
throw new SOPGPException.UnsupportedProfile(errorMsg, e);
}
}
if (signingOnly) {
generateKey.signingOnly();
}
2022-01-11 13:46:05 +01:00
for (String userId : userId) {
generateKey.userId(userId);
}
if (!armor) {
generateKey.noArmor();
}
if (withKeyPassword != null) {
try {
String password = stringFromInputStream(getInput(withKeyPassword));
generateKey.withKeyPassword(password);
} catch (SOPGPException.UnsupportedOption e) {
String errorMsg = getMsg("sop.error.feature_support.option_not_supported", "--with-key-password");
throw new SOPGPException.UnsupportedOption(errorMsg, e);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
2022-01-11 13:46:05 +01:00
try {
Ready ready = generateKey.generate();
ready.writeTo(System.out);
} catch (IOException e) {
throw new RuntimeException(e);
2022-01-11 13:46:05 +01:00
}
}
}