2020-02-03 11:16:02 +03:00
|
|
|
// Code generated by protoc-gen-micro. DO NOT EDIT.
|
2020-02-26 01:15:44 +03:00
|
|
|
// source: micro/go-micro/auth/service/proto/auth.proto
|
2020-02-03 11:16:02 +03:00
|
|
|
|
|
|
|
package go_micro_auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
2020-02-26 01:15:44 +03:00
|
|
|
proto "github.com/golang/protobuf/proto"
|
2020-02-03 11:16:02 +03:00
|
|
|
math "math"
|
2020-02-26 01:15:44 +03:00
|
|
|
)
|
2020-02-03 11:16:02 +03:00
|
|
|
|
2020-02-26 01:15:44 +03:00
|
|
|
import (
|
2020-02-03 11:16:02 +03:00
|
|
|
context "context"
|
2020-02-03 11:26:57 +03:00
|
|
|
client "github.com/micro/go-micro/v2/client"
|
|
|
|
server "github.com/micro/go-micro/v2/server"
|
2020-02-03 11:16:02 +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.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ context.Context
|
|
|
|
var _ client.Option
|
|
|
|
var _ server.Option
|
|
|
|
|
|
|
|
// Client API for Auth service
|
|
|
|
|
|
|
|
type AuthService interface {
|
|
|
|
Generate(ctx context.Context, in *GenerateRequest, opts ...client.CallOption) (*GenerateResponse, error)
|
2020-02-26 01:15:44 +03:00
|
|
|
Verify(ctx context.Context, in *VerifyRequest, opts ...client.CallOption) (*VerifyResponse, error)
|
2020-02-03 11:16:02 +03:00
|
|
|
Revoke(ctx context.Context, in *RevokeRequest, opts ...client.CallOption) (*RevokeResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type authService struct {
|
|
|
|
c client.Client
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewAuthService(name string, c client.Client) AuthService {
|
|
|
|
return &authService{
|
|
|
|
c: c,
|
|
|
|
name: name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *authService) Generate(ctx context.Context, in *GenerateRequest, opts ...client.CallOption) (*GenerateResponse, error) {
|
|
|
|
req := c.c.NewRequest(c.name, "Auth.Generate", in)
|
|
|
|
out := new(GenerateResponse)
|
|
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2020-02-26 01:15:44 +03:00
|
|
|
func (c *authService) Verify(ctx context.Context, in *VerifyRequest, opts ...client.CallOption) (*VerifyResponse, error) {
|
|
|
|
req := c.c.NewRequest(c.name, "Auth.Verify", in)
|
|
|
|
out := new(VerifyResponse)
|
2020-02-03 11:16:02 +03:00
|
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *authService) Revoke(ctx context.Context, in *RevokeRequest, opts ...client.CallOption) (*RevokeResponse, error) {
|
|
|
|
req := c.c.NewRequest(c.name, "Auth.Revoke", in)
|
|
|
|
out := new(RevokeResponse)
|
|
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Server API for Auth service
|
|
|
|
|
|
|
|
type AuthHandler interface {
|
|
|
|
Generate(context.Context, *GenerateRequest, *GenerateResponse) error
|
2020-02-26 01:15:44 +03:00
|
|
|
Verify(context.Context, *VerifyRequest, *VerifyResponse) error
|
2020-02-03 11:16:02 +03:00
|
|
|
Revoke(context.Context, *RevokeRequest, *RevokeResponse) error
|
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterAuthHandler(s server.Server, hdlr AuthHandler, opts ...server.HandlerOption) error {
|
|
|
|
type auth interface {
|
|
|
|
Generate(ctx context.Context, in *GenerateRequest, out *GenerateResponse) error
|
2020-02-26 01:15:44 +03:00
|
|
|
Verify(ctx context.Context, in *VerifyRequest, out *VerifyResponse) error
|
2020-02-03 11:16:02 +03:00
|
|
|
Revoke(ctx context.Context, in *RevokeRequest, out *RevokeResponse) error
|
|
|
|
}
|
|
|
|
type Auth struct {
|
|
|
|
auth
|
|
|
|
}
|
|
|
|
h := &authHandler{hdlr}
|
|
|
|
return s.Handle(s.NewHandler(&Auth{h}, opts...))
|
|
|
|
}
|
|
|
|
|
|
|
|
type authHandler struct {
|
|
|
|
AuthHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *authHandler) Generate(ctx context.Context, in *GenerateRequest, out *GenerateResponse) error {
|
|
|
|
return h.AuthHandler.Generate(ctx, in, out)
|
|
|
|
}
|
|
|
|
|
2020-02-26 01:15:44 +03:00
|
|
|
func (h *authHandler) Verify(ctx context.Context, in *VerifyRequest, out *VerifyResponse) error {
|
|
|
|
return h.AuthHandler.Verify(ctx, in, out)
|
2020-02-03 11:16:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *authHandler) Revoke(ctx context.Context, in *RevokeRequest, out *RevokeResponse) error {
|
|
|
|
return h.AuthHandler.Revoke(ctx, in, out)
|
|
|
|
}
|