session-ios/SessionMessagingKit/Protos/SessionProtos.proto

244 lines
6.5 KiB
Protocol Buffer
Raw Normal View History

2021-01-12 02:40:34 +01:00
// iOS - since we use a modern proto-compiler, we must specify the legacy proto format.
2020-11-05 04:56:15 +01:00
syntax = "proto2";
// iOS - package name determines class prefix
package SessionProtos;
message Envelope {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
enum Type {
2021-03-02 03:12:24 +01:00
SESSION_MESSAGE = 6;
CLOSED_GROUP_MESSAGE = 7;
2020-11-05 04:56:15 +01:00
}
// @required
2021-01-12 02:40:34 +01:00
required Type type = 1;
2020-11-05 04:56:15 +01:00
optional string source = 2;
2021-01-12 04:13:09 +01:00
optional uint32 sourceDevice = 7;
2020-11-05 04:56:15 +01:00
// @required
2021-03-02 03:12:24 +01:00
required uint64 timestamp = 5;
2021-01-12 02:40:34 +01:00
optional bytes content = 8;
2021-01-12 04:13:09 +01:00
optional uint64 serverTimestamp = 10;
2020-11-05 04:56:15 +01:00
}
message TypingMessage {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
enum Action {
STARTED = 0;
STOPPED = 1;
}
// @required
2021-03-02 03:12:24 +01:00
required uint64 timestamp = 1;
2020-11-05 04:56:15 +01:00
// @required
2021-03-02 03:12:24 +01:00
required Action action = 2;
2020-11-05 04:56:15 +01:00
}
2021-07-30 06:21:30 +02:00
message UnsendRequest {
// @required
required uint64 timestamp = 1;
// @required
required string author = 2;
}
2020-11-05 04:56:15 +01:00
message Content {
2021-03-02 04:10:11 +01:00
optional DataMessage dataMessage = 1;
optional ReceiptMessage receiptMessage = 5;
optional TypingMessage typingMessage = 6;
optional ConfigurationMessage configurationMessage = 7;
2021-06-01 07:05:16 +02:00
optional DataExtractionNotification dataExtractionNotification = 8;
2021-07-30 06:21:30 +02:00
optional UnsendRequest unsendRequest = 9;
2020-11-05 04:56:15 +01:00
}
message KeyPair {
// @required
required bytes publicKey = 1;
// @required
required bytes privateKey = 2;
}
2021-03-02 04:10:11 +01:00
message DataExtractionNotification {
enum Type {
SCREENSHOT = 1;
MEDIA_SAVED = 2; // timestamp
}
// @required
required Type type = 1;
optional uint64 timestamp = 2;
}
2020-11-05 04:56:15 +01:00
message DataMessage {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
enum Flags {
EXPIRATION_TIMER_UPDATE = 2;
}
message Quote {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
message QuotedAttachment {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
enum Flags {
VOICE_MESSAGE = 1;
}
optional string contentType = 1;
optional string fileName = 2;
optional AttachmentPointer thumbnail = 3;
optional uint32 flags = 4;
}
// @required
2021-03-02 03:12:24 +01:00
required uint64 id = 1;
2020-11-05 04:56:15 +01:00
// @required
2021-03-02 03:12:24 +01:00
required string author = 2;
2020-11-05 04:56:15 +01:00
optional string text = 3;
repeated QuotedAttachment attachments = 4;
}
message Preview {
// @required
2021-03-02 03:12:24 +01:00
required string url = 1;
2020-11-05 04:56:15 +01:00
optional string title = 2;
optional AttachmentPointer image = 3;
}
2021-01-12 02:40:34 +01:00
message LokiProfile {
2020-11-05 04:56:15 +01:00
optional string displayName = 1;
optional string profilePicture = 2;
}
2021-05-07 06:46:53 +02:00
message OpenGroupInvitation {
// @required
required string url = 1;
// @required
required string name = 3;
}
message ClosedGroupControlMessage {
enum Type {
2021-06-11 03:11:16 +02:00
NEW = 1; // publicKey, name, encryptionKeyPair, members, admins, expirationTimer
ENCRYPTION_KEY_PAIR = 3; // publicKey, wrappers
NAME_CHANGE = 4; // name
MEMBERS_ADDED = 5; // members
MEMBERS_REMOVED = 6; // members
MEMBER_LEFT = 7;
ENCRYPTION_KEY_PAIR_REQUEST = 8;
}
message KeyPairWrapper {
// @required
required bytes publicKey = 1; // The public key of the user the key pair is meant for
// @required
required bytes encryptedKeyPair = 2; // The encrypted key pair
}
// @required
required Type type = 1;
optional bytes publicKey = 2;
optional string name = 3;
optional KeyPair encryptionKeyPair = 4;
repeated bytes members = 5;
repeated bytes admins = 6;
repeated KeyPairWrapper wrappers = 7;
2021-06-11 03:11:16 +02:00
optional uint32 expirationTimer = 8;
}
optional string body = 1;
repeated AttachmentPointer attachments = 2;
optional GroupContext group = 3;
optional uint32 flags = 4;
optional uint32 expireTimer = 5;
optional bytes profileKey = 6;
optional uint64 timestamp = 7;
optional Quote quote = 8;
repeated Preview preview = 10;
optional LokiProfile profile = 101;
2021-05-07 06:53:28 +02:00
optional OpenGroupInvitation openGroupInvitation = 102;
optional ClosedGroupControlMessage closedGroupControlMessage = 104;
optional string syncTarget = 105;
2020-11-05 04:56:15 +01:00
}
message ConfigurationMessage {
message ClosedGroup {
optional bytes publicKey = 1;
optional string name = 2;
optional KeyPair encryptionKeyPair = 3;
repeated bytes members = 4;
repeated bytes admins = 5;
2021-06-21 02:51:07 +02:00
optional uint32 expirationTimer = 6;
}
2021-02-24 03:20:50 +01:00
message Contact {
// @required
required bytes publicKey = 1;
// @required
required string name = 2;
2021-02-24 03:20:50 +01:00
optional string profilePicture = 3;
optional bytes profileKey = 4;
}
repeated ClosedGroup closedGroups = 1;
repeated string openGroups = 2;
2021-02-23 01:08:01 +01:00
optional string displayName = 3;
optional string profilePicture = 4;
optional bytes profileKey = 5;
2021-02-24 03:20:50 +01:00
repeated Contact contacts = 6;
}
2020-11-05 04:56:15 +01:00
message ReceiptMessage {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
enum Type {
DELIVERY = 0;
READ = 1;
}
// @required
2021-03-02 03:12:24 +01:00
required Type type = 1;
2020-11-05 04:56:15 +01:00
repeated uint64 timestamp = 2;
}
message AttachmentPointer {
2021-01-12 02:40:34 +01:00
2020-11-05 04:56:15 +01:00
enum Flags {
VOICE_MESSAGE = 1;
}
// @required
2021-03-02 03:12:24 +01:00
required fixed64 id = 1;
2020-11-05 04:56:15 +01:00
optional string contentType = 2;
optional bytes key = 3;
optional uint32 size = 4;
optional bytes thumbnail = 5;
optional bytes digest = 6;
optional string fileName = 7;
optional uint32 flags = 8;
optional uint32 width = 9;
optional uint32 height = 10;
optional string caption = 11;
2021-01-12 02:40:34 +01:00
optional string url = 101;
2020-11-05 04:56:15 +01:00
}
2021-02-24 03:20:50 +01:00
message GroupContext {
enum Type {
UNKNOWN = 0;
UPDATE = 1;
DELIVER = 2;
QUIT = 3;
REQUEST_INFO = 4;
2020-11-05 04:56:15 +01:00
}
// @required
2021-02-24 03:20:50 +01:00
optional bytes id = 1;
// @required
optional Type type = 2;
optional string name = 3;
repeated string members = 4;
optional AttachmentPointer avatar = 5;
repeated string admins = 6;
2020-11-05 04:56:15 +01:00
}