2019-11-16 21:48:24 +03:00
|
|
|
package wrapper
|
2015-12-21 02:50:16 +03:00
|
|
|
|
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2020-02-07 23:58:03 +03:00
|
|
|
"strings"
|
2020-04-29 17:11:06 +03:00
|
|
|
"time"
|
2018-03-03 14:53:52 +03:00
|
|
|
|
2020-02-10 11:26:28 +03:00
|
|
|
"github.com/micro/go-micro/v2/auth"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/client"
|
|
|
|
"github.com/micro/go-micro/v2/debug/stats"
|
|
|
|
"github.com/micro/go-micro/v2/debug/trace"
|
2020-02-10 11:26:28 +03:00
|
|
|
"github.com/micro/go-micro/v2/errors"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/metadata"
|
|
|
|
"github.com/micro/go-micro/v2/server"
|
2015-12-21 02:50:16 +03:00
|
|
|
)
|
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
type fromServiceWrapper struct {
|
2015-12-21 02:50:16 +03:00
|
|
|
client.Client
|
2020-02-26 01:15:44 +03:00
|
|
|
|
|
|
|
// headers to inject
|
2016-01-28 20:55:28 +03:00
|
|
|
headers metadata.Metadata
|
2015-12-21 02:50:16 +03:00
|
|
|
}
|
|
|
|
|
2019-11-16 21:48:24 +03:00
|
|
|
var (
|
|
|
|
HeaderPrefix = "Micro-"
|
|
|
|
)
|
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
func (f *fromServiceWrapper) setHeaders(ctx context.Context) context.Context {
|
2020-04-08 12:50:19 +03:00
|
|
|
// don't overwrite keys
|
2020-04-29 17:11:06 +03:00
|
|
|
return metadata.MergeContext(ctx, f.headers, false)
|
2015-12-21 02:50:16 +03:00
|
|
|
}
|
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
func (f *fromServiceWrapper) Call(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error {
|
|
|
|
ctx = f.setHeaders(ctx)
|
|
|
|
return f.Client.Call(ctx, req, rsp, opts...)
|
2015-12-21 02:50:16 +03:00
|
|
|
}
|
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
func (f *fromServiceWrapper) Stream(ctx context.Context, req client.Request, opts ...client.CallOption) (client.Stream, error) {
|
|
|
|
ctx = f.setHeaders(ctx)
|
|
|
|
return f.Client.Stream(ctx, req, opts...)
|
2015-12-21 02:50:16 +03:00
|
|
|
}
|
2019-11-16 21:48:24 +03:00
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
func (f *fromServiceWrapper) Publish(ctx context.Context, p client.Message, opts ...client.PublishOption) error {
|
|
|
|
ctx = f.setHeaders(ctx)
|
|
|
|
return f.Client.Publish(ctx, p, opts...)
|
2020-01-25 00:58:29 +03:00
|
|
|
}
|
|
|
|
|
2020-02-26 01:15:44 +03:00
|
|
|
// FromService wraps a client to inject service and auth metadata
|
2020-04-29 17:11:06 +03:00
|
|
|
func FromService(name string, c client.Client) client.Client {
|
|
|
|
return &fromServiceWrapper{
|
2019-11-16 21:52:27 +03:00
|
|
|
c,
|
|
|
|
metadata.Metadata{
|
|
|
|
HeaderPrefix + "From-Service": name,
|
|
|
|
},
|
|
|
|
}
|
2019-11-16 21:48:24 +03:00
|
|
|
}
|
2019-12-18 21:36:42 +03:00
|
|
|
|
|
|
|
// HandlerStats wraps a server handler to generate request/error stats
|
|
|
|
func HandlerStats(stats stats.Stats) server.HandlerWrapper {
|
|
|
|
// return a handler wrapper
|
|
|
|
return func(h server.HandlerFunc) server.HandlerFunc {
|
|
|
|
// return a function that returns a function
|
|
|
|
return func(ctx context.Context, req server.Request, rsp interface{}) error {
|
|
|
|
// execute the handler
|
|
|
|
err := h(ctx, req, rsp)
|
|
|
|
// record the stats
|
|
|
|
stats.Record(err)
|
|
|
|
// return the error
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-25 00:58:29 +03:00
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
type traceWrapper struct {
|
|
|
|
client.Client
|
|
|
|
|
|
|
|
name string
|
|
|
|
trace trace.Tracer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *traceWrapper) Call(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error {
|
|
|
|
newCtx, s := c.trace.Start(ctx, req.Service()+"."+req.Endpoint())
|
|
|
|
|
|
|
|
s.Type = trace.SpanTypeRequestOutbound
|
|
|
|
err := c.Client.Call(newCtx, req, rsp, opts...)
|
|
|
|
if err != nil {
|
|
|
|
s.Metadata["error"] = err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
// finish the trace
|
|
|
|
c.trace.Finish(s)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-01-25 00:58:29 +03:00
|
|
|
// TraceCall is a call tracing wrapper
|
2020-01-29 18:45:11 +03:00
|
|
|
func TraceCall(name string, t trace.Tracer, c client.Client) client.Client {
|
2020-01-25 00:58:29 +03:00
|
|
|
return &traceWrapper{
|
|
|
|
name: name,
|
|
|
|
trace: t,
|
|
|
|
Client: c,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TraceHandler wraps a server handler to perform tracing
|
2020-01-29 18:45:11 +03:00
|
|
|
func TraceHandler(t trace.Tracer) server.HandlerWrapper {
|
2020-01-25 00:58:29 +03:00
|
|
|
// return a handler wrapper
|
|
|
|
return func(h server.HandlerFunc) server.HandlerFunc {
|
|
|
|
// return a function that returns a function
|
|
|
|
return func(ctx context.Context, req server.Request, rsp interface{}) error {
|
2020-02-07 23:58:03 +03:00
|
|
|
// don't store traces for debug
|
|
|
|
if strings.HasPrefix(req.Endpoint(), "Debug.") {
|
|
|
|
return h(ctx, req, rsp)
|
|
|
|
}
|
|
|
|
|
2020-01-25 00:58:29 +03:00
|
|
|
// get the span
|
|
|
|
newCtx, s := t.Start(ctx, req.Service()+"."+req.Endpoint())
|
2020-02-12 13:57:17 +03:00
|
|
|
s.Type = trace.SpanTypeRequestInbound
|
2020-01-25 00:58:29 +03:00
|
|
|
|
|
|
|
err := h(newCtx, req, rsp)
|
|
|
|
if err != nil {
|
|
|
|
s.Metadata["error"] = err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
// finish
|
|
|
|
t.Finish(s)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-10 11:26:28 +03:00
|
|
|
|
2020-04-29 17:11:06 +03:00
|
|
|
type authWrapper struct {
|
|
|
|
client.Client
|
|
|
|
auth func() auth.Auth
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *authWrapper) Call(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error {
|
|
|
|
// parse the options
|
|
|
|
var options client.CallOptions
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
|
|
|
// check to see if the authorization header has already been set.
|
|
|
|
// We dont't override the header unless the ServiceToken option has
|
2020-04-29 17:15:38 +03:00
|
|
|
// been specified or the header wasn't provided
|
2020-04-29 17:11:06 +03:00
|
|
|
if _, ok := metadata.Get(ctx, "Authorization"); ok && !options.ServiceToken {
|
|
|
|
return a.Client.Call(ctx, req, rsp, opts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// if auth is nil we won't be able to get an access token, so we execute
|
|
|
|
// the request without one.
|
|
|
|
aa := a.auth()
|
2020-05-13 17:13:23 +03:00
|
|
|
if aa == nil {
|
2020-04-29 17:11:06 +03:00
|
|
|
return a.Client.Call(ctx, req, rsp, opts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// check to see if we have a valid access token
|
|
|
|
aaOpts := aa.Options()
|
|
|
|
if aaOpts.Token != nil && aaOpts.Token.Expiry.Unix() > time.Now().Unix() {
|
2020-05-14 13:06:22 +03:00
|
|
|
ctx = metadata.Set(ctx, "Authorization", auth.BearerScheme+aaOpts.Token.AccessToken)
|
2020-05-13 20:17:04 +03:00
|
|
|
return a.Client.Call(ctx, req, rsp, opts...)
|
|
|
|
}
|
|
|
|
|
2020-05-13 15:13:11 +03:00
|
|
|
// call without an auth token
|
|
|
|
return a.Client.Call(ctx, req, rsp, opts...)
|
2020-04-29 17:11:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// AuthClient wraps requests with the auth header
|
2020-05-14 13:25:19 +03:00
|
|
|
func AuthClient(auth func() auth.Auth, c client.Client) client.Client {
|
|
|
|
return &authWrapper{c, auth}
|
2020-04-29 17:11:06 +03:00
|
|
|
}
|
|
|
|
|
2020-02-10 11:26:28 +03:00
|
|
|
// AuthHandler wraps a server handler to perform auth
|
2020-03-25 23:59:37 +03:00
|
|
|
func AuthHandler(fn func() auth.Auth) server.HandlerWrapper {
|
2020-02-10 11:26:28 +03:00
|
|
|
return func(h server.HandlerFunc) server.HandlerFunc {
|
|
|
|
return func(ctx context.Context, req server.Request, rsp interface{}) error {
|
|
|
|
// get the auth.Auth interface
|
|
|
|
a := fn()
|
|
|
|
|
2020-02-13 17:07:14 +03:00
|
|
|
// Check for debug endpoints which should be excluded from auth
|
|
|
|
if strings.HasPrefix(req.Endpoint(), "Debug.") {
|
|
|
|
return h(ctx, req, rsp)
|
2020-02-10 11:26:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extract the token if present. Note: if noop is being used
|
|
|
|
// then the token can be blank without erroring
|
|
|
|
var token string
|
|
|
|
if header, ok := metadata.Get(ctx, "Authorization"); ok {
|
|
|
|
// Ensure the correct scheme is being used
|
2020-03-25 14:20:53 +03:00
|
|
|
if !strings.HasPrefix(header, auth.BearerScheme) {
|
2020-04-02 20:41:06 +03:00
|
|
|
return errors.Unauthorized(req.Service(), "invalid authorization header. expected Bearer schema")
|
2020-02-10 11:26:28 +03:00
|
|
|
}
|
|
|
|
|
2020-03-25 14:20:53 +03:00
|
|
|
token = header[len(auth.BearerScheme):]
|
2020-02-10 11:26:28 +03:00
|
|
|
}
|
|
|
|
|
2020-03-25 12:35:29 +03:00
|
|
|
// Inspect the token and get the account
|
2020-03-23 19:19:30 +03:00
|
|
|
account, err := a.Inspect(token)
|
|
|
|
if err != nil {
|
2020-04-14 11:14:07 +03:00
|
|
|
account = &auth.Account{Namespace: a.Options().Namespace}
|
2020-04-02 20:41:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// construct the resource
|
|
|
|
res := &auth.Resource{
|
2020-04-07 18:24:51 +03:00
|
|
|
Type: "service",
|
|
|
|
Name: req.Service(),
|
|
|
|
Endpoint: req.Endpoint(),
|
2020-03-25 12:35:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Verify the caller has access to the resource
|
2020-04-02 20:41:06 +03:00
|
|
|
err = a.Verify(account, res)
|
2020-03-25 13:31:33 +03:00
|
|
|
if err != nil && len(account.ID) > 0 {
|
2020-04-02 20:41:06 +03:00
|
|
|
return errors.Forbidden(req.Service(), "Forbidden call made to %v:%v by %v", req.Service(), req.Endpoint(), account.ID)
|
2020-03-25 13:31:33 +03:00
|
|
|
} else if err != nil {
|
2020-04-02 20:41:06 +03:00
|
|
|
return errors.Unauthorized(req.Service(), "Unauthorised call made to %v:%v", req.Service(), req.Endpoint())
|
2020-03-04 12:54:52 +03:00
|
|
|
}
|
|
|
|
|
2020-03-23 19:19:30 +03:00
|
|
|
// There is an account, set it in the context
|
2020-05-13 12:40:08 +03:00
|
|
|
if len(account.ID) > 0 {
|
|
|
|
ctx = auth.ContextWithAccount(ctx, account)
|
|
|
|
}
|
2020-02-10 11:26:28 +03:00
|
|
|
|
2020-03-04 12:54:52 +03:00
|
|
|
// The user is authorised, allow the call
|
2020-02-10 11:26:28 +03:00
|
|
|
return h(ctx, req, rsp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|