| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package api
- import (
- "fmt"
- "strings"
- "github.com/Sirupsen/logrus"
- "github.com/cad/ovpm"
- gcontext "golang.org/x/net/context"
- "google.golang.org/grpc"
- "google.golang.org/grpc/codes"
- "google.golang.org/grpc/metadata"
- )
- func authRequired(ctx gcontext.Context, req interface{}, handler grpc.UnaryHandler) (resp interface{}, err error) {
- logrus.Debugln("rpc: auth applied")
- token, err := authzTokenFromContext(ctx)
- if err != nil {
- logrus.Debugln("rpc: auth denied because token can not be gathered from header contest")
- return nil, grpc.Errorf(codes.Unauthenticated, err.Error())
- }
- user, err := ovpm.GetUserByToken(token)
- if err != nil {
- logrus.Debugln("rpc: auth denied because user with this token can not be found")
- return nil, grpc.Errorf(codes.Unauthenticated, "access denied")
- }
- newCtx := NewUsernameContext(ctx, user.GetUsername())
- return handler(newCtx, req)
- }
- func authzTokenFromContext(ctx gcontext.Context) (string, error) {
- // retrieve metadata from context
- md, ok := metadata.FromIncomingContext(ctx)
- if !ok {
- return "", fmt.Errorf("authentication required")
- }
- if len(md["authorization"]) != 1 {
- return "", fmt.Errorf("authentication required (length)")
- }
- authHeader := md["authorization"][0]
- // split authorization header into two
- splitToken := strings.Split(authHeader, "Bearer")
- if len(splitToken) != 2 {
- return "", fmt.Errorf("invalid Authorization header. it should be in the form of 'Bearer <token>': %s", authHeader)
- }
- // get token
- token := splitToken[1]
- token = strings.TrimSpace(token)
- return token, nil
- }
|