meowlib/pb/messages.proto

186 lines
6.9 KiB
Protocol Buffer
Raw Normal View History

2023-08-01 22:47:18 +02:00
// You should use the field numbers 1 through 15
// for the most-frequently-set fields.
// Lower field number values take less space in the wire format.
// For example, field numbers in the range 1 through 15 take one byte to encode.
// Field numbers in the range 16 through 2047 take two bytes.
2023-11-06 22:44:21 +01:00
/**
* Meow messages
*
* This is the Meow protocol protobuf messages description.
*
*/
2022-01-15 22:19:29 +01:00
syntax = "proto3";
package meowlib;
option go_package = "forge.redroom.link/yves/meowlib";
// structure definnig a message as received by a server in protobuf format
2022-01-15 22:19:29 +01:00
message PackedServerMessage {
string from = 1; // The client public key for that server to get an answer
bytes payload = 2; // The ToServerMessage encrypted with the server public key |or| symetrical encryption as agreed earlier
bytes signature = 3; // The message signature with the client public key |eo| the reference to teh symetrical key used
2022-01-15 22:19:29 +01:00
}
// structure to hold an invitation through a server
message Invitation {
2023-11-06 22:44:21 +01:00
bytes payload = 1; // invitation payload, encrypted after step 2
int32 timeout = 2; // how long do I want the invitation to remain available on the server
2023-11-14 16:32:50 +01:00
int32 shortcodeLen = 3; // len of the shortcode you wish for short url transmission
string shortcode = 4; // shortcode that the friend shall request to get the invitation
string password = 5; // password tou set for accessin invitation (optional)
string uuid = 6; // id that the friend gave you, that you should include to your reply to get recognized
int64 expiry = 7; // the server allowed expiry date, it may be samller than the requested timeout according to server policy
int32 step = 8; // progress in the inviattion process : 1=invite friend, 2=friend requests invitation, 3=friend's answer
}
2023-11-06 22:44:21 +01:00
// structure for requesting incoming messages
message ConversationRequest {
2024-01-14 15:49:24 +01:00
string lookup_key = 1; // lookup key for a conversation
// removed string lastServerUuidOK = 2; // Last Server message UUID received (send me all after that one)
int64 send_timestamp = 2;
string lookup_signature = 3; // prove that I own the private key by signing that block
2023-11-06 22:44:21 +01:00
}
2024-01-12 23:17:34 +01:00
message Meet {
string public_status = 1; // Publish my online status, if the server is a meeting server
ContactCard contact_card = 2; // mine or the requester
string message = 3; // short description
}
2023-11-06 22:44:21 +01:00
// structure defining a message for a server, that will be encrypted, then sent in a "packedmessage" payload
2022-09-05 14:09:39 +02:00
message ToServerMessage {
2022-09-25 10:16:39 +02:00
string type = 1; // Type 1 : final destination / 2 : forward
string from = 2 ; // My pub key for the server to send me an encrypter answer
bytes payload = 3 ; // optional payload for server
2022-01-15 22:19:29 +01:00
2024-01-12 23:17:34 +01:00
repeated ConversationRequest pull_request = 4;
repeated PackedUserMessage messages = 5;
2024-01-12 23:17:34 +01:00
repeated ServerCard known_servers = 6;
2024-01-12 23:17:34 +01:00
Matriochka matriochka_message = 7;
2022-09-25 10:16:39 +02:00
string uuid = 8;
2022-09-05 14:09:39 +02:00
2023-11-14 16:32:50 +01:00
Invitation invitation = 9; // invitation for the 2 first steps of a "through server" invitation process
2022-09-05 14:09:39 +02:00
}
2023-11-06 22:44:21 +01:00
message ConversationResponse {
repeated string messageUuids = 1;
}
// structure defining a from server receiver message decrypted from a "packedmessage" payload
2022-09-05 14:09:39 +02:00
message FromServerMessage {
string type = 1; // Type
string serverPublicKey = 2 ; // Pub key from the server
bytes payload = 3 ; //
string uuidAck = 4 ; // Ack for the last received ToServerMessage Uuid
string serverUuid = 5 ; // Provides the server uuid that replaced the client uuid
2022-09-05 14:09:39 +02:00
2022-10-22 22:40:03 +02:00
repeated PackedUserMessage chat = 6;
2023-11-08 21:52:09 +01:00
repeated ServerCard knownServers = 7;
2023-11-14 16:32:50 +01:00
Invitation invitation = 8; // invitation answer, for the third steps of any invitation
2022-01-15 22:19:29 +01:00
}
message MatriochkaServer {
string url = 1; // Server Url
string publicKey = 2; // Server Public Key
string uuid = 3 ; // Optional, uuid for delivery confirmation
int32 delay = 4; // Max delay requested for message forwarding or delivery tracking
}
message Matriochka {
string lookupKey = 1; // Optional, only if you want delivery tracking, less stealth
MatriochkaServer prev = 2; // Optional, like above
MatriochkaServer next = 3; // Next server to deliver the message to
bytes data = 4; // Matriochka data
}
// structure describing required server attributes
2023-11-08 21:52:09 +01:00
message ServerCard {
2023-11-06 22:44:21 +01:00
string name = 1; // friendly server name
string description=2; // description : owner type (company/private/university...),
string public_key = 3; // public key you must use to send encrypted messages to that server
2023-11-06 22:44:21 +01:00
string url = 4; // meow server url
2023-11-27 00:31:43 +01:00
string login = 5; // required login to access the server
string password = 6; // password associated to the login
string signature = 7; // signature of all previous fields by the server itself
}
2022-01-15 22:19:29 +01:00
// structure describing a user contact card ie the minimum set of attributes for exchanging identities
2022-09-06 09:30:45 +02:00
message ContactCard {
2023-11-06 22:44:21 +01:00
string name=1; // contact nickname
2024-01-01 22:45:54 +01:00
string contact_public_key =2; // contact public key, will be used to authenticate her/his messages
string encryption_public_key= 3; // public key you must use to to write encrypted messages to that contact
string lookup_public_key =4; // public key you will use as "destination identifier" for her/him to lookup for your messages on the servers
repeated ServerCard pull_servers =5; // list the servers where the contact will look for messages from you
uint32 version = 6;
2024-01-01 22:45:54 +01:00
string invitation_id=7;
string invitation_message=8;
2022-09-06 09:30:45 +02:00
}
// structure for sending a message to be forwarded to another user in protobuf format
message PackedUserMessage {
2022-10-22 22:40:03 +02:00
string destination=1; // the peer's current conversation lookup public key
bytes payload=2; // the message UserMessage encrypted with the destination peer's public key
bytes signature=3; // the payload signature with the client identity private key
repeated int64 serverTimestamp=4; // server time stamp, might be several in matriochka mode
2022-01-15 22:19:29 +01:00
}
2023-11-06 22:44:21 +01:00
message ConversationStatus {
string localUuid = 1;
uint64 localSequence = 2 ;
uint64 sent = 3 ;
uint64 received = 4;
uint64 processed = 5;
ContactCard myNextIdentity = 6;
int32 peerNextIdentityAck = 7; // version of the new peer accepted id
}
message Group{
string name=1;
repeated ContactCard members = 2;
}
// structure defining information that might be exchanged between two peers.
2022-01-15 22:19:29 +01:00
message UserMessage {
2022-12-17 20:17:05 +01:00
string destination = 1; // Lookupkey
string from = 2; // My public key for that contact
2022-09-25 10:16:39 +02:00
string type = 3;
bytes data = 4;
2023-11-06 22:44:21 +01:00
2022-01-15 22:19:29 +01:00
ConversationStatus Status = 5;
ContactCard contact = 6;
2022-01-15 22:19:29 +01:00
2023-11-08 21:52:09 +01:00
ServerCard knownServers = 7;
2022-01-15 22:19:29 +01:00
Group group = 8;
2022-12-18 19:47:44 +01:00
repeated File files = 9;
2023-08-01 22:47:18 +02:00
Location currentLocation = 10;
bytes appdata = 11;
2023-11-14 16:32:50 +01:00
Invitation invitation = 12;
}
message File {
2023-11-14 16:32:50 +01:00
string filename=1; // the proposed filename
uint64 size=2; // the file size
uint32 chunk=3; // the chunk counter if file is sent by chunks
bytes data=4; // the file/chunk content
2023-08-01 22:47:18 +02:00
}
message Location {
uint64 time=1;
float latitude=2;
float longitude=3;
int32 altitude=4;
2022-01-15 22:19:29 +01:00
}