status-go/protocol/protobuf/chat_identity.pb.go
Samuel Hawksby-Robinson 89251e8416
Sync Communities (#2253)
* Added community sync protobuf

* Updated community sync send logic

* Integrated syncCommunity handling

* Added synced_at field and tidied up some other logic

* persistence testing

* Added testing and join functionality

* Fixed issue with empty scan params

* Finshed persistence tests for new db funcs

* Midway debug of description not persisting after sync

* Resolved final issues and tidied up

* Polish

* delint

* Fix error not handled on SetPrivateKey

* fix infinite loop, again

* Added muted option and test fix

* Added Muted to syncing functions, not just in persistence

* Fix bug introduced with Muted property

* Added a couple of notes for future devs

* Added most of the sync RequestToJoin functionality

Tests need to be completed and tests are giving some errors

* Finished tests for getJoinedAndPending

* Added note

* Resolving lint

* Fix of protobuf gen bug

* Fixes to community sync tests

* Fixes to test

* Continued fix of e2e

* Final fix to e2e testing

* Updated migration position

* resolve missing import

* Apparently the linter spellchecks

* Fix bug from  #2276 merge

* Bug fix for leaving quirkiness

* Addressed superfluous MessengerResponse field

* Addressed feedback

* VERSION bump
2021-08-06 16:40:23 +01:00

241 lines
9.4 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, valid only for organisations
DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
// description is the user set description, valid only for organisations
Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
Color string `protobuf:"bytes,6,opt,name=color,proto3" json:"color,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 ""
}
// 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"`
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 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")
}
func init() {
proto.RegisterFile("chat_identity.proto", fileDescriptor_7a652489000a5879)
}
var fileDescriptor_7a652489000a5879 = []byte{
// 389 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0xdf, 0x8e, 0x93, 0x40,
0x14, 0xc6, 0x05, 0xb6, 0xdd, 0xed, 0x99, 0xee, 0x4a, 0xa6, 0x26, 0x8b, 0x7b, 0x85, 0x5c, 0xf5,
0x46, 0x4c, 0xea, 0x8d, 0x59, 0xaf, 0xb0, 0x62, 0xb2, 0xd1, 0xd0, 0xcd, 0xb4, 0xeb, 0xa6, 0xde,
0x90, 0x29, 0x8c, 0x96, 0x14, 0x18, 0xc2, 0x0c, 0x26, 0xbc, 0x92, 0x8f, 0xe6, 0x53, 0x98, 0xce,
0x80, 0xa5, 0x57, 0x73, 0xfe, 0x7c, 0xe7, 0xf7, 0x9d, 0x39, 0x30, 0x4b, 0xf6, 0x54, 0xc6, 0x59,
0xca, 0x4a, 0x99, 0xc9, 0xd6, 0xaf, 0x6a, 0x2e, 0x39, 0xbe, 0x52, 0xcf, 0xae, 0xf9, 0x79, 0x87,
0x58, 0xd9, 0x14, 0x42, 0x97, 0xbd, 0x3f, 0x26, 0x4c, 0x97, 0x7b, 0x2a, 0x1f, 0x3a, 0x35, 0x7e,
0x05, 0xa3, 0x24, 0xe7, 0xc9, 0xc1, 0x31, 0x5c, 0x63, 0x7e, 0x41, 0x74, 0x82, 0x5f, 0xc3, 0x15,
0x2b, 0x45, 0x5c, 0xd2, 0x82, 0x39, 0xa6, 0x6b, 0xcc, 0x27, 0xe4, 0x92, 0x95, 0x22, 0xa2, 0x05,
0xc3, 0xf7, 0x30, 0xce, 0x0a, 0xfa, 0x8b, 0x09, 0xc7, 0x72, 0xad, 0x39, 0x5a, 0x78, 0x7e, 0xef,
0xe4, 0x0f, 0xc1, 0xfe, 0x83, 0x12, 0x85, 0xa5, 0xac, 0x5b, 0xd2, 0x4d, 0xe0, 0x37, 0x30, 0x4d,
0x33, 0x51, 0xe5, 0xb4, 0xd5, 0xe8, 0x0b, 0x85, 0x46, 0x5d, 0x4d, 0xe1, 0x5d, 0x40, 0x29, 0x13,
0x49, 0x9d, 0x55, 0x32, 0xe3, 0xa5, 0x33, 0xea, 0x14, 0xa7, 0x92, 0xda, 0x98, 0xe7, 0xbc, 0x76,
0xc6, 0xaa, 0xa7, 0x93, 0x3b, 0x02, 0x68, 0xe0, 0x88, 0x6d, 0xb0, 0x0e, 0xac, 0x55, 0x9f, 0x9a,
0x90, 0x63, 0x88, 0xdf, 0xc2, 0xe8, 0x37, 0xcd, 0x1b, 0xfd, 0x1f, 0xb4, 0xb8, 0x3d, 0xad, 0xdd,
0xaf, 0xac, 0xe6, 0x89, 0x56, 0xdd, 0x9b, 0x1f, 0x0c, 0xef, 0xaf, 0x01, 0xd7, 0x67, 0x4d, 0xec,
0xc0, 0x65, 0x45, 0xdb, 0x9c, 0xd3, 0x54, 0xa1, 0xa7, 0xa4, 0x4f, 0xf1, 0x12, 0x90, 0xe0, 0x4d,
0x9d, 0xb0, 0x58, 0xb6, 0x95, 0x36, 0xb9, 0x19, 0xde, 0xe6, 0x8c, 0xe3, 0xaf, 0x95, 0x74, 0xd3,
0x56, 0x8c, 0x80, 0xf8, 0x1f, 0xe3, 0x05, 0x80, 0xba, 0x94, 0x66, 0x58, 0x8a, 0x31, 0x1b, 0x30,
0x8e, 0x3d, 0x35, 0x34, 0xc9, 0xfa, 0xd0, 0xfb, 0x02, 0x70, 0xa2, 0xe1, 0x5b, 0x98, 0x3d, 0x45,
0x5f, 0xa3, 0xd5, 0x73, 0x14, 0xaf, 0x57, 0x4f, 0x64, 0x19, 0xc6, 0x9b, 0xed, 0x63, 0x68, 0xbf,
0xc0, 0x2f, 0x01, 0x91, 0xe0, 0x39, 0x7e, 0x0c, 0xb6, 0xdf, 0x56, 0xc1, 0x67, 0xdb, 0xc0, 0x37,
0x00, 0x61, 0xb4, 0x8e, 0x83, 0xef, 0xc1, 0x26, 0x20, 0xb6, 0xf9, 0xe9, 0xfa, 0x07, 0xf2, 0xdf,
0x7d, 0xec, 0xbd, 0x76, 0x63, 0x15, 0xbd, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xa7, 0x22, 0xda,
0xd8, 0x5d, 0x02, 0x00, 0x00,
}