X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/30690785fd51f9ba841f6f57d5f403bd970f26e3..ceafe96e81150991e538bf6f446124ecc15f149f:/src/main/java/org/asamk/signal/util/ErrorUtils.java diff --git a/src/main/java/org/asamk/signal/util/ErrorUtils.java b/src/main/java/org/asamk/signal/util/ErrorUtils.java index fb0509c6..3ca73163 100644 --- a/src/main/java/org/asamk/signal/util/ErrorUtils.java +++ b/src/main/java/org/asamk/signal/util/ErrorUtils.java @@ -1,60 +1,70 @@ package org.asamk.signal.util; -import org.asamk.signal.PlainTextWriter; import org.asamk.signal.commands.exceptions.CommandException; import org.asamk.signal.commands.exceptions.IOErrorException; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.whispersystems.signalservice.api.messages.SendMessageResult; -import org.whispersystems.signalservice.api.push.exceptions.ProofRequiredException; +import org.asamk.signal.manager.api.ProofRequiredException; +import org.asamk.signal.manager.api.RecipientIdentifier; +import org.asamk.signal.manager.api.SendMessageResult; -import java.util.ArrayList; +import java.util.Collection; import java.util.List; +import java.util.Map; +import java.util.Objects; import java.util.stream.Collectors; -import static org.asamk.signal.util.Util.getLegacyIdentifier; - public class ErrorUtils { - private final static Logger logger = LoggerFactory.getLogger(ErrorUtils.class); - private ErrorUtils() { } - public static void handleTimestampAndSendMessageResults( - PlainTextWriter writer, long timestamp, List results + public static void handleSendMessageResults( + Map> mapResults + ) throws CommandException { + var errors = getErrorMessagesFromSendMessageResults(mapResults); + handleSendMessageResultErrors(errors); + } + + public static void handleSendMessageResults( + Collection results ) throws CommandException { - if (timestamp != 0) { - writer.println("{}", timestamp); - } var errors = getErrorMessagesFromSendMessageResults(results); handleSendMessageResultErrors(errors); } - public static List getErrorMessagesFromSendMessageResults(List results) { - var errors = new ArrayList(); - for (var result : results) { - var error = getErrorMessageFromSendMessageResult(result); - if (error != null) { - errors.add(error); - } - } + public static List getErrorMessagesFromSendMessageResults(final Map> mapResults) { + return mapResults.entrySet() + .stream() + .flatMap(entry -> entry.getValue() + .stream() + .map(ErrorUtils::getErrorMessageFromSendMessageResult) + .filter(Objects::nonNull) + .map(error -> entry.getKey().getIdentifier() + ": " + error)) + .collect(Collectors.toList()); + } - return errors; + public static List getErrorMessagesFromSendMessageResults(Collection results) { + return results.stream() + .map(ErrorUtils::getErrorMessageFromSendMessageResult) + .filter(Objects::nonNull) + .collect(Collectors.toList()); } public static String getErrorMessageFromSendMessageResult(SendMessageResult result) { - var identifier = getLegacyIdentifier(result.getAddress()); - if (result.isNetworkFailure()) { - return String.format("Network failure for \"%s\"", identifier); - } else if (result.isUnregisteredFailure()) { - return String.format("Unregistered user \"%s\"", identifier); - } else if (result.getIdentityFailure() != null) { - return String.format("Untrusted Identity for \"%s\"", identifier); - } else if (result.getProofRequiredFailure() != null) { - final var failure = result.getProofRequiredFailure(); + var identifier = result.address().getLegacyIdentifier(); + if (result.proofRequiredFailure() != null) { + final var failure = result.proofRequiredFailure(); return String.format( - "CAPTCHA proof required for sending to \"%s\", available options \"%s\" with token \"%s\", or wait \"%d\" seconds", + "CAPTCHA proof required for sending to \"%s\", available options \"%s\" with challenge token \"%s\", or wait \"%d\" seconds.\n" + + ( + failure.getOptions().contains(ProofRequiredException.Option.RECAPTCHA) + ? """ + To get the captcha token, go to https://signalcaptchas.org/challenge/generate.html + Check the developer tools (F12) console for a failed redirect to signalcaptcha:// + Everything after signalcaptcha:// is the captcha token. + Use the following command to submit the captcha token: + signal-cli submitRateLimitChallenge --challenge CHALLENGE_TOKEN --captcha CAPTCHA_TOKEN""" + : "" + ), identifier, failure.getOptions() .stream() @@ -62,6 +72,12 @@ public class ErrorUtils { .collect(Collectors.joining(", ")), failure.getToken(), failure.getRetryAfterSeconds()); + } else if (result.isNetworkFailure()) { + return String.format("Network failure for \"%s\"", identifier); + } else if (result.isUnregisteredFailure()) { + return String.format("Unregistered user \"%s\"", identifier); + } else if (result.isIdentityFailure()) { + return String.format("Untrusted Identity for \"%s\"", identifier); } return null; } @@ -75,6 +91,6 @@ public class ErrorUtils { for (var error : errors) { message.append(error).append("\n"); } - throw new IOErrorException(message.toString()); + throw new IOErrorException(message.toString(), null); } }