2018-02-15 19:59:46 +00:00
|
|
|
// Source: https://github.com/signalapp/libsignal-service-java/blob/4684a49b2ed8f32be619e0d0eea423626b6cb2cb/protobuf/SignalService.proto
|
|
|
|
package signalservice;
|
2014-01-15 07:46:05 +00:00
|
|
|
|
2018-02-15 19:59:46 +00:00
|
|
|
option java_package = "org.whispersystems.signalservice.internal.push";
|
|
|
|
option java_outer_classname = "SignalServiceProtos";
|
2014-01-15 07:46:05 +00:00
|
|
|
|
2015-06-01 21:08:21 +00:00
|
|
|
message Envelope {
|
2014-03-12 19:52:19 +00:00
|
|
|
enum Type {
|
2015-02-26 01:43:04 +00:00
|
|
|
UNKNOWN = 0;
|
|
|
|
CIPHERTEXT = 1;
|
|
|
|
KEY_EXCHANGE = 2;
|
|
|
|
PREKEY_BUNDLE = 3;
|
|
|
|
RECEIPT = 5;
|
2014-03-12 19:52:19 +00:00
|
|
|
}
|
|
|
|
|
2015-06-01 21:08:21 +00:00
|
|
|
optional Type type = 1;
|
|
|
|
optional string source = 2;
|
|
|
|
optional uint32 sourceDevice = 7;
|
|
|
|
optional string relay = 3;
|
|
|
|
optional uint64 timestamp = 5;
|
|
|
|
optional bytes legacyMessage = 6; // Contains an encrypted DataMessage
|
|
|
|
optional bytes content = 8; // Contains an encrypted Content
|
|
|
|
}
|
2014-03-12 19:52:19 +00:00
|
|
|
|
2015-06-01 21:08:21 +00:00
|
|
|
message Content {
|
2018-02-15 19:59:46 +00:00
|
|
|
optional DataMessage dataMessage = 1;
|
|
|
|
optional SyncMessage syncMessage = 2;
|
|
|
|
optional CallMessage callMessage = 3;
|
|
|
|
optional NullMessage nullMessage = 4;
|
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
|
|
|
optional ReceiptMessage receiptMessage = 5;
|
|
|
|
}
|
|
|
|
|
2017-02-22 18:20:54 +00:00
|
|
|
message CallMessage {
|
|
|
|
message Offer {
|
|
|
|
optional uint64 id = 1;
|
|
|
|
optional string description = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Answer {
|
|
|
|
optional uint64 id = 1;
|
|
|
|
optional string description = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message IceUpdate {
|
|
|
|
optional uint64 id = 1;
|
|
|
|
optional string sdpMid = 2;
|
|
|
|
optional uint32 sdpMLineIndex = 3;
|
|
|
|
optional string sdp = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Busy {
|
|
|
|
optional uint64 id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Hangup {
|
|
|
|
optional uint64 id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
optional Offer offer = 1;
|
|
|
|
optional Answer answer = 2;
|
|
|
|
repeated IceUpdate iceUpdate = 3;
|
|
|
|
optional Hangup hangup = 4;
|
|
|
|
optional Busy busy = 5;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
2015-02-13 01:42:07 +00:00
|
|
|
|
2015-06-01 21:08:21 +00:00
|
|
|
message DataMessage {
|
2014-03-12 19:52:19 +00:00
|
|
|
enum Flags {
|
2018-02-15 19:59:46 +00:00
|
|
|
END_SESSION = 1;
|
2016-09-20 21:36:57 +00:00
|
|
|
EXPIRATION_TIMER_UPDATE = 2;
|
2017-09-11 16:50:35 +00:00
|
|
|
PROFILE_KEY_UPDATE = 4;
|
2014-01-15 07:46:05 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 01:42:07 +00:00
|
|
|
optional string body = 1;
|
|
|
|
repeated AttachmentPointer attachments = 2;
|
|
|
|
optional GroupContext group = 3;
|
|
|
|
optional uint32 flags = 4;
|
2016-09-20 21:36:57 +00:00
|
|
|
optional uint32 expireTimer = 5;
|
2017-09-11 16:50:35 +00:00
|
|
|
optional bytes profileKey = 6;
|
2018-02-15 19:59:46 +00:00
|
|
|
optional uint64 timestamp = 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
message NullMessage {
|
|
|
|
optional bytes padding = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ReceiptMessage {
|
|
|
|
enum Type {
|
|
|
|
DELIVERY = 0;
|
|
|
|
READ = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
optional Type type = 1;
|
|
|
|
repeated uint64 timestamp = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Verified {
|
|
|
|
enum State {
|
|
|
|
DEFAULT = 0;
|
|
|
|
VERIFIED = 1;
|
|
|
|
UNVERIFIED = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
optional string destination = 1;
|
|
|
|
optional bytes identityKey = 2;
|
|
|
|
optional State state = 3;
|
|
|
|
optional bytes nullMessage = 4;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message SyncMessage {
|
|
|
|
message Sent {
|
2017-06-08 22:57:25 +00:00
|
|
|
optional string destination = 1;
|
|
|
|
optional uint64 timestamp = 2;
|
|
|
|
optional DataMessage message = 3;
|
|
|
|
optional uint64 expirationStartTimestamp = 4;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Contacts {
|
2017-06-19 15:35:19 +00:00
|
|
|
optional AttachmentPointer blob = 1;
|
2018-02-15 19:59:46 +00:00
|
|
|
optional bool complete = 2 [default = false];
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
2015-06-22 21:45:42 +00:00
|
|
|
message Groups {
|
|
|
|
optional AttachmentPointer blob = 1;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 00:12:45 +00:00
|
|
|
message Blocked {
|
|
|
|
repeated string numbers = 1;
|
|
|
|
}
|
|
|
|
|
2015-06-19 22:34:41 +00:00
|
|
|
message Request {
|
|
|
|
enum Type {
|
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
|
|
|
UNKNOWN = 0;
|
|
|
|
CONTACTS = 1;
|
|
|
|
GROUPS = 2;
|
|
|
|
BLOCKED = 3;
|
|
|
|
CONFIGURATION = 4;
|
2015-06-19 22:34:41 +00:00
|
|
|
}
|
2017-06-08 22:57:25 +00:00
|
|
|
|
2015-06-19 22:34:41 +00:00
|
|
|
optional Type type = 1;
|
|
|
|
}
|
2017-06-08 22:57:25 +00:00
|
|
|
|
2016-02-20 00:28:08 +00:00
|
|
|
message Read {
|
|
|
|
optional string sender = 1;
|
|
|
|
optional uint64 timestamp = 2;
|
|
|
|
}
|
2015-06-19 22:34:41 +00:00
|
|
|
|
2018-02-15 19:59:46 +00:00
|
|
|
message Configuration {
|
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
|
|
|
optional bool readReceipts = 1;
|
|
|
|
}
|
|
|
|
|
2018-02-15 19:59:46 +00:00
|
|
|
optional Sent sent = 1;
|
|
|
|
optional Contacts contacts = 2;
|
|
|
|
optional Groups groups = 3;
|
|
|
|
optional Request request = 4;
|
|
|
|
repeated Read read = 5;
|
|
|
|
optional Blocked blocked = 6;
|
|
|
|
optional Verified verified = 7;
|
|
|
|
optional Configuration configuration = 9;
|
|
|
|
optional bytes padding = 8;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message AttachmentPointer {
|
2017-05-10 22:16:19 +00:00
|
|
|
enum Flags {
|
|
|
|
VOICE_MESSAGE = 1;
|
|
|
|
}
|
2017-06-08 22:57:25 +00:00
|
|
|
|
2015-06-01 21:08:21 +00:00
|
|
|
optional fixed64 id = 1;
|
|
|
|
optional string contentType = 2;
|
|
|
|
optional bytes key = 3;
|
2017-03-08 00:54:15 +00:00
|
|
|
optional uint32 size = 4;
|
|
|
|
optional bytes thumbnail = 5;
|
|
|
|
optional bytes digest = 6;
|
2017-04-18 18:26:05 +00:00
|
|
|
optional string fileName = 7;
|
2017-05-10 22:16:19 +00:00
|
|
|
optional uint32 flags = 8;
|
2018-02-15 19:59:46 +00:00
|
|
|
optional uint32 width = 9;
|
|
|
|
optional uint32 height = 10;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message GroupContext {
|
|
|
|
enum Type {
|
2017-06-08 22:59:36 +00:00
|
|
|
UNKNOWN = 0;
|
|
|
|
UPDATE = 1;
|
|
|
|
DELIVER = 2;
|
|
|
|
QUIT = 3;
|
|
|
|
REQUEST_INFO = 4;
|
2015-06-01 21:08:21 +00:00
|
|
|
}
|
|
|
|
optional bytes id = 1;
|
|
|
|
optional Type type = 2;
|
|
|
|
optional string name = 3;
|
|
|
|
repeated string members = 4;
|
|
|
|
optional AttachmentPointer avatar = 5;
|
|
|
|
}
|
|
|
|
|
2017-06-09 22:00:54 +00:00
|
|
|
message ContactDetails {
|
2017-06-09 21:58:55 +00:00
|
|
|
message Avatar {
|
|
|
|
optional string contentType = 1;
|
|
|
|
optional uint32 length = 2;
|
|
|
|
}
|
|
|
|
|
2018-01-30 02:14:39 +00:00
|
|
|
optional string number = 1;
|
|
|
|
optional string name = 2;
|
|
|
|
optional Avatar avatar = 3;
|
|
|
|
optional string color = 4;
|
|
|
|
optional Verified verified = 5;
|
|
|
|
optional bytes profileKey = 6;
|
|
|
|
optional bool blocked = 7;
|
|
|
|
optional uint32 expireTimer = 8;
|
2015-06-22 21:45:42 +00:00
|
|
|
}
|
|
|
|
|
2017-06-09 22:00:54 +00:00
|
|
|
message GroupDetails {
|
2017-06-09 21:58:55 +00:00
|
|
|
message Avatar {
|
|
|
|
optional string contentType = 1;
|
|
|
|
optional uint32 length = 2;
|
|
|
|
}
|
|
|
|
|
2018-01-30 02:14:39 +00:00
|
|
|
optional bytes id = 1;
|
|
|
|
optional string name = 2;
|
|
|
|
repeated string members = 3;
|
|
|
|
optional Avatar avatar = 4;
|
|
|
|
optional bool active = 5 [default = true];
|
|
|
|
optional uint32 expireTimer = 6;
|
2015-01-15 20:42:32 +00:00
|
|
|
}
|