488 lines
14 KiB
Go
488 lines
14 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.6
|
|
// protoc v5.29.3
|
|
// source: authenticate.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
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)
|
|
)
|
|
|
|
type AuthInfo struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Info *UserInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
|
|
SessionId uint64 `protobuf:"varint,3,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *AuthInfo) Reset() {
|
|
*x = AuthInfo{}
|
|
mi := &file_authenticate_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *AuthInfo) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*AuthInfo) ProtoMessage() {}
|
|
|
|
func (x *AuthInfo) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use AuthInfo.ProtoReflect.Descriptor instead.
|
|
func (*AuthInfo) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *AuthInfo) GetInfo() *UserInfo {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *AuthInfo) GetSessionId() uint64 {
|
|
if x != nil {
|
|
return x.SessionId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type AuthRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
SessionId uint64 `protobuf:"varint,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *AuthRequest) Reset() {
|
|
*x = AuthRequest{}
|
|
mi := &file_authenticate_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *AuthRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*AuthRequest) ProtoMessage() {}
|
|
|
|
func (x *AuthRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use AuthRequest.ProtoReflect.Descriptor instead.
|
|
func (*AuthRequest) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *AuthRequest) GetSessionId() uint64 {
|
|
if x != nil {
|
|
return x.SessionId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type AuthReply struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
IsValid bool `protobuf:"varint,1,opt,name=is_valid,json=isValid,proto3" json:"is_valid,omitempty"`
|
|
Info *AuthInfo `protobuf:"bytes,2,opt,name=info,proto3,oneof" json:"info,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *AuthReply) Reset() {
|
|
*x = AuthReply{}
|
|
mi := &file_authenticate_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *AuthReply) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*AuthReply) ProtoMessage() {}
|
|
|
|
func (x *AuthReply) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[2]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use AuthReply.ProtoReflect.Descriptor instead.
|
|
func (*AuthReply) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *AuthReply) GetIsValid() bool {
|
|
if x != nil {
|
|
return x.IsValid
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *AuthReply) GetInfo() *AuthInfo {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CheckPermRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
SessionId uint64 `protobuf:"varint,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
Value []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *CheckPermRequest) Reset() {
|
|
*x = CheckPermRequest{}
|
|
mi := &file_authenticate_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *CheckPermRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CheckPermRequest) ProtoMessage() {}
|
|
|
|
func (x *CheckPermRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[3]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CheckPermRequest.ProtoReflect.Descriptor instead.
|
|
func (*CheckPermRequest) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *CheckPermRequest) GetSessionId() uint64 {
|
|
if x != nil {
|
|
return x.SessionId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *CheckPermRequest) GetKey() string {
|
|
if x != nil {
|
|
return x.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CheckPermRequest) GetValue() []byte {
|
|
if x != nil {
|
|
return x.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CheckPermResponse struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
IsValid bool `protobuf:"varint,1,opt,name=is_valid,json=isValid,proto3" json:"is_valid,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *CheckPermResponse) Reset() {
|
|
*x = CheckPermResponse{}
|
|
mi := &file_authenticate_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *CheckPermResponse) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CheckPermResponse) ProtoMessage() {}
|
|
|
|
func (x *CheckPermResponse) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[4]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CheckPermResponse.ProtoReflect.Descriptor instead.
|
|
func (*CheckPermResponse) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *CheckPermResponse) GetIsValid() bool {
|
|
if x != nil {
|
|
return x.IsValid
|
|
}
|
|
return false
|
|
}
|
|
|
|
type CheckUserPermRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
OtherId uint64 `protobuf:"varint,2,opt,name=other_id,json=otherId,proto3" json:"other_id,omitempty"`
|
|
Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
|
|
Value []byte `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *CheckUserPermRequest) Reset() {
|
|
*x = CheckUserPermRequest{}
|
|
mi := &file_authenticate_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *CheckUserPermRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CheckUserPermRequest) ProtoMessage() {}
|
|
|
|
func (x *CheckUserPermRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[5]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CheckUserPermRequest.ProtoReflect.Descriptor instead.
|
|
func (*CheckUserPermRequest) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *CheckUserPermRequest) GetUserId() uint64 {
|
|
if x != nil {
|
|
return x.UserId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *CheckUserPermRequest) GetOtherId() uint64 {
|
|
if x != nil {
|
|
return x.OtherId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *CheckUserPermRequest) GetKey() string {
|
|
if x != nil {
|
|
return x.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CheckUserPermRequest) GetValue() []byte {
|
|
if x != nil {
|
|
return x.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CheckUserPermResponse struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
IsValid bool `protobuf:"varint,1,opt,name=is_valid,json=isValid,proto3" json:"is_valid,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *CheckUserPermResponse) Reset() {
|
|
*x = CheckUserPermResponse{}
|
|
mi := &file_authenticate_proto_msgTypes[6]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *CheckUserPermResponse) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CheckUserPermResponse) ProtoMessage() {}
|
|
|
|
func (x *CheckUserPermResponse) ProtoReflect() protoreflect.Message {
|
|
mi := &file_authenticate_proto_msgTypes[6]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CheckUserPermResponse.ProtoReflect.Descriptor instead.
|
|
func (*CheckUserPermResponse) Descriptor() ([]byte, []int) {
|
|
return file_authenticate_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
|
|
func (x *CheckUserPermResponse) GetIsValid() bool {
|
|
if x != nil {
|
|
return x.IsValid
|
|
}
|
|
return false
|
|
}
|
|
|
|
var File_authenticate_proto protoreflect.FileDescriptor
|
|
|
|
const file_authenticate_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\x12authenticate.proto\x12\x05proto\x1a\n" +
|
|
"user.proto\"N\n" +
|
|
"\bAuthInfo\x12#\n" +
|
|
"\x04info\x18\x01 \x01(\v2\x0f.proto.UserInfoR\x04info\x12\x1d\n" +
|
|
"\n" +
|
|
"session_id\x18\x03 \x01(\x04R\tsessionId\",\n" +
|
|
"\vAuthRequest\x12\x1d\n" +
|
|
"\n" +
|
|
"session_id\x18\x01 \x01(\x04R\tsessionId\"Y\n" +
|
|
"\tAuthReply\x12\x19\n" +
|
|
"\bis_valid\x18\x01 \x01(\bR\aisValid\x12(\n" +
|
|
"\x04info\x18\x02 \x01(\v2\x0f.proto.AuthInfoH\x00R\x04info\x88\x01\x01B\a\n" +
|
|
"\x05_info\"Y\n" +
|
|
"\x10CheckPermRequest\x12\x1d\n" +
|
|
"\n" +
|
|
"session_id\x18\x01 \x01(\x04R\tsessionId\x12\x10\n" +
|
|
"\x03key\x18\x02 \x01(\tR\x03key\x12\x14\n" +
|
|
"\x05value\x18\x03 \x01(\fR\x05value\".\n" +
|
|
"\x11CheckPermResponse\x12\x19\n" +
|
|
"\bis_valid\x18\x01 \x01(\bR\aisValid\"r\n" +
|
|
"\x14CheckUserPermRequest\x12\x17\n" +
|
|
"\auser_id\x18\x01 \x01(\x04R\x06userId\x12\x19\n" +
|
|
"\bother_id\x18\x02 \x01(\x04R\aotherId\x12\x10\n" +
|
|
"\x03key\x18\x03 \x01(\tR\x03key\x12\x14\n" +
|
|
"\x05value\x18\x04 \x01(\fR\x05value\"2\n" +
|
|
"\x15CheckUserPermResponse\x12\x19\n" +
|
|
"\bis_valid\x18\x01 \x01(\bR\aisValid2\xe5\x01\n" +
|
|
"\vAuthService\x126\n" +
|
|
"\fAuthenticate\x12\x12.proto.AuthRequest\x1a\x10.proto.AuthReply\"\x00\x12H\n" +
|
|
"\x11EnsurePermGranted\x12\x17.proto.CheckPermRequest\x1a\x18.proto.CheckPermResponse\"\x00\x12T\n" +
|
|
"\x15EnsureUserPermGranted\x12\x1b.proto.CheckUserPermRequest\x1a\x1c.proto.CheckUserPermResponse\"\x00B\tZ\a.;protob\x06proto3"
|
|
|
|
var (
|
|
file_authenticate_proto_rawDescOnce sync.Once
|
|
file_authenticate_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_authenticate_proto_rawDescGZIP() []byte {
|
|
file_authenticate_proto_rawDescOnce.Do(func() {
|
|
file_authenticate_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_authenticate_proto_rawDesc), len(file_authenticate_proto_rawDesc)))
|
|
})
|
|
return file_authenticate_proto_rawDescData
|
|
}
|
|
|
|
var file_authenticate_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
|
|
var file_authenticate_proto_goTypes = []any{
|
|
(*AuthInfo)(nil), // 0: proto.AuthInfo
|
|
(*AuthRequest)(nil), // 1: proto.AuthRequest
|
|
(*AuthReply)(nil), // 2: proto.AuthReply
|
|
(*CheckPermRequest)(nil), // 3: proto.CheckPermRequest
|
|
(*CheckPermResponse)(nil), // 4: proto.CheckPermResponse
|
|
(*CheckUserPermRequest)(nil), // 5: proto.CheckUserPermRequest
|
|
(*CheckUserPermResponse)(nil), // 6: proto.CheckUserPermResponse
|
|
(*UserInfo)(nil), // 7: proto.UserInfo
|
|
}
|
|
var file_authenticate_proto_depIdxs = []int32{
|
|
7, // 0: proto.AuthInfo.info:type_name -> proto.UserInfo
|
|
0, // 1: proto.AuthReply.info:type_name -> proto.AuthInfo
|
|
1, // 2: proto.AuthService.Authenticate:input_type -> proto.AuthRequest
|
|
3, // 3: proto.AuthService.EnsurePermGranted:input_type -> proto.CheckPermRequest
|
|
5, // 4: proto.AuthService.EnsureUserPermGranted:input_type -> proto.CheckUserPermRequest
|
|
2, // 5: proto.AuthService.Authenticate:output_type -> proto.AuthReply
|
|
4, // 6: proto.AuthService.EnsurePermGranted:output_type -> proto.CheckPermResponse
|
|
6, // 7: proto.AuthService.EnsureUserPermGranted:output_type -> proto.CheckUserPermResponse
|
|
5, // [5:8] is the sub-list for method output_type
|
|
2, // [2:5] is the sub-list for method input_type
|
|
2, // [2:2] is the sub-list for extension type_name
|
|
2, // [2:2] is the sub-list for extension extendee
|
|
0, // [0:2] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_authenticate_proto_init() }
|
|
func file_authenticate_proto_init() {
|
|
if File_authenticate_proto != nil {
|
|
return
|
|
}
|
|
file_user_proto_init()
|
|
file_authenticate_proto_msgTypes[2].OneofWrappers = []any{}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_authenticate_proto_rawDesc), len(file_authenticate_proto_rawDesc)),
|
|
NumEnums: 0,
|
|
NumMessages: 7,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
},
|
|
GoTypes: file_authenticate_proto_goTypes,
|
|
DependencyIndexes: file_authenticate_proto_depIdxs,
|
|
MessageInfos: file_authenticate_proto_msgTypes,
|
|
}.Build()
|
|
File_authenticate_proto = out.File
|
|
file_authenticate_proto_goTypes = nil
|
|
file_authenticate_proto_depIdxs = nil
|
|
}
|