mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
714c03c635
This allows to store community admin settings that are meant to be propagated to community members (as opposed to the already existing `CommunitySettings` which are considered local to every account). The first setting introduced as part of this commit is one that enables community admins to configure whether or not members of the community are allowed to pin messages in community channels. Prior to this commit, this was not restricted at all on the protocol level and only enforced by clients via UI (e.g. members don't see an option to pin messages, although they could). This config setting now ensures that: 1. If turned off, members cannot send a pin message 2. If turned off, pin messages from members are not handled/processed This is needed by https://github.com/status-im/status-desktop/issues/5662
187 lines
7.1 KiB
Go
187 lines
7.1 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: anon_metrics.proto
|
|
|
|
package protobuf
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
|
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
|
|
|
|
// AnonymousMetric represents a single metric data point
|
|
type AnonymousMetric struct {
|
|
// id is the unique id of the metric message
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
// event is the app metric event type
|
|
Event string `protobuf:"bytes,2,opt,name=event,proto3" json:"event,omitempty"`
|
|
// value is a filtered and validated raw json payload attached to the event
|
|
Value []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
|
|
// app_version is the version of the `status-react` app that the metric came from
|
|
AppVersion string `protobuf:"bytes,4,opt,name=app_version,json=appVersion,proto3" json:"app_version,omitempty"`
|
|
// os is the operating system of the device the application is installed on
|
|
Os string `protobuf:"bytes,5,opt,name=os,proto3" json:"os,omitempty"`
|
|
// session_id is the id of the session the metric was recorded in
|
|
SessionId string `protobuf:"bytes,6,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
|
|
// created_at is the datetime at which the metric was stored in the local db
|
|
CreatedAt *timestamp.Timestamp `protobuf:"bytes,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AnonymousMetric) Reset() { *m = AnonymousMetric{} }
|
|
func (m *AnonymousMetric) String() string { return proto.CompactTextString(m) }
|
|
func (*AnonymousMetric) ProtoMessage() {}
|
|
func (*AnonymousMetric) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_4be044a92fa0408c, []int{0}
|
|
}
|
|
|
|
func (m *AnonymousMetric) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AnonymousMetric.Unmarshal(m, b)
|
|
}
|
|
func (m *AnonymousMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AnonymousMetric.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AnonymousMetric) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AnonymousMetric.Merge(m, src)
|
|
}
|
|
func (m *AnonymousMetric) XXX_Size() int {
|
|
return xxx_messageInfo_AnonymousMetric.Size(m)
|
|
}
|
|
func (m *AnonymousMetric) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AnonymousMetric.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AnonymousMetric proto.InternalMessageInfo
|
|
|
|
func (m *AnonymousMetric) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AnonymousMetric) GetEvent() string {
|
|
if m != nil {
|
|
return m.Event
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AnonymousMetric) GetValue() []byte {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AnonymousMetric) GetAppVersion() string {
|
|
if m != nil {
|
|
return m.AppVersion
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AnonymousMetric) GetOs() string {
|
|
if m != nil {
|
|
return m.Os
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AnonymousMetric) GetSessionId() string {
|
|
if m != nil {
|
|
return m.SessionId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AnonymousMetric) GetCreatedAt() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreatedAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// AnonymousMetricBatch represents a batch of AnonymousMetrics allowing broadcast of AnonymousMetrics with fewer messages
|
|
type AnonymousMetricBatch struct {
|
|
// metrics is an array of AnonymousMetric metrics
|
|
Metrics []*AnonymousMetric `protobuf:"bytes,1,rep,name=metrics,proto3" json:"metrics,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AnonymousMetricBatch) Reset() { *m = AnonymousMetricBatch{} }
|
|
func (m *AnonymousMetricBatch) String() string { return proto.CompactTextString(m) }
|
|
func (*AnonymousMetricBatch) ProtoMessage() {}
|
|
func (*AnonymousMetricBatch) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_4be044a92fa0408c, []int{1}
|
|
}
|
|
|
|
func (m *AnonymousMetricBatch) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AnonymousMetricBatch.Unmarshal(m, b)
|
|
}
|
|
func (m *AnonymousMetricBatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AnonymousMetricBatch.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AnonymousMetricBatch) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AnonymousMetricBatch.Merge(m, src)
|
|
}
|
|
func (m *AnonymousMetricBatch) XXX_Size() int {
|
|
return xxx_messageInfo_AnonymousMetricBatch.Size(m)
|
|
}
|
|
func (m *AnonymousMetricBatch) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AnonymousMetricBatch.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AnonymousMetricBatch proto.InternalMessageInfo
|
|
|
|
func (m *AnonymousMetricBatch) GetMetrics() []*AnonymousMetric {
|
|
if m != nil {
|
|
return m.Metrics
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*AnonymousMetric)(nil), "protobuf.AnonymousMetric")
|
|
proto.RegisterType((*AnonymousMetricBatch)(nil), "protobuf.AnonymousMetricBatch")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("anon_metrics.proto", fileDescriptor_4be044a92fa0408c) }
|
|
|
|
var fileDescriptor_4be044a92fa0408c = []byte{
|
|
// 269 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0x3d, 0x6b, 0xc3, 0x30,
|
|
0x10, 0x86, 0x51, 0xd2, 0x24, 0xf5, 0xb9, 0x1f, 0x20, 0x32, 0xa8, 0x81, 0x12, 0x93, 0xc9, 0x93,
|
|
0x0d, 0xc9, 0x54, 0x3a, 0x25, 0x5b, 0x29, 0x5d, 0x4c, 0xe9, 0xd0, 0xc5, 0x28, 0xb6, 0x9a, 0x0a,
|
|
0x62, 0x9d, 0xb0, 0x64, 0x43, 0xff, 0x69, 0x7f, 0x4e, 0xb1, 0x64, 0x51, 0xc8, 0x24, 0xdd, 0xa3,
|
|
0xf7, 0x5e, 0x78, 0x04, 0x94, 0x2b, 0x54, 0x65, 0x23, 0x6c, 0x2b, 0x2b, 0x93, 0xe9, 0x16, 0x2d,
|
|
0xd2, 0x6b, 0x77, 0x1c, 0xbb, 0xaf, 0xd5, 0xfa, 0x84, 0x78, 0x3a, 0x8b, 0x3c, 0x80, 0xdc, 0xca,
|
|
0x46, 0x18, 0xcb, 0x1b, 0xed, 0xa3, 0x9b, 0x5f, 0x02, 0xf7, 0x7b, 0x85, 0xea, 0xa7, 0xc1, 0xce,
|
|
0xbc, 0xb9, 0x16, 0x7a, 0x07, 0x13, 0x59, 0x33, 0x92, 0x90, 0x34, 0x2a, 0x26, 0xb2, 0xa6, 0x4b,
|
|
0x98, 0x89, 0x5e, 0x28, 0xcb, 0x26, 0x0e, 0xf9, 0x61, 0xa0, 0x3d, 0x3f, 0x77, 0x82, 0x4d, 0x13,
|
|
0x92, 0xde, 0x14, 0x7e, 0xa0, 0x6b, 0x88, 0xb9, 0xd6, 0x65, 0x2f, 0x5a, 0x23, 0x51, 0xb1, 0x2b,
|
|
0xb7, 0x01, 0x5c, 0xeb, 0x0f, 0x4f, 0x86, 0x72, 0x34, 0x6c, 0xe6, 0xcb, 0xd1, 0xd0, 0x47, 0x00,
|
|
0x23, 0xcc, 0xf0, 0x54, 0xca, 0x9a, 0xcd, 0x1d, 0x8f, 0x46, 0xf2, 0x52, 0xd3, 0x27, 0x80, 0xaa,
|
|
0x15, 0xdc, 0x8a, 0xba, 0xe4, 0x96, 0x2d, 0x12, 0x92, 0xc6, 0xdb, 0x55, 0xe6, 0xad, 0xb2, 0x60,
|
|
0x95, 0xbd, 0x07, 0xab, 0x22, 0x1a, 0xd3, 0x7b, 0xbb, 0x79, 0x85, 0xe5, 0x85, 0xd9, 0x81, 0xdb,
|
|
0xea, 0x9b, 0xee, 0x60, 0x31, 0x7e, 0x17, 0x23, 0xc9, 0x34, 0x8d, 0xb7, 0x0f, 0xff, 0x45, 0x17,
|
|
0x0b, 0x45, 0x48, 0x1e, 0x6e, 0x3f, 0xe3, 0x2c, 0x7f, 0x0e, 0xb9, 0xe3, 0xdc, 0xdd, 0x76, 0x7f,
|
|
0x01, 0x00, 0x00, 0xff, 0xff, 0xc7, 0x86, 0xa1, 0x32, 0x7e, 0x01, 0x00, 0x00,
|
|
}
|