123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
- // versions:
- // - protoc-gen-go-grpc v1.5.1
- // - protoc (unknown)
- // source: api/v1/auth_service.proto
- package apiv1
- import (
- context "context"
- grpc "google.golang.org/grpc"
- codes "google.golang.org/grpc/codes"
- status "google.golang.org/grpc/status"
- emptypb "google.golang.org/protobuf/types/known/emptypb"
- )
- // 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.64.0 or later.
- const _ = grpc.SupportPackageIsVersion9
- const (
- AuthService_GetAuthStatus_FullMethodName = "/memos.api.v1.AuthService/GetAuthStatus"
- AuthService_SignIn_FullMethodName = "/memos.api.v1.AuthService/SignIn"
- AuthService_SignInWithSSO_FullMethodName = "/memos.api.v1.AuthService/SignInWithSSO"
- AuthService_SignUp_FullMethodName = "/memos.api.v1.AuthService/SignUp"
- AuthService_SignOut_FullMethodName = "/memos.api.v1.AuthService/SignOut"
- )
- // AuthServiceClient is the client API for AuthService 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 AuthServiceClient interface {
- // GetAuthStatus returns the current auth status of the user.
- GetAuthStatus(ctx context.Context, in *GetAuthStatusRequest, opts ...grpc.CallOption) (*User, error)
- // SignIn signs in the user with the given username and password.
- SignIn(ctx context.Context, in *SignInRequest, opts ...grpc.CallOption) (*User, error)
- // SignInWithSSO signs in the user with the given SSO code.
- SignInWithSSO(ctx context.Context, in *SignInWithSSORequest, opts ...grpc.CallOption) (*User, error)
- // SignUp signs up the user with the given username and password.
- SignUp(ctx context.Context, in *SignUpRequest, opts ...grpc.CallOption) (*User, error)
- // SignOut signs out the user.
- SignOut(ctx context.Context, in *SignOutRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
- }
- type authServiceClient struct {
- cc grpc.ClientConnInterface
- }
- func NewAuthServiceClient(cc grpc.ClientConnInterface) AuthServiceClient {
- return &authServiceClient{cc}
- }
- func (c *authServiceClient) GetAuthStatus(ctx context.Context, in *GetAuthStatusRequest, opts ...grpc.CallOption) (*User, error) {
- cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
- out := new(User)
- err := c.cc.Invoke(ctx, AuthService_GetAuthStatus_FullMethodName, in, out, cOpts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *authServiceClient) SignIn(ctx context.Context, in *SignInRequest, opts ...grpc.CallOption) (*User, error) {
- cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
- out := new(User)
- err := c.cc.Invoke(ctx, AuthService_SignIn_FullMethodName, in, out, cOpts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *authServiceClient) SignInWithSSO(ctx context.Context, in *SignInWithSSORequest, opts ...grpc.CallOption) (*User, error) {
- cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
- out := new(User)
- err := c.cc.Invoke(ctx, AuthService_SignInWithSSO_FullMethodName, in, out, cOpts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *authServiceClient) SignUp(ctx context.Context, in *SignUpRequest, opts ...grpc.CallOption) (*User, error) {
- cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
- out := new(User)
- err := c.cc.Invoke(ctx, AuthService_SignUp_FullMethodName, in, out, cOpts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *authServiceClient) SignOut(ctx context.Context, in *SignOutRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
- cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
- out := new(emptypb.Empty)
- err := c.cc.Invoke(ctx, AuthService_SignOut_FullMethodName, in, out, cOpts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // AuthServiceServer is the server API for AuthService service.
- // All implementations must embed UnimplementedAuthServiceServer
- // for forward compatibility.
- type AuthServiceServer interface {
- // GetAuthStatus returns the current auth status of the user.
- GetAuthStatus(context.Context, *GetAuthStatusRequest) (*User, error)
- // SignIn signs in the user with the given username and password.
- SignIn(context.Context, *SignInRequest) (*User, error)
- // SignInWithSSO signs in the user with the given SSO code.
- SignInWithSSO(context.Context, *SignInWithSSORequest) (*User, error)
- // SignUp signs up the user with the given username and password.
- SignUp(context.Context, *SignUpRequest) (*User, error)
- // SignOut signs out the user.
- SignOut(context.Context, *SignOutRequest) (*emptypb.Empty, error)
- mustEmbedUnimplementedAuthServiceServer()
- }
- // UnimplementedAuthServiceServer must be embedded to have
- // forward compatible implementations.
- //
- // NOTE: this should be embedded by value instead of pointer to avoid a nil
- // pointer dereference when methods are called.
- type UnimplementedAuthServiceServer struct{}
- func (UnimplementedAuthServiceServer) GetAuthStatus(context.Context, *GetAuthStatusRequest) (*User, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetAuthStatus not implemented")
- }
- func (UnimplementedAuthServiceServer) SignIn(context.Context, *SignInRequest) (*User, error) {
- return nil, status.Errorf(codes.Unimplemented, "method SignIn not implemented")
- }
- func (UnimplementedAuthServiceServer) SignInWithSSO(context.Context, *SignInWithSSORequest) (*User, error) {
- return nil, status.Errorf(codes.Unimplemented, "method SignInWithSSO not implemented")
- }
- func (UnimplementedAuthServiceServer) SignUp(context.Context, *SignUpRequest) (*User, error) {
- return nil, status.Errorf(codes.Unimplemented, "method SignUp not implemented")
- }
- func (UnimplementedAuthServiceServer) SignOut(context.Context, *SignOutRequest) (*emptypb.Empty, error) {
- return nil, status.Errorf(codes.Unimplemented, "method SignOut not implemented")
- }
- func (UnimplementedAuthServiceServer) mustEmbedUnimplementedAuthServiceServer() {}
- func (UnimplementedAuthServiceServer) testEmbeddedByValue() {}
- // UnsafeAuthServiceServer may be embedded to opt out of forward compatibility for this service.
- // Use of this interface is not recommended, as added methods to AuthServiceServer will
- // result in compilation errors.
- type UnsafeAuthServiceServer interface {
- mustEmbedUnimplementedAuthServiceServer()
- }
- func RegisterAuthServiceServer(s grpc.ServiceRegistrar, srv AuthServiceServer) {
- // If the following call pancis, it indicates UnimplementedAuthServiceServer was
- // embedded by pointer and is nil. This will cause panics if an
- // unimplemented method is ever invoked, so we test this at initialization
- // time to prevent it from happening at runtime later due to I/O.
- if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
- t.testEmbeddedByValue()
- }
- s.RegisterService(&AuthService_ServiceDesc, srv)
- }
- func _AuthService_GetAuthStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(GetAuthStatusRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(AuthServiceServer).GetAuthStatus(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: AuthService_GetAuthStatus_FullMethodName,
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(AuthServiceServer).GetAuthStatus(ctx, req.(*GetAuthStatusRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _AuthService_SignIn_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(SignInRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(AuthServiceServer).SignIn(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: AuthService_SignIn_FullMethodName,
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(AuthServiceServer).SignIn(ctx, req.(*SignInRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _AuthService_SignInWithSSO_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(SignInWithSSORequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(AuthServiceServer).SignInWithSSO(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: AuthService_SignInWithSSO_FullMethodName,
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(AuthServiceServer).SignInWithSSO(ctx, req.(*SignInWithSSORequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _AuthService_SignUp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(SignUpRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(AuthServiceServer).SignUp(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: AuthService_SignUp_FullMethodName,
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(AuthServiceServer).SignUp(ctx, req.(*SignUpRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _AuthService_SignOut_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(SignOutRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(AuthServiceServer).SignOut(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: AuthService_SignOut_FullMethodName,
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(AuthServiceServer).SignOut(ctx, req.(*SignOutRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- // AuthService_ServiceDesc is the grpc.ServiceDesc for AuthService service.
- // It's only intended for direct use with grpc.RegisterService,
- // and not to be introspected or modified (even as a copy)
- var AuthService_ServiceDesc = grpc.ServiceDesc{
- ServiceName: "memos.api.v1.AuthService",
- HandlerType: (*AuthServiceServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "GetAuthStatus",
- Handler: _AuthService_GetAuthStatus_Handler,
- },
- {
- MethodName: "SignIn",
- Handler: _AuthService_SignIn_Handler,
- },
- {
- MethodName: "SignInWithSSO",
- Handler: _AuthService_SignInWithSSO_Handler,
- },
- {
- MethodName: "SignUp",
- Handler: _AuthService_SignUp_Handler,
- },
- {
- MethodName: "SignOut",
- Handler: _AuthService_SignOut_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "api/v1/auth_service.proto",
- }
|