2021-10-07 15:48:52 +02:00
|
|
|
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
package sop.cli.picocli.commands;
|
2021-01-21 14:33:52 +01:00
|
|
|
|
2020-11-26 11:00:48 +01:00
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
import picocli.CommandLine;
|
2021-07-15 16:55:13 +02:00
|
|
|
import sop.Ready;
|
|
|
|
import sop.cli.picocli.SopCLI;
|
|
|
|
import sop.exception.SOPGPException;
|
|
|
|
import sop.operation.ExtractCert;
|
2020-11-26 11:00:48 +01:00
|
|
|
|
2020-12-22 23:07:53 +01:00
|
|
|
@CommandLine.Command(name = "extract-cert",
|
2021-03-05 14:15:54 +01:00
|
|
|
description = "Extract a public key certificate from a secret key from standard input",
|
|
|
|
exitCodeOnInvalidInput = 37)
|
2021-07-15 16:55:13 +02:00
|
|
|
public class ExtractCertCmd implements Runnable {
|
2020-11-26 11:00:48 +01:00
|
|
|
|
2020-12-22 22:05:47 +01:00
|
|
|
@CommandLine.Option(names = "--no-armor",
|
|
|
|
description = "ASCII armor the output",
|
|
|
|
negatable = true)
|
|
|
|
boolean armor = true;
|
2020-11-26 11:00:48 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2021-07-15 16:55:13 +02:00
|
|
|
ExtractCert extractCert = SopCLI.getSop().extractCert();
|
|
|
|
if (!armor) {
|
|
|
|
extractCert.noArmor();
|
|
|
|
}
|
2020-11-26 11:00:48 +01:00
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
try {
|
|
|
|
Ready ready = extractCert.key(System.in);
|
|
|
|
ready.writeTo(System.out);
|
|
|
|
} catch (IOException e) {
|
2021-07-19 18:20:52 +02:00
|
|
|
throw new RuntimeException(e);
|
2021-07-15 16:55:13 +02:00
|
|
|
} catch (SOPGPException.BadData badData) {
|
2021-07-19 18:20:52 +02:00
|
|
|
throw new SOPGPException.BadData("Standard Input does not contain valid OpenPGP private key material.", badData);
|
2020-11-26 11:00:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|