-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
145 lines (128 loc) · 3.22 KB
/
client.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package tuihub
import (
"context"
"os"
"sync"
"time"
pb "github.com/tuihub/protos/pkg/librarian/sephirah/v1"
"github.com/tuihub/tuihub-go/internal"
capi "github.com/hashicorp/consul/api"
"google.golang.org/grpc/metadata"
)
type LibrarianClient struct {
pb.LibrarianSephirahServiceClient
accessToken string
refreshToken string
muToken sync.RWMutex
backgroundRefresh bool
consulConfig *capi.Config
}
type ClientOption func(*LibrarianClient)
func WithoutBackgroundRefresh() ClientOption {
return func(c *LibrarianClient) {
c.backgroundRefresh = false
}
}
func WithClientConsulConfig(config *capi.Config) ClientOption {
return func(c *LibrarianClient) {
c.consulConfig = config
}
}
func LoginByPassword(
ctx context.Context,
username string,
password string,
options ...ClientOption,
) (*LibrarianClient, error) {
c := &LibrarianClient{
LibrarianSephirahServiceClient: nil,
accessToken: "",
refreshToken: "",
muToken: sync.RWMutex{},
backgroundRefresh: true,
consulConfig: nil,
}
for _, o := range options {
o(c)
}
client, err := internal.NewSephirahClient(ctx, c.consulConfig, os.Getenv(sephirahServiceName))
if err != nil {
return nil, err
}
c.LibrarianSephirahServiceClient = client
resp, err := client.GetToken(ctx, &pb.GetTokenRequest{
Username: username,
Password: password,
DeviceId: nil,
})
if err != nil {
return nil, err
}
c.accessToken = resp.GetAccessToken()
c.refreshToken = resp.GetRefreshToken()
if c.backgroundRefresh {
go c.RunBackgroundRefresh()
}
return c, nil
}
func LoginByRefreshToken(
ctx context.Context,
refreshToken string,
options ...ClientOption,
) (*LibrarianClient, error) {
c := &LibrarianClient{
LibrarianSephirahServiceClient: nil,
accessToken: "",
refreshToken: "",
muToken: sync.RWMutex{},
backgroundRefresh: true,
consulConfig: nil,
}
for _, o := range options {
o(c)
}
client, err := internal.NewSephirahClient(ctx, c.consulConfig, os.Getenv(sephirahServiceName))
if err != nil {
return nil, err
}
c.LibrarianSephirahServiceClient = client
resp, err := client.RefreshToken(
WithToken(ctx, refreshToken),
new(pb.RefreshTokenRequest),
)
if err != nil {
return nil, err
}
c.accessToken = resp.GetAccessToken()
c.refreshToken = resp.GetRefreshToken()
if c.backgroundRefresh {
go c.RunBackgroundRefresh()
}
return c, nil
}
func WithToken(ctx context.Context, token string) context.Context {
return metadata.AppendToOutgoingContext(ctx, "authorization", "Bearer "+token)
}
func (c *LibrarianClient) RunBackgroundRefresh() {
for {
c.muToken.RLock()
resp, err := c.RefreshToken(
WithToken(context.Background(), c.refreshToken),
new(pb.RefreshTokenRequest),
)
if err == nil {
return
}
c.muToken.RUnlock()
c.muToken.Lock()
c.accessToken = resp.GetAccessToken()
c.refreshToken = resp.GetRefreshToken()
c.muToken.Unlock()
time.Sleep(time.Hour)
}
}
func (c *LibrarianClient) WithToken(ctx context.Context) context.Context {
c.muToken.RLock()
defer c.muToken.RUnlock()
return WithToken(ctx, c.accessToken)
}