mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-04 05:00:39 +00:00
base 64 helper functions for Dbus
implement alternate versions of commands that take a Group Id in the form of byte[] to permit passing a string in base 64 format. Methods affected: - getGroupIds - getGroupMembers - getGroupName - isGroupBlocked - isMember - quitGroup - sendGroupMessage - sendGroupMessageReaction - sendGroupRemoteDeleteMessage - setGroupBlocked - updateGroup Implement new helper function specifically for base 64 identifiers: - getGroupIdsBase64() Update and reorganize Dbus API documentation.
This commit is contained in:
parent
6c29d90503
commit
f69a7578db
4 changed files with 446 additions and 116 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
.gitignore
|
||||||
.gradle/
|
.gradle/
|
||||||
.idea/*
|
.idea/*
|
||||||
!.idea/codeStyles/
|
!.idea/codeStyles/
|
||||||
|
@ -11,3 +12,6 @@ local.properties
|
||||||
.settings/
|
.settings/
|
||||||
out/
|
out/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.asciidoctorconfig.adoc
|
||||||
|
patches/
|
||||||
|
signal-cli
|
||||||
|
|
|
@ -7,7 +7,7 @@ vim:set ts=4 sw=4 tw=82 noet:
|
||||||
|
|
||||||
== Name
|
== 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
|
== Synopsis
|
||||||
|
|
||||||
|
@ -29,53 +29,125 @@ method(arg1<type>, arg2<type>, ...) -> return<type>
|
||||||
|
|
||||||
Where <type> is according to DBus specification:
|
Where <type> is according to DBus specification:
|
||||||
|
|
||||||
|
* <a> : Array of ...
|
||||||
* <s> : String
|
* <s> : String
|
||||||
* <ay> : Byte Array
|
* <y> : Byte
|
||||||
* <aay> : Array of Byte Arrays
|
* <b> : Boolean (false|true)
|
||||||
* <as> : String Array
|
* <x> : Signed 64-bit integer (long)
|
||||||
* <ax> : Array of signed 64 bit integer
|
* <i> : Signed 32-bit integer (int)
|
||||||
* <b> : Boolean (0|1)
|
|
||||||
* <x> : Signed 64 bit integer
|
|
||||||
* <> : no return value
|
* <> : 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.
|
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 +<countrycode><regional number>
|
Phone numbers always have the format +<countrycode><regional number>
|
||||||
|
|
||||||
== 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<ay>, newName<s>, members<as>, avatar<s>) -> groupId<ay>::
|
link() -> deviceLinkUri<s>::
|
||||||
|
link(newDeviceName<s>) -> deviceLinkUri<s>::
|
||||||
|
* newDeviceName : Name to give new device (defaults to "cli" if no name is given)
|
||||||
|
* deviceLinkUri : URI of newly linked device
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
`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`
|
||||||
|
|
||||||
|
Exception: Failure
|
||||||
|
|
||||||
|
listAccounts() -> accountList<as>::
|
||||||
|
* accountList : Array of all attached accounts in DBus object path form
|
||||||
|
|
||||||
|
Exceptions: None
|
||||||
|
|
||||||
|
register(number<s>, voiceVerification<b>) -> <>::
|
||||||
|
* number : Phone number
|
||||||
|
* voiceVerification : true = use voice verification; false = use SMS verification
|
||||||
|
|
||||||
|
Exceptions: Failure, InvalidNumber, RequiresCaptcha
|
||||||
|
|
||||||
|
registerWithCaptcha(number<s>, voiceVerification<b>, captcha<s>) -> <>::
|
||||||
|
* number : Phone number
|
||||||
|
* voiceVerification : true = use voice verification; false = use SMS verification
|
||||||
|
* captcha : Captcha string
|
||||||
|
|
||||||
|
Exceptions: Failure, InvalidNumber, RequiresCaptcha
|
||||||
|
|
||||||
|
verify(number<s>, verificationCode<s>) -> <>::
|
||||||
|
* 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<s>, verificationCode<s>, pin<s>) -> <>::
|
||||||
|
* 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<s>::
|
||||||
|
* version : Version string of signal-cli
|
||||||
|
|
||||||
|
Exceptions: None
|
||||||
|
|
||||||
|
=== Methods for groups
|
||||||
|
|
||||||
|
getGroupIds() -> groupList<aay>::
|
||||||
|
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<s>) -> groupList<as>::
|
||||||
|
* 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<as>::
|
||||||
|
* groupList : Array of strings representing the internal group identifiers
|
||||||
|
|
||||||
|
Exceptions: None
|
||||||
|
|
||||||
|
getGroupMembers(groupId<ay>) -> members<as>::
|
||||||
|
getGroupMembers(base64GroupId<s>) -> members<as>::
|
||||||
|
* members : String array with the phone numbers of all active members of a group
|
||||||
* groupId : Byte array representing the internal group identifier
|
* groupId : Byte array representing the internal group identifier
|
||||||
* newName : New name of group (empty if unchanged)
|
* base64GroupId : String with base64 encoded group identifier
|
||||||
* members : String array of new members to be invited to group
|
|
||||||
* avatar : Filename of avatar picture to be set for group (empty if none)
|
|
||||||
|
|
||||||
Exceptions: AttachmentInvalid, Failure, InvalidNumber, GroupNotFound
|
Exceptions: InvalidGroupId, Failure
|
||||||
|
|
||||||
updateProfile(newName<s>, about <s>, aboutEmoji <s>, avatar<s>, remove<b>) -> <>::
|
getGroupName(groupId<ay>) -> groupName<s>::
|
||||||
* newName : New name for your own profile (empty if unchanged)
|
getGroupName(base64GroupId<s>) -> groupName<s>::
|
||||||
* about : About message for profile (empty if unchanged)
|
* groupName : The display name of the group
|
||||||
* 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
|
|
||||||
|
|
||||||
Exceptions: Failure
|
|
||||||
|
|
||||||
setContactBlocked(number<s>, block<b>) -> <>::
|
|
||||||
* number : Phone number affected by method
|
|
||||||
* block : 0=remove block , 1=blocked
|
|
||||||
|
|
||||||
Messages from blocked numbers will no longer be forwarded via DBus.
|
|
||||||
|
|
||||||
Exceptions: InvalidNumber
|
|
||||||
|
|
||||||
setGroupBlocked(groupId<ay>, block<b>) -> <>::
|
|
||||||
* groupId : Byte array representing the internal group identifier
|
* groupId : Byte array representing the internal group identifier
|
||||||
* block : 0=remove block , 1=blocked
|
* base64GroupId : String with base64 encoded group identifier
|
||||||
|
|
||||||
Messages from blocked groups will no longer be forwarded via DBus.
|
Exceptions: InvalidGroupId, Failure
|
||||||
|
|
||||||
Exceptions: GroupNotFound
|
isGroupBlocked(groupId<ay>) -> state<b>::
|
||||||
|
isGroupBlocked(base64GroupId<s>) -> state<b>::
|
||||||
|
* 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<ay>) -> active<b>::
|
||||||
|
isMember(base64GroupId<s>) -> active<b>::
|
||||||
|
* 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<s>) -> <>::
|
joinGroup(inviteURI<s>) -> <>::
|
||||||
* inviteURI : String starting with https://signal.group which is generated when you share a group link via Signal App
|
* inviteURI : String starting with https://signal.group which is generated when you share a group link via Signal App
|
||||||
|
@ -83,37 +155,98 @@ joinGroup(inviteURI<s>) -> <>::
|
||||||
Exceptions: Failure
|
Exceptions: Failure
|
||||||
|
|
||||||
quitGroup(groupId<ay>) -> <>::
|
quitGroup(groupId<ay>) -> <>::
|
||||||
|
quitGroup(base64GroupId<s>) -> <>::
|
||||||
* groupId : Byte array representing the internal group identifier
|
* 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()
|
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
|
Exceptions: GroupNotFound, Failure
|
||||||
|
|
||||||
isMember(groupId<ay>) -> active<b>::
|
sendGroupMessage(message<s>, attachments<as>, groupId<ay>) -> timestamp<x>::
|
||||||
|
sendGroupMessage(message<s>, attachments<as>, base64GroupId<s>) -> timestamp<x>::
|
||||||
|
* 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
|
* 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
|
||||||
|
|
||||||
Note that this method does not raise an Exception for a non-existing/unknown group but will simply return 0 (false)
|
Exceptions: GroupNotFound, Failure, AttachmentInvalid
|
||||||
|
|
||||||
|
sendGroupMessageReaction(emoji<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, groupId<ay>) -> timestamp<x>::
|
||||||
|
sendGroupMessageReaction(emoji<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, base64GroupId<s>) -> timestamp<x>::
|
||||||
|
* 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, InvalidNumber, GroupNotFound
|
||||||
|
|
||||||
|
sendGroupRemoteDeleteMessage(targetSentTimestamp<x>, groupId<ay>) -> timestamp<x>::
|
||||||
|
sendGroupRemoteDeleteMessage(targetSentTimestamp<x>, base64GroupId<s>) -> timestamp<x>::
|
||||||
|
* 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<ay>, block<b>) -> <>::
|
||||||
|
setGroupBlocked(base64GroupId<s>, block<b>) -> <>::
|
||||||
|
* 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<ay>, newName<s>, members<as>, avatar<s>) -> groupId<ay>::
|
||||||
|
updateGroup(base64GroupId<s>, newName<s>, members<as>, avatar<s>) -> base64GroupId<s>::
|
||||||
|
* 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<s>) -> name<s>::
|
||||||
|
* 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<s>) -> numbers<as>::
|
||||||
|
* 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<s>) -> state<b>::
|
||||||
|
* 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<b>::
|
||||||
|
* result : Currently always returns true
|
||||||
|
|
||||||
sendEndSessionMessage(recipients<as>) -> <>::
|
sendEndSessionMessage(recipients<as>) -> <>::
|
||||||
* recipients : Array of phone numbers
|
* recipients : Array of phone numbers
|
||||||
|
|
||||||
Exceptions: Failure, InvalidNumber, UntrustedIdentity
|
Exceptions: Failure, InvalidNumber, UntrustedIdentity
|
||||||
|
|
||||||
sendGroupMessage(message<s>, attachments<as>, groupId<ay>) -> timestamp<x>::
|
|
||||||
* 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
|
|
||||||
|
|
||||||
Exceptions: GroupNotFound, Failure, AttachmentInvalid
|
|
||||||
|
|
||||||
sendNoteToSelfMessage(message<s>, attachments<as>) -> timestamp<x>::
|
|
||||||
* 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
|
|
||||||
|
|
||||||
Exceptions: Failure, AttachmentInvalid
|
|
||||||
|
|
||||||
sendMessage(message<s>, attachments<as>, recipient<s>) -> timestamp<x>::
|
sendMessage(message<s>, attachments<as>, recipient<s>) -> timestamp<x>::
|
||||||
sendMessage(message<s>, attachments<as>, recipients<as>) -> timestamp<x>::
|
sendMessage(message<s>, attachments<as>, recipients<as>) -> timestamp<x>::
|
||||||
* message : Text to send (can be UTF8)
|
* message : Text to send (can be UTF8)
|
||||||
|
@ -126,29 +259,6 @@ Depending on the type of the recipient field this sends a message to one or mult
|
||||||
|
|
||||||
Exceptions: AttachmentInvalid, Failure, InvalidNumber, UntrustedIdentity
|
Exceptions: AttachmentInvalid, Failure, InvalidNumber, UntrustedIdentity
|
||||||
|
|
||||||
sendTyping(recipient<s>, stop<b>) -> <>::
|
|
||||||
* recipient : Phone number of a single recipient
|
|
||||||
* targetSentTimestamp : True, if typing state should be stopped
|
|
||||||
|
|
||||||
Exceptions: Failure, GroupNotFound, UntrustedIdentity
|
|
||||||
|
|
||||||
|
|
||||||
sendReadReceipt(recipient<s>, targetSentTimestamp<ax>) -> <>::
|
|
||||||
* recipient : Phone number of a single recipient
|
|
||||||
* targetSentTimestamp : Array of Longs to identify the corresponding signal messages
|
|
||||||
|
|
||||||
Exceptions: Failure, UntrustedIdentity
|
|
||||||
|
|
||||||
sendGroupMessageReaction(emoji<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, groupId<ay>) -> timestamp<x>::
|
|
||||||
* 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<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, recipient<s>) -> timestamp<x>::
|
sendMessageReaction(emoji<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, recipient<s>) -> timestamp<x>::
|
||||||
sendMessageReaction(emoji<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, recipients<as>) -> timestamp<x>::
|
sendMessageReaction(emoji<s>, remove<b>, targetAuthor<s>, targetSentTimestamp<x>, recipients<as>) -> timestamp<x>::
|
||||||
* emoji : Unicode grapheme cluster of the emoji
|
* 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
|
Exceptions: Failure, InvalidNumber
|
||||||
|
|
||||||
sendGroupRemoteDeleteMessage(targetSentTimestamp<x>, groupId<ay>) -> timestamp<x>::
|
sendReadReceipt(recipient<s>, targetSentTimestamp<ax>) -> <>::
|
||||||
* targetSentTimestamp : Long representing timestamp of the message to delete
|
* recipient : Phone number of a single recipient
|
||||||
* groupId : Byte array with base64 encoded group identifier
|
* targetSentTimestamp : Array of Longs to identify the corresponding signal messages
|
||||||
* timestamp : Long, can be used to identify the corresponding signal reply
|
|
||||||
|
|
||||||
Exceptions: Failure, GroupNotFound
|
Exceptions: Failure, UntrustedIdentity
|
||||||
|
|
||||||
sendRemoteDeleteMessage(targetSentTimestamp<x>, recipient<s>) -> timestamp<x>::
|
sendRemoteDeleteMessage(targetSentTimestamp<x>, recipient<s>) -> timestamp<x>::
|
||||||
sendRemoteDeleteMessage(targetSentTimestamp<x>, recipients<as>) -> timestamp<x>::
|
sendRemoteDeleteMessage(targetSentTimestamp<x>, recipients<as>) -> timestamp<x>::
|
||||||
|
@ -181,63 +290,58 @@ Depending on the type of the recipient(s) field this deletes a message with one
|
||||||
|
|
||||||
Exceptions: Failure, InvalidNumber
|
Exceptions: Failure, InvalidNumber
|
||||||
|
|
||||||
getContactName(number<s>) -> name<s>::
|
sendTyping(recipient<s>, stop<b>) -> <>::
|
||||||
* number : Phone number
|
* recipient : Phone number of a single recipient
|
||||||
* 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
|
* targetSentTimestamp : True, if typing state should be stopped
|
||||||
|
|
||||||
|
Exceptions: Failure, GroupNotFound, UntrustedIdentity
|
||||||
|
|
||||||
|
setContactBlocked(number<s>, block<b>) -> <>::
|
||||||
|
* 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<s>,name<>) -> <>::
|
setContactName(number<s>,name<>) -> <>::
|
||||||
* number : Phone number
|
* number : Phone number
|
||||||
* name : Name to be set in contacts (in local storage with signal-cli)
|
* name : Name to be set in contacts (in local storage with signal-cli)
|
||||||
|
|
||||||
getGroupIds() -> groupList<aay>::
|
Exceptions: InvalidNumber
|
||||||
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()
|
=== Other methods
|
||||||
|
|
||||||
getGroupName(groupId<ay>) -> groupName<s>::
|
|
||||||
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<ay>) -> members<as>::
|
|
||||||
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
|
|
||||||
|
|
||||||
listNumbers() -> numbers<as>::
|
listNumbers() -> numbers<as>::
|
||||||
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)
|
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<s>) -> numbers<as>::
|
Exceptions: None
|
||||||
* numbers : Array of phone number
|
|
||||||
* 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.
|
sendNoteToSelfMessage(message<s>, attachments<as>) -> timestamp<x>::
|
||||||
|
* 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<s>) -> state<b>::
|
Exceptions: Failure, AttachmentInvalid
|
||||||
* number : Phone number
|
|
||||||
* state : 1=blocked, 0=not blocked
|
|
||||||
|
|
||||||
Exceptions: None, for unknown numbers 0 (false) is returned
|
updateProfile(newName<s>, about <s>, aboutEmoji <s>, avatar<s>, remove<b>) -> <>::
|
||||||
|
* 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<ay>) -> state<b>::
|
Exceptions: Failure
|
||||||
* groupId : Byte array representing the internal group identifier
|
|
||||||
* state : 1=blocked, 0=not blocked
|
|
||||||
|
|
||||||
Exceptions: None, for unknown groups 0 (false) is returned
|
|
||||||
|
|
||||||
version() -> version<s>::
|
version() -> version<s>::
|
||||||
* version : Version string of signal-cli
|
* version : Version string of signal-cli
|
||||||
|
|
||||||
isRegistred -> result<b>::
|
|
||||||
* result : Currently always returns 1=true
|
|
||||||
|
|
||||||
== Signals
|
== Signals
|
||||||
|
|
||||||
SyncMessageReceived (timestamp<x>, sender<s>, destination<s>, groupId<ay>,message<s>, attachments<as>)::
|
SyncMessageReceived (timestamp<x>, sender<s>, destination<s>, groupId<ay>,message<s>, attachments<as>)::
|
||||||
|
|
||||||
The sync message is received when the user sends a message from a linked device.
|
The sync message is received when the user sends a message from a linked device.
|
||||||
|
|
||||||
ReceiptReceived (timestamp<x>, sender<s>)::
|
ReceiptReceived (timestamp<x>, sender<s>)::
|
||||||
|
@ -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
|
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::
|
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`::
|
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
|
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
|
||||||
|
|
|
@ -41,6 +41,10 @@ public interface Signal extends DBusInterface {
|
||||||
long targetSentTimestamp, byte[] groupId
|
long targetSentTimestamp, byte[] groupId
|
||||||
) throws Error.Failure, Error.GroupNotFound, Error.InvalidGroupId;
|
) throws Error.Failure, Error.GroupNotFound, Error.InvalidGroupId;
|
||||||
|
|
||||||
|
long sendGroupRemoteDeleteMessage(
|
||||||
|
long targetSentTimestamp, String base64GroupId
|
||||||
|
) throws Error.Failure, Error.GroupNotFound, Error.InvalidGroupId;
|
||||||
|
|
||||||
long sendMessageReaction(
|
long sendMessageReaction(
|
||||||
String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, String recipient
|
String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, String recipient
|
||||||
) throws Error.InvalidNumber, Error.Failure;
|
) throws Error.InvalidNumber, Error.Failure;
|
||||||
|
@ -59,10 +63,18 @@ public interface Signal extends DBusInterface {
|
||||||
String message, List<String> attachments, byte[] groupId
|
String message, List<String> attachments, byte[] groupId
|
||||||
) throws Error.GroupNotFound, Error.Failure, Error.AttachmentInvalid, Error.InvalidGroupId;
|
) throws Error.GroupNotFound, Error.Failure, Error.AttachmentInvalid, Error.InvalidGroupId;
|
||||||
|
|
||||||
|
long sendGroupMessage(
|
||||||
|
String message, List<String> attachments, String base64GroupId
|
||||||
|
) throws Error.GroupNotFound, Error.Failure, Error.AttachmentInvalid, Error.InvalidGroupId;
|
||||||
|
|
||||||
long sendGroupMessageReaction(
|
long sendGroupMessageReaction(
|
||||||
String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, byte[] groupId
|
String emoji, boolean remove, String targetAuthor, long targetSentTimestamp, byte[] groupId
|
||||||
) throws Error.GroupNotFound, Error.Failure, Error.InvalidNumber, Error.InvalidGroupId;
|
) 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;
|
String getContactName(String number) throws Error.InvalidNumber;
|
||||||
|
|
||||||
void setContactName(String number, String name) 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(byte[] groupId, boolean blocked) throws Error.GroupNotFound, Error.InvalidGroupId;
|
||||||
|
|
||||||
|
void setGroupBlocked(String base64GroupId, boolean blocked) throws Error.GroupNotFound, Error.InvalidGroupId;
|
||||||
|
|
||||||
List<byte[]> getGroupIds();
|
List<byte[]> getGroupIds();
|
||||||
|
|
||||||
|
List<String> getGroupIds(String dummy);
|
||||||
|
|
||||||
|
List<String> getGroupIdsBase64();
|
||||||
|
|
||||||
String getGroupName(byte[] groupId) throws Error.InvalidGroupId;
|
String getGroupName(byte[] groupId) throws Error.InvalidGroupId;
|
||||||
|
|
||||||
|
String getGroupName(String base64GroupId) throws Error.InvalidGroupId, Error.Failure;
|
||||||
|
|
||||||
List<String> getGroupMembers(byte[] groupId) throws Error.InvalidGroupId;
|
List<String> getGroupMembers(byte[] groupId) throws Error.InvalidGroupId;
|
||||||
|
|
||||||
|
List<String> getGroupMembers(String base64GroupId) throws Error.InvalidGroupId, Error.Failure;
|
||||||
|
|
||||||
byte[] updateGroup(
|
byte[] updateGroup(
|
||||||
byte[] groupId, String name, List<String> members, String avatar
|
byte[] groupId, String name, List<String> members, String avatar
|
||||||
) throws Error.AttachmentInvalid, Error.Failure, Error.InvalidNumber, Error.GroupNotFound, Error.InvalidGroupId;
|
) throws Error.AttachmentInvalid, Error.Failure, Error.InvalidNumber, Error.GroupNotFound, Error.InvalidGroupId;
|
||||||
|
|
||||||
|
String updateGroup(
|
||||||
|
String base64GroupId, String name, List<String> members, String avatar
|
||||||
|
) throws Error.AttachmentInvalid, Error.Failure, Error.InvalidNumber, Error.GroupNotFound, Error.InvalidGroupId;
|
||||||
|
|
||||||
boolean isRegistered();
|
boolean isRegistered();
|
||||||
|
|
||||||
void updateProfile(
|
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 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 isContactBlocked(final String number) throws Error.InvalidNumber;
|
||||||
|
|
||||||
boolean isGroupBlocked(final byte[] groupId) throws Error.InvalidGroupId;
|
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 byte[] groupId) throws Error.InvalidGroupId;
|
||||||
|
|
||||||
|
boolean isMember(final String base64GroupId) throws Error.InvalidGroupId, Error.Failure;
|
||||||
|
|
||||||
byte[] joinGroup(final String groupLink) throws Error.Failure;
|
byte[] joinGroup(final String groupLink) throws Error.Failure;
|
||||||
|
|
||||||
class MessageReceived extends DBusSignal {
|
class MessageReceived extends DBusSignal {
|
||||||
|
|
|
@ -10,14 +10,17 @@ import org.asamk.signal.manager.api.Message;
|
||||||
import org.asamk.signal.manager.api.RecipientIdentifier;
|
import org.asamk.signal.manager.api.RecipientIdentifier;
|
||||||
import org.asamk.signal.manager.api.TypingAction;
|
import org.asamk.signal.manager.api.TypingAction;
|
||||||
import org.asamk.signal.manager.groups.GroupId;
|
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.GroupInviteLinkUrl;
|
||||||
import org.asamk.signal.manager.groups.GroupNotFoundException;
|
import org.asamk.signal.manager.groups.GroupNotFoundException;
|
||||||
import org.asamk.signal.manager.groups.GroupSendingNotAllowedException;
|
import org.asamk.signal.manager.groups.GroupSendingNotAllowedException;
|
||||||
import org.asamk.signal.manager.groups.LastGroupAdminException;
|
import org.asamk.signal.manager.groups.LastGroupAdminException;
|
||||||
import org.asamk.signal.manager.groups.NotAGroupMemberException;
|
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.manager.storage.identities.IdentityInfo;
|
||||||
import org.asamk.signal.util.ErrorUtils;
|
import org.asamk.signal.util.ErrorUtils;
|
||||||
import org.asamk.signal.util.Util;
|
import org.asamk.signal.util.Util;
|
||||||
|
|
||||||
import org.freedesktop.dbus.exceptions.DBusExecutionException;
|
import org.freedesktop.dbus.exceptions.DBusExecutionException;
|
||||||
import org.whispersystems.libsignal.util.Pair;
|
import org.whispersystems.libsignal.util.Pair;
|
||||||
import org.whispersystems.libsignal.util.guava.Optional;
|
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.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Base64;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
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
|
@Override
|
||||||
public long sendGroupRemoteDeleteMessage(
|
public long sendGroupRemoteDeleteMessage(
|
||||||
final long targetSentTimestamp, final byte[] groupId
|
final long targetSentTimestamp, final byte[] groupId
|
||||||
|
@ -228,6 +244,16 @@ public class DbusSignalImpl implements Signal {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long sendGroupMessage(final String message, final List<String> 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
|
@Override
|
||||||
public long sendGroupMessage(final String message, final List<String> attachments, final byte[] groupId) {
|
public long sendGroupMessage(final String message, final List<String> attachments, final byte[] groupId) {
|
||||||
try {
|
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
|
// Since contact names might be empty if not defined, also potentially return
|
||||||
// the profile name
|
// the profile name
|
||||||
@Override
|
@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
|
@Override
|
||||||
public void setGroupBlocked(final byte[] groupId, final boolean blocked) {
|
public void setGroupBlocked(final byte[] groupId, final boolean blocked) {
|
||||||
try {
|
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<String> getGroupIdsBase64() {
|
||||||
|
var groups = m.getGroups();
|
||||||
|
var ids = new ArrayList<String>(groups.size());
|
||||||
|
for (var group : groups) {
|
||||||
|
ids.add(group.getGroupId().toBase64());
|
||||||
|
}
|
||||||
|
return ids;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> getGroupIds(String dummy) {
|
||||||
|
var groups = m.getGroups();
|
||||||
|
var ids = new ArrayList<String>(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<String> 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
|
@Override
|
||||||
public List<String> getGroupMembers(final byte[] groupId) {
|
public List<String> getGroupMembers(final byte[] groupId) {
|
||||||
var group = m.getGroup(getGroupId(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<String> 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
|
@Override
|
||||||
public byte[] updateGroup(byte[] groupId, String name, List<String> members, String avatar) {
|
public byte[] updateGroup(byte[] groupId, String name, List<String> members, String avatar) {
|
||||||
try {
|
try {
|
||||||
|
@ -458,6 +595,17 @@ public class DbusSignalImpl implements Signal {
|
||||||
return numbers;
|
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
|
@Override
|
||||||
public void quitGroup(final byte[] groupId) {
|
public void quitGroup(final byte[] groupId) {
|
||||||
var group = getGroupId(groupId);
|
var group = getGroupId(groupId);
|
||||||
|
@ -493,6 +641,27 @@ public class DbusSignalImpl implements Signal {
|
||||||
return m.isContactBlocked(getSingleRecipientIdentifier(number, m.getUsername()));
|
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
|
@Override
|
||||||
public boolean isGroupBlocked(final byte[] groupId) {
|
public boolean isGroupBlocked(final byte[] groupId) {
|
||||||
var group = m.getGroup(getGroupId(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
|
@Override
|
||||||
public boolean isMember(final byte[] groupId) {
|
public boolean isMember(final byte[] groupId) {
|
||||||
var group = m.getGroup(getGroupId(groupId));
|
var group = m.getGroup(getGroupId(groupId));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue