// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.6.1
// - protoc (unknown)
// source: api/v1/user_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 (
UserService_ListUsers_FullMethodName = "/memos.api.v1.UserService/ListUsers"
UserService_GetUser_FullMethodName = "/memos.api.v1.UserService/GetUser"
UserService_CreateUser_FullMethodName = "/memos.api.v1.UserService/CreateUser"
UserService_UpdateUser_FullMethodName = "/memos.api.v1.UserService/UpdateUser"
UserService_DeleteUser_FullMethodName = "/memos.api.v1.UserService/DeleteUser"
UserService_ListAllUserStats_FullMethodName = "/memos.api.v1.UserService/ListAllUserStats"
UserService_GetUserStats_FullMethodName = "/memos.api.v1.UserService/GetUserStats"
UserService_GetUserSetting_FullMethodName = "/memos.api.v1.UserService/GetUserSetting"
UserService_UpdateUserSetting_FullMethodName = "/memos.api.v1.UserService/UpdateUserSetting"
UserService_ListUserSettings_FullMethodName = "/memos.api.v1.UserService/ListUserSettings"
UserService_ListPersonalAccessTokens_FullMethodName = "/memos.api.v1.UserService/ListPersonalAccessTokens"
UserService_CreatePersonalAccessToken_FullMethodName = "/memos.api.v1.UserService/CreatePersonalAccessToken"
UserService_DeletePersonalAccessToken_FullMethodName = "/memos.api.v1.UserService/DeletePersonalAccessToken"
UserService_ListUserWebhooks_FullMethodName = "/memos.api.v1.UserService/ListUserWebhooks"
UserService_CreateUserWebhook_FullMethodName = "/memos.api.v1.UserService/CreateUserWebhook"
UserService_UpdateUserWebhook_FullMethodName = "/memos.api.v1.UserService/UpdateUserWebhook"
UserService_DeleteUserWebhook_FullMethodName = "/memos.api.v1.UserService/DeleteUserWebhook"
UserService_ListUserNotifications_FullMethodName = "/memos.api.v1.UserService/ListUserNotifications"
UserService_UpdateUserNotification_FullMethodName = "/memos.api.v1.UserService/UpdateUserNotification"
UserService_DeleteUserNotification_FullMethodName = "/memos.api.v1.UserService/DeleteUserNotification"
)
// UserServiceClient is the client API for UserService 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 UserServiceClient interface {
// ListUsers returns a list of users.
ListUsers ( ctx context . Context , in * ListUsersRequest , opts ... grpc . CallOption ) ( * ListUsersResponse , error )
// GetUser gets a user by ID or username.
// Supports both numeric IDs and username strings:
// - users/{id} (e.g., users/101)
// - users/{username} (e.g., users/steven)
GetUser ( ctx context . Context , in * GetUserRequest , opts ... grpc . CallOption ) ( * User , error )
// CreateUser creates a new user.
CreateUser ( ctx context . Context , in * CreateUserRequest , opts ... grpc . CallOption ) ( * User , error )
// UpdateUser updates a user.
UpdateUser ( ctx context . Context , in * UpdateUserRequest , opts ... grpc . CallOption ) ( * User , error )
// DeleteUser deletes a user.
DeleteUser ( ctx context . Context , in * DeleteUserRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error )
// ListAllUserStats returns statistics for all users.
ListAllUserStats ( ctx context . Context , in * ListAllUserStatsRequest , opts ... grpc . CallOption ) ( * ListAllUserStatsResponse , error )
// GetUserStats returns statistics for a specific user.
GetUserStats ( ctx context . Context , in * GetUserStatsRequest , opts ... grpc . CallOption ) ( * UserStats , error )
// GetUserSetting returns the user setting.
GetUserSetting ( ctx context . Context , in * GetUserSettingRequest , opts ... grpc . CallOption ) ( * UserSetting , error )
// UpdateUserSetting updates the user setting.
UpdateUserSetting ( ctx context . Context , in * UpdateUserSettingRequest , opts ... grpc . CallOption ) ( * UserSetting , error )
// ListUserSettings returns a list of user settings.
ListUserSettings ( ctx context . Context , in * ListUserSettingsRequest , opts ... grpc . CallOption ) ( * ListUserSettingsResponse , error )
// ListPersonalAccessTokens returns a list of Personal Access Tokens (PATs) for a user.
// PATs are long-lived tokens for API/script access, distinct from short-lived JWT access tokens.
ListPersonalAccessTokens ( ctx context . Context , in * ListPersonalAccessTokensRequest , opts ... grpc . CallOption ) ( * ListPersonalAccessTokensResponse , error )
// CreatePersonalAccessToken creates a new Personal Access Token for a user.
// The token value is only returned once upon creation.
CreatePersonalAccessToken ( ctx context . Context , in * CreatePersonalAccessTokenRequest , opts ... grpc . CallOption ) ( * CreatePersonalAccessTokenResponse , error )
// DeletePersonalAccessToken deletes a Personal Access Token.
DeletePersonalAccessToken ( ctx context . Context , in * DeletePersonalAccessTokenRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error )
// ListUserWebhooks returns a list of webhooks for a user.
ListUserWebhooks ( ctx context . Context , in * ListUserWebhooksRequest , opts ... grpc . CallOption ) ( * ListUserWebhooksResponse , error )
// CreateUserWebhook creates a new webhook for a user.
CreateUserWebhook ( ctx context . Context , in * CreateUserWebhookRequest , opts ... grpc . CallOption ) ( * UserWebhook , error )
// UpdateUserWebhook updates an existing webhook for a user.
UpdateUserWebhook ( ctx context . Context , in * UpdateUserWebhookRequest , opts ... grpc . CallOption ) ( * UserWebhook , error )
// DeleteUserWebhook deletes a webhook for a user.
DeleteUserWebhook ( ctx context . Context , in * DeleteUserWebhookRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error )
// ListUserNotifications lists notifications for a user.
ListUserNotifications ( ctx context . Context , in * ListUserNotificationsRequest , opts ... grpc . CallOption ) ( * ListUserNotificationsResponse , error )
// UpdateUserNotification updates a notification.
UpdateUserNotification ( ctx context . Context , in * UpdateUserNotificationRequest , opts ... grpc . CallOption ) ( * UserNotification , error )
// DeleteUserNotification deletes a notification.
DeleteUserNotification ( ctx context . Context , in * DeleteUserNotificationRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error )
}
type userServiceClient struct {
cc grpc . ClientConnInterface
}
func NewUserServiceClient ( cc grpc . ClientConnInterface ) UserServiceClient {
return & userServiceClient { cc }
}
func ( c * userServiceClient ) ListUsers ( ctx context . Context , in * ListUsersRequest , opts ... grpc . CallOption ) ( * ListUsersResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListUsersResponse )
err := c . cc . Invoke ( ctx , UserService_ListUsers_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) GetUser ( ctx context . Context , in * GetUserRequest , opts ... grpc . CallOption ) ( * User , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( User )
err := c . cc . Invoke ( ctx , UserService_GetUser_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) CreateUser ( ctx context . Context , in * CreateUserRequest , opts ... grpc . CallOption ) ( * User , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( User )
err := c . cc . Invoke ( ctx , UserService_CreateUser_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) UpdateUser ( ctx context . Context , in * UpdateUserRequest , opts ... grpc . CallOption ) ( * User , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( User )
err := c . cc . Invoke ( ctx , UserService_UpdateUser_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) DeleteUser ( ctx context . Context , in * DeleteUserRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( emptypb . Empty )
err := c . cc . Invoke ( ctx , UserService_DeleteUser_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) ListAllUserStats ( ctx context . Context , in * ListAllUserStatsRequest , opts ... grpc . CallOption ) ( * ListAllUserStatsResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListAllUserStatsResponse )
err := c . cc . Invoke ( ctx , UserService_ListAllUserStats_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) GetUserStats ( ctx context . Context , in * GetUserStatsRequest , opts ... grpc . CallOption ) ( * UserStats , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( UserStats )
err := c . cc . Invoke ( ctx , UserService_GetUserStats_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) GetUserSetting ( ctx context . Context , in * GetUserSettingRequest , opts ... grpc . CallOption ) ( * UserSetting , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( UserSetting )
err := c . cc . Invoke ( ctx , UserService_GetUserSetting_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) UpdateUserSetting ( ctx context . Context , in * UpdateUserSettingRequest , opts ... grpc . CallOption ) ( * UserSetting , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( UserSetting )
err := c . cc . Invoke ( ctx , UserService_UpdateUserSetting_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) ListUserSettings ( ctx context . Context , in * ListUserSettingsRequest , opts ... grpc . CallOption ) ( * ListUserSettingsResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListUserSettingsResponse )
err := c . cc . Invoke ( ctx , UserService_ListUserSettings_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) ListPersonalAccessTokens ( ctx context . Context , in * ListPersonalAccessTokensRequest , opts ... grpc . CallOption ) ( * ListPersonalAccessTokensResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListPersonalAccessTokensResponse )
err := c . cc . Invoke ( ctx , UserService_ListPersonalAccessTokens_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) CreatePersonalAccessToken ( ctx context . Context , in * CreatePersonalAccessTokenRequest , opts ... grpc . CallOption ) ( * CreatePersonalAccessTokenResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( CreatePersonalAccessTokenResponse )
err := c . cc . Invoke ( ctx , UserService_CreatePersonalAccessToken_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) DeletePersonalAccessToken ( ctx context . Context , in * DeletePersonalAccessTokenRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( emptypb . Empty )
err := c . cc . Invoke ( ctx , UserService_DeletePersonalAccessToken_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) ListUserWebhooks ( ctx context . Context , in * ListUserWebhooksRequest , opts ... grpc . CallOption ) ( * ListUserWebhooksResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListUserWebhooksResponse )
err := c . cc . Invoke ( ctx , UserService_ListUserWebhooks_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) CreateUserWebhook ( ctx context . Context , in * CreateUserWebhookRequest , opts ... grpc . CallOption ) ( * UserWebhook , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( UserWebhook )
err := c . cc . Invoke ( ctx , UserService_CreateUserWebhook_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) UpdateUserWebhook ( ctx context . Context , in * UpdateUserWebhookRequest , opts ... grpc . CallOption ) ( * UserWebhook , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( UserWebhook )
err := c . cc . Invoke ( ctx , UserService_UpdateUserWebhook_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) DeleteUserWebhook ( ctx context . Context , in * DeleteUserWebhookRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( emptypb . Empty )
err := c . cc . Invoke ( ctx , UserService_DeleteUserWebhook_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) ListUserNotifications ( ctx context . Context , in * ListUserNotificationsRequest , opts ... grpc . CallOption ) ( * ListUserNotificationsResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( ListUserNotificationsResponse )
err := c . cc . Invoke ( ctx , UserService_ListUserNotifications_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) UpdateUserNotification ( ctx context . Context , in * UpdateUserNotificationRequest , opts ... grpc . CallOption ) ( * UserNotification , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( UserNotification )
err := c . cc . Invoke ( ctx , UserService_UpdateUserNotification_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * userServiceClient ) DeleteUserNotification ( ctx context . Context , in * DeleteUserNotificationRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( emptypb . Empty )
err := c . cc . Invoke ( ctx , UserService_DeleteUserNotification_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
// UserServiceServer is the server API for UserService service.
// All implementations must embed UnimplementedUserServiceServer
// for forward compatibility.
type UserServiceServer interface {
// ListUsers returns a list of users.
ListUsers ( context . Context , * ListUsersRequest ) ( * ListUsersResponse , error )
// GetUser gets a user by ID or username.
// Supports both numeric IDs and username strings:
// - users/{id} (e.g., users/101)
// - users/{username} (e.g., users/steven)
GetUser ( context . Context , * GetUserRequest ) ( * User , error )
// CreateUser creates a new user.
CreateUser ( context . Context , * CreateUserRequest ) ( * User , error )
// UpdateUser updates a user.
UpdateUser ( context . Context , * UpdateUserRequest ) ( * User , error )
// DeleteUser deletes a user.
DeleteUser ( context . Context , * DeleteUserRequest ) ( * emptypb . Empty , error )
// ListAllUserStats returns statistics for all users.
ListAllUserStats ( context . Context , * ListAllUserStatsRequest ) ( * ListAllUserStatsResponse , error )
// GetUserStats returns statistics for a specific user.
GetUserStats ( context . Context , * GetUserStatsRequest ) ( * UserStats , error )
// GetUserSetting returns the user setting.
GetUserSetting ( context . Context , * GetUserSettingRequest ) ( * UserSetting , error )
// UpdateUserSetting updates the user setting.
UpdateUserSetting ( context . Context , * UpdateUserSettingRequest ) ( * UserSetting , error )
// ListUserSettings returns a list of user settings.
ListUserSettings ( context . Context , * ListUserSettingsRequest ) ( * ListUserSettingsResponse , error )
// ListPersonalAccessTokens returns a list of Personal Access Tokens (PATs) for a user.
// PATs are long-lived tokens for API/script access, distinct from short-lived JWT access tokens.
ListPersonalAccessTokens ( context . Context , * ListPersonalAccessTokensRequest ) ( * ListPersonalAccessTokensResponse , error )
// CreatePersonalAccessToken creates a new Personal Access Token for a user.
// The token value is only returned once upon creation.
CreatePersonalAccessToken ( context . Context , * CreatePersonalAccessTokenRequest ) ( * CreatePersonalAccessTokenResponse , error )
// DeletePersonalAccessToken deletes a Personal Access Token.
DeletePersonalAccessToken ( context . Context , * DeletePersonalAccessTokenRequest ) ( * emptypb . Empty , error )
// ListUserWebhooks returns a list of webhooks for a user.
ListUserWebhooks ( context . Context , * ListUserWebhooksRequest ) ( * ListUserWebhooksResponse , error )
// CreateUserWebhook creates a new webhook for a user.
CreateUserWebhook ( context . Context , * CreateUserWebhookRequest ) ( * UserWebhook , error )
// UpdateUserWebhook updates an existing webhook for a user.
UpdateUserWebhook ( context . Context , * UpdateUserWebhookRequest ) ( * UserWebhook , error )
// DeleteUserWebhook deletes a webhook for a user.
DeleteUserWebhook ( context . Context , * DeleteUserWebhookRequest ) ( * emptypb . Empty , error )
// ListUserNotifications lists notifications for a user.
ListUserNotifications ( context . Context , * ListUserNotificationsRequest ) ( * ListUserNotificationsResponse , error )
// UpdateUserNotification updates a notification.
UpdateUserNotification ( context . Context , * UpdateUserNotificationRequest ) ( * UserNotification , error )
// DeleteUserNotification deletes a notification.
DeleteUserNotification ( context . Context , * DeleteUserNotificationRequest ) ( * emptypb . Empty , error )
mustEmbedUnimplementedUserServiceServer ( )
}
// UnimplementedUserServiceServer 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 UnimplementedUserServiceServer struct { }
func ( UnimplementedUserServiceServer ) ListUsers ( context . Context , * ListUsersRequest ) ( * ListUsersResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method ListUsers not implemented" )
}
func ( UnimplementedUserServiceServer ) GetUser ( context . Context , * GetUserRequest ) ( * User , error ) {
return nil , status . Error ( codes . Unimplemented , "method GetUser not implemented" )
}
func ( UnimplementedUserServiceServer ) CreateUser ( context . Context , * CreateUserRequest ) ( * User , error ) {
return nil , status . Error ( codes . Unimplemented , "method CreateUser not implemented" )
}
func ( UnimplementedUserServiceServer ) UpdateUser ( context . Context , * UpdateUserRequest ) ( * User , error ) {
return nil , status . Error ( codes . Unimplemented , "method UpdateUser not implemented" )
}
func ( UnimplementedUserServiceServer ) DeleteUser ( context . Context , * DeleteUserRequest ) ( * emptypb . Empty , error ) {
return nil , status . Error ( codes . Unimplemented , "method DeleteUser not implemented" )
}
func ( UnimplementedUserServiceServer ) ListAllUserStats ( context . Context , * ListAllUserStatsRequest ) ( * ListAllUserStatsResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method ListAllUserStats not implemented" )
}
func ( UnimplementedUserServiceServer ) GetUserStats ( context . Context , * GetUserStatsRequest ) ( * UserStats , error ) {
return nil , status . Error ( codes . Unimplemented , "method GetUserStats not implemented" )
}
func ( UnimplementedUserServiceServer ) GetUserSetting ( context . Context , * GetUserSettingRequest ) ( * UserSetting , error ) {
return nil , status . Error ( codes . Unimplemented , "method GetUserSetting not implemented" )
}
func ( UnimplementedUserServiceServer ) UpdateUserSetting ( context . Context , * UpdateUserSettingRequest ) ( * UserSetting , error ) {
return nil , status . Error ( codes . Unimplemented , "method UpdateUserSetting not implemented" )
}
func ( UnimplementedUserServiceServer ) ListUserSettings ( context . Context , * ListUserSettingsRequest ) ( * ListUserSettingsResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method ListUserSettings not implemented" )
}
func ( UnimplementedUserServiceServer ) ListPersonalAccessTokens ( context . Context , * ListPersonalAccessTokensRequest ) ( * ListPersonalAccessTokensResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method ListPersonalAccessTokens not implemented" )
}
func ( UnimplementedUserServiceServer ) CreatePersonalAccessToken ( context . Context , * CreatePersonalAccessTokenRequest ) ( * CreatePersonalAccessTokenResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method CreatePersonalAccessToken not implemented" )
}
func ( UnimplementedUserServiceServer ) DeletePersonalAccessToken ( context . Context , * DeletePersonalAccessTokenRequest ) ( * emptypb . Empty , error ) {
return nil , status . Error ( codes . Unimplemented , "method DeletePersonalAccessToken not implemented" )
}
func ( UnimplementedUserServiceServer ) ListUserWebhooks ( context . Context , * ListUserWebhooksRequest ) ( * ListUserWebhooksResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method ListUserWebhooks not implemented" )
}
func ( UnimplementedUserServiceServer ) CreateUserWebhook ( context . Context , * CreateUserWebhookRequest ) ( * UserWebhook , error ) {
return nil , status . Error ( codes . Unimplemented , "method CreateUserWebhook not implemented" )
}
func ( UnimplementedUserServiceServer ) UpdateUserWebhook ( context . Context , * UpdateUserWebhookRequest ) ( * UserWebhook , error ) {
return nil , status . Error ( codes . Unimplemented , "method UpdateUserWebhook not implemented" )
}
func ( UnimplementedUserServiceServer ) DeleteUserWebhook ( context . Context , * DeleteUserWebhookRequest ) ( * emptypb . Empty , error ) {
return nil , status . Error ( codes . Unimplemented , "method DeleteUserWebhook not implemented" )
}
func ( UnimplementedUserServiceServer ) ListUserNotifications ( context . Context , * ListUserNotificationsRequest ) ( * ListUserNotificationsResponse , error ) {
return nil , status . Error ( codes . Unimplemented , "method ListUserNotifications not implemented" )
}
func ( UnimplementedUserServiceServer ) UpdateUserNotification ( context . Context , * UpdateUserNotificationRequest ) ( * UserNotification , error ) {
return nil , status . Error ( codes . Unimplemented , "method UpdateUserNotification not implemented" )
}
func ( UnimplementedUserServiceServer ) DeleteUserNotification ( context . Context , * DeleteUserNotificationRequest ) ( * emptypb . Empty , error ) {
return nil , status . Error ( codes . Unimplemented , "method DeleteUserNotification not implemented" )
}
func ( UnimplementedUserServiceServer ) mustEmbedUnimplementedUserServiceServer ( ) { }
func ( UnimplementedUserServiceServer ) testEmbeddedByValue ( ) { }
// UnsafeUserServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to UserServiceServer will
// result in compilation errors.
type UnsafeUserServiceServer interface {
mustEmbedUnimplementedUserServiceServer ( )
}
func RegisterUserServiceServer ( s grpc . ServiceRegistrar , srv UserServiceServer ) {
// If the following call panics, it indicates UnimplementedUserServiceServer 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 ( & UserService_ServiceDesc , srv )
}
func _UserService_ListUsers_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListUsersRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . ListUsers ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_ListUsers_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . ListUsers ( ctx , req . ( * ListUsersRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_GetUser_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( GetUserRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . GetUser ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_GetUser_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . GetUser ( ctx , req . ( * GetUserRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_CreateUser_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CreateUserRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . CreateUser ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_CreateUser_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . CreateUser ( ctx , req . ( * CreateUserRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_UpdateUser_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( UpdateUserRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . UpdateUser ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_UpdateUser_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . UpdateUser ( ctx , req . ( * UpdateUserRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_DeleteUser_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( DeleteUserRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . DeleteUser ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_DeleteUser_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . DeleteUser ( ctx , req . ( * DeleteUserRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_ListAllUserStats_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListAllUserStatsRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . ListAllUserStats ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_ListAllUserStats_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . ListAllUserStats ( ctx , req . ( * ListAllUserStatsRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_GetUserStats_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( GetUserStatsRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . GetUserStats ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_GetUserStats_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . GetUserStats ( ctx , req . ( * GetUserStatsRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_GetUserSetting_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( GetUserSettingRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . GetUserSetting ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_GetUserSetting_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . GetUserSetting ( ctx , req . ( * GetUserSettingRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_UpdateUserSetting_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( UpdateUserSettingRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . UpdateUserSetting ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_UpdateUserSetting_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . UpdateUserSetting ( ctx , req . ( * UpdateUserSettingRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_ListUserSettings_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListUserSettingsRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . ListUserSettings ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_ListUserSettings_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . ListUserSettings ( ctx , req . ( * ListUserSettingsRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_ListPersonalAccessTokens_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListPersonalAccessTokensRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . ListPersonalAccessTokens ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_ListPersonalAccessTokens_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . ListPersonalAccessTokens ( ctx , req . ( * ListPersonalAccessTokensRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_CreatePersonalAccessToken_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CreatePersonalAccessTokenRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . CreatePersonalAccessToken ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_CreatePersonalAccessToken_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . CreatePersonalAccessToken ( ctx , req . ( * CreatePersonalAccessTokenRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_DeletePersonalAccessToken_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( DeletePersonalAccessTokenRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . DeletePersonalAccessToken ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_DeletePersonalAccessToken_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . DeletePersonalAccessToken ( ctx , req . ( * DeletePersonalAccessTokenRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_ListUserWebhooks_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListUserWebhooksRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . ListUserWebhooks ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_ListUserWebhooks_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . ListUserWebhooks ( ctx , req . ( * ListUserWebhooksRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_CreateUserWebhook_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CreateUserWebhookRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . CreateUserWebhook ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_CreateUserWebhook_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . CreateUserWebhook ( ctx , req . ( * CreateUserWebhookRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_UpdateUserWebhook_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( UpdateUserWebhookRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . UpdateUserWebhook ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_UpdateUserWebhook_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . UpdateUserWebhook ( ctx , req . ( * UpdateUserWebhookRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_DeleteUserWebhook_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( DeleteUserWebhookRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . DeleteUserWebhook ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_DeleteUserWebhook_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . DeleteUserWebhook ( ctx , req . ( * DeleteUserWebhookRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_ListUserNotifications_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ListUserNotificationsRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . ListUserNotifications ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_ListUserNotifications_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . ListUserNotifications ( ctx , req . ( * ListUserNotificationsRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_UpdateUserNotification_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( UpdateUserNotificationRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . UpdateUserNotification ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_UpdateUserNotification_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . UpdateUserNotification ( ctx , req . ( * UpdateUserNotificationRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _UserService_DeleteUserNotification_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( DeleteUserNotificationRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( UserServiceServer ) . DeleteUserNotification ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : UserService_DeleteUserNotification_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( UserServiceServer ) . DeleteUserNotification ( ctx , req . ( * DeleteUserNotificationRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
// UserService_ServiceDesc is the grpc.ServiceDesc for UserService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var UserService_ServiceDesc = grpc . ServiceDesc {
ServiceName : "memos.api.v1.UserService" ,
HandlerType : ( * UserServiceServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "ListUsers" ,
Handler : _UserService_ListUsers_Handler ,
} ,
{
MethodName : "GetUser" ,
Handler : _UserService_GetUser_Handler ,
} ,
{
MethodName : "CreateUser" ,
Handler : _UserService_CreateUser_Handler ,
} ,
{
MethodName : "UpdateUser" ,
Handler : _UserService_UpdateUser_Handler ,
} ,
{
MethodName : "DeleteUser" ,
Handler : _UserService_DeleteUser_Handler ,
} ,
{
MethodName : "ListAllUserStats" ,
Handler : _UserService_ListAllUserStats_Handler ,
} ,
{
MethodName : "GetUserStats" ,
Handler : _UserService_GetUserStats_Handler ,
} ,
{
MethodName : "GetUserSetting" ,
Handler : _UserService_GetUserSetting_Handler ,
} ,
{
MethodName : "UpdateUserSetting" ,
Handler : _UserService_UpdateUserSetting_Handler ,
} ,
{
MethodName : "ListUserSettings" ,
Handler : _UserService_ListUserSettings_Handler ,
} ,
{
MethodName : "ListPersonalAccessTokens" ,
Handler : _UserService_ListPersonalAccessTokens_Handler ,
} ,
{
MethodName : "CreatePersonalAccessToken" ,
Handler : _UserService_CreatePersonalAccessToken_Handler ,
} ,
{
MethodName : "DeletePersonalAccessToken" ,
Handler : _UserService_DeletePersonalAccessToken_Handler ,
} ,
{
MethodName : "ListUserWebhooks" ,
Handler : _UserService_ListUserWebhooks_Handler ,
} ,
{
MethodName : "CreateUserWebhook" ,
Handler : _UserService_CreateUserWebhook_Handler ,
} ,
{
MethodName : "UpdateUserWebhook" ,
Handler : _UserService_UpdateUserWebhook_Handler ,
} ,
{
MethodName : "DeleteUserWebhook" ,
Handler : _UserService_DeleteUserWebhook_Handler ,
} ,
{
MethodName : "ListUserNotifications" ,
Handler : _UserService_ListUserNotifications_Handler ,
} ,
{
MethodName : "UpdateUserNotification" ,
Handler : _UserService_UpdateUserNotification_Handler ,
} ,
{
MethodName : "DeleteUserNotification" ,
Handler : _UserService_DeleteUserNotification_Handler ,
} ,
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "api/v1/user_service.proto" ,
}