veilidchat/lib/proto/veilidchat.proto

243 lines
8.0 KiB
Protocol Buffer
Raw Normal View History

2023-07-08 10:38:23 -04:00
syntax = "proto3";
2023-09-26 18:46:02 -04:00
package veilidchat;
2023-07-08 10:38:23 -04:00
2023-09-26 18:46:02 -04:00
import "veilid.proto";
import "dht.proto";
2023-07-08 10:38:23 -04:00
// AttachmentKind
// Enumeration of well-known attachment types
enum AttachmentKind {
ATTACHMENT_KIND_UNSPECIFIED = 0;
ATTACHMENT_KIND_FILE = 1;
ATTACHMENT_KIND_IMAGE = 2;
}
// A single attachment
message Attachment {
// Type of the data
AttachmentKind kind = 1;
// MIME type of the data
string mime = 2;
// Title or filename
string name = 3;
// Pointer to the data content
2023-09-26 18:46:02 -04:00
dht.DataReference content = 4;
2023-07-08 10:38:23 -04:00
// Author signature over all attachment fields and content fields and bytes
2023-09-26 18:46:02 -04:00
veilid.Signature signature = 5;
2023-07-08 10:38:23 -04:00
}
// A single message as part of a series of messages
message Message {
// Author of the message
2023-09-26 18:46:02 -04:00
veilid.TypedKey author = 1;
2023-07-08 10:38:23 -04:00
// Time the message was sent (us since epoch)
uint64 timestamp = 2;
// Text of the message
string text = 3;
// Author signature over all of the fields and attachment signatures
2023-09-26 18:46:02 -04:00
veilid.Signature signature = 4;
2023-07-08 10:38:23 -04:00
// Attachments on the message
repeated Attachment attachments = 5;
}
2024-03-24 12:13:27 -04:00
// The means of direct communications that is synchronized between
// two users. Visible and encrypted for the other party.
// Includes communications for:
// * Profile changes
// * Identity changes
// * 1-1 chat messages
2023-07-08 10:38:23 -04:00
//
// DHT Schema: SMPL(0,1,[identityPublicKey])
// DHT Key (UnicastOutbox): localConversation
// DHT Secret: None
// Encryption: DH(IdentityA, IdentityB)
message Conversation {
// Profile to publish to friend
Profile profile = 1;
// Identity master (JSON) to publish to friend
2023-08-05 23:58:13 -04:00
string identity_master_json = 2;
2023-08-06 15:33:40 -04:00
// Messages DHTLog (xxx for now DHTShortArray)
2023-09-26 18:46:02 -04:00
veilid.TypedKey messages = 3;
2023-07-08 10:38:23 -04:00
}
// A record of a contact that has accepted a contact invitation
// Contains a copy of the most recent remote profile as well as
// a locally edited profile.
// Contains a copy of the most recent identity from the contact's
// Master identity dht key
//
// Stored in ContactList DHTList
message Contact {
// Friend's profile as locally edited
Profile edited_profile = 1;
// Copy of friend's profile from remote conversation
Profile remote_profile = 2;
2023-08-05 23:58:13 -04:00
// Copy of friend's IdentityMaster in JSON from remote conversation
string identity_master_json = 3;
// Copy of friend's most recent identity public key from their identityMaster
2023-09-26 18:46:02 -04:00
veilid.TypedKey identity_public_key = 4;
2023-07-08 10:38:23 -04:00
// Remote conversation key to sync from friend
2023-09-26 18:46:02 -04:00
veilid.TypedKey remote_conversation_record_key = 5;
2023-07-08 10:38:23 -04:00
// Our conversation key for friend to sync
2023-09-26 18:46:02 -04:00
veilid.TypedKey local_conversation_record_key = 6;
2023-07-08 10:38:23 -04:00
// Show availability
2023-08-05 23:58:13 -04:00
bool show_availability = 7;
2023-07-08 10:38:23 -04:00
}
2023-07-25 01:04:34 -04:00
// Contact availability
2023-07-08 10:38:23 -04:00
enum Availability {
AVAILABILITY_UNSPECIFIED = 0;
AVAILABILITY_OFFLINE = 1;
AVAILABILITY_FREE = 2;
AVAILABILITY_BUSY = 3;
AVAILABILITY_AWAY = 4;
}
// Publicly shared profile information for both contacts and accounts
// Contains:
// Name - Friendly name
2023-09-28 10:06:22 -04:00
// Pronouns - Pronouns of user
2023-07-08 10:38:23 -04:00
// Icon - Little picture to represent user in contact list
message Profile {
// Friendy name
string name = 1;
2023-09-28 10:06:22 -04:00
// Pronouns of user
string pronouns = 2;
2023-07-08 10:38:23 -04:00
// Status/away message
string status = 3;
// Availability
Availability availability = 4;
2023-07-25 01:04:34 -04:00
// Avatar DHTData
2023-09-26 18:46:02 -04:00
optional veilid.TypedKey avatar = 5;
2023-07-08 10:38:23 -04:00
}
2023-07-29 15:27:35 -04:00
2023-08-05 23:58:13 -04:00
enum ChatType {
CHAT_TYPE_UNSPECIFIED = 0;
SINGLE_CONTACT = 1;
GROUP = 2;
}
2024-03-24 12:13:27 -04:00
// Either a 1-1 conversation or a group chat (eventually)
// Privately encrypted, this is the local user's copy of the chat
2023-08-05 23:58:13 -04:00
message Chat {
// What kind of chat is this
ChatType type = 1;
2024-03-24 12:13:27 -04:00
// Conversation key for the other party
veilid.TypedKey remote_conversation_record_key = 2;
// Reconciled chat record DHTLog (xxx for now DHTShortArray)
dht.OwnedDHTRecordPointer reconciled_chat_record = 3;
2023-08-05 23:58:13 -04:00
}
2023-07-08 10:38:23 -04:00
// A record of an individual account
// Pointed to by the identity account map in the identity key
//
// DHT Schema: DFLT(1)
2023-07-29 10:55:35 -04:00
// DHT Private: accountSecretKey
2023-07-08 10:38:23 -04:00
message Account {
// The user's profile that gets shared with contacts
Profile profile = 1;
// Invisibility makes you always look 'Offline'
bool invisible = 2;
// Auto-away sets 'away' mode after an inactivity time
uint32 auto_away_timeout_sec = 3;
// The contacts DHTList for this account
2023-07-29 15:27:35 -04:00
// DHT Private
2023-09-26 18:46:02 -04:00
dht.OwnedDHTRecordPointer contact_list = 4;
2023-08-02 21:09:28 -04:00
// The ContactInvitationRecord DHTShortArray for this account
2023-07-29 15:27:35 -04:00
// DHT Private
2023-09-26 18:46:02 -04:00
dht.OwnedDHTRecordPointer contact_invitation_records = 5;
2023-08-05 23:58:13 -04:00
// The chats DHTList for this account
// DHT Private
2023-09-26 18:46:02 -04:00
dht.OwnedDHTRecordPointer chat_list = 6;
2023-08-05 23:58:13 -04:00
2023-07-08 10:38:23 -04:00
}
2023-07-29 15:27:35 -04:00
2023-08-02 21:09:28 -04:00
// EncryptionKeyType
2023-07-29 15:27:35 -04:00
// Encryption of secret
2023-08-02 21:09:28 -04:00
enum EncryptionKeyType {
ENCRYPTION_KEY_TYPE_UNSPECIFIED = 0;
ENCRYPTION_KEY_TYPE_NONE = 1;
ENCRYPTION_KEY_TYPE_PIN = 2;
ENCRYPTION_KEY_TYPE_PASSWORD = 3;
2023-07-29 15:27:35 -04:00
}
// Invitation that is shared for VeilidChat contact connections
// serialized to QR code or data blob, not send over DHT, out of band.
2023-08-05 01:00:46 -04:00
// Writer secret is unique to this invitation. Writer public key is in the ContactRequestPrivate
// in the ContactRequestInbox subkey 0 DHT key
2023-07-29 15:27:35 -04:00
message ContactInvitation {
// Contact request DHT record key
2023-09-26 18:46:02 -04:00
veilid.TypedKey contact_request_inbox_key = 1;
2023-08-02 21:09:28 -04:00
// Writer secret key bytes possibly encrypted with nonce appended
2023-07-29 15:27:35 -04:00
bytes writer_secret = 2;
}
// Signature of invitation with identity
message SignedContactInvitation {
// The serialized bytes for the contact invitation
bytes contact_invitation = 1;
// The signature of the contact_invitation bytes with the identity
2023-09-26 18:46:02 -04:00
veilid.Signature identity_signature = 2;
2023-07-29 15:27:35 -04:00
}
// Contact request unicastinbox on the DHT
2023-08-02 21:09:28 -04:00
// DHTSchema: SMPL 1 owner key, 1 writer key symmetrically encrypted with writer secret
2023-07-29 15:27:35 -04:00
message ContactRequest {
// The kind of encryption used on the unicastinbox writer key
2023-08-02 21:09:28 -04:00
EncryptionKeyType encryption_key_type = 1;
2023-07-29 15:27:35 -04:00
// The private part encoded and symmetrically encrypted with the unicastinbox writer secret
2023-08-02 21:09:28 -04:00
bytes private = 2;
2023-07-29 15:27:35 -04:00
}
// The private part of a possibly encrypted contact request
// Symmetrically encrypted with writer secret
message ContactRequestPrivate {
// Writer public key for signing writes to contact request unicastinbox
2023-09-26 18:46:02 -04:00
veilid.CryptoKey writer_key = 1;
2023-07-29 15:27:35 -04:00
// Snapshot of profile
Profile profile = 2;
2023-08-05 19:34:00 -04:00
// Identity master DHT record key
2023-09-26 18:46:02 -04:00
veilid.TypedKey identity_master_record_key = 3;
2023-07-29 15:27:35 -04:00
// Local chat DHT record key
2023-09-26 18:46:02 -04:00
veilid.TypedKey chat_record_key = 4;
2023-07-29 15:27:35 -04:00
// Expiration timestamp
uint64 expiration = 5;
}
// To accept or reject a contact request, fill this out and send to the ContactRequest unicastinbox
message ContactResponse {
// Accept or reject
bool accept = 1;
2023-08-05 19:34:00 -04:00
// Remote identity master DHT record key
2023-09-26 18:46:02 -04:00
veilid.TypedKey identity_master_record_key = 2;
2023-08-05 13:50:31 -04:00
// Remote chat DHT record key if accepted
2023-09-26 18:46:02 -04:00
veilid.TypedKey remote_conversation_record_key = 3;
2023-07-29 15:27:35 -04:00
}
// Signature of response with identity
// Symmetrically encrypted with writer secret
message SignedContactResponse {
// Serialized bytes for ContactResponse
bytes contact_response = 1;
// Signature of the contact_accept bytes with the identity
2023-09-26 18:46:02 -04:00
veilid.Signature identity_signature = 2;
2023-07-29 15:27:35 -04:00
}
// Contact request record kept in Account DHTList to keep track of extant contact invitations
2023-08-02 21:09:28 -04:00
message ContactInvitationRecord {
2023-08-05 01:00:46 -04:00
// Contact request unicastinbox DHT record key (parent is accountkey)
2023-09-26 18:46:02 -04:00
dht.OwnedDHTRecordPointer contact_request_inbox = 1;
2023-08-05 01:00:46 -04:00
// Writer key sent to contact for the contact_request_inbox smpl inbox subkey
2023-09-26 18:46:02 -04:00
veilid.CryptoKey writer_key = 2;
2023-08-05 01:00:46 -04:00
// Writer secret sent encrypted in the invitation
2023-09-26 18:46:02 -04:00
veilid.CryptoKey writer_secret = 3;
2023-08-05 01:00:46 -04:00
// Local chat DHT record key (parent is accountkey, will be moved to Contact if accepted)
2023-09-26 18:46:02 -04:00
veilid.TypedKey local_conversation_record_key = 4;
2023-07-29 15:27:35 -04:00
// Expiration timestamp
uint64 expiration = 5;
2023-08-04 01:00:38 -04:00
// A copy of the raw SignedContactInvitation invitation bytes post-encryption and signing
2023-07-29 15:27:35 -04:00
bytes invitation = 6;
2023-08-04 01:00:38 -04:00
// The message sent along with the invitation
string message = 7;
2023-07-29 15:27:35 -04:00
}