diff --git a/.gitignore b/.gitignore index 8fa9c8bd..59c56542 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.gitignore .gradle/ .idea/* !.idea/codeStyles/ @@ -11,3 +12,6 @@ local.properties .settings/ out/ .DS_Store +.asciidoctorconfig.adoc +patches/ +signal-cli diff --git a/man/signal-cli-dbus.5.adoc b/man/signal-cli-dbus.5.adoc index 4ff5e994..d9e86983 100755 --- a/man/signal-cli-dbus.5.adoc +++ b/man/signal-cli-dbus.5.adoc @@ -7,7 +7,7 @@ vim:set ts=4 sw=4 tw=82 noet: == Name -DBus API for signal-cli - A commandline and dbus interface for the Signal messenger +signal-cli-dbus - DBus API for signal-cli(1) == Synopsis @@ -29,53 +29,125 @@ method(arg1, arg2, ...) -> return Where is according to DBus specification: +* : Array of ... * : String -* : Byte Array -* : Array of Byte Arrays -* : String Array -* : Array of signed 64 bit integer -* : Boolean (0|1) -* : Signed 64 bit integer +* : Byte +* : Boolean (false|true) +* : Signed 64-bit integer (long) +* : Signed 32-bit integer (int) * <> : no return value 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 + -== Methods +=== Control methods +These methods are available if the daemon is started anonymously (without an explicit `-u USERNAME`). +Requests are sent to `/org/asamk/Signal`; requests related to individual accounts are sent to +`/org/asamk/Signal/_441234567890` where the + dialing code is replaced by an underscore (_). +Only `version()` is activated in single-user mode; the rest are disabled. -updateGroup(groupId, newName, members, avatar) -> groupId:: -* groupId : Byte array representing the internal group identifier -* newName : New name of group (empty if unchanged) -* members : String array of new members to be invited to group -* avatar : Filename of avatar picture to be set for group (empty if none) +link() -> deviceLinkUri:: +link(newDeviceName) -> deviceLinkUri:: +* newDeviceName : Name to give new device (defaults to "cli" if no name is given) +* deviceLinkUri : URI of newly linked device -Exceptions: AttachmentInvalid, Failure, InvalidNumber, GroupNotFound +Returns a URI of the form "tsdevice:/?uuid=...". This can be piped to a QR encoder to create a display that +can be captured by a Signal smartphone client. For example: -updateProfile(newName, about , aboutEmoji , avatar, remove) -> <>:: -* newName : New name for your own profile (empty if unchanged) -* about : About message for profile (empty if unchanged) -* aboutEmoji : Emoji for profile (empty if unchanged) -* avatar : Filename of avatar picture for profile (empty if unchanged) -* remove : Set to 1 if the existing avatar picture should be removed +`dbus-send --session --dest=org.asamk.Signal --type=method_call --print-reply /org/asamk/Signal org.asamk.Signal.link string:"My secondary client"|tr '\n' '\0'|sed 's/.*string //g'|sed 's/\"//g'|qrencode -s10 -tANSI256` -Exceptions: Failure +Exception: Failure -setContactBlocked(number, block) -> <>:: -* number : Phone number affected by method -* block : 0=remove block , 1=blocked +listAccounts() -> accountList:: +* accountList : Array of all attached accounts in DBus object path form -Messages from blocked numbers will no longer be forwarded via DBus. +Exceptions: None -Exceptions: InvalidNumber +register(number, voiceVerification) -> <>:: +* number : Phone number +* voiceVerification : true = use voice verification; false = use SMS verification -setGroupBlocked(groupId, block) -> <>:: -* groupId : Byte array representing the internal group identifier -* block : 0=remove block , 1=blocked +Exceptions: Failure, InvalidNumber, RequiresCaptcha -Messages from blocked groups will no longer be forwarded via DBus. +registerWithCaptcha(number, voiceVerification, captcha) -> <>:: +* number : Phone number +* voiceVerification : true = use voice verification; false = use SMS verification +* captcha : Captcha string -Exceptions: GroupNotFound +Exceptions: Failure, InvalidNumber, RequiresCaptcha + +verify(number, verificationCode) -> <>:: +* number : Phone number +* verificationCode : Code received from Signal after successful registration request + +Command fails if PIN was set after previous registration; use verifyWithPin instead. + +Exception: Failure, InvalidNumber + +verifyWithPin(number, verificationCode, pin) -> <>:: +* number : Phone number +* verificationCode : Code received from Signal after successful registration request +* pin : PIN you set with setPin command after verifying previous registration + +Exception: Failure, InvalidNumber + +version() -> version:: +* version : Version string of signal-cli + +Exceptions: None + +=== Methods for groups + +getGroupIds() -> groupList:: +groupList : Array of Byte arrays representing the internal group identifiers + +All groups known are returned, regardless of their active or blocked status. To query that use isMember() and isGroupBlocked() + +Exceptions: None + +getGroupIds(dummy) -> groupList:: +* dummy : any string (ignored by method; forces output to be identical with getGroupIdsBase64) +* groupList : Array of strings representing the internal group identifiers + +Exceptions: None + +getGroupIdsBase64() -> groupList:: +* groupList : Array of strings representing the internal group identifiers + +Exceptions: None + +getGroupMembers(groupId) -> members:: +getGroupMembers(base64GroupId) -> members:: +* members : String array with the phone numbers of all active members of a group +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier + +Exceptions: InvalidGroupId, Failure + +getGroupName(groupId) -> groupName:: +getGroupName(base64GroupId) -> groupName:: +* groupName : The display name of the group +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier + +Exceptions: InvalidGroupId, Failure + +isGroupBlocked(groupId) -> state:: +isGroupBlocked(base64GroupId) -> state:: +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier +* state : false=not blocked, true=blocked + +Exceptions: None; for unknown groups false is returned + +isMember(groupId) -> active:: +isMember(base64GroupId) -> active:: +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier +* active : true=active member; false=not active member + +InvalidGroupId, Failure joinGroup(inviteURI) -> <>:: * inviteURI : String starting with https://signal.group which is generated when you share a group link via Signal App @@ -83,72 +155,110 @@ joinGroup(inviteURI) -> <>:: Exceptions: Failure quitGroup(groupId) -> <>:: -* groupId : Byte array representing the internal group identifier +quitGroup(base64GroupId) -> <>:: +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier Note that quitting a group will not remove the group from the getGroupIds command, but set it inactive which can be tested with isMember() Exceptions: GroupNotFound, Failure -isMember(groupId) -> active:: -* groupId : Byte array representing the internal group identifier - -Note that this method does not raise an Exception for a non-existing/unknown group but will simply return 0 (false) - -sendEndSessionMessage(recipients) -> <>:: -* recipients : Array of phone numbers - -Exceptions: Failure, InvalidNumber, UntrustedIdentity - sendGroupMessage(message, attachments, groupId) -> timestamp:: -* message : Text to send (can be UTF8) -* attachments : String array of filenames to send as attachments (passed as filename, so need to be readable by the user signal-cli is running under) -* groupId : Byte array representing the internal group identifier -* timestamp : Can be used to identify the corresponding signal reply +sendGroupMessage(message, attachments, base64GroupId) -> timestamp:: +* message : Text to send (can be UTF8) +* attachments : String array of filenames to send as attachments (passed as filename, so need to be readable by the user signal-cli is running under) +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier +* timestamp : Can be used to identify the corresponding signal reply Exceptions: GroupNotFound, Failure, AttachmentInvalid -sendNoteToSelfMessage(message, attachments) -> timestamp:: -* message : Text to send (can be UTF8) -* attachments : String array of filenames to send as attachments (passed as filename, so need to be readable by the user signal-cli is running under) -* timestamp : Can be used to identify the corresponding signal reply +sendGroupMessageReaction(emoji, remove, targetAuthor, targetSentTimestamp, groupId) -> timestamp:: +sendGroupMessageReaction(emoji, remove, targetAuthor, targetSentTimestamp, base64GroupId) -> timestamp:: +* emoji : Unicode grapheme cluster of the emoji +* remove : Boolean, whether a previously sent reaction (emoji) should be removed +* targetAuthor : String with the phone number of the author of the message to which to react +* targetSentTimestamp : Long representing timestamp of the message to which to react +* groupId : Byte array with base64 encoded group identifier +* base64GroupId : String with base64 encoded group identifier +* timestamp : Long, can be used to identify the corresponding signal reply -Exceptions: Failure, AttachmentInvalid +Exceptions: Failure, InvalidNumber, GroupNotFound + +sendGroupRemoteDeleteMessage(targetSentTimestamp, groupId) -> timestamp:: +sendGroupRemoteDeleteMessage(targetSentTimestamp, base64GroupId) -> timestamp:: +* targetSentTimestamp : Long representing timestamp of the message to delete +* groupId : Byte array with base64 encoded group identifier +* base64GroupId : String with base64 encoded group identifier +* timestamp : Long, can be used to identify the corresponding signal reply + +Exceptions: Failure, GroupNotFound, InvalidGroupId + +setGroupBlocked(groupId, block) -> <>:: +setGroupBlocked(base64GroupId, block) -> <>:: +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier +* block : false=remove block, true=blocked + +Messages from blocked groups will no longer be forwarded via DBus. + +Exceptions: GroupNotFound + +updateGroup(groupId, newName, members, avatar) -> groupId:: +updateGroup(base64GroupId, newName, members, avatar) -> base64GroupId:: +* groupId : Byte array representing the internal group identifier +* base64GroupId : String with base64 encoded group identifier +* newName : New name of group (empty if unchanged) +* members : String array of new members to be invited to group +* avatar : Filename of avatar picture to be set for group (empty if none) + +If groupId (or base64GroupId) is empty, creates a group with a random identifier +and returns it. Otherwise, updates group as indicated. + +Exceptions: AttachmentInvalid, Failure, InvalidNumber, GroupNotFound + +=== Methods for individual(s) + +getContactName(number) -> name:: +* number : Phone number +* name : Contact's name in local storage (from the master device for a linked account, or the one set with setContactName); if not set, contact's profile name is used + +Exception: InvalidNumber + +getContactNumber(name) -> numbers:: +* numbers : String array of phone numbers +* name : Contact or profile name ("firstname lastname") + +Searches contacts and known profiles for a given name and returns the list of all known numbers. May result in e.g. two entries if a contact and profile name is set. + +Exception: Failure + +isContactBlocked(number) -> state:: +* number : Phone number +* state : true=blocked, false=not blocked + +Exception: InvalidNumber for an incorrectly formatted phone number. For unknown numbers, false is returned, but no exception is raised. + +isRegistered -> result:: +* result : Currently always returns true + +sendEndSessionMessage(recipients) -> <>:: +* recipients : Array of phone numbers + +Exceptions: Failure, InvalidNumber, UntrustedIdentity sendMessage(message, attachments, recipient) -> timestamp:: sendMessage(message, attachments, recipients) -> timestamp:: * message : Text to send (can be UTF8) * attachments : String array of filenames to send as attachments (passed as filename, so need to be readable by the user signal-cli is running under) * recipient : Phone number of a single recipient -* recipients : Array of phone numbers +* recipients : Array of phone numbers * timestamp : Can be used to identify the corresponding signal reply Depending on the type of the recipient field this sends a message to one or multiple recipients. Exceptions: AttachmentInvalid, Failure, InvalidNumber, UntrustedIdentity -sendTyping(recipient, stop) -> <>:: -* recipient : Phone number of a single recipient -* targetSentTimestamp : True, if typing state should be stopped - -Exceptions: Failure, GroupNotFound, UntrustedIdentity - - -sendReadReceipt(recipient, targetSentTimestamp) -> <>:: -* recipient : Phone number of a single recipient -* targetSentTimestamp : Array of Longs to identify the corresponding signal messages - -Exceptions: Failure, UntrustedIdentity - -sendGroupMessageReaction(emoji, remove, targetAuthor, targetSentTimestamp, groupId) -> timestamp:: -* emoji : Unicode grapheme cluster of the emoji -* remove : Boolean, whether a previously sent reaction (emoji) should be removed -* targetAuthor : String with the phone number of the author of the message to which to react -* targetSentTimestamp : Long representing timestamp of the message to which to react -* groupId : Byte array with base64 encoded group identifier -* timestamp : Long, can be used to identify the corresponding signal reply - -Exceptions: Failure, InvalidNumber, GroupNotFound - sendMessageReaction(emoji, remove, targetAuthor, targetSentTimestamp, recipient) -> timestamp:: sendMessageReaction(emoji, remove, targetAuthor, targetSentTimestamp, recipients) -> timestamp:: * emoji : Unicode grapheme cluster of the emoji @@ -163,12 +273,11 @@ Depending on the type of the recipient(s) field this sends a reaction to one or Exceptions: Failure, InvalidNumber -sendGroupRemoteDeleteMessage(targetSentTimestamp, groupId) -> timestamp:: -* targetSentTimestamp : Long representing timestamp of the message to delete -* groupId : Byte array with base64 encoded group identifier -* timestamp : Long, can be used to identify the corresponding signal reply +sendReadReceipt(recipient, targetSentTimestamp) -> <>:: +* recipient : Phone number of a single recipient +* targetSentTimestamp : Array of Longs to identify the corresponding signal messages -Exceptions: Failure, GroupNotFound +Exceptions: Failure, UntrustedIdentity sendRemoteDeleteMessage(targetSentTimestamp, recipient) -> timestamp:: sendRemoteDeleteMessage(targetSentTimestamp, recipients) -> timestamp:: @@ -181,63 +290,58 @@ Depending on the type of the recipient(s) field this deletes a message with one Exceptions: Failure, InvalidNumber -getContactName(number) -> name:: -* number : Phone number -* name : Contact's name in local storage (from the master device for a linked account, or the one set with setContactName); if not set, contact's profile name is used +sendTyping(recipient, stop) -> <>:: +* recipient : Phone number of a single recipient +* targetSentTimestamp : True, if typing state should be stopped + +Exceptions: Failure, GroupNotFound, UntrustedIdentity + +setContactBlocked(number, block) -> <>:: +* number : Phone number affected by method +* block : false=remove block , true=blocked + +Messages from blocked numbers will no longer be forwarded via DBus. + +Exceptions: InvalidNumber setContactName(number,name<>) -> <>:: * number : Phone number * name : Name to be set in contacts (in local storage with signal-cli) -getGroupIds() -> groupList:: -groupList : Array of Byte arrays representing the internal group identifiers +Exceptions: InvalidNumber -All groups known are returned, regardless of their active or blocked status. To query that use isMember() and isGroupBlocked() - -getGroupName(groupId) -> groupName:: -groupName : The display name of the group -groupId : Byte array representing the internal group identifier - -Exceptions: None, if the group name is not found an empty string is returned - -getGroupMembers(groupId) -> members:: -members : String array with the phone numbers of all active members of a group -groupId : Byte array representing the internal group identifier - -Exceptions: None, if the group name is not found an empty array is returned +=== Other methods listNumbers() -> numbers:: -numbers : String array of all known numbers +* numbers : String array of all known numbers This is a concatenated list of all defined contacts as well of profiles known (e.g. peer group members or sender of received messages) -getContactNumber(name) -> numbers:: -* numbers : Array of phone number -* name : Contact or profile name ("firstname lastname") +Exceptions: None -Searches contacts and known profiles for a given name and returns the list of all known numbers. May result in e.g. two entries if a contact and profile name is set. +sendNoteToSelfMessage(message, attachments) -> timestamp:: +* message : Text to send (can be UTF8) +* attachments : String array of filenames to send as attachments (passed as filename, so need to be readable by the user signal-cli is running under) +* timestamp : Can be used to identify the corresponding signal reply -isContactBlocked(number) -> state:: -* number : Phone number -* state : 1=blocked, 0=not blocked +Exceptions: Failure, AttachmentInvalid -Exceptions: None, for unknown numbers 0 (false) is returned +updateProfile(newName, about , aboutEmoji , avatar, remove) -> <>:: +* newName : New name for your own profile (empty if unchanged) +* about : About message for profile (empty if unchanged) +* aboutEmoji : Emoji for profile (empty if unchanged) +* avatar : Filename of avatar picture for profile (empty if unchanged) +* remove : Set to true if the existing avatar picture should be removed -isGroupBlocked(groupId) -> state:: -* groupId : Byte array representing the internal group identifier -* state : 1=blocked, 0=not blocked - -Exceptions: None, for unknown groups 0 (false) is returned +Exceptions: Failure version() -> version:: * version : Version string of signal-cli -isRegistred -> result:: -* result : Currently always returns 1=true - == Signals SyncMessageReceived (timestamp, sender, destination, groupId,message, attachments):: + The sync message is received when the user sends a message from a linked device. ReceiptReceived (timestamp, sender):: @@ -261,7 +365,7 @@ Send a text message (without attachment) to a contact:: dbus-send --print-reply --type=method_call --dest="org.asamk.Signal" /org/asamk/Signal org.asamk.Signal.sendMessage string:"Message text goes here" array:string: string:+123456789 Send a group message:: -dbus-send --session --print-reply --type=method_call --dest=org.asamk.Signal /org/asamk/Signal org.asamk.Signal.sendGroupMessage string:'The message goes here' array:string:'/path/to/attachmnt1','/path/to/attachmnt2' array:byte:139,22,72,247,116,32,170,104,205,164,207,21,248,77,185 +dbus-send --session --print-reply --type=method_call --dest=org.asamk.Signal /org/asamk/Signal org.asamk.Signal.sendGroupMessage string:'The message goes here' array:string:'/path/to/attachment1','/path/to/attachment2' array:byte:139,22,72,247,116,32,170,104,205,164,207,21,248,77,185 Print the group name corresponding to a groupId; the daemon runs on system bus, and was started without an explicit `-u USERNAME`:: dbus-send --system --print-reply --type=method_call --dest='org.asamk.Signal' /org/asamk/Signal/_1234567890 org.asamk.Signal.getGroupName array:byte:139,22,72,247,116,32,170,104,205,164,207,21,248,77,185 diff --git a/src/main/java/org/asamk/Signal.java b/src/main/java/org/asamk/Signal.java index 868de02b..1085b43a 100644 --- a/src/main/java/org/asamk/Signal.java +++ b/src/main/java/org/asamk/Signal.java @@ -41,6 +41,10 @@ public interface Signal extends DBusInterface { long targetSentTimestamp, byte[] groupId ) throws Error.Failure, Error.GroupNotFound, Error.InvalidGroupId; + long sendGroupRemoteDeleteMessage( + long targetSentTimestamp, String base64GroupId + ) throws Error.Failure, Error.GroupNotFound, Error.InvalidGroupId; + long sendMessageReaction( String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, String recipient ) throws Error.InvalidNumber, Error.Failure; @@ -59,10 +63,18 @@ public interface Signal extends DBusInterface { String message, List attachments, byte[] groupId ) throws Error.GroupNotFound, Error.Failure, Error.AttachmentInvalid, Error.InvalidGroupId; + long sendGroupMessage( + String message, List attachments, String base64GroupId + ) throws Error.GroupNotFound, Error.Failure, Error.AttachmentInvalid, Error.InvalidGroupId; + long sendGroupMessageReaction( String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, byte[] groupId ) throws Error.GroupNotFound, Error.Failure, Error.InvalidNumber, Error.InvalidGroupId; + long sendGroupMessageReaction( + String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, String base64GroupId + ) throws Error.GroupNotFound, Error.Failure, Error.InvalidNumber, Error.InvalidGroupId; + String getContactName(String number) throws Error.InvalidNumber; void setContactName(String number, String name) throws Error.InvalidNumber; @@ -71,16 +83,30 @@ public interface Signal extends DBusInterface { void setGroupBlocked(byte[] groupId, boolean blocked) throws Error.GroupNotFound, Error.InvalidGroupId; + void setGroupBlocked(String base64GroupId, boolean blocked) throws Error.GroupNotFound, Error.InvalidGroupId; + List getGroupIds(); + List getGroupIds(String dummy); + + List getGroupIdsBase64(); + String getGroupName(byte[] groupId) throws Error.InvalidGroupId; + String getGroupName(String base64GroupId) throws Error.InvalidGroupId, Error.Failure; + List getGroupMembers(byte[] groupId) throws Error.InvalidGroupId; + List getGroupMembers(String base64GroupId) throws Error.InvalidGroupId, Error.Failure; + byte[] updateGroup( byte[] groupId, String name, List members, String avatar ) throws Error.AttachmentInvalid, Error.Failure, Error.InvalidNumber, Error.GroupNotFound, Error.InvalidGroupId; + String updateGroup( + String base64GroupId, String name, List members, String avatar + ) throws Error.AttachmentInvalid, Error.Failure, Error.InvalidNumber, Error.GroupNotFound, Error.InvalidGroupId; + boolean isRegistered(); void updateProfile( @@ -95,12 +121,18 @@ public interface Signal extends DBusInterface { void quitGroup(final byte[] groupId) throws Error.GroupNotFound, Error.Failure, Error.InvalidGroupId; + void quitGroup(final String base64GroupId) throws Error.GroupNotFound, Error.Failure, Error.InvalidGroupId; + boolean isContactBlocked(final String number) throws Error.InvalidNumber; boolean isGroupBlocked(final byte[] groupId) throws Error.InvalidGroupId; + boolean isGroupBlocked(final String base64GroupId) throws Error.InvalidGroupId, Error.Failure; + boolean isMember(final byte[] groupId) throws Error.InvalidGroupId; + boolean isMember(final String base64GroupId) throws Error.InvalidGroupId, Error.Failure; + byte[] joinGroup(final String groupLink) throws Error.Failure; class MessageReceived extends DBusSignal { diff --git a/src/main/java/org/asamk/signal/dbus/DbusSignalImpl.java b/src/main/java/org/asamk/signal/dbus/DbusSignalImpl.java index 5e8fd432..2b5bfb78 100644 --- a/src/main/java/org/asamk/signal/dbus/DbusSignalImpl.java +++ b/src/main/java/org/asamk/signal/dbus/DbusSignalImpl.java @@ -10,14 +10,17 @@ import org.asamk.signal.manager.api.Message; import org.asamk.signal.manager.api.RecipientIdentifier; import org.asamk.signal.manager.api.TypingAction; import org.asamk.signal.manager.groups.GroupId; +import org.asamk.signal.manager.groups.GroupIdFormatException; import org.asamk.signal.manager.groups.GroupInviteLinkUrl; import org.asamk.signal.manager.groups.GroupNotFoundException; import org.asamk.signal.manager.groups.GroupSendingNotAllowedException; import org.asamk.signal.manager.groups.LastGroupAdminException; import org.asamk.signal.manager.groups.NotAGroupMemberException; +import org.asamk.signal.manager.storage.groups.GroupInfo; import org.asamk.signal.manager.storage.identities.IdentityInfo; import org.asamk.signal.util.ErrorUtils; import org.asamk.signal.util.Util; + import org.freedesktop.dbus.exceptions.DBusExecutionException; import org.whispersystems.libsignal.util.Pair; import org.whispersystems.libsignal.util.guava.Optional; @@ -29,6 +32,7 @@ import org.whispersystems.signalservice.api.util.InvalidNumberException; import java.io.File; import java.io.IOException; import java.util.ArrayList; +import java.util.Base64; import java.util.Collection; import java.util.HashSet; import java.util.List; @@ -113,6 +117,18 @@ public class DbusSignalImpl implements Signal { } } + @Override + public long sendGroupRemoteDeleteMessage( + final long targetSentTimestamp, final String base64GroupId + ) { + try { + byte[] groupId = GroupId.fromBase64(base64GroupId).serialize(); + return sendGroupRemoteDeleteMessage(targetSentTimestamp, groupId); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Invalid group id format: " + e.getMessage()); + } + } + @Override public long sendGroupRemoteDeleteMessage( final long targetSentTimestamp, final byte[] groupId @@ -228,6 +244,16 @@ public class DbusSignalImpl implements Signal { } } + @Override + public long sendGroupMessage(final String message, final List attachments, final String base64GroupId) { + try { + byte[] groupId = GroupId.fromBase64(base64GroupId).serialize(); + return sendGroupMessage(message, attachments, groupId); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Invalid group id format: " + e.getMessage()); + } + } + @Override public long sendGroupMessage(final String message, final List attachments, final byte[] groupId) { try { @@ -267,6 +293,22 @@ public class DbusSignalImpl implements Signal { } } + @Override + public long sendGroupMessageReaction( + final String emoji, + final boolean remove, + final String targetAuthor, + final long targetSentTimestamp, + final String base64GroupId + ) { + try { + byte[] groupId = GroupId.fromBase64(base64GroupId).serialize(); + return sendGroupMessageReaction(emoji, remove, targetAuthor, targetSentTimestamp, groupId); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Invalid group id format: " + e.getMessage()); + } + } + // Since contact names might be empty if not defined, also potentially return // the profile name @Override @@ -296,6 +338,16 @@ public class DbusSignalImpl implements Signal { } } + @Override + public void setGroupBlocked(final String base64GroupId, final boolean blocked) { + try { + byte[] groupId = GroupId.fromBase64(base64GroupId).serialize(); + setGroupBlocked(groupId, blocked); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Invalid group id format: " + e.getMessage()); + } + } + @Override public void setGroupBlocked(final byte[] groupId, final boolean blocked) { try { @@ -327,6 +379,76 @@ public class DbusSignalImpl implements Signal { } } + // To get the group Ids in base 64 format, either use the getGroupIdsBase64() method, or + // the getGroupIds(dummy) form, where dummy represents any string + @Override + public List getGroupIdsBase64() { + var groups = m.getGroups(); + var ids = new ArrayList(groups.size()); + for (var group : groups) { + ids.add(group.getGroupId().toBase64()); + } + return ids; + } + + @Override + public List getGroupIds(String dummy) { + var groups = m.getGroups(); + var ids = new ArrayList(groups.size()); + for (var group : groups) { + ids.add(group.getGroupId().toBase64()); + } + return ids; + } + + @Override + public String getGroupName(final String base64GroupId) { + byte[] groupId = null; + GroupInfo group = null; + try { + groupId = GroupId.fromBase64(base64GroupId).serialize(); + } catch (GroupIdFormatException e) { + throw new Error.Failure(e.getMessage()); + } + + try { + group = m.getGroup(getGroupId(groupId)); + + } catch (AssertionError e) { + throw new Error.Failure(e.getMessage()); + } + if (group == null) { + throw new Error.InvalidGroupId("GroupId is null."); + } else { + return group.getTitle(); + } + } + + @Override + public List getGroupMembers(final String base64GroupId) { + byte[] groupId = null; + try { + groupId = GroupId.fromBase64(base64GroupId).serialize(); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Invalid group id format: " + e.getMessage()); + } + GroupInfo group = null; + try { + group = m.getGroup(getGroupId(groupId)); + } catch (AssertionError e) { + throw new Error.Failure(e.getMessage()); + } + if (group == null) { + throw new Error.InvalidGroupId("GroupId is null."); + } else { + return group.getMembers() + .stream() + .map(m::resolveSignalServiceAddress) + .map(Util::getLegacyIdentifier) + .collect(Collectors.toList()); + } + } + @Override public List getGroupMembers(final byte[] groupId) { var group = m.getGroup(getGroupId(groupId)); @@ -341,6 +463,21 @@ public class DbusSignalImpl implements Signal { } } + @Override + public String updateGroup(String base64GroupId, String name, List members, String avatar) { + byte[] groupId = null; + if (!base64GroupId.isEmpty()) { + try { + groupId = GroupId.fromBase64(base64GroupId).serialize(); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Invalid group id format: " + e.getMessage()); + } + } + groupId = updateGroup(groupId, name, members, avatar); + + return Base64.getEncoder().encodeToString(groupId); + } + @Override public byte[] updateGroup(byte[] groupId, String name, List members, String avatar) { try { @@ -458,6 +595,17 @@ public class DbusSignalImpl implements Signal { return numbers; } + @Override + public void quitGroup(final String base64GroupId) { + byte [] groupId = null; + try { + groupId = GroupId.fromBase64(base64GroupId).serialize(); + quitGroup(groupId); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Incorrect format: " + e.getMessage()); + } + } + @Override public void quitGroup(final byte[] groupId) { var group = getGroupId(groupId); @@ -493,6 +641,27 @@ public class DbusSignalImpl implements Signal { return m.isContactBlocked(getSingleRecipientIdentifier(number, m.getUsername())); } + @Override + public boolean isGroupBlocked(final String base64GroupId) { + GroupInfo group = null; + byte [] groupId = null; + try { + groupId = GroupId.fromBase64(base64GroupId).serialize(); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Incorrect format: " + e.getMessage()); + } + try { + group = m.getGroup(getGroupId(groupId)); + } catch (AssertionError e) { + throw new Error.Failure(e.getMessage()); + } + if (group == null) { + throw new Error.InvalidGroupId("GroupId is null."); + } else { + return group.isBlocked(); + } + } + @Override public boolean isGroupBlocked(final byte[] groupId) { var group = m.getGroup(getGroupId(groupId)); @@ -503,6 +672,27 @@ public class DbusSignalImpl implements Signal { } } + @Override + public boolean isMember(final String base64GroupId) { + GroupInfo group = null; + byte[] groupId = null; + try { + groupId = GroupId.fromBase64(base64GroupId).serialize(); + } catch (GroupIdFormatException e) { + throw new Error.Failure("Incorrect format: " + e.getMessage()); + } + try { + group = m.getGroup(getGroupId(groupId)); + } catch (AssertionError e) { + throw new Error.Failure(e.getMessage()); + } + if (group == null) { + throw new Error.InvalidGroupId("GroupId is null."); + } else { + return group.isMember(m.getSelfRecipientId()); + } + } + @Override public boolean isMember(final byte[] groupId) { var group = m.getGroup(getGroupId(groupId));