2024-02-20 13:46:15 +00:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
2024-05-17 09:13:11 +00:00
// - protoc v5.26.1
2024-02-20 13:46:15 +00:00
// source: auth.proto
package proto
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 (
Auth_Authenticate_FullMethodName = "/proto.Auth/Authenticate"
2024-05-17 12:14:20 +00:00
Auth_CheckPerm_FullMethodName = "/proto.Auth/CheckPerm"
2024-02-20 13:46:15 +00:00
)
// AuthClient is the client API for Auth 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 AuthClient interface {
Authenticate ( ctx context . Context , in * AuthRequest , opts ... grpc . CallOption ) ( * AuthReply , error )
2024-05-17 12:14:20 +00:00
CheckPerm ( ctx context . Context , in * CheckPermRequest , opts ... grpc . CallOption ) ( * CheckPermReply , error )
2024-02-20 13:46:15 +00:00
}
type authClient struct {
cc grpc . ClientConnInterface
}
func NewAuthClient ( cc grpc . ClientConnInterface ) AuthClient {
return & authClient { cc }
}
func ( c * authClient ) Authenticate ( ctx context . Context , in * AuthRequest , opts ... grpc . CallOption ) ( * AuthReply , error ) {
out := new ( AuthReply )
err := c . cc . Invoke ( ctx , Auth_Authenticate_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-05-17 12:14:20 +00:00
func ( c * authClient ) CheckPerm ( ctx context . Context , in * CheckPermRequest , opts ... grpc . CallOption ) ( * CheckPermReply , error ) {
out := new ( CheckPermReply )
err := c . cc . Invoke ( ctx , Auth_CheckPerm_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-02-20 13:46:15 +00:00
// AuthServer is the server API for Auth service.
// All implementations must embed UnimplementedAuthServer
// for forward compatibility
type AuthServer interface {
Authenticate ( context . Context , * AuthRequest ) ( * AuthReply , error )
2024-05-17 12:14:20 +00:00
CheckPerm ( context . Context , * CheckPermRequest ) ( * CheckPermReply , error )
2024-02-20 13:46:15 +00:00
mustEmbedUnimplementedAuthServer ( )
}
// UnimplementedAuthServer must be embedded to have forward compatible implementations.
type UnimplementedAuthServer struct {
}
func ( UnimplementedAuthServer ) Authenticate ( context . Context , * AuthRequest ) ( * AuthReply , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method Authenticate not implemented" )
}
2024-05-17 12:14:20 +00:00
func ( UnimplementedAuthServer ) CheckPerm ( context . Context , * CheckPermRequest ) ( * CheckPermReply , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method CheckPerm not implemented" )
}
2024-02-20 13:46:15 +00:00
func ( UnimplementedAuthServer ) mustEmbedUnimplementedAuthServer ( ) { }
// UnsafeAuthServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to AuthServer will
// result in compilation errors.
type UnsafeAuthServer interface {
mustEmbedUnimplementedAuthServer ( )
}
func RegisterAuthServer ( s grpc . ServiceRegistrar , srv AuthServer ) {
s . RegisterService ( & Auth_ServiceDesc , srv )
}
func _Auth_Authenticate_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( AuthRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServer ) . Authenticate ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Auth_Authenticate_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . Authenticate ( ctx , req . ( * AuthRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-05-17 12:14:20 +00:00
func _Auth_CheckPerm_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CheckPermRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServer ) . CheckPerm ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Auth_CheckPerm_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . CheckPerm ( ctx , req . ( * CheckPermRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-02-20 13:46:15 +00:00
// Auth_ServiceDesc is the grpc.ServiceDesc for Auth service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Auth_ServiceDesc = grpc . ServiceDesc {
ServiceName : "proto.Auth" ,
HandlerType : ( * AuthServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Authenticate" ,
Handler : _Auth_Authenticate_Handler ,
} ,
2024-05-17 12:14:20 +00:00
{
MethodName : "CheckPerm" ,
Handler : _Auth_CheckPerm_Handler ,
} ,
2024-02-20 13:46:15 +00:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "auth.proto" ,
}