forked from focks/apibuildr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.go
80 lines (62 loc) · 1.18 KB
/
context.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
package apibuildr
import (
"context"
"github.com/pborman/uuid"
)
type ContextKey int
const (
ApiName ContextKey = iota
Token
ClientID
ClientSecret
RequestID
UserID
)
func GetApiName(ctx context.Context) string {
name, ok := ctx.Value(ApiName).(string)
if !ok {
return ""
}
return name
}
func GetToken(ctx context.Context) string {
token, ok := ctx.Value(Token).(string)
if !ok {
return ""
}
return token
}
func GetClientID(ctx context.Context) string {
clientID, ok := ctx.Value(ClientID).(string)
if !ok {
return ""
}
return clientID
}
func GetClientSecret(ctx context.Context) string {
clientSecret, ok := ctx.Value(ClientSecret).(string)
if !ok {
return ""
}
return clientSecret
}
func GetRequestID(ctx context.Context) string {
requestID, ok := ctx.Value(RequestID).(string)
if !ok {
return ""
}
return requestID
}
func GetUserID(ctx context.Context) string {
userId, ok := ctx.Value(UserID).(string)
if !ok {
return ""
}
return userId
}
func ApiRequestCtx(c context.Context, api string) context.Context {
requestId := uuid.New()
ctx := context.WithValue(c, RequestID, requestId)
ctx = context.WithValue(ctx, ApiName, api)
return ctx
}