mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
实现Ticket登录
This commit is contained in:
@@ -4430,6 +4430,35 @@
|
|||||||
"filename": "service_login_session.proto",
|
"filename": "service_login_session.proto",
|
||||||
"doc": "登录SESSION服务"
|
"doc": "登录SESSION服务"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "LoginTicketService",
|
||||||
|
"methods": [
|
||||||
|
{
|
||||||
|
"name": "createLoginTicket",
|
||||||
|
"requestMessageName": "CreateLoginTicketRequest",
|
||||||
|
"responseMessageName": "CreateLoginTicketResponse",
|
||||||
|
"code": "rpc createLoginTicket(CreateLoginTicketRequest) returns (CreateLoginTicketResponse);",
|
||||||
|
"doc": "创建票据",
|
||||||
|
"roles": [
|
||||||
|
"admin"
|
||||||
|
],
|
||||||
|
"isDeprecated": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "findLoginTicketWithValue",
|
||||||
|
"requestMessageName": "FindLoginTicketWithValueRequest",
|
||||||
|
"responseMessageName": "FindLoginTicketWithValueResponse",
|
||||||
|
"code": "rpc findLoginTicketWithValue(FindLoginTicketWithValueRequest) returns (FindLoginTicketWithValueResponse);",
|
||||||
|
"doc": "查找票据\n查找成功后,会自动删除票据信息,所以票据信息只能查询一次",
|
||||||
|
"roles": [
|
||||||
|
"admin"
|
||||||
|
],
|
||||||
|
"isDeprecated": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"filename": "service_login_ticket.proto",
|
||||||
|
"doc": "登录票据相关服务"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "MessageService",
|
"name": "MessageService",
|
||||||
"methods": [
|
"methods": [
|
||||||
@@ -15622,6 +15651,16 @@
|
|||||||
"code": "message CreateLogResponse {\n\n}",
|
"code": "message CreateLogResponse {\n\n}",
|
||||||
"doc": ""
|
"doc": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "CreateLoginTicketRequest",
|
||||||
|
"code": "message CreateLoginTicketRequest {\n\tint64 adminId = 1; // 管理员ID,和用户ID二选一\n\tint64 userId = 2; // 用户ID\n\tstring ip = 3; // 可选参数,用户客户端IP\n}",
|
||||||
|
"doc": "创建票据"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CreateLoginTicketResponse",
|
||||||
|
"code": "message CreateLoginTicketResponse {\n\tstring value = 1; // 票据值\n}",
|
||||||
|
"doc": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "CreateMessageMediaInstanceRequest",
|
"name": "CreateMessageMediaInstanceRequest",
|
||||||
"code": "message CreateMessageMediaInstanceRequest {\n\tstring name = 1;\n\tstring mediaType = 2;\n\tbytes paramsJSON = 3;\n\trepeated int64 groupIds = 4;\n\tstring description = 5;\n\tbytes rateJSON = 6;\n\tint32 hashLife = 7;\n}",
|
"code": "message CreateMessageMediaInstanceRequest {\n\tstring name = 1;\n\tstring mediaType = 2;\n\tbytes paramsJSON = 3;\n\trepeated int64 groupIds = 4;\n\tstring description = 5;\n\tbytes rateJSON = 6;\n\tint32 hashLife = 7;\n}",
|
||||||
@@ -19552,6 +19591,16 @@
|
|||||||
"code": "message FindLoginSessionResponse {\n\tLoginSession loginSession = 1; // SESSION信息\n}",
|
"code": "message FindLoginSessionResponse {\n\tLoginSession loginSession = 1; // SESSION信息\n}",
|
||||||
"doc": ""
|
"doc": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "FindLoginTicketWithValueRequest",
|
||||||
|
"code": "message FindLoginTicketWithValueRequest {\n\tstring value = 1; // 票据值\n}",
|
||||||
|
"doc": "查找票据"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FindLoginTicketWithValueResponse",
|
||||||
|
"code": "message FindLoginTicketWithValueResponse {\n\tLoginTicket loginTicket = 1; // 票据信息\n}",
|
||||||
|
"doc": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "FindNSAccessLogRequest",
|
"name": "FindNSAccessLogRequest",
|
||||||
"code": "message FindNSAccessLogRequest {\n\tstring requestId = 1;\n}",
|
"code": "message FindNSAccessLogRequest {\n\tstring requestId = 1;\n}",
|
||||||
@@ -21567,6 +21616,11 @@
|
|||||||
"code": "message LoginSession {\n\tint64 id = 1;\n\tint64 adminId = 2;\n\tint64 userId = 3;\n\tstring sid = 4;\n\tbytes valuesJSON = 5;\n\tstring ip = 6;\n\tint64 createdAt = 7;\n\tint64 expiresAt = 8;\n}",
|
"code": "message LoginSession {\n\tint64 id = 1;\n\tint64 adminId = 2;\n\tint64 userId = 3;\n\tstring sid = 4;\n\tbytes valuesJSON = 5;\n\tstring ip = 6;\n\tint64 createdAt = 7;\n\tint64 expiresAt = 8;\n}",
|
||||||
"doc": "登录SESSION"
|
"doc": "登录SESSION"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "LoginTicket",
|
||||||
|
"code": "message LoginTicket {\n\tint64 id = 1; // ID\n\tint64 expiresAt = 2; // 过期时间\n\tstring value = 3; // 票据值\n\tint64 adminId = 4; // 管理员ID\n\tint64 userId = 5; // 用户ID\n\tstring ip = 6; // 登录时客户端IP\n}",
|
||||||
|
"doc": "登录票据"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "LoginUserRequest",
|
"name": "LoginUserRequest",
|
||||||
"code": "message LoginUserRequest {\n\tstring username = 1;\n\tstring password = 2;\n}",
|
"code": "message LoginUserRequest {\n\tstring username = 1;\n\tstring password = 2;\n}",
|
||||||
|
|||||||
190
pkg/rpc/pb/model_login_ticket.pb.go
Normal file
190
pkg/rpc/pb/model_login_ticket.pb.go
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.31.0
|
||||||
|
// protoc v3.19.4
|
||||||
|
// source: models/model_login_ticket.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
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)
|
||||||
|
)
|
||||||
|
|
||||||
|
// 登录票据
|
||||||
|
type LoginTicket struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // ID
|
||||||
|
ExpiresAt int64 `protobuf:"varint,2,opt,name=expiresAt,proto3" json:"expiresAt,omitempty"` // 过期时间
|
||||||
|
Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"` // 票据值
|
||||||
|
AdminId int64 `protobuf:"varint,4,opt,name=adminId,proto3" json:"adminId,omitempty"` // 管理员ID
|
||||||
|
UserId int64 `protobuf:"varint,5,opt,name=userId,proto3" json:"userId,omitempty"` // 用户ID
|
||||||
|
Ip string `protobuf:"bytes,6,opt,name=ip,proto3" json:"ip,omitempty"` // 登录时客户端IP
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) Reset() {
|
||||||
|
*x = LoginTicket{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_models_model_login_ticket_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*LoginTicket) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *LoginTicket) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_models_model_login_ticket_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 LoginTicket.ProtoReflect.Descriptor instead.
|
||||||
|
func (*LoginTicket) Descriptor() ([]byte, []int) {
|
||||||
|
return file_models_model_login_ticket_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) GetId() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) GetExpiresAt() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.ExpiresAt
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) GetValue() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Value
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) GetAdminId() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.AdminId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) GetUserId() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.UserId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *LoginTicket) GetIp() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Ip
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_models_model_login_ticket_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_models_model_login_ticket_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x1f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6c,
|
||||||
|
0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0x93, 0x01, 0x0a, 0x0b, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54,
|
||||||
|
0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||||
|
0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73,
|
||||||
|
0x41, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65,
|
||||||
|
0x73, 0x41, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01,
|
||||||
|
0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x6d,
|
||||||
|
0x69, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x61, 0x64, 0x6d, 0x69,
|
||||||
|
0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20,
|
||||||
|
0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69,
|
||||||
|
0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e,
|
||||||
|
0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_models_model_login_ticket_proto_rawDescOnce sync.Once
|
||||||
|
file_models_model_login_ticket_proto_rawDescData = file_models_model_login_ticket_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_models_model_login_ticket_proto_rawDescGZIP() []byte {
|
||||||
|
file_models_model_login_ticket_proto_rawDescOnce.Do(func() {
|
||||||
|
file_models_model_login_ticket_proto_rawDescData = protoimpl.X.CompressGZIP(file_models_model_login_ticket_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_models_model_login_ticket_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_models_model_login_ticket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||||
|
var file_models_model_login_ticket_proto_goTypes = []interface{}{
|
||||||
|
(*LoginTicket)(nil), // 0: pb.LoginTicket
|
||||||
|
}
|
||||||
|
var file_models_model_login_ticket_proto_depIdxs = []int32{
|
||||||
|
0, // [0:0] is the sub-list for method output_type
|
||||||
|
0, // [0:0] is the sub-list for method input_type
|
||||||
|
0, // [0:0] is the sub-list for extension type_name
|
||||||
|
0, // [0:0] is the sub-list for extension extendee
|
||||||
|
0, // [0:0] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_models_model_login_ticket_proto_init() }
|
||||||
|
func file_models_model_login_ticket_proto_init() {
|
||||||
|
if File_models_model_login_ticket_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_models_model_login_ticket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*LoginTicket); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_models_model_login_ticket_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 1,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 0,
|
||||||
|
},
|
||||||
|
GoTypes: file_models_model_login_ticket_proto_goTypes,
|
||||||
|
DependencyIndexes: file_models_model_login_ticket_proto_depIdxs,
|
||||||
|
MessageInfos: file_models_model_login_ticket_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_models_model_login_ticket_proto = out.File
|
||||||
|
file_models_model_login_ticket_proto_rawDesc = nil
|
||||||
|
file_models_model_login_ticket_proto_goTypes = nil
|
||||||
|
file_models_model_login_ticket_proto_depIdxs = nil
|
||||||
|
}
|
||||||
378
pkg/rpc/pb/service_login_ticket.pb.go
Normal file
378
pkg/rpc/pb/service_login_ticket.pb.go
Normal file
@@ -0,0 +1,378 @@
|
|||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// protoc-gen-go v1.31.0
|
||||||
|
// protoc v3.19.4
|
||||||
|
// source: service_login_ticket.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
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)
|
||||||
|
)
|
||||||
|
|
||||||
|
// 创建票据
|
||||||
|
type CreateLoginTicketRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
AdminId int64 `protobuf:"varint,1,opt,name=adminId,proto3" json:"adminId,omitempty"` // 管理员ID,和用户ID二选一
|
||||||
|
UserId int64 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"` // 用户ID
|
||||||
|
Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"` // 可选参数,用户客户端IP
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketRequest) Reset() {
|
||||||
|
*x = CreateLoginTicketRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*CreateLoginTicketRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_service_login_ticket_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 CreateLoginTicketRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*CreateLoginTicketRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_service_login_ticket_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketRequest) GetAdminId() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.AdminId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketRequest) GetUserId() int64 {
|
||||||
|
if x != nil {
|
||||||
|
return x.UserId
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketRequest) GetIp() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Ip
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateLoginTicketResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` // 票据值
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketResponse) Reset() {
|
||||||
|
*x = CreateLoginTicketResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[1]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*CreateLoginTicketResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[1]
|
||||||
|
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 CreateLoginTicketResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*CreateLoginTicketResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_service_login_ticket_proto_rawDescGZIP(), []int{1}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CreateLoginTicketResponse) GetValue() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Value
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查找票据
|
||||||
|
type FindLoginTicketWithValueRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` // 票据值
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueRequest) Reset() {
|
||||||
|
*x = FindLoginTicketWithValueRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[2]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*FindLoginTicketWithValueRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[2]
|
||||||
|
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 FindLoginTicketWithValueRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*FindLoginTicketWithValueRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_service_login_ticket_proto_rawDescGZIP(), []int{2}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueRequest) GetValue() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Value
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
type FindLoginTicketWithValueResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
LoginTicket *LoginTicket `protobuf:"bytes,1,opt,name=loginTicket,proto3" json:"loginTicket,omitempty"` // 票据信息
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueResponse) Reset() {
|
||||||
|
*x = FindLoginTicketWithValueResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[3]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*FindLoginTicketWithValueResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_service_login_ticket_proto_msgTypes[3]
|
||||||
|
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 FindLoginTicketWithValueResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*FindLoginTicketWithValueResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_service_login_ticket_proto_rawDescGZIP(), []int{3}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *FindLoginTicketWithValueResponse) GetLoginTicket() *LoginTicket {
|
||||||
|
if x != nil {
|
||||||
|
return x.LoginTicket
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var File_service_login_ticket_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
|
var file_service_login_ticket_proto_rawDesc = []byte{
|
||||||
|
0x0a, 0x1a, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f,
|
||||||
|
0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62,
|
||||||
|
0x1a, 0x1f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6c,
|
||||||
|
0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x22, 0x5c, 0x0a, 0x18, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
|
||||||
|
0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a,
|
||||||
|
0x07, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
|
||||||
|
0x61, 0x64, 0x6d, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
|
||||||
|
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
|
||||||
|
0x0e, 0x0a, 0x02, 0x69, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x70, 0x22,
|
||||||
|
0x31, 0x0a, 0x19, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69,
|
||||||
|
0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05,
|
||||||
|
0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
||||||
|
0x75, 0x65, 0x22, 0x37, 0x0a, 0x1f, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54,
|
||||||
|
0x69, 0x63, 0x6b, 0x65, 0x74, 0x57, 0x69, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65,
|
||||||
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01,
|
||||||
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x55, 0x0a, 0x20, 0x46,
|
||||||
|
0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x57, 0x69,
|
||||||
|
0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
||||||
|
0x31, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x01,
|
||||||
|
0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54,
|
||||||
|
0x69, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x0b, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b,
|
||||||
|
0x65, 0x74, 0x32, 0xcd, 0x01, 0x0a, 0x12, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b,
|
||||||
|
0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x11, 0x63, 0x72, 0x65,
|
||||||
|
0x61, 0x74, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x1c,
|
||||||
|
0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54,
|
||||||
|
0x69, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x70,
|
||||||
|
0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63,
|
||||||
|
0x6b, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x18, 0x66,
|
||||||
|
0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x57, 0x69,
|
||||||
|
0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x23, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e,
|
||||||
|
0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x57, 0x69, 0x74, 0x68,
|
||||||
|
0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x70,
|
||||||
|
0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x63, 0x6b, 0x65,
|
||||||
|
0x74, 0x57, 0x69, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||||
|
0x73, 0x65, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x33,
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
file_service_login_ticket_proto_rawDescOnce sync.Once
|
||||||
|
file_service_login_ticket_proto_rawDescData = file_service_login_ticket_proto_rawDesc
|
||||||
|
)
|
||||||
|
|
||||||
|
func file_service_login_ticket_proto_rawDescGZIP() []byte {
|
||||||
|
file_service_login_ticket_proto_rawDescOnce.Do(func() {
|
||||||
|
file_service_login_ticket_proto_rawDescData = protoimpl.X.CompressGZIP(file_service_login_ticket_proto_rawDescData)
|
||||||
|
})
|
||||||
|
return file_service_login_ticket_proto_rawDescData
|
||||||
|
}
|
||||||
|
|
||||||
|
var file_service_login_ticket_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||||
|
var file_service_login_ticket_proto_goTypes = []interface{}{
|
||||||
|
(*CreateLoginTicketRequest)(nil), // 0: pb.CreateLoginTicketRequest
|
||||||
|
(*CreateLoginTicketResponse)(nil), // 1: pb.CreateLoginTicketResponse
|
||||||
|
(*FindLoginTicketWithValueRequest)(nil), // 2: pb.FindLoginTicketWithValueRequest
|
||||||
|
(*FindLoginTicketWithValueResponse)(nil), // 3: pb.FindLoginTicketWithValueResponse
|
||||||
|
(*LoginTicket)(nil), // 4: pb.LoginTicket
|
||||||
|
}
|
||||||
|
var file_service_login_ticket_proto_depIdxs = []int32{
|
||||||
|
4, // 0: pb.FindLoginTicketWithValueResponse.loginTicket:type_name -> pb.LoginTicket
|
||||||
|
0, // 1: pb.LoginTicketService.createLoginTicket:input_type -> pb.CreateLoginTicketRequest
|
||||||
|
2, // 2: pb.LoginTicketService.findLoginTicketWithValue:input_type -> pb.FindLoginTicketWithValueRequest
|
||||||
|
1, // 3: pb.LoginTicketService.createLoginTicket:output_type -> pb.CreateLoginTicketResponse
|
||||||
|
3, // 4: pb.LoginTicketService.findLoginTicketWithValue:output_type -> pb.FindLoginTicketWithValueResponse
|
||||||
|
3, // [3:5] is the sub-list for method output_type
|
||||||
|
1, // [1:3] is the sub-list for method input_type
|
||||||
|
1, // [1:1] is the sub-list for extension type_name
|
||||||
|
1, // [1:1] is the sub-list for extension extendee
|
||||||
|
0, // [0:1] is the sub-list for field type_name
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { file_service_login_ticket_proto_init() }
|
||||||
|
func file_service_login_ticket_proto_init() {
|
||||||
|
if File_service_login_ticket_proto != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
file_models_model_login_ticket_proto_init()
|
||||||
|
if !protoimpl.UnsafeEnabled {
|
||||||
|
file_service_login_ticket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*CreateLoginTicketRequest); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_service_login_ticket_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*CreateLoginTicketResponse); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_service_login_ticket_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*FindLoginTicketWithValueRequest); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_service_login_ticket_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*FindLoginTicketWithValueResponse); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
type x struct{}
|
||||||
|
out := protoimpl.TypeBuilder{
|
||||||
|
File: protoimpl.DescBuilder{
|
||||||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
|
RawDescriptor: file_service_login_ticket_proto_rawDesc,
|
||||||
|
NumEnums: 0,
|
||||||
|
NumMessages: 4,
|
||||||
|
NumExtensions: 0,
|
||||||
|
NumServices: 1,
|
||||||
|
},
|
||||||
|
GoTypes: file_service_login_ticket_proto_goTypes,
|
||||||
|
DependencyIndexes: file_service_login_ticket_proto_depIdxs,
|
||||||
|
MessageInfos: file_service_login_ticket_proto_msgTypes,
|
||||||
|
}.Build()
|
||||||
|
File_service_login_ticket_proto = out.File
|
||||||
|
file_service_login_ticket_proto_rawDesc = nil
|
||||||
|
file_service_login_ticket_proto_goTypes = nil
|
||||||
|
file_service_login_ticket_proto_depIdxs = nil
|
||||||
|
}
|
||||||
150
pkg/rpc/pb/service_login_ticket_grpc.pb.go
Normal file
150
pkg/rpc/pb/service_login_ticket_grpc.pb.go
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||||
|
// versions:
|
||||||
|
// - protoc-gen-go-grpc v1.3.0
|
||||||
|
// - protoc v3.19.4
|
||||||
|
// source: service_login_ticket.proto
|
||||||
|
|
||||||
|
package pb
|
||||||
|
|
||||||
|
import (
|
||||||
|
context "context"
|
||||||
|
grpc "google.golang.org/grpc"
|
||||||
|
codes "google.golang.org/grpc/codes"
|
||||||
|
status "google.golang.org/grpc/status"
|
||||||
|
)
|
||||||
|
|
||||||
|
// This is a compile-time assertion to ensure that this generated file
|
||||||
|
// is compatible with the grpc package it is being compiled against.
|
||||||
|
// Requires gRPC-Go v1.32.0 or later.
|
||||||
|
const _ = grpc.SupportPackageIsVersion7
|
||||||
|
|
||||||
|
const (
|
||||||
|
LoginTicketService_CreateLoginTicket_FullMethodName = "/pb.LoginTicketService/createLoginTicket"
|
||||||
|
LoginTicketService_FindLoginTicketWithValue_FullMethodName = "/pb.LoginTicketService/findLoginTicketWithValue"
|
||||||
|
)
|
||||||
|
|
||||||
|
// LoginTicketServiceClient is the client API for LoginTicketService service.
|
||||||
|
//
|
||||||
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
||||||
|
type LoginTicketServiceClient interface {
|
||||||
|
// 创建票据
|
||||||
|
CreateLoginTicket(ctx context.Context, in *CreateLoginTicketRequest, opts ...grpc.CallOption) (*CreateLoginTicketResponse, error)
|
||||||
|
// 查找票据
|
||||||
|
// 查找成功后,会自动删除票据信息,所以票据信息只能查询一次
|
||||||
|
FindLoginTicketWithValue(ctx context.Context, in *FindLoginTicketWithValueRequest, opts ...grpc.CallOption) (*FindLoginTicketWithValueResponse, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
type loginTicketServiceClient struct {
|
||||||
|
cc grpc.ClientConnInterface
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewLoginTicketServiceClient(cc grpc.ClientConnInterface) LoginTicketServiceClient {
|
||||||
|
return &loginTicketServiceClient{cc}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *loginTicketServiceClient) CreateLoginTicket(ctx context.Context, in *CreateLoginTicketRequest, opts ...grpc.CallOption) (*CreateLoginTicketResponse, error) {
|
||||||
|
out := new(CreateLoginTicketResponse)
|
||||||
|
err := c.cc.Invoke(ctx, LoginTicketService_CreateLoginTicket_FullMethodName, in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *loginTicketServiceClient) FindLoginTicketWithValue(ctx context.Context, in *FindLoginTicketWithValueRequest, opts ...grpc.CallOption) (*FindLoginTicketWithValueResponse, error) {
|
||||||
|
out := new(FindLoginTicketWithValueResponse)
|
||||||
|
err := c.cc.Invoke(ctx, LoginTicketService_FindLoginTicketWithValue_FullMethodName, in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// LoginTicketServiceServer is the server API for LoginTicketService service.
|
||||||
|
// All implementations should embed UnimplementedLoginTicketServiceServer
|
||||||
|
// for forward compatibility
|
||||||
|
type LoginTicketServiceServer interface {
|
||||||
|
// 创建票据
|
||||||
|
CreateLoginTicket(context.Context, *CreateLoginTicketRequest) (*CreateLoginTicketResponse, error)
|
||||||
|
// 查找票据
|
||||||
|
// 查找成功后,会自动删除票据信息,所以票据信息只能查询一次
|
||||||
|
FindLoginTicketWithValue(context.Context, *FindLoginTicketWithValueRequest) (*FindLoginTicketWithValueResponse, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnimplementedLoginTicketServiceServer should be embedded to have forward compatible implementations.
|
||||||
|
type UnimplementedLoginTicketServiceServer struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (UnimplementedLoginTicketServiceServer) CreateLoginTicket(context.Context, *CreateLoginTicketRequest) (*CreateLoginTicketResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method CreateLoginTicket not implemented")
|
||||||
|
}
|
||||||
|
func (UnimplementedLoginTicketServiceServer) FindLoginTicketWithValue(context.Context, *FindLoginTicketWithValueRequest) (*FindLoginTicketWithValueResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method FindLoginTicketWithValue not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnsafeLoginTicketServiceServer may be embedded to opt out of forward compatibility for this service.
|
||||||
|
// Use of this interface is not recommended, as added methods to LoginTicketServiceServer will
|
||||||
|
// result in compilation errors.
|
||||||
|
type UnsafeLoginTicketServiceServer interface {
|
||||||
|
mustEmbedUnimplementedLoginTicketServiceServer()
|
||||||
|
}
|
||||||
|
|
||||||
|
func RegisterLoginTicketServiceServer(s grpc.ServiceRegistrar, srv LoginTicketServiceServer) {
|
||||||
|
s.RegisterService(&LoginTicketService_ServiceDesc, srv)
|
||||||
|
}
|
||||||
|
|
||||||
|
func _LoginTicketService_CreateLoginTicket_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(CreateLoginTicketRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(LoginTicketServiceServer).CreateLoginTicket(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: LoginTicketService_CreateLoginTicket_FullMethodName,
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(LoginTicketServiceServer).CreateLoginTicket(ctx, req.(*CreateLoginTicketRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
|
func _LoginTicketService_FindLoginTicketWithValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(FindLoginTicketWithValueRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(LoginTicketServiceServer).FindLoginTicketWithValue(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: LoginTicketService_FindLoginTicketWithValue_FullMethodName,
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(LoginTicketServiceServer).FindLoginTicketWithValue(ctx, req.(*FindLoginTicketWithValueRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LoginTicketService_ServiceDesc is the grpc.ServiceDesc for LoginTicketService service.
|
||||||
|
// It's only intended for direct use with grpc.RegisterService,
|
||||||
|
// and not to be introspected or modified (even as a copy)
|
||||||
|
var LoginTicketService_ServiceDesc = grpc.ServiceDesc{
|
||||||
|
ServiceName: "pb.LoginTicketService",
|
||||||
|
HandlerType: (*LoginTicketServiceServer)(nil),
|
||||||
|
Methods: []grpc.MethodDesc{
|
||||||
|
{
|
||||||
|
MethodName: "createLoginTicket",
|
||||||
|
Handler: _LoginTicketService_CreateLoginTicket_Handler,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
MethodName: "findLoginTicketWithValue",
|
||||||
|
Handler: _LoginTicketService_FindLoginTicketWithValue_Handler,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Streams: []grpc.StreamDesc{},
|
||||||
|
Metadata: "service_login_ticket.proto",
|
||||||
|
}
|
||||||
14
pkg/rpc/protos/models/model_login_ticket.proto
Normal file
14
pkg/rpc/protos/models/model_login_ticket.proto
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
option go_package = "./pb";
|
||||||
|
|
||||||
|
package pb;
|
||||||
|
|
||||||
|
// 登录票据
|
||||||
|
message LoginTicket {
|
||||||
|
int64 id = 1; // ID
|
||||||
|
int64 expiresAt = 2; // 过期时间
|
||||||
|
string value = 3; // 票据值
|
||||||
|
int64 adminId = 4; // 管理员ID
|
||||||
|
int64 userId = 5; // 用户ID
|
||||||
|
string ip = 6; // 登录时客户端IP
|
||||||
|
}
|
||||||
36
pkg/rpc/protos/service_login_ticket.proto
Normal file
36
pkg/rpc/protos/service_login_ticket.proto
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
option go_package = "./pb";
|
||||||
|
|
||||||
|
package pb;
|
||||||
|
|
||||||
|
import "models/model_login_ticket.proto";
|
||||||
|
|
||||||
|
// 登录票据相关服务
|
||||||
|
service LoginTicketService {
|
||||||
|
// 创建票据
|
||||||
|
rpc createLoginTicket(CreateLoginTicketRequest) returns (CreateLoginTicketResponse);
|
||||||
|
|
||||||
|
// 查找票据
|
||||||
|
// 查找成功后,会自动删除票据信息,所以票据信息只能查询一次
|
||||||
|
rpc findLoginTicketWithValue(FindLoginTicketWithValueRequest) returns (FindLoginTicketWithValueResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建票据
|
||||||
|
message CreateLoginTicketRequest {
|
||||||
|
int64 adminId = 1; // 管理员ID,和用户ID二选一
|
||||||
|
int64 userId = 2; // 用户ID
|
||||||
|
string ip = 3; // 可选参数,用户客户端IP
|
||||||
|
}
|
||||||
|
|
||||||
|
message CreateLoginTicketResponse {
|
||||||
|
string value = 1; // 票据值
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查找票据
|
||||||
|
message FindLoginTicketWithValueRequest {
|
||||||
|
string value = 1; // 票据值
|
||||||
|
}
|
||||||
|
|
||||||
|
message FindLoginTicketWithValueResponse {
|
||||||
|
LoginTicket loginTicket = 1; // 票据信息
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user