2022-03-04 21:14:52 +00:00
|
|
|
// Copyright 2020-2022 Signal Messenger, LLC
|
2021-07-20 20:18:35 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-07-07 00:56:56 +00:00
|
|
|
package signalservice;
|
|
|
|
|
|
|
|
option java_package = "org.whispersystems.signalservice.internal.storage";
|
|
|
|
option java_outer_classname = "SignalStorageProtos";
|
|
|
|
|
|
|
|
message StorageManifest {
|
|
|
|
optional uint64 version = 1;
|
|
|
|
optional bytes value = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message StorageItem {
|
|
|
|
optional bytes key = 1;
|
|
|
|
optional bytes value = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message StorageItems {
|
|
|
|
repeated StorageItem items = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ReadOperation {
|
|
|
|
repeated bytes readKey = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message WriteOperation {
|
|
|
|
optional StorageManifest manifest = 1;
|
|
|
|
repeated StorageItem insertItem = 2;
|
|
|
|
repeated bytes deleteKey = 3;
|
|
|
|
optional bool clearAll = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ManifestRecord {
|
|
|
|
message Identifier {
|
|
|
|
enum Type {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
CONTACT = 1;
|
|
|
|
GROUPV1 = 2;
|
|
|
|
GROUPV2 = 3;
|
|
|
|
ACCOUNT = 4;
|
2022-07-01 00:52:03 +00:00
|
|
|
STORY_DISTRIBUTION_LIST = 5;
|
2022-08-03 17:10:49 +00:00
|
|
|
STICKER_PACK = 6;
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
optional bytes raw = 1;
|
|
|
|
optional Type type = 2;
|
|
|
|
}
|
|
|
|
|
2022-05-25 19:20:45 +00:00
|
|
|
optional uint64 version = 1;
|
|
|
|
optional uint32 sourceDevice = 3;
|
|
|
|
repeated Identifier keys = 2;
|
|
|
|
// Next ID: 4
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message StorageRecord {
|
|
|
|
oneof record {
|
|
|
|
ContactRecord contact = 1;
|
|
|
|
GroupV1Record groupV1 = 2;
|
|
|
|
GroupV2Record groupV2 = 3;
|
|
|
|
AccountRecord account = 4;
|
2022-07-01 00:52:03 +00:00
|
|
|
StoryDistributionListRecord storyDistributionList = 5;
|
2022-08-03 17:10:49 +00:00
|
|
|
StickerPackRecord stickerPack = 6;
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message ContactRecord {
|
|
|
|
enum IdentityState {
|
2022-09-19 18:47:49 +00:00
|
|
|
DEFAULT = 0;
|
|
|
|
VERIFIED = 1;
|
2020-07-07 00:56:56 +00:00
|
|
|
UNVERIFIED = 2;
|
|
|
|
}
|
|
|
|
|
2022-09-19 18:47:49 +00:00
|
|
|
optional string serviceUuid = 1;
|
|
|
|
optional string serviceE164 = 2;
|
|
|
|
optional string pni = 15;
|
|
|
|
optional bytes profileKey = 3;
|
|
|
|
optional bytes identityKey = 4;
|
|
|
|
optional IdentityState identityState = 5;
|
|
|
|
optional string givenName = 6;
|
|
|
|
optional string familyName = 7;
|
|
|
|
optional string username = 8;
|
|
|
|
optional bool blocked = 9;
|
|
|
|
optional bool whitelisted = 10;
|
|
|
|
optional bool archived = 11;
|
|
|
|
optional bool markedUnread = 12;
|
|
|
|
optional uint64 mutedUntilTimestamp = 13;
|
|
|
|
optional bool hideStory = 14;
|
|
|
|
optional uint64 unregisteredAtTimestamp = 16;
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message GroupV1Record {
|
2021-04-09 16:19:38 +00:00
|
|
|
optional bytes id = 1;
|
|
|
|
optional bool blocked = 2;
|
|
|
|
optional bool whitelisted = 3;
|
|
|
|
optional bool archived = 4;
|
|
|
|
optional bool markedUnread = 5;
|
|
|
|
optional uint64 mutedUntilTimestamp = 6;
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message GroupV2Record {
|
2021-08-05 12:35:33 +00:00
|
|
|
optional bytes masterKey = 1;
|
|
|
|
optional bool blocked = 2;
|
|
|
|
optional bool whitelisted = 3;
|
|
|
|
optional bool archived = 4;
|
|
|
|
optional bool markedUnread = 5;
|
|
|
|
optional uint64 mutedUntilTimestamp = 6;
|
|
|
|
optional bool dontNotifyForMentionsIfMuted = 7;
|
2022-03-04 21:14:52 +00:00
|
|
|
optional bool hideStory = 8;
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message AccountRecord {
|
2021-04-05 16:03:27 +00:00
|
|
|
enum PhoneNumberSharingMode {
|
|
|
|
EVERYBODY = 0;
|
|
|
|
CONTACTS_ONLY = 1;
|
|
|
|
NOBODY = 2;
|
|
|
|
}
|
|
|
|
|
2020-09-29 22:07:03 +00:00
|
|
|
message PinnedConversation {
|
|
|
|
message Contact {
|
|
|
|
optional string uuid = 1;
|
|
|
|
optional string e164 = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
oneof identifier {
|
|
|
|
Contact contact = 1;
|
|
|
|
bytes legacyGroupId = 3;
|
|
|
|
bytes groupMasterKey = 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-05 16:03:27 +00:00
|
|
|
optional bytes profileKey = 1;
|
|
|
|
optional string givenName = 2;
|
|
|
|
optional string familyName = 3;
|
|
|
|
optional string avatarUrl = 4;
|
|
|
|
optional bool noteToSelfArchived = 5;
|
|
|
|
optional bool readReceipts = 6;
|
|
|
|
optional bool sealedSenderIndicators = 7;
|
|
|
|
optional bool typingIndicators = 8;
|
|
|
|
optional bool proxiedLinkPreviews = 9;
|
|
|
|
optional bool noteToSelfMarkedUnread = 10;
|
|
|
|
optional bool linkPreviews = 11;
|
|
|
|
optional PhoneNumberSharingMode phoneNumberSharingMode = 12;
|
|
|
|
optional bool notDiscoverableByPhoneNumber = 13;
|
|
|
|
repeated PinnedConversation pinnedConversations = 14;
|
2022-01-25 17:44:45 +00:00
|
|
|
optional bool preferContactAvatars = 15;
|
2021-06-01 20:45:43 +00:00
|
|
|
optional uint32 universalExpireTimer = 17;
|
2021-05-19 16:14:35 +00:00
|
|
|
optional bool primarySendsSms = 18;
|
2021-08-05 23:34:49 +00:00
|
|
|
optional string e164 = 19;
|
2021-09-15 18:59:51 +00:00
|
|
|
repeated string preferredReactionEmoji = 20;
|
2021-11-30 16:29:57 +00:00
|
|
|
optional bytes subscriberId = 21;
|
|
|
|
optional string subscriberCurrencyCode = 22;
|
|
|
|
optional bool displayBadgesOnProfile = 23;
|
2022-05-25 20:44:05 +00:00
|
|
|
optional bool keepMutedChatsArchived = 25;
|
2022-09-07 18:31:13 +00:00
|
|
|
optional bool hasSetMyStoriesPrivacy = 26;
|
2020-07-07 00:56:56 +00:00
|
|
|
}
|
2022-07-01 00:52:03 +00:00
|
|
|
|
|
|
|
message StoryDistributionListRecord {
|
|
|
|
optional bytes identifier = 1;
|
|
|
|
optional string name = 2;
|
|
|
|
repeated string recipientUuids = 3;
|
|
|
|
optional uint64 deletedAtTimestamp = 4;
|
|
|
|
optional bool allowsReplies = 5;
|
|
|
|
optional bool isBlockList = 6;
|
|
|
|
}
|
2022-08-03 17:10:49 +00:00
|
|
|
|
|
|
|
message StickerPackRecord {
|
|
|
|
optional bytes packId = 1; // 16 bytes
|
|
|
|
optional bytes packKey = 2; // 32 bytes, used to derive the AES-256 key
|
|
|
|
// aesKey = HKDF(
|
|
|
|
// input = packKey,
|
|
|
|
// salt = 32 zero bytes,
|
|
|
|
// info = "Sticker Pack"
|
|
|
|
// )
|
|
|
|
optional uint32 position = 3; // When displayed sticker packs should be first sorted
|
|
|
|
// in descending order by zero-based `position` and
|
|
|
|
// then by ascending `packId` (lexicographically,
|
|
|
|
// packId can be treated as a hex string).
|
|
|
|
// When installing a sticker pack the client should find
|
|
|
|
// the maximum `position` among currently known stickers
|
|
|
|
// and use `max_position + 1` as the value for the new
|
|
|
|
// `position`.
|
|
|
|
optional uint64 deletedAtTimestamp = 4; // Timestamp in milliseconds. When present and
|
|
|
|
// non-zero - `packKey` and `position` should
|
|
|
|
// be unset
|
|
|
|
}
|