2023-06-14 14:15:46 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option go_package = "./;protobuf";
|
|
|
|
package protobuf;
|
|
|
|
|
|
|
|
import "chat_identity.proto";
|
|
|
|
import "communities.proto";
|
|
|
|
|
2023-07-18 15:06:12 +00:00
|
|
|
message CommunityEvent {
|
|
|
|
uint64 community_event_clock = 1;
|
|
|
|
EventType type = 2;
|
|
|
|
CommunityConfig community_config = 3;
|
|
|
|
CommunityTokenPermission token_permission = 4;
|
|
|
|
CategoryData category_data = 5;
|
|
|
|
ChannelData channel_data = 6;
|
|
|
|
string member_to_action = 7;
|
|
|
|
map<string,CommunityMember> membersAdded = 8;
|
|
|
|
map<string,CommunityRequestToJoin> rejectedRequestsToJoin = 9;
|
|
|
|
map<string,CommunityRequestToJoin> acceptedRequestsToJoin = 10;
|
2023-08-04 10:28:46 +00:00
|
|
|
CommunityTokenMetadata token_metadata = 11;
|
2023-06-14 14:15:46 +00:00
|
|
|
|
|
|
|
enum EventType {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
COMMUNITY_EDIT = 1;
|
|
|
|
COMMUNITY_MEMBER_TOKEN_PERMISSION_CHANGE = 2;
|
|
|
|
COMMUNITY_MEMBER_TOKEN_PERMISSION_DELETE = 3;
|
|
|
|
COMMUNITY_CATEGORY_CREATE = 4;
|
|
|
|
COMMUNITY_CATEGORY_DELETE = 5;
|
|
|
|
COMMUNITY_CATEGORY_EDIT = 6;
|
|
|
|
COMMUNITY_CHANNEL_CREATE = 7;
|
|
|
|
COMMUNITY_CHANNEL_DELETE = 8;
|
|
|
|
COMMUNITY_CHANNEL_EDIT = 9;
|
|
|
|
COMMUNITY_CATEGORY_REORDER = 10;
|
|
|
|
COMMUNITY_CHANNEL_REORDER = 11;
|
|
|
|
COMMUNITY_REQUEST_TO_JOIN_ACCEPT = 12;
|
|
|
|
COMMUNITY_REQUEST_TO_JOIN_REJECT = 13;
|
|
|
|
COMMUNITY_MEMBER_KICK = 14;
|
|
|
|
COMMUNITY_MEMBER_BAN = 15;
|
|
|
|
COMMUNITY_MEMBER_UNBAN = 16;
|
2023-08-04 10:28:46 +00:00
|
|
|
COMMUNITY_TOKEN_ADD = 17;
|
2023-06-14 14:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message CommunityConfig {
|
|
|
|
ChatIdentity identity = 1;
|
|
|
|
CommunityPermissions permissions = 2;
|
|
|
|
CommunityAdminSettings admin_settings = 3;
|
|
|
|
string intro_message = 4;
|
|
|
|
string outro_message = 5;
|
|
|
|
repeated string tags = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CategoryData {
|
|
|
|
string category_id = 1;
|
|
|
|
string name = 2;
|
|
|
|
repeated string channels_ids = 3;
|
|
|
|
int32 position = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ChannelData {
|
|
|
|
string category_id = 1;
|
|
|
|
string channel_id = 2;
|
|
|
|
int32 position = 3;
|
|
|
|
CommunityChat channel = 4;
|
2023-07-18 15:06:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CommunityEventsMessage is a message used to propagate information
|
|
|
|
// about community changes.
|
|
|
|
message CommunityEventsMessage {
|
|
|
|
bytes community_id = 1;
|
|
|
|
|
|
|
|
// Events base CommunityDescription with owner signature on top of which events were generated
|
|
|
|
bytes events_base_community_description = 2;
|
|
|
|
|
|
|
|
// A list of admins events for the channel in bytes
|
|
|
|
repeated bytes events = 3;
|
|
|
|
}
|