|
| 1 | +// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org> |
| 2 | +// |
| 3 | +// SPDX-License-Identifier: Apache-2.0 |
| 4 | + |
| 5 | +package pgp.vks.client.cli; |
| 6 | + |
| 7 | +import pgp.vks.client.RequestVerify; |
| 8 | +import pgp.vks.client.Status; |
| 9 | +import pgp.vks.client.Upload; |
| 10 | +import pgp.vks.client.VKS; |
| 11 | +import pgp.vks.client.exception.CertCannotBePublishedException; |
| 12 | +import picocli.CommandLine; |
| 13 | + |
| 14 | +import java.io.IOException; |
| 15 | +import java.net.MalformedURLException; |
| 16 | +import java.util.ArrayList; |
| 17 | +import java.util.List; |
| 18 | + |
| 19 | +@CommandLine.Command(name = "upload", description = "Upload an OpenPGP certificate to the key server") |
| 20 | +public class UploadCmd implements Runnable { |
| 21 | + |
| 22 | + @CommandLine.Mixin |
| 23 | + VKSCLI.KeyServerMixin keyServerMixin; |
| 24 | + |
| 25 | + @CommandLine.Option(names = {"-r", "--request-verification"}, |
| 26 | + description = "Request verification mails for unpublished email addresses") |
| 27 | + boolean requestVerification; |
| 28 | + |
| 29 | + public void run() { |
| 30 | + VKS vks; |
| 31 | + try { |
| 32 | + vks = keyServerMixin.parent.getApi(); |
| 33 | + } catch (MalformedURLException e) { |
| 34 | + throw new AssertionError(e); |
| 35 | + } |
| 36 | + |
| 37 | + Upload upload = vks.upload(); |
| 38 | + try { |
| 39 | + Upload.Response response = upload.cert(System.in); |
| 40 | + |
| 41 | + // Unpublished mail addresses |
| 42 | + List<String> unpublished = new ArrayList<>(); |
| 43 | + int maxMailLen = 0; |
| 44 | + for (String address : response.getStatus().keySet()) { |
| 45 | + Status status = response.getStatus().get(address); |
| 46 | + if (address.length() > maxMailLen) { |
| 47 | + maxMailLen = address.length(); |
| 48 | + } |
| 49 | + if (status != Status.published && status != Status.revoked) { |
| 50 | + unpublished.add(address); |
| 51 | + } |
| 52 | + } |
| 53 | + |
| 54 | + System.out.println("Uploaded key " + response.getKeyFingerprint()); |
| 55 | + System.out.println("Token: " + response.getToken()); |
| 56 | + |
| 57 | + if (!requestVerification || unpublished.isEmpty()) { |
| 58 | + System.out.println("Status:"); |
| 59 | + for (String address : response.getStatus().keySet()) { |
| 60 | + Status status = response.getStatus().get(address); |
| 61 | + System.out.format("%-" + maxMailLen + "s %s\n", address, status); |
| 62 | + } |
| 63 | + return; |
| 64 | + } |
| 65 | + |
| 66 | + RequestVerify.Response verifyResponse = vks.requestVerification().forEmailAddresses(unpublished.toArray(new String[0])) |
| 67 | + .execute(response.getToken()); |
| 68 | + System.out.println("Status:"); |
| 69 | + for (String address : verifyResponse.getStatus().keySet()) { |
| 70 | + Status status = response.getStatus().get(address); |
| 71 | + System.out.format("%-" + maxMailLen + "s %s\n", address, status); |
| 72 | + } |
| 73 | + } catch (CertCannotBePublishedException e) { |
| 74 | + throw new AssertionError(e.getMessage()); |
| 75 | + } catch (IOException e) { |
| 76 | + throw new AssertionError(e); |
| 77 | + } |
| 78 | + } |
| 79 | +} |
0 commit comments