2021-12-03 22:04:09 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// versions:
|
|
|
|
// protoc-gen-go v1.26.0
|
|
|
|
// protoc v3.19.1
|
|
|
|
// source: protos/ezshare.proto
|
|
|
|
|
|
|
|
package pb
|
|
|
|
|
|
|
|
import (
|
|
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
|
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
|
|
|
|
reflect "reflect"
|
|
|
|
sync "sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
|
)
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
type User_Role int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
User_UNAPPROVED User_Role = 0
|
|
|
|
User_VIEWONLY User_Role = 1
|
|
|
|
User_USER User_Role = 2
|
|
|
|
User_ADMIN User_Role = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
// Enum value maps for User_Role.
|
|
|
|
var (
|
|
|
|
User_Role_name = map[int32]string{
|
|
|
|
0: "UNAPPROVED",
|
|
|
|
1: "VIEWONLY",
|
|
|
|
2: "USER",
|
|
|
|
3: "ADMIN",
|
|
|
|
}
|
|
|
|
User_Role_value = map[string]int32{
|
|
|
|
"UNAPPROVED": 0,
|
|
|
|
"VIEWONLY": 1,
|
|
|
|
"USER": 2,
|
|
|
|
"ADMIN": 3,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x User_Role) Enum() *User_Role {
|
|
|
|
p := new(User_Role)
|
|
|
|
*p = x
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x User_Role) String() string {
|
|
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (User_Role) Descriptor() protoreflect.EnumDescriptor {
|
|
|
|
return file_protos_ezshare_proto_enumTypes[0].Descriptor()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (User_Role) Type() protoreflect.EnumType {
|
|
|
|
return &file_protos_ezshare_proto_enumTypes[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x User_Role) Number() protoreflect.EnumNumber {
|
|
|
|
return protoreflect.EnumNumber(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use User_Role.Descriptor instead.
|
|
|
|
func (User_Role) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{10, 0}
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////
|
|
|
|
// Common messages //
|
|
|
|
/////////////////////
|
|
|
|
type Empty struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Empty) Reset() {
|
|
|
|
*x = Empty{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[0]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Empty) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Empty) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *Empty) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[0]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use Empty.ProtoReflect.Descriptor instead.
|
|
|
|
func (*Empty) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////
|
|
|
|
// FILE RELATED STUFF //
|
|
|
|
////////////////////////
|
2021-12-03 22:04:09 +00:00
|
|
|
type File struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
|
|
|
|
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
|
Metadata *File_Metadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File) Reset() {
|
|
|
|
*x = File{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[1]
|
2021-12-03 22:04:09 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*File) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *File) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[1]
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use File.ProtoReflect.Descriptor instead.
|
|
|
|
func (*File) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{1}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File) GetFileId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.FileId
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File) GetData() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.Data
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File) GetMetadata() *File_Metadata {
|
|
|
|
if x != nil {
|
|
|
|
return x.Metadata
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Service messages
|
|
|
|
// Upload
|
|
|
|
type UploadFileRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
|
OriginalFilename string `protobuf:"bytes,2,opt,name=original_filename,json=originalFilename,proto3" json:"original_filename,omitempty"`
|
|
|
|
ExpiresOn *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=expires_on,json=expiresOn,proto3" json:"expires_on,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileRequest) Reset() {
|
|
|
|
*x = UploadFileRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[2]
|
2021-12-03 22:04:09 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*UploadFileRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UploadFileRequest) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[2]
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use UploadFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UploadFileRequest) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{2}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileRequest) GetData() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.Data
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileRequest) GetOriginalFilename() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.OriginalFilename
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileRequest) GetExpiresOn() *timestamppb.Timestamp {
|
|
|
|
if x != nil {
|
|
|
|
return x.ExpiresOn
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type UploadFileResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
FileUrl string `protobuf:"bytes,2,opt,name=file_url,json=fileUrl,proto3" json:"file_url,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileResponse) Reset() {
|
|
|
|
*x = UploadFileResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[3]
|
2021-12-03 22:04:09 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*UploadFileResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UploadFileResponse) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[3]
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use UploadFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UploadFileResponse) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{3}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileResponse) GetId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Id
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UploadFileResponse) GetFileUrl() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.FileUrl
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get
|
|
|
|
type GetFileRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetFileRequest) Reset() {
|
|
|
|
*x = GetFileRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[4]
|
2021-12-03 22:04:09 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetFileRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*GetFileRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetFileRequest) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[4]
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use GetFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetFileRequest) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{4}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetFileRequest) GetId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Id
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetFileResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
File *File `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetFileResponse) Reset() {
|
|
|
|
*x = GetFileResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[5]
|
2021-12-03 22:04:09 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetFileResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*GetFileResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetFileResponse) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[5]
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use GetFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetFileResponse) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{5}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetFileResponse) GetFile() *File {
|
|
|
|
if x != nil {
|
|
|
|
return x.File
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-04 10:30:42 +00:00
|
|
|
// Delete
|
|
|
|
type DeleteFileRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *DeleteFileRequest) Reset() {
|
|
|
|
*x = DeleteFileRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[6]
|
2021-12-04 10:30:42 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *DeleteFileRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*DeleteFileRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *DeleteFileRequest) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[6]
|
2021-12-04 10:30:42 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use DeleteFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DeleteFileRequest) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{6}
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *DeleteFileRequest) GetId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Id
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteFileResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *DeleteFileResponse) Reset() {
|
|
|
|
*x = DeleteFileResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[7]
|
2021-12-04 10:30:42 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *DeleteFileResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*DeleteFileResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *DeleteFileResponse) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[7]
|
2021-12-04 10:30:42 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use DeleteFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DeleteFileResponse) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{7}
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// List
|
|
|
|
type ListFilesRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesRequest) Reset() {
|
|
|
|
*x = ListFilesRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[8]
|
2021-12-04 10:30:42 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ListFilesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *ListFilesRequest) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[8]
|
2021-12-04 10:30:42 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use ListFilesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListFilesRequest) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{8}
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ListFilesResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Files []*ListFilesResponse_ListFileInfo `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse) Reset() {
|
|
|
|
*x = ListFilesResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[9]
|
2021-12-04 10:30:42 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ListFilesResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse) ProtoReflect() protoreflect.Message {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[9]
|
2021-12-04 10:30:42 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use ListFilesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListFilesResponse) Descriptor() ([]byte, []int) {
|
2021-12-05 10:08:09 +00:00
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{9}
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse) GetFiles() []*ListFilesResponse_ListFileInfo {
|
|
|
|
if x != nil {
|
|
|
|
return x.Files
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
////////////////////////
|
|
|
|
// USER RELATED STUFF //
|
|
|
|
////////////////////////
|
|
|
|
type User struct {
|
2021-12-03 22:04:09 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
|
|
HashedPassword []byte `protobuf:"bytes,3,opt,name=hashed_password,json=hashedPassword,proto3" json:"hashed_password,omitempty"`
|
|
|
|
UserRole User_Role `protobuf:"varint,4,opt,name=user_role,json=userRole,proto3,enum=ezshare.User_Role" json:"user_role,omitempty"`
|
|
|
|
Active bool `protobuf:"varint,5,opt,name=active,proto3" json:"active,omitempty"`
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) Reset() {
|
|
|
|
*x = User{}
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[10]
|
2021-12-03 22:04:09 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) String() string {
|
2021-12-03 22:04:09 +00:00
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (*User) ProtoMessage() {}
|
2021-12-03 22:04:09 +00:00
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[10]
|
2021-12-03 22:04:09 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
// Deprecated: Use User.ProtoReflect.Descriptor instead.
|
|
|
|
func (*User) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{10}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) GetId() string {
|
2021-12-03 22:04:09 +00:00
|
|
|
if x != nil {
|
2021-12-05 10:08:09 +00:00
|
|
|
return x.Id
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
return ""
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) GetUsername() string {
|
2021-12-03 22:04:09 +00:00
|
|
|
if x != nil {
|
2021-12-05 10:08:09 +00:00
|
|
|
return x.Username
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *User) GetHashedPassword() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.HashedPassword
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) GetUserRole() User_Role {
|
2021-12-03 22:04:09 +00:00
|
|
|
if x != nil {
|
2021-12-05 10:08:09 +00:00
|
|
|
return x.UserRole
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
return User_UNAPPROVED
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *User) GetActive() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Active
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register
|
|
|
|
type RegisterUserRequest struct {
|
2021-12-04 10:30:42 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
|
|
|
|
Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserRequest) Reset() {
|
|
|
|
*x = RegisterUserRequest{}
|
2021-12-04 10:30:42 +00:00
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-12-05 10:08:09 +00:00
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[11]
|
2021-12-04 10:30:42 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserRequest) String() string {
|
2021-12-04 10:30:42 +00:00
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (*RegisterUserRequest) ProtoMessage() {}
|
2021-12-04 10:30:42 +00:00
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[11]
|
2021-12-04 10:30:42 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
// Deprecated: Use RegisterUserRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RegisterUserRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{11}
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserRequest) GetUsername() string {
|
2021-12-04 10:30:42 +00:00
|
|
|
if x != nil {
|
2021-12-05 10:08:09 +00:00
|
|
|
return x.Username
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserRequest) GetPassword() string {
|
2021-12-04 10:30:42 +00:00
|
|
|
if x != nil {
|
2021-12-05 10:08:09 +00:00
|
|
|
return x.Password
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
return ""
|
2021-12-04 10:30:42 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
type RegisterUserResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2021-12-03 22:04:09 +00:00
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserResponse) Reset() {
|
|
|
|
*x = RegisterUserResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[12]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
2021-12-03 22:04:09 +00:00
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (*RegisterUserResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *RegisterUserResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[12]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
|
|
|
|
// Deprecated: Use RegisterUserResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RegisterUserResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{12}
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 10:08:09 +00:00
|
|
|
func (x *RegisterUserResponse) GetId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Id
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RegisterUserResponse) GetToken() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Token
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login
|
|
|
|
type LoginUserRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
// Types that are assignable to RequestedLogin:
|
|
|
|
// *LoginUserRequest_WithToken
|
|
|
|
// *LoginUserRequest_WithPassword
|
|
|
|
RequestedLogin isLoginUserRequest_RequestedLogin `protobuf_oneof:"requested_login"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest) Reset() {
|
|
|
|
*x = LoginUserRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[13]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*LoginUserRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[13]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use LoginUserRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*LoginUserRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{13}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LoginUserRequest) GetRequestedLogin() isLoginUserRequest_RequestedLogin {
|
|
|
|
if m != nil {
|
|
|
|
return m.RequestedLogin
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest) GetWithToken() *LoginUserRequest_TokenLogin {
|
|
|
|
if x, ok := x.GetRequestedLogin().(*LoginUserRequest_WithToken); ok {
|
|
|
|
return x.WithToken
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest) GetWithPassword() *LoginUserRequest_UserPasswordLogin {
|
|
|
|
if x, ok := x.GetRequestedLogin().(*LoginUserRequest_WithPassword); ok {
|
|
|
|
return x.WithPassword
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type isLoginUserRequest_RequestedLogin interface {
|
|
|
|
isLoginUserRequest_RequestedLogin()
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginUserRequest_WithToken struct {
|
|
|
|
WithToken *LoginUserRequest_TokenLogin `protobuf:"bytes,1,opt,name=with_token,json=withToken,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginUserRequest_WithPassword struct {
|
|
|
|
WithPassword *LoginUserRequest_UserPasswordLogin `protobuf:"bytes,2,opt,name=with_password,json=withPassword,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*LoginUserRequest_WithToken) isLoginUserRequest_RequestedLogin() {}
|
|
|
|
|
|
|
|
func (*LoginUserRequest_WithPassword) isLoginUserRequest_RequestedLogin() {}
|
|
|
|
|
|
|
|
type LoginUserResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
ServerCert []byte `protobuf:"bytes,1,opt,name=server_cert,json=serverCert,proto3" json:"server_cert,omitempty"`
|
|
|
|
ClientCert []byte `protobuf:"bytes,2,opt,name=client_cert,json=clientCert,proto3" json:"client_cert,omitempty"`
|
|
|
|
ClientKey []byte `protobuf:"bytes,3,opt,name=client_key,json=clientKey,proto3" json:"client_key,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserResponse) Reset() {
|
|
|
|
*x = LoginUserResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[14]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*LoginUserResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *LoginUserResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[14]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use LoginUserResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*LoginUserResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{14}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserResponse) GetServerCert() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.ServerCert
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserResponse) GetClientCert() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.ClientCert
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserResponse) GetClientKey() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.ClientKey
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// List
|
|
|
|
type ListUsersRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListUsersRequest) Reset() {
|
|
|
|
*x = ListUsersRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[15]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListUsersRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ListUsersRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *ListUsersRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[15]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use ListUsersRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListUsersRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{15}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListUsersResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Users []*User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListUsersResponse) Reset() {
|
|
|
|
*x = ListUsersResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[16]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListUsersResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ListUsersResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *ListUsersResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[16]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use ListUsersResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListUsersResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{16}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListUsersResponse) GetUsers() []*User {
|
|
|
|
if x != nil {
|
|
|
|
return x.Users
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Approve
|
|
|
|
type ApproveUserRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ApproveUserRequest) Reset() {
|
|
|
|
*x = ApproveUserRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[17]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ApproveUserRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ApproveUserRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *ApproveUserRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[17]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use ApproveUserRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ApproveUserRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{17}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ApproveUserRequest) GetUserId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.UserId
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type File_Metadata struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
UploadedOn *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=uploaded_on,json=uploadedOn,proto3" json:"uploaded_on,omitempty"`
|
|
|
|
ExpiresOn *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=expires_on,json=expiresOn,proto3" json:"expires_on,omitempty"`
|
|
|
|
OriginalFilename string `protobuf:"bytes,3,opt,name=original_filename,json=originalFilename,proto3" json:"original_filename,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File_Metadata) Reset() {
|
|
|
|
*x = File_Metadata{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[18]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File_Metadata) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*File_Metadata) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *File_Metadata) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[18]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use File_Metadata.ProtoReflect.Descriptor instead.
|
|
|
|
func (*File_Metadata) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{1, 0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File_Metadata) GetUploadedOn() *timestamppb.Timestamp {
|
|
|
|
if x != nil {
|
|
|
|
return x.UploadedOn
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File_Metadata) GetExpiresOn() *timestamppb.Timestamp {
|
|
|
|
if x != nil {
|
|
|
|
return x.ExpiresOn
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *File_Metadata) GetOriginalFilename() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.OriginalFilename
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListFilesResponse_ListFileInfo struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
|
|
|
|
Metadata *File_Metadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse_ListFileInfo) Reset() {
|
|
|
|
*x = ListFilesResponse_ListFileInfo{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[19]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse_ListFileInfo) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ListFilesResponse_ListFileInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse_ListFileInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[19]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use ListFilesResponse_ListFileInfo.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListFilesResponse_ListFileInfo) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{9, 0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse_ListFileInfo) GetFileId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.FileId
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *ListFilesResponse_ListFileInfo) GetMetadata() *File_Metadata {
|
|
|
|
if x != nil {
|
|
|
|
return x.Metadata
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginUserRequest_UserPasswordLogin struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
|
|
|
|
Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_UserPasswordLogin) Reset() {
|
|
|
|
*x = LoginUserRequest_UserPasswordLogin{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[20]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_UserPasswordLogin) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*LoginUserRequest_UserPasswordLogin) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_UserPasswordLogin) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[20]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use LoginUserRequest_UserPasswordLogin.ProtoReflect.Descriptor instead.
|
|
|
|
func (*LoginUserRequest_UserPasswordLogin) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{13, 0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_UserPasswordLogin) GetUsername() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Username
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_UserPasswordLogin) GetPassword() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Password
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginUserRequest_TokenLogin struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_TokenLogin) Reset() {
|
|
|
|
*x = LoginUserRequest_TokenLogin{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[21]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_TokenLogin) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*LoginUserRequest_TokenLogin) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_TokenLogin) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_protos_ezshare_proto_msgTypes[21]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use LoginUserRequest_TokenLogin.ProtoReflect.Descriptor instead.
|
|
|
|
func (*LoginUserRequest_TokenLogin) Descriptor() ([]byte, []int) {
|
|
|
|
return file_protos_ezshare_proto_rawDescGZIP(), []int{13, 1}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *LoginUserRequest_TokenLogin) GetToken() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Token
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var File_protos_ezshare_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var file_protos_ezshare_proto_rawDesc = []byte{
|
|
|
|
0x0a, 0x14, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65,
|
|
|
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x1a,
|
|
|
|
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
|
|
0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
|
0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x99, 0x02, 0x0a, 0x04, 0x46, 0x69,
|
|
|
|
0x6c, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
|
|
0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x64,
|
|
|
|
0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12,
|
|
|
|
0x32, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
0x0b, 0x32, 0x16, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x46, 0x69, 0x6c, 0x65,
|
|
|
|
0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64,
|
|
|
|
0x61, 0x74, 0x61, 0x1a, 0xaf, 0x01, 0x0a, 0x08, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
|
|
|
|
0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x18,
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
|
|
|
|
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
|
|
|
|
0x70, 0x52, 0x0a, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x4f, 0x6e, 0x12, 0x39, 0x0a,
|
|
|
|
0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
|
|
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
|
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x65,
|
|
|
|
0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x4f, 0x6e, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x72, 0x69, 0x67,
|
|
|
|
0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
|
|
|
|
0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x6c,
|
|
|
|
0x65, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x8f, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64,
|
|
|
|
0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64,
|
|
|
|
0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12,
|
|
|
|
0x2b, 0x0a, 0x11, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x6c, 0x65,
|
|
|
|
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x69, 0x67,
|
|
|
|
0x69, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x39, 0x0a, 0x0a,
|
|
|
|
0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
|
|
0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x65, 0x78,
|
|
|
|
0x70, 0x69, 0x72, 0x65, 0x73, 0x4f, 0x6e, 0x22, 0x3f, 0x0a, 0x12, 0x55, 0x70, 0x6c, 0x6f, 0x61,
|
|
|
|
0x64, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a,
|
|
|
|
0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a,
|
|
|
|
0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
0x07, 0x66, 0x69, 0x6c, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x20, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x46,
|
|
|
|
0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
|
|
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x34, 0x0a, 0x0f, 0x47, 0x65,
|
|
|
|
0x74, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a,
|
|
|
|
0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x65, 0x7a,
|
|
|
|
0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x04, 0x66, 0x69, 0x6c, 0x65,
|
|
|
|
0x22, 0x23, 0x0a, 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x14, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46,
|
|
|
|
0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x12, 0x0a, 0x10, 0x4c,
|
|
|
|
0x69, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
|
|
|
|
0xaf, 0x01, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73,
|
|
|
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3d, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01,
|
|
|
|
0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c,
|
|
|
|
0x69, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
|
|
0x2e, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x66,
|
|
|
|
0x69, 0x6c, 0x65, 0x73, 0x1a, 0x5b, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x65,
|
|
|
|
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x32, 0x0a,
|
|
|
|
0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
|
|
0x16, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x2e, 0x4d,
|
|
|
|
0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
|
|
|
|
0x61, 0x22, 0xdf, 0x01, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
|
|
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,
|
|
|
|
0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
|
|
|
|
0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x68, 0x61, 0x73, 0x68, 0x65, 0x64,
|
|
|
|
0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
|
|
|
0x0e, 0x68, 0x61, 0x73, 0x68, 0x65, 0x64, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12,
|
|
|
|
0x2f, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01,
|
|
|
|
0x28, 0x0e, 0x32, 0x12, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x55, 0x73, 0x65,
|
|
|
|
0x72, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65,
|
|
|
|
0x12, 0x16, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x22, 0x39, 0x0a, 0x04, 0x52, 0x6f, 0x6c, 0x65,
|
|
|
|
0x12, 0x0e, 0x0a, 0x0a, 0x55, 0x4e, 0x41, 0x50, 0x50, 0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x00,
|
|
|
|
0x12, 0x0c, 0x0a, 0x08, 0x56, 0x49, 0x45, 0x57, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x01, 0x12, 0x08,
|
|
|
|
0x0a, 0x04, 0x55, 0x53, 0x45, 0x52, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x44, 0x4d, 0x49,
|
|
|
|
0x4e, 0x10, 0x03, 0x22, 0x4d, 0x0a, 0x13, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55,
|
|
|
|
0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,
|
|
|
|
0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
|
|
|
|
0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
|
|
|
|
0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
|
|
|
|
0x72, 0x64, 0x22, 0x3c, 0x0a, 0x14, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73,
|
|
|
|
0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
|
|
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
|
|
|
|
0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
|
|
|
|
0x22, 0xb1, 0x02, 0x0a, 0x10, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x45, 0x0a, 0x0a, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x74, 0x6f,
|
|
|
|
0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x65, 0x7a, 0x73, 0x68,
|
|
|
|
0x61, 0x72, 0x65, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71,
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x48,
|
|
|
|
0x00, 0x52, 0x09, 0x77, 0x69, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x52, 0x0a, 0x0d,
|
|
|
|
0x77, 0x69, 0x74, 0x68, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20,
|
|
|
|
0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c, 0x6f,
|
|
|
|
0x67, 0x69, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55,
|
|
|
|
0x73, 0x65, 0x72, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
|
|
|
|
0x48, 0x00, 0x52, 0x0c, 0x77, 0x69, 0x74, 0x68, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
|
|
|
|
0x1a, 0x4b, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
|
|
|
|
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
|
|
|
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
|
|
|
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20,
|
|
|
|
0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x1a, 0x22, 0x0a,
|
|
|
|
0x0a, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74,
|
|
|
|
0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65,
|
|
|
|
0x6e, 0x42, 0x11, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6c,
|
|
|
|
0x6f, 0x67, 0x69, 0x6e, 0x22, 0x74, 0x0a, 0x11, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x73, 0x65,
|
|
|
|
0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x72,
|
|
|
|
0x76, 0x65, 0x72, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a,
|
|
|
|
0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6c,
|
|
|
|
0x69, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
|
|
|
0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63,
|
|
|
|
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
|
|
|
0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x22, 0x12, 0x0a, 0x10, 0x4c, 0x69,
|
|
|
|
0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x38,
|
|
|
|
0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03,
|
|
|
|
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x55, 0x73, 0x65,
|
|
|
|
0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, 0x2d, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x72,
|
|
|
|
0x6f, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17,
|
|
|
|
0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x32, 0xa5, 0x02, 0x0a, 0x0b, 0x46, 0x69, 0x6c, 0x65,
|
|
|
|
0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x47, 0x0a, 0x0a, 0x55, 0x70, 0x6c, 0x6f, 0x61,
|
|
|
|
0x64, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e,
|
|
|
|
0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x1a, 0x1b, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x55, 0x70, 0x6c, 0x6f,
|
|
|
|
0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
|
|
0x12, 0x3e, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x17, 0x2e, 0x65, 0x7a,
|
|
|
|
0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71,
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x47,
|
|
|
|
0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
|
|
0x12, 0x47, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1a,
|
|
|
|
0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46,
|
|
|
|
0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x65, 0x7a, 0x73,
|
|
|
|
0x68, 0x61, 0x72, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52,
|
|
|
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x09, 0x4c, 0x69, 0x73,
|
|
|
|
0x74, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x19, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65,
|
|
|
|
0x2e, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x1a, 0x1a, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
0x46, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x32,
|
|
|
|
0x95, 0x02, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
|
|
|
|
0x49, 0x0a, 0x08, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x1c, 0x2e, 0x65, 0x7a,
|
|
|
|
0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73,
|
|
|
|
0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x65, 0x7a, 0x73, 0x68,
|
|
|
|
0x61, 0x72, 0x65, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x05, 0x4c, 0x6f,
|
|
|
|
0x67, 0x69, 0x6e, 0x12, 0x19, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c, 0x6f,
|
|
|
|
0x67, 0x69, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a,
|
|
|
|
0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x73,
|
|
|
|
0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x04,
|
|
|
|
0x4c, 0x69, 0x73, 0x74, 0x12, 0x19, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c,
|
|
|
|
0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
|
|
0x1a, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73,
|
|
|
|
0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x38, 0x0a,
|
|
|
|
0x07, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x12, 0x1b, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61,
|
|
|
|
0x72, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2e,
|
|
|
|
0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x42, 0x23, 0x5a, 0x21, 0x67, 0x69, 0x74, 0x65, 0x61,
|
|
|
|
0x2e, 0x62, 0x65, 0x6e, 0x6e, 0x79, 0x2e, 0x64, 0x6f, 0x67, 0x2f, 0x74, 0x6f, 0x72, 0x6a, 0x75,
|
|
|
|
0x73, 0x2f, 0x65, 0x7a, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72,
|
|
|
|
0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
file_protos_ezshare_proto_rawDescOnce sync.Once
|
|
|
|
file_protos_ezshare_proto_rawDescData = file_protos_ezshare_proto_rawDesc
|
|
|
|
)
|
|
|
|
|
|
|
|
func file_protos_ezshare_proto_rawDescGZIP() []byte {
|
|
|
|
file_protos_ezshare_proto_rawDescOnce.Do(func() {
|
|
|
|
file_protos_ezshare_proto_rawDescData = protoimpl.X.CompressGZIP(file_protos_ezshare_proto_rawDescData)
|
|
|
|
})
|
|
|
|
return file_protos_ezshare_proto_rawDescData
|
|
|
|
}
|
|
|
|
|
|
|
|
var file_protos_ezshare_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
|
|
var file_protos_ezshare_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
|
|
|
|
var file_protos_ezshare_proto_goTypes = []interface{}{
|
|
|
|
(User_Role)(0), // 0: ezshare.User.Role
|
|
|
|
(*Empty)(nil), // 1: ezshare.Empty
|
|
|
|
(*File)(nil), // 2: ezshare.File
|
|
|
|
(*UploadFileRequest)(nil), // 3: ezshare.UploadFileRequest
|
|
|
|
(*UploadFileResponse)(nil), // 4: ezshare.UploadFileResponse
|
|
|
|
(*GetFileRequest)(nil), // 5: ezshare.GetFileRequest
|
|
|
|
(*GetFileResponse)(nil), // 6: ezshare.GetFileResponse
|
|
|
|
(*DeleteFileRequest)(nil), // 7: ezshare.DeleteFileRequest
|
|
|
|
(*DeleteFileResponse)(nil), // 8: ezshare.DeleteFileResponse
|
|
|
|
(*ListFilesRequest)(nil), // 9: ezshare.ListFilesRequest
|
|
|
|
(*ListFilesResponse)(nil), // 10: ezshare.ListFilesResponse
|
|
|
|
(*User)(nil), // 11: ezshare.User
|
|
|
|
(*RegisterUserRequest)(nil), // 12: ezshare.RegisterUserRequest
|
|
|
|
(*RegisterUserResponse)(nil), // 13: ezshare.RegisterUserResponse
|
|
|
|
(*LoginUserRequest)(nil), // 14: ezshare.LoginUserRequest
|
|
|
|
(*LoginUserResponse)(nil), // 15: ezshare.LoginUserResponse
|
|
|
|
(*ListUsersRequest)(nil), // 16: ezshare.ListUsersRequest
|
|
|
|
(*ListUsersResponse)(nil), // 17: ezshare.ListUsersResponse
|
|
|
|
(*ApproveUserRequest)(nil), // 18: ezshare.ApproveUserRequest
|
|
|
|
(*File_Metadata)(nil), // 19: ezshare.File.Metadata
|
|
|
|
(*ListFilesResponse_ListFileInfo)(nil), // 20: ezshare.ListFilesResponse.ListFileInfo
|
|
|
|
(*LoginUserRequest_UserPasswordLogin)(nil), // 21: ezshare.LoginUserRequest.UserPasswordLogin
|
|
|
|
(*LoginUserRequest_TokenLogin)(nil), // 22: ezshare.LoginUserRequest.TokenLogin
|
|
|
|
(*timestamppb.Timestamp)(nil), // 23: google.protobuf.Timestamp
|
|
|
|
}
|
|
|
|
var file_protos_ezshare_proto_depIdxs = []int32{
|
|
|
|
19, // 0: ezshare.File.metadata:type_name -> ezshare.File.Metadata
|
|
|
|
23, // 1: ezshare.UploadFileRequest.expires_on:type_name -> google.protobuf.Timestamp
|
|
|
|
2, // 2: ezshare.GetFileResponse.file:type_name -> ezshare.File
|
|
|
|
20, // 3: ezshare.ListFilesResponse.files:type_name -> ezshare.ListFilesResponse.ListFileInfo
|
|
|
|
0, // 4: ezshare.User.user_role:type_name -> ezshare.User.Role
|
|
|
|
22, // 5: ezshare.LoginUserRequest.with_token:type_name -> ezshare.LoginUserRequest.TokenLogin
|
|
|
|
21, // 6: ezshare.LoginUserRequest.with_password:type_name -> ezshare.LoginUserRequest.UserPasswordLogin
|
|
|
|
11, // 7: ezshare.ListUsersResponse.users:type_name -> ezshare.User
|
|
|
|
23, // 8: ezshare.File.Metadata.uploaded_on:type_name -> google.protobuf.Timestamp
|
|
|
|
23, // 9: ezshare.File.Metadata.expires_on:type_name -> google.protobuf.Timestamp
|
|
|
|
19, // 10: ezshare.ListFilesResponse.ListFileInfo.metadata:type_name -> ezshare.File.Metadata
|
|
|
|
3, // 11: ezshare.FileService.UploadFile:input_type -> ezshare.UploadFileRequest
|
|
|
|
5, // 12: ezshare.FileService.GetFile:input_type -> ezshare.GetFileRequest
|
|
|
|
7, // 13: ezshare.FileService.DeleteFile:input_type -> ezshare.DeleteFileRequest
|
|
|
|
9, // 14: ezshare.FileService.ListFiles:input_type -> ezshare.ListFilesRequest
|
|
|
|
12, // 15: ezshare.UserService.Register:input_type -> ezshare.RegisterUserRequest
|
|
|
|
14, // 16: ezshare.UserService.Login:input_type -> ezshare.LoginUserRequest
|
|
|
|
16, // 17: ezshare.UserService.List:input_type -> ezshare.ListUsersRequest
|
|
|
|
18, // 18: ezshare.UserService.Approve:input_type -> ezshare.ApproveUserRequest
|
|
|
|
4, // 19: ezshare.FileService.UploadFile:output_type -> ezshare.UploadFileResponse
|
|
|
|
6, // 20: ezshare.FileService.GetFile:output_type -> ezshare.GetFileResponse
|
|
|
|
8, // 21: ezshare.FileService.DeleteFile:output_type -> ezshare.DeleteFileResponse
|
|
|
|
10, // 22: ezshare.FileService.ListFiles:output_type -> ezshare.ListFilesResponse
|
|
|
|
13, // 23: ezshare.UserService.Register:output_type -> ezshare.RegisterUserResponse
|
|
|
|
15, // 24: ezshare.UserService.Login:output_type -> ezshare.LoginUserResponse
|
|
|
|
17, // 25: ezshare.UserService.List:output_type -> ezshare.ListUsersResponse
|
|
|
|
1, // 26: ezshare.UserService.Approve:output_type -> ezshare.Empty
|
|
|
|
19, // [19:27] is the sub-list for method output_type
|
|
|
|
11, // [11:19] is the sub-list for method input_type
|
|
|
|
11, // [11:11] is the sub-list for extension type_name
|
|
|
|
11, // [11:11] is the sub-list for extension extendee
|
|
|
|
0, // [0:11] is the sub-list for field type_name
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { file_protos_ezshare_proto_init() }
|
|
|
|
func file_protos_ezshare_proto_init() {
|
|
|
|
if File_protos_ezshare_proto != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !protoimpl.UnsafeEnabled {
|
|
|
|
file_protos_ezshare_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*Empty); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*File); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*UploadFileRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
2021-12-03 22:04:09 +00:00
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*UploadFileResponse); i {
|
2021-12-03 22:04:09 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*GetFileRequest); i {
|
2021-12-03 22:04:09 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*GetFileResponse); i {
|
2021-12-04 10:30:42 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*DeleteFileRequest); i {
|
2021-12-04 10:30:42 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*DeleteFileResponse); i {
|
2021-12-04 10:30:42 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*ListFilesRequest); i {
|
2021-12-04 10:30:42 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*ListFilesResponse); i {
|
2021-12-03 22:04:09 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2021-12-04 10:30:42 +00:00
|
|
|
file_protos_ezshare_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-05 10:08:09 +00:00
|
|
|
switch v := v.(*User); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*RegisterUserRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*RegisterUserResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*LoginUserRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*LoginUserResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*ListUsersRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*ListUsersResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*ApproveUserRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*File_Metadata); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
2021-12-04 10:30:42 +00:00
|
|
|
switch v := v.(*ListFilesResponse_ListFileInfo); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2021-12-05 10:08:09 +00:00
|
|
|
file_protos_ezshare_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*LoginUserRequest_UserPasswordLogin); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*LoginUserRequest_TokenLogin); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_protos_ezshare_proto_msgTypes[13].OneofWrappers = []interface{}{
|
|
|
|
(*LoginUserRequest_WithToken)(nil),
|
|
|
|
(*LoginUserRequest_WithPassword)(nil),
|
2021-12-03 22:04:09 +00:00
|
|
|
}
|
|
|
|
type x struct{}
|
|
|
|
out := protoimpl.TypeBuilder{
|
|
|
|
File: protoimpl.DescBuilder{
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: file_protos_ezshare_proto_rawDesc,
|
2021-12-05 10:08:09 +00:00
|
|
|
NumEnums: 1,
|
|
|
|
NumMessages: 22,
|
2021-12-03 22:04:09 +00:00
|
|
|
NumExtensions: 0,
|
2021-12-05 10:08:09 +00:00
|
|
|
NumServices: 2,
|
2021-12-03 22:04:09 +00:00
|
|
|
},
|
|
|
|
GoTypes: file_protos_ezshare_proto_goTypes,
|
|
|
|
DependencyIndexes: file_protos_ezshare_proto_depIdxs,
|
2021-12-05 10:08:09 +00:00
|
|
|
EnumInfos: file_protos_ezshare_proto_enumTypes,
|
2021-12-03 22:04:09 +00:00
|
|
|
MessageInfos: file_protos_ezshare_proto_msgTypes,
|
|
|
|
}.Build()
|
|
|
|
File_protos_ezshare_proto = out.File
|
|
|
|
file_protos_ezshare_proto_rawDesc = nil
|
|
|
|
file_protos_ezshare_proto_goTypes = nil
|
|
|
|
file_protos_ezshare_proto_depIdxs = nil
|
|
|
|
}
|