-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathheaders.go
85 lines (66 loc) · 1.64 KB
/
headers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package headers
import (
"context"
"fmt"
"strings"
grpc_metadata "google.golang.org/grpc/metadata"
)
////////////////////////////////////////////////////////////////////////////////
func appendToIncomingContext(
ctx context.Context,
md grpc_metadata.MD,
) context.Context {
existingMd, ok := grpc_metadata.FromIncomingContext(ctx)
if ok {
md = grpc_metadata.Join(existingMd, md)
}
return grpc_metadata.NewIncomingContext(ctx, md)
}
func appendToOutgoingContext(
ctx context.Context,
md grpc_metadata.MD,
) context.Context {
existingMd, ok := grpc_metadata.FromOutgoingContext(ctx)
if ok {
md = grpc_metadata.Join(existingMd, md)
}
return grpc_metadata.NewOutgoingContext(ctx, md)
}
////////////////////////////////////////////////////////////////////////////////
func getAuthorizationHeader(ctx context.Context) string {
metadata, ok := grpc_metadata.FromIncomingContext(ctx)
if !ok {
return ""
}
vals := metadata.Get("authorization")
if len(vals) == 0 {
return ""
}
return vals[0]
}
const (
tokenPrefix = "Bearer "
)
func GetAccessToken(ctx context.Context) (string, error) {
token := getAuthorizationHeader(ctx)
if len(token) == 0 {
return "", fmt.Errorf("failed to find auth token in the request context")
}
if !strings.HasPrefix(token, tokenPrefix) {
return "", fmt.Errorf(
"expected token to start with \"%s\", found \"%.7s\"",
tokenPrefix,
token,
)
}
return token[len(tokenPrefix):], nil
}
func SetOutgoingAccessToken(ctx context.Context, token string) context.Context {
return appendToOutgoingContext(
ctx,
grpc_metadata.Pairs(
"authorization",
fmt.Sprintf("Bearer %v", token),
),
)
}