2024-07-14 12:25:30 +00:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
2024-08-01 06:05:23 +00:00
// - protoc-gen-go-grpc v1.5.1
2024-07-14 12:25:30 +00:00
// - protoc v5.27.1
// 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.
2024-08-01 06:05:23 +00:00
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
2024-07-30 10:31:26 +00:00
const (
Auth_Authenticate_FullMethodName = "/proto.Auth/Authenticate"
Auth_EnsurePermGranted_FullMethodName = "/proto.Auth/EnsurePermGranted"
Auth_EnsureUserPermGranted_FullMethodName = "/proto.Auth/EnsureUserPermGranted"
Auth_ListUserFriends_FullMethodName = "/proto.Auth/ListUserFriends"
Auth_ListUserBlocklist_FullMethodName = "/proto.Auth/ListUserBlocklist"
)
2024-07-14 12:25:30 +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-07-15 12:04:03 +00:00
EnsurePermGranted ( ctx context . Context , in * CheckPermRequest , opts ... grpc . CallOption ) ( * CheckPermResponse , error )
EnsureUserPermGranted ( ctx context . Context , in * CheckUserPermRequest , opts ... grpc . CallOption ) ( * CheckUserPermResponse , error )
2024-07-30 10:31:26 +00:00
ListUserFriends ( ctx context . Context , in * ListUserRelativeRequest , opts ... grpc . CallOption ) ( * ListUserRelativeResponse , error )
ListUserBlocklist ( ctx context . Context , in * ListUserRelativeRequest , opts ... grpc . CallOption ) ( * ListUserRelativeResponse , error )
2024-07-14 12:25:30 +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 ) {
2024-07-30 10:31:26 +00:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-07-14 12:25:30 +00:00
out := new ( AuthReply )
2024-07-30 10:31:26 +00:00
err := c . cc . Invoke ( ctx , Auth_Authenticate_FullMethodName , in , out , cOpts ... )
2024-07-14 12:25:30 +00:00
if err != nil {
return nil , err
}
return out , nil
}
2024-07-15 12:04:03 +00:00
func ( c * authClient ) EnsurePermGranted ( ctx context . Context , in * CheckPermRequest , opts ... grpc . CallOption ) ( * CheckPermResponse , error ) {
2024-07-30 10:31:26 +00:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-07-15 12:04:03 +00:00
out := new ( CheckPermResponse )
2024-07-30 10:31:26 +00:00
err := c . cc . Invoke ( ctx , Auth_EnsurePermGranted_FullMethodName , in , out , cOpts ... )
2024-07-14 12:25:30 +00:00
if err != nil {
return nil , err
}
return out , nil
}
2024-07-15 12:04:03 +00:00
func ( c * authClient ) EnsureUserPermGranted ( ctx context . Context , in * CheckUserPermRequest , opts ... grpc . CallOption ) ( * CheckUserPermResponse , error ) {
2024-07-30 10:31:26 +00:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-07-15 12:04:03 +00:00
out := new ( CheckUserPermResponse )
2024-07-30 10:31:26 +00:00
err := c . cc . Invoke ( ctx , Auth_EnsureUserPermGranted_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * authClient ) ListUserFriends ( ctx context . Context , in * ListUserRelativeRequest , opts ... grpc . CallOption ) ( * ListUserRelativeResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListUserRelativeResponse )
err := c . cc . Invoke ( ctx , Auth_ListUserFriends_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * authClient ) ListUserBlocklist ( ctx context . Context , in * ListUserRelativeRequest , opts ... grpc . CallOption ) ( * ListUserRelativeResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListUserRelativeResponse )
err := c . cc . Invoke ( ctx , Auth_ListUserBlocklist_FullMethodName , in , out , cOpts ... )
2024-07-15 12:04:03 +00:00
if err != nil {
return nil , err
}
return out , nil
}
2024-07-14 12:25:30 +00:00
// AuthServer is the server API for Auth service.
// All implementations must embed UnimplementedAuthServer
2024-08-01 06:05:23 +00:00
// for forward compatibility.
2024-07-14 12:25:30 +00:00
type AuthServer interface {
Authenticate ( context . Context , * AuthRequest ) ( * AuthReply , error )
2024-07-15 12:04:03 +00:00
EnsurePermGranted ( context . Context , * CheckPermRequest ) ( * CheckPermResponse , error )
EnsureUserPermGranted ( context . Context , * CheckUserPermRequest ) ( * CheckUserPermResponse , error )
2024-07-30 10:31:26 +00:00
ListUserFriends ( context . Context , * ListUserRelativeRequest ) ( * ListUserRelativeResponse , error )
ListUserBlocklist ( context . Context , * ListUserRelativeRequest ) ( * ListUserRelativeResponse , error )
2024-07-14 12:25:30 +00:00
mustEmbedUnimplementedAuthServer ( )
}
2024-08-01 06:05:23 +00:00
// UnimplementedAuthServer 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 UnimplementedAuthServer struct { }
2024-07-14 12:25:30 +00:00
func ( UnimplementedAuthServer ) Authenticate ( context . Context , * AuthRequest ) ( * AuthReply , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method Authenticate not implemented" )
}
2024-07-15 12:04:03 +00:00
func ( UnimplementedAuthServer ) EnsurePermGranted ( context . Context , * CheckPermRequest ) ( * CheckPermResponse , error ) {
2024-07-14 15:45:18 +00:00
return nil , status . Errorf ( codes . Unimplemented , "method EnsurePermGranted not implemented" )
2024-07-14 12:25:30 +00:00
}
2024-07-15 12:04:03 +00:00
func ( UnimplementedAuthServer ) EnsureUserPermGranted ( context . Context , * CheckUserPermRequest ) ( * CheckUserPermResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method EnsureUserPermGranted not implemented" )
}
2024-07-30 10:31:26 +00:00
func ( UnimplementedAuthServer ) ListUserFriends ( context . Context , * ListUserRelativeRequest ) ( * ListUserRelativeResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method ListUserFriends not implemented" )
}
func ( UnimplementedAuthServer ) ListUserBlocklist ( context . Context , * ListUserRelativeRequest ) ( * ListUserRelativeResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method ListUserBlocklist not implemented" )
}
2024-07-14 12:25:30 +00:00
func ( UnimplementedAuthServer ) mustEmbedUnimplementedAuthServer ( ) { }
2024-08-01 06:05:23 +00:00
func ( UnimplementedAuthServer ) testEmbeddedByValue ( ) { }
2024-07-14 12:25:30 +00:00
// 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 ) {
2024-08-01 06:05:23 +00:00
// If the following call pancis, it indicates UnimplementedAuthServer 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 ( )
}
2024-07-14 12:25:30 +00:00
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 ,
2024-07-30 10:31:26 +00:00
FullMethod : Auth_Authenticate_FullMethodName ,
2024-07-14 12:25:30 +00:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . Authenticate ( ctx , req . ( * AuthRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _Auth_EnsurePermGranted_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 ) . EnsurePermGranted ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2024-07-30 10:31:26 +00:00
FullMethod : Auth_EnsurePermGranted_FullMethodName ,
2024-07-14 12:25:30 +00:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . EnsurePermGranted ( ctx , req . ( * CheckPermRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-07-15 12:04:03 +00:00
func _Auth_EnsureUserPermGranted_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CheckUserPermRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServer ) . EnsureUserPermGranted ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2024-07-30 10:31:26 +00:00
FullMethod : Auth_EnsureUserPermGranted_FullMethodName ,
2024-07-15 12:04:03 +00:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . EnsureUserPermGranted ( ctx , req . ( * CheckUserPermRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-07-30 10:31:26 +00:00
func _Auth_ListUserFriends_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListUserRelativeRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServer ) . ListUserFriends ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Auth_ListUserFriends_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . ListUserFriends ( ctx , req . ( * ListUserRelativeRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _Auth_ListUserBlocklist_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListUserRelativeRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServer ) . ListUserBlocklist ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Auth_ListUserBlocklist_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServer ) . ListUserBlocklist ( ctx , req . ( * ListUserRelativeRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-07-14 12:25:30 +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-07-14 15:45:18 +00:00
MethodName : "EnsurePermGranted" ,
2024-07-14 12:25:30 +00:00
Handler : _Auth_EnsurePermGranted_Handler ,
} ,
2024-07-15 12:04:03 +00:00
{
MethodName : "EnsureUserPermGranted" ,
Handler : _Auth_EnsureUserPermGranted_Handler ,
} ,
2024-07-30 10:31:26 +00:00
{
MethodName : "ListUserFriends" ,
Handler : _Auth_ListUserFriends_Handler ,
} ,
{
MethodName : "ListUserBlocklist" ,
Handler : _Auth_ListUserBlocklist_Handler ,
} ,
2024-07-14 12:25:30 +00:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "auth.proto" ,
}