-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoken_api.go
More file actions
206 lines (160 loc) · 4.55 KB
/
token_api.go
File metadata and controls
206 lines (160 loc) · 4.55 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package moneyloverapi
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"sync"
"time"
"github.com/bool64/ctxd"
"go.nhat.io/clock"
"github.com/nhatthm/moneyloverapi/internal/api"
"github.com/nhatthm/moneyloverapi/pkg/auth"
)
var (
// ErrUsernameIsEmpty indicates that the username is empty.
ErrUsernameIsEmpty = errors.New("missing username")
// ErrPasswordIsEmpty indicates that the username is empty.
ErrPasswordIsEmpty = errors.New("missing password")
)
var _ auth.TokenProvider = (*apiTokenProvider)(nil)
var emptyToken = auth.OAuthToken{}
type apiTokenProvider struct {
api *api.Client
transport http.RoundTripper
credentials CredentialsProvider
storage auth.TokenStorage
clock clock.Clock
mu sync.Mutex
}
func (p *apiTokenProvider) oauthClient(baseURL string) *api.Client {
c := api.NewClient()
c.BaseURL = baseURL
c.Timeout = p.api.Timeout
c.InstrumentCtxFunc = p.api.InstrumentCtxFunc
c.SetTransport(p.transport)
return c
}
func (p *apiTokenProvider) getToken(ctx context.Context, key string) (auth.OAuthToken, error) {
return p.storage.Get(ctx, key)
}
func (p *apiTokenProvider) setToken(ctx context.Context, key string, res api.TokenResponse) (auth.OAuthToken, error) {
token := auth.OAuthToken{
AccessToken: auth.Token(res.AccessToken),
ExpiresAt: res.Expire.Time(),
}
if err := p.storage.Set(ctx, key, token); err != nil {
return auth.OAuthToken{}, err
}
return token, nil
}
func (p *apiTokenProvider) getLoginURL(ctx context.Context) (*url.URL, error) {
res, err := p.api.PostUserLoginURL(ctx, api.PostUserLoginURLRequest{})
if err != nil {
return nil, ctxd.WrapError(ctx, err, "unexpected response")
}
return url.Parse(res.ValueOK.Data.LoginURL)
}
func (p *apiTokenProvider) login(ctx context.Context, loginURL url.URL) (*api.TokenResponse, error) {
loginParams := loginURL.Query()
authorization := loginParams.Get("token")
client := loginParams.Get("client")
password := p.credentials.Password()
if password == "" {
return nil, ctxd.WrapError(ctx, ErrPasswordIsEmpty, "could not get token")
}
oauth := p.oauthClient(fmt.Sprintf("%s://%s", loginURL.Scheme, loginURL.Host))
res, err := oauth.PostToken(ctx, api.PostTokenRequest{
Authorization: fmt.Sprintf("Bearer %s", authorization),
Client: &client,
Body: &api.TokenRequest{
ClientInfo: true,
Email: p.credentials.Username(),
Password: password,
},
})
if err != nil {
return nil, ctxd.WrapError(ctx, err, "unexpected response")
}
return res.ValueOK, err
}
func (p *apiTokenProvider) get(ctx context.Context, key string) (auth.Token, error) {
loginURL, err := p.getLoginURL(ctx)
if err != nil {
return "", err
}
res, err := p.login(ctx, *loginURL)
if err != nil {
return "", err
}
token, err := p.setToken(ctx, key, *res)
if err != nil {
return "", ctxd.WrapError(ctx, err, "could not persist token to storage")
}
return token.AccessToken, nil
}
func (p *apiTokenProvider) WithBaseURL(baseURL string) *apiTokenProvider {
p.mu.Lock()
defer p.mu.Unlock()
p.api.BaseURL = baseURL
return p
}
func (p *apiTokenProvider) WithTimeout(timeout time.Duration) *apiTokenProvider {
p.mu.Lock()
defer p.mu.Unlock()
p.api.Timeout = timeout
return p
}
//nolint:unparam
func (p *apiTokenProvider) WithStorage(storage auth.TokenStorage) *apiTokenProvider {
p.mu.Lock()
defer p.mu.Unlock()
p.storage = storage
return p
}
func (p *apiTokenProvider) WithTransport(transport http.RoundTripper) *apiTokenProvider {
p.mu.Lock()
defer p.mu.Unlock()
p.transport = transport
p.api.SetTransport(p.transport)
return p
}
func (p *apiTokenProvider) WithClock(clock clock.Clock) *apiTokenProvider {
p.mu.Lock()
defer p.mu.Unlock()
p.clock = clock
return p
}
func (p *apiTokenProvider) Token(ctx context.Context) (auth.Token, error) {
p.mu.Lock()
defer p.mu.Unlock()
username := p.credentials.Username()
if username == "" {
return "", ctxd.WrapError(ctx, ErrUsernameIsEmpty, "could not get token")
}
key := username
token, err := p.getToken(ctx, key)
if err != nil {
return "", ctxd.WrapError(ctx, err, "could not get token from storage")
}
if token != emptyToken && !token.IsExpired(p.clock.Now()) {
return token.AccessToken, nil
}
return p.get(ctx, key)
}
func newAPITokenProvider(
credentials CredentialsProvider,
) *apiTokenProvider {
c := api.NewClient()
c.BaseURL = BaseURL
c.Timeout = time.Minute
p := &apiTokenProvider{
api: c,
credentials: credentials,
storage: NewInMemoryTokenStorage(),
clock: clock.New(),
}
p.WithTransport(http.DefaultTransport)
return p
}