2016-12-13 13:05:06 +03:00
|
|
|
// Code generated by protoc-gen-gogo.
|
|
|
|
// source: services/session/session.proto
|
|
|
|
// DO NOT EDIT!
|
|
|
|
|
|
|
|
/*
|
|
|
|
Package session is a generated protocol buffer package.
|
|
|
|
|
|
|
|
It is generated from these files:
|
|
|
|
services/session/session.proto
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
|
|
LoginRequest
|
|
|
|
LoginResponse
|
|
|
|
LogoutRequest
|
|
|
|
LogoutResponse
|
|
|
|
*/
|
|
|
|
package session
|
|
|
|
|
|
|
|
import proto "github.com/gogo/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import math "math"
|
|
|
|
|
2016-12-13 18:03:16 +03:00
|
|
|
import (
|
|
|
|
context "golang.org/x/net/context"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
2016-12-13 13:05:06 +03:00
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
|
type LoginRequest struct {
|
|
|
|
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 (m *LoginRequest) Reset() { *m = LoginRequest{} }
|
|
|
|
func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LoginRequest) ProtoMessage() {}
|
|
|
|
func (*LoginRequest) Descriptor() ([]byte, []int) { return fileDescriptorSession, []int{0} }
|
|
|
|
|
2016-12-13 18:03:16 +03:00
|
|
|
func (m *LoginRequest) GetUsername() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Username
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LoginRequest) GetPassword() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Password
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-12-13 13:05:06 +03:00
|
|
|
type LoginResponse struct {
|
|
|
|
Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
|
|
|
|
ErrMsg string `protobuf:"bytes,2,opt,name=err_msg,json=errMsg,proto3" json:"err_msg,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LoginResponse) Reset() { *m = LoginResponse{} }
|
|
|
|
func (m *LoginResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LoginResponse) ProtoMessage() {}
|
|
|
|
func (*LoginResponse) Descriptor() ([]byte, []int) { return fileDescriptorSession, []int{1} }
|
|
|
|
|
2016-12-13 18:03:16 +03:00
|
|
|
func (m *LoginResponse) GetToken() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Token
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LoginResponse) GetErrMsg() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ErrMsg
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-12-13 13:05:06 +03:00
|
|
|
type LogoutRequest struct {
|
|
|
|
Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LogoutRequest) Reset() { *m = LogoutRequest{} }
|
|
|
|
func (m *LogoutRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LogoutRequest) ProtoMessage() {}
|
|
|
|
func (*LogoutRequest) Descriptor() ([]byte, []int) { return fileDescriptorSession, []int{2} }
|
|
|
|
|
2016-12-13 18:03:16 +03:00
|
|
|
func (m *LogoutRequest) GetToken() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Token
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-12-13 13:05:06 +03:00
|
|
|
type LogoutResponse struct {
|
|
|
|
ErrMsg string `protobuf:"bytes,1,opt,name=err_msg,json=errMsg,proto3" json:"err_msg,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LogoutResponse) Reset() { *m = LogoutResponse{} }
|
|
|
|
func (m *LogoutResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LogoutResponse) ProtoMessage() {}
|
|
|
|
func (*LogoutResponse) Descriptor() ([]byte, []int) { return fileDescriptorSession, []int{3} }
|
|
|
|
|
2016-12-13 18:03:16 +03:00
|
|
|
func (m *LogoutResponse) GetErrMsg() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ErrMsg
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-12-13 13:05:06 +03:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*LoginRequest)(nil), "session.LoginRequest")
|
|
|
|
proto.RegisterType((*LoginResponse)(nil), "session.LoginResponse")
|
|
|
|
proto.RegisterType((*LogoutRequest)(nil), "session.LogoutRequest")
|
|
|
|
proto.RegisterType((*LogoutResponse)(nil), "session.LogoutResponse")
|
|
|
|
}
|
|
|
|
|
2016-12-13 18:03:16 +03:00
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ context.Context
|
|
|
|
var _ grpc.ClientConn
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the grpc package it is being compiled against.
|
|
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
|
|
|
|
// Client API for SessionService service
|
|
|
|
|
|
|
|
type SessionServiceClient interface {
|
|
|
|
Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
|
|
|
|
Logout(ctx context.Context, in *LogoutRequest, opts ...grpc.CallOption) (*LogoutResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type sessionServiceClient struct {
|
|
|
|
cc *grpc.ClientConn
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewSessionServiceClient(cc *grpc.ClientConn) SessionServiceClient {
|
|
|
|
return &sessionServiceClient{cc}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *sessionServiceClient) Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error) {
|
|
|
|
out := new(LoginResponse)
|
|
|
|
err := grpc.Invoke(ctx, "/session.SessionService/Login", in, out, c.cc, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *sessionServiceClient) Logout(ctx context.Context, in *LogoutRequest, opts ...grpc.CallOption) (*LogoutResponse, error) {
|
|
|
|
out := new(LogoutResponse)
|
|
|
|
err := grpc.Invoke(ctx, "/session.SessionService/Logout", in, out, c.cc, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Server API for SessionService service
|
|
|
|
|
|
|
|
type SessionServiceServer interface {
|
|
|
|
Login(context.Context, *LoginRequest) (*LoginResponse, error)
|
|
|
|
Logout(context.Context, *LogoutRequest) (*LogoutResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterSessionServiceServer(s *grpc.Server, srv SessionServiceServer) {
|
|
|
|
s.RegisterService(&_SessionService_serviceDesc, srv)
|
|
|
|
}
|
|
|
|
|
|
|
|
func _SessionService_Login_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(LoginRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(SessionServiceServer).Login(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/session.SessionService/Login",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(SessionServiceServer).Login(ctx, req.(*LoginRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
func _SessionService_Logout_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(LogoutRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(SessionServiceServer).Logout(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/session.SessionService/Logout",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(SessionServiceServer).Logout(ctx, req.(*LogoutRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _SessionService_serviceDesc = grpc.ServiceDesc{
|
|
|
|
ServiceName: "session.SessionService",
|
|
|
|
HandlerType: (*SessionServiceServer)(nil),
|
|
|
|
Methods: []grpc.MethodDesc{
|
|
|
|
{
|
|
|
|
MethodName: "Login",
|
|
|
|
Handler: _SessionService_Login_Handler,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
MethodName: "Logout",
|
|
|
|
Handler: _SessionService_Logout_Handler,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Streams: []grpc.StreamDesc{},
|
|
|
|
Metadata: "services/session/session.proto",
|
|
|
|
}
|
|
|
|
|
2016-12-13 13:05:06 +03:00
|
|
|
func init() { proto.RegisterFile("services/session/session.proto", fileDescriptorSession) }
|
|
|
|
|
|
|
|
var fileDescriptorSession = []byte{
|
|
|
|
// 231 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0x50, 0xcb, 0x4a, 0xc5, 0x30,
|
|
|
|
0x10, 0x35, 0xc2, 0xed, 0xd5, 0x41, 0xef, 0x62, 0x50, 0x6f, 0xe9, 0x42, 0x24, 0x20, 0xe8, 0xa6,
|
|
|
|
0x82, 0x6e, 0x04, 0xc1, 0xa5, 0x2b, 0xdd, 0xb4, 0x1f, 0x20, 0x55, 0x87, 0x52, 0xa4, 0x99, 0x3a,
|
|
|
|
0x93, 0xea, 0x27, 0xf8, 0xdb, 0x62, 0x93, 0x68, 0x7d, 0xac, 0xc2, 0xc9, 0xcc, 0x79, 0xcc, 0x81,
|
|
|
|
0x43, 0x25, 0x79, 0xed, 0x1e, 0x49, 0xcf, 0x94, 0x54, 0x3b, 0x76, 0xe9, 0x2d, 0x07, 0x61, 0xcf,
|
|
|
|
0xb8, 0x8c, 0xd0, 0xde, 0xc0, 0xce, 0x2d, 0xb7, 0x9d, 0xab, 0xe8, 0x65, 0x24, 0xf5, 0x58, 0xc0,
|
|
|
|
0xd6, 0xa8, 0x24, 0xae, 0xe9, 0x29, 0x37, 0x47, 0xe6, 0x64, 0xbb, 0xfa, 0xc2, 0x9f, 0xb3, 0xa1,
|
|
|
|
0x51, 0x7d, 0x63, 0x79, 0xca, 0x37, 0xc3, 0x2c, 0x61, 0x7b, 0x0d, 0xbb, 0x51, 0x47, 0x07, 0x76,
|
|
|
|
0x4a, 0xb8, 0x07, 0x0b, 0xcf, 0xcf, 0xe4, 0xa2, 0x4a, 0x00, 0xb8, 0x86, 0x25, 0x89, 0xdc, 0xf7,
|
|
|
|
0xda, 0x46, 0x85, 0x8c, 0x44, 0xee, 0xb4, 0xb5, 0xc7, 0x13, 0x9f, 0x47, 0x9f, 0x82, 0xfc, 0xcb,
|
|
|
|
0xb7, 0xa7, 0xb0, 0x4a, 0x6b, 0xd1, 0x67, 0xa6, 0x68, 0xe6, 0x8a, 0xe7, 0xef, 0x06, 0x56, 0x75,
|
|
|
|
0xb8, 0xb2, 0x0e, 0x65, 0xe0, 0x25, 0x2c, 0xa6, 0x90, 0xb8, 0x5f, 0xa6, 0x3a, 0xe6, 0xc7, 0x17,
|
|
|
|
0x07, 0xbf, 0xbf, 0x83, 0x87, 0xdd, 0xc0, 0x2b, 0xc8, 0x82, 0x2f, 0xfe, 0xd8, 0xf9, 0xce, 0x5b,
|
|
|
|
0xac, 0xff, 0xfc, 0x27, 0xf2, 0x43, 0x36, 0x75, 0x7e, 0xf1, 0x11, 0x00, 0x00, 0xff, 0xff, 0xc7,
|
|
|
|
0x91, 0x50, 0x79, 0x95, 0x01, 0x00, 0x00,
|
|
|
|
}
|