354 lines
14 KiB
Go
354 lines
14 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: chat_identity.proto
|
|
|
|
package protobuf
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
// SourceType are the predefined types of image source allowed
|
|
type IdentityImage_SourceType int32
|
|
|
|
const (
|
|
IdentityImage_UNKNOWN_SOURCE_TYPE IdentityImage_SourceType = 0
|
|
// RAW_PAYLOAD image byte data
|
|
IdentityImage_RAW_PAYLOAD IdentityImage_SourceType = 1
|
|
// ENS_AVATAR uses the ENS record's resolver get-text-data.avatar data
|
|
// The `payload` field will be ignored if ENS_AVATAR is selected
|
|
// The application will read and parse the ENS avatar data as image payload data, URLs will be ignored
|
|
// The parent `ChatMessageIdentity` must have a valid `ens_name` set
|
|
IdentityImage_ENS_AVATAR IdentityImage_SourceType = 2
|
|
)
|
|
|
|
var IdentityImage_SourceType_name = map[int32]string{
|
|
0: "UNKNOWN_SOURCE_TYPE",
|
|
1: "RAW_PAYLOAD",
|
|
2: "ENS_AVATAR",
|
|
}
|
|
|
|
var IdentityImage_SourceType_value = map[string]int32{
|
|
"UNKNOWN_SOURCE_TYPE": 0,
|
|
"RAW_PAYLOAD": 1,
|
|
"ENS_AVATAR": 2,
|
|
}
|
|
|
|
func (x IdentityImage_SourceType) String() string {
|
|
return proto.EnumName(IdentityImage_SourceType_name, int32(x))
|
|
}
|
|
|
|
func (IdentityImage_SourceType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_7a652489000a5879, []int{1, 0}
|
|
}
|
|
|
|
// ChatIdentity represents the user defined identity associated with their public chat key
|
|
type ChatIdentity struct {
|
|
// Lamport timestamp of the message
|
|
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
|
|
// ens_name is the valid ENS name associated with the chat key
|
|
EnsName string `protobuf:"bytes,2,opt,name=ens_name,json=ensName,proto3" json:"ens_name,omitempty"`
|
|
// images is a string indexed mapping of images associated with an identity
|
|
Images map[string]*IdentityImage `protobuf:"bytes,3,rep,name=images,proto3" json:"images,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
// display name is the user set identity
|
|
DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
// description is the user set description
|
|
Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
|
|
Color string `protobuf:"bytes,6,opt,name=color,proto3" json:"color,omitempty"`
|
|
Emoji string `protobuf:"bytes,7,opt,name=emoji,proto3" json:"emoji,omitempty"`
|
|
SocialLinks []*SocialLink `protobuf:"bytes,8,rep,name=social_links,json=socialLinks,proto3" json:"social_links,omitempty"`
|
|
// first known message timestamp in seconds (valid only for community chats for now)
|
|
// 0 - unknown
|
|
// 1 - no messages
|
|
FirstMessageTimestamp uint32 `protobuf:"varint,9,opt,name=first_message_timestamp,json=firstMessageTimestamp,proto3" json:"first_message_timestamp,omitempty"`
|
|
ProfileShowcase *ProfileShowcase `protobuf:"bytes,10,opt,name=profile_showcase,json=profileShowcase,proto3" json:"profile_showcase,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ChatIdentity) Reset() { *m = ChatIdentity{} }
|
|
func (m *ChatIdentity) String() string { return proto.CompactTextString(m) }
|
|
func (*ChatIdentity) ProtoMessage() {}
|
|
func (*ChatIdentity) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7a652489000a5879, []int{0}
|
|
}
|
|
|
|
func (m *ChatIdentity) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ChatIdentity.Unmarshal(m, b)
|
|
}
|
|
func (m *ChatIdentity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ChatIdentity.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ChatIdentity) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ChatIdentity.Merge(m, src)
|
|
}
|
|
func (m *ChatIdentity) XXX_Size() int {
|
|
return xxx_messageInfo_ChatIdentity.Size(m)
|
|
}
|
|
func (m *ChatIdentity) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ChatIdentity.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ChatIdentity proto.InternalMessageInfo
|
|
|
|
func (m *ChatIdentity) GetClock() uint64 {
|
|
if m != nil {
|
|
return m.Clock
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ChatIdentity) GetEnsName() string {
|
|
if m != nil {
|
|
return m.EnsName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChatIdentity) GetImages() map[string]*IdentityImage {
|
|
if m != nil {
|
|
return m.Images
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ChatIdentity) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChatIdentity) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChatIdentity) GetColor() string {
|
|
if m != nil {
|
|
return m.Color
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChatIdentity) GetEmoji() string {
|
|
if m != nil {
|
|
return m.Emoji
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChatIdentity) GetSocialLinks() []*SocialLink {
|
|
if m != nil {
|
|
return m.SocialLinks
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ChatIdentity) GetFirstMessageTimestamp() uint32 {
|
|
if m != nil {
|
|
return m.FirstMessageTimestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ChatIdentity) GetProfileShowcase() *ProfileShowcase {
|
|
if m != nil {
|
|
return m.ProfileShowcase
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ProfileImage represents data associated with a user's profile image
|
|
type IdentityImage struct {
|
|
// payload is a context based payload for the profile image data,
|
|
// context is determined by the `source_type`
|
|
Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
|
|
// source_type signals the image payload source
|
|
SourceType IdentityImage_SourceType `protobuf:"varint,2,opt,name=source_type,json=sourceType,proto3,enum=protobuf.IdentityImage_SourceType" json:"source_type,omitempty"`
|
|
// image_type signals the image type and method of parsing the payload
|
|
ImageType ImageType `protobuf:"varint,3,opt,name=image_type,json=imageType,proto3,enum=protobuf.ImageType" json:"image_type,omitempty"`
|
|
// encryption_keys is a list of encrypted keys that can be used to decrypted an encrypted payload
|
|
EncryptionKeys [][]byte `protobuf:"bytes,4,rep,name=encryption_keys,json=encryptionKeys,proto3" json:"encryption_keys,omitempty"`
|
|
// encrypted signals the encryption state of the payload, default is false.
|
|
Encrypted bool `protobuf:"varint,5,opt,name=encrypted,proto3" json:"encrypted,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdentityImage) Reset() { *m = IdentityImage{} }
|
|
func (m *IdentityImage) String() string { return proto.CompactTextString(m) }
|
|
func (*IdentityImage) ProtoMessage() {}
|
|
func (*IdentityImage) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7a652489000a5879, []int{1}
|
|
}
|
|
|
|
func (m *IdentityImage) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdentityImage.Unmarshal(m, b)
|
|
}
|
|
func (m *IdentityImage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdentityImage.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdentityImage) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdentityImage.Merge(m, src)
|
|
}
|
|
func (m *IdentityImage) XXX_Size() int {
|
|
return xxx_messageInfo_IdentityImage.Size(m)
|
|
}
|
|
func (m *IdentityImage) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdentityImage.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdentityImage proto.InternalMessageInfo
|
|
|
|
func (m *IdentityImage) GetPayload() []byte {
|
|
if m != nil {
|
|
return m.Payload
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdentityImage) GetSourceType() IdentityImage_SourceType {
|
|
if m != nil {
|
|
return m.SourceType
|
|
}
|
|
return IdentityImage_UNKNOWN_SOURCE_TYPE
|
|
}
|
|
|
|
func (m *IdentityImage) GetImageType() ImageType {
|
|
if m != nil {
|
|
return m.ImageType
|
|
}
|
|
return ImageType_UNKNOWN_IMAGE_TYPE
|
|
}
|
|
|
|
func (m *IdentityImage) GetEncryptionKeys() [][]byte {
|
|
if m != nil {
|
|
return m.EncryptionKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdentityImage) GetEncrypted() bool {
|
|
if m != nil {
|
|
return m.Encrypted
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SocialLinks represents social link assosiated with given chat identity (personal/community)
|
|
type SocialLink struct {
|
|
Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
|
|
Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SocialLink) Reset() { *m = SocialLink{} }
|
|
func (m *SocialLink) String() string { return proto.CompactTextString(m) }
|
|
func (*SocialLink) ProtoMessage() {}
|
|
func (*SocialLink) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7a652489000a5879, []int{2}
|
|
}
|
|
|
|
func (m *SocialLink) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SocialLink.Unmarshal(m, b)
|
|
}
|
|
func (m *SocialLink) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SocialLink.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SocialLink) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SocialLink.Merge(m, src)
|
|
}
|
|
func (m *SocialLink) XXX_Size() int {
|
|
return xxx_messageInfo_SocialLink.Size(m)
|
|
}
|
|
func (m *SocialLink) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SocialLink.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SocialLink proto.InternalMessageInfo
|
|
|
|
func (m *SocialLink) GetText() string {
|
|
if m != nil {
|
|
return m.Text
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SocialLink) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("protobuf.IdentityImage_SourceType", IdentityImage_SourceType_name, IdentityImage_SourceType_value)
|
|
proto.RegisterType((*ChatIdentity)(nil), "protobuf.ChatIdentity")
|
|
proto.RegisterMapType((map[string]*IdentityImage)(nil), "protobuf.ChatIdentity.ImagesEntry")
|
|
proto.RegisterType((*IdentityImage)(nil), "protobuf.IdentityImage")
|
|
proto.RegisterType((*SocialLink)(nil), "protobuf.SocialLink")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("chat_identity.proto", fileDescriptor_7a652489000a5879)
|
|
}
|
|
|
|
var fileDescriptor_7a652489000a5879 = []byte{
|
|
// 561 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x53, 0x41, 0x6f, 0xd3, 0x30,
|
|
0x14, 0x26, 0x4d, 0xb7, 0xb5, 0x2f, 0xdd, 0x56, 0x79, 0x83, 0x65, 0x13, 0x87, 0xd0, 0x0b, 0xb9,
|
|
0x10, 0xa4, 0x22, 0x01, 0x1a, 0xa7, 0xb0, 0x15, 0x69, 0xda, 0xe8, 0x26, 0xb7, 0x63, 0x1a, 0x17,
|
|
0xcb, 0x4b, 0xdd, 0xd5, 0x34, 0x89, 0xa3, 0xd8, 0x05, 0xf2, 0xb3, 0xf8, 0x75, 0x5c, 0x51, 0xec,
|
|
0x64, 0x69, 0x39, 0xf5, 0x7b, 0xdf, 0xf7, 0xfc, 0xf9, 0xf5, 0x7d, 0x0e, 0x1c, 0x44, 0x0b, 0xaa,
|
|
0x08, 0x9f, 0xb1, 0x54, 0x71, 0x55, 0x04, 0x59, 0x2e, 0x94, 0x40, 0x1d, 0xfd, 0xf3, 0xb0, 0x9a,
|
|
0x9f, 0x38, 0x2c, 0x5d, 0x25, 0xd2, 0xd0, 0x27, 0x2f, 0xb2, 0x5c, 0xcc, 0x79, 0xcc, 0x88, 0x5c,
|
|
0x88, 0x5f, 0x11, 0x95, 0xcc, 0xf0, 0x83, 0xbf, 0x36, 0xf4, 0xce, 0x16, 0x54, 0x5d, 0x54, 0x2e,
|
|
0xe8, 0x10, 0xb6, 0xa2, 0x58, 0x44, 0x4b, 0xd7, 0xf2, 0x2c, 0xbf, 0x8d, 0x4d, 0x81, 0x8e, 0xa1,
|
|
0xc3, 0x52, 0x49, 0x52, 0x9a, 0x30, 0xb7, 0xe5, 0x59, 0x7e, 0x17, 0xef, 0xb0, 0x54, 0x8e, 0x69,
|
|
0xc2, 0xd0, 0x29, 0x6c, 0xf3, 0x84, 0x3e, 0x32, 0xe9, 0xda, 0x9e, 0xed, 0x3b, 0xc3, 0x41, 0x50,
|
|
0x4f, 0x10, 0xac, 0x1b, 0x07, 0x17, 0xba, 0x69, 0x94, 0xaa, 0xbc, 0xc0, 0xd5, 0x09, 0xf4, 0x0a,
|
|
0x7a, 0x33, 0x2e, 0xb3, 0x98, 0x16, 0xc6, 0xba, 0xad, 0xad, 0x9d, 0x8a, 0xd3, 0xf6, 0x1e, 0x38,
|
|
0x33, 0x26, 0xa3, 0x9c, 0x67, 0x8a, 0x8b, 0xd4, 0xdd, 0xaa, 0x3a, 0x1a, 0x4a, 0x4f, 0x2c, 0x62,
|
|
0x91, 0xbb, 0xdb, 0x5a, 0x33, 0x45, 0xc9, 0xb2, 0x44, 0xfc, 0xe0, 0xee, 0x8e, 0x61, 0x75, 0x81,
|
|
0x3e, 0x40, 0x4f, 0x8a, 0x88, 0xd3, 0x98, 0xc4, 0x3c, 0x5d, 0x4a, 0xb7, 0xa3, 0x47, 0x3e, 0x6c,
|
|
0x46, 0x9e, 0x68, 0xf5, 0x8a, 0xa7, 0x4b, 0xec, 0xc8, 0x27, 0x2c, 0xd1, 0x7b, 0x38, 0x9a, 0xf3,
|
|
0x5c, 0x2a, 0x92, 0x30, 0x29, 0xe9, 0x23, 0x23, 0x8a, 0x27, 0x4c, 0x2a, 0x9a, 0x64, 0x6e, 0xd7,
|
|
0xb3, 0xfc, 0x5d, 0xfc, 0x5c, 0xcb, 0x5f, 0x8d, 0x3a, 0xad, 0x45, 0x74, 0x0e, 0xfd, 0xff, 0x37,
|
|
0xef, 0x82, 0x67, 0xf9, 0xce, 0xf0, 0xb8, 0xb9, 0xf4, 0xc6, 0x74, 0x4c, 0xaa, 0x06, 0xbc, 0x9f,
|
|
0x6d, 0x12, 0x27, 0x18, 0x9c, 0xb5, 0xf5, 0xa1, 0x3e, 0xd8, 0x4b, 0x56, 0xe8, 0x84, 0xba, 0xb8,
|
|
0x84, 0xe8, 0x0d, 0x6c, 0xfd, 0xa4, 0xf1, 0xca, 0x84, 0xe3, 0x0c, 0x8f, 0x1a, 0xef, 0x7a, 0xff,
|
|
0xfa, 0x3c, 0x36, 0x5d, 0xa7, 0xad, 0x8f, 0xd6, 0xe0, 0x4f, 0x0b, 0x76, 0x37, 0x44, 0xe4, 0xc2,
|
|
0x4e, 0x46, 0x8b, 0x58, 0xd0, 0x99, 0xb6, 0xee, 0xe1, 0xba, 0x44, 0x67, 0xe0, 0x48, 0xb1, 0xca,
|
|
0x23, 0x46, 0x54, 0x91, 0x99, 0x4b, 0xf6, 0xd6, 0x83, 0xde, 0xf0, 0x09, 0x26, 0xba, 0x75, 0x5a,
|
|
0x64, 0x0c, 0x83, 0x7c, 0xc2, 0x68, 0x08, 0xa0, 0x63, 0x37, 0x1e, 0xb6, 0xf6, 0x38, 0x58, 0xf3,
|
|
0x28, 0x35, 0x7d, 0xa8, 0xcb, 0x6b, 0x88, 0x5e, 0xc3, 0x3e, 0x4b, 0xa3, 0xbc, 0xd0, 0x49, 0x93,
|
|
0x25, 0x2b, 0xa4, 0xdb, 0xf6, 0x6c, 0xbf, 0x87, 0xf7, 0x1a, 0xfa, 0x92, 0x15, 0x12, 0xbd, 0x84,
|
|
0x6e, 0xc5, 0xb0, 0x99, 0x7e, 0x24, 0x1d, 0xdc, 0x10, 0x83, 0x2f, 0x00, 0xcd, 0x50, 0xe8, 0x08,
|
|
0x0e, 0x6e, 0xc7, 0x97, 0xe3, 0xeb, 0xbb, 0x31, 0x99, 0x5c, 0xdf, 0xe2, 0xb3, 0x11, 0x99, 0xde,
|
|
0xdf, 0x8c, 0xfa, 0xcf, 0xd0, 0x3e, 0x38, 0x38, 0xbc, 0x23, 0x37, 0xe1, 0xfd, 0xd5, 0x75, 0x78,
|
|
0xde, 0xb7, 0xd0, 0x1e, 0xc0, 0x68, 0x3c, 0x21, 0xe1, 0xb7, 0x70, 0x1a, 0xe2, 0x7e, 0x6b, 0x30,
|
|
0x2c, 0x7d, 0xea, 0x47, 0x81, 0x10, 0xb4, 0x15, 0xfb, 0xad, 0xaa, 0x1c, 0x34, 0x2e, 0xa3, 0x59,
|
|
0xe5, 0x71, 0xf5, 0x8d, 0x94, 0xf0, 0xf3, 0xee, 0x77, 0x27, 0x78, 0xfb, 0xa9, 0xfe, 0x9b, 0x0f,
|
|
0xdb, 0x1a, 0xbd, 0xfb, 0x17, 0x00, 0x00, 0xff, 0xff, 0x82, 0x0e, 0x43, 0xd8, 0xbd, 0x03, 0x00,
|
|
0x00,
|
|
}
|