From: John Freed Date: Sat, 9 Oct 2021 12:08:08 +0000 (+0200) Subject: Merge branch master into dbus_updateConfiguration X-Git-Url: https://git.nmode.ca/signal-cli/commitdiff_plain/3c40b11b8a6a0619e92de6d54262966aee27fd5d Merge branch master into dbus_updateConfiguration --- 3c40b11b8a6a0619e92de6d54262966aee27fd5d diff --cc man/signal-cli-dbus.5.adoc index 56b28ddf,8168c421..508a7881 --- a/man/signal-cli-dbus.5.adoc +++ b/man/signal-cli-dbus.5.adoc @@@ -29,15 -29,18 +29,18 @@@ method(arg1, arg2, ...) -> Where is according to DBus specification: - * : String - * : Byte Array - * : Array of Byte Arrays - * : String Array - * : Array of signed 64 bit integer - * : Boolean (0|1) - * : Signed 64 bit integer -* : Array of ... (comma-separated list) ++* : Array of ... (comma-separated list, array:) + * (...) : Struct (cannot be sent via `dbus-send`) + * : Boolean (false|true) (boolean:) + * : Signed 32-bit (int) integer (int32:) + * : DBusPath object (objpath:) + * : String (string:) + * : Signed 64-bit (long) integer (int64:) + * : Unsigned 8-bit (byte) integer (byte:) * <> : no return value + The final parenthetical value (such as "boolean:") is the type indicator used by `dbus-send`. + Exceptions are the names of the Java Exceptions returned in the body field. They typically contain an additional message with details. All Exceptions begin with "org.asamk.Signal.Error." which is omitted here for better readability. Phone numbers always have the format + @@@ -361,30 -367,16 +367,36 @@@ uploadStickerPack(stickerPackPath) - * stickerPackPath : Path to the manifest.json file or a zip file in the same directory * url : URL of sticker pack after successful upload -Exception: Failure +Exception: Failure, IOError + +getConfiguration() -> [readReceipts, unidentifiedDeliveryIndicators, typingIndicators, linkPreviews] -> <>:: +* readReceipts : Should Signal send read receipts (true/false). +* unidentifiedDeliveryIndicators : Should Signal show unidentified delivery indicators (true/false). +* typingIndicators : Should Signal send/show typing indicators (true/false). +* linkPreviews : Should Signal generate link previews (true/false). + +Gets an array of four booleans as indicated. Only works from primary device. + +Exceptions: IOError, UserError + +setConfiguration(readReceipts, unidentifiedDeliveryIndicators, typingIndicators, linkPreviews) -> <>:: +* readReceipts : Should Signal send read receipts (true/false). +* unidentifiedDeliveryIndicators : Should Signal show unidentified delivery indicators (true/false). +* typingIndicators : Should Signal send/show typing indicators (true/false). +* linkPreviews : Should Signal generate link previews (true/false). + +Update Signal configurations and sync them to linked devices. Only works from primary device. + +Exceptions: IOError, UserError - == Signals + submitRateLimitChallenge(challenge, captcha) -> <>:: + * challenge : The challenge token taken from the proof required error. + * captcha : The captcha token from the solved captcha on the Signal website.. + Can be used to lift some rate-limits by solving a captcha. + Exception: IOErrorException + + == Signals SyncMessageReceived (timestamp, sender, destination, groupId,message, attachments):: The sync message is received when the user sends a message from a linked device. diff --cc src/main/java/org/asamk/Signal.java index cf909fa0,2f81c196..865db815 --- a/src/main/java/org/asamk/Signal.java +++ b/src/main/java/org/asamk/Signal.java @@@ -141,10 -145,8 +145,12 @@@ public interface Signal extends DBusInt String uploadStickerPack(String stickerPackPath) throws Error.Failure; + void setConfiguration(boolean readReceipts, boolean unidentifiedDeliveryIndicators, boolean typingIndicators, boolean linkPreviews) throws Error.IOError, Error.UserError; + + List getConfiguration(); + + void submitRateLimitChallenge(String challenge, String captchaString) throws IOErrorException; + class MessageReceived extends DBusSignal { private final long timestamp;