-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrefresh_token.go
164 lines (135 loc) · 3.88 KB
/
refresh_token.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package goauth2
import (
"time"
"github.com/inklabs/rangedb"
"github.com/inklabs/rangedb/pkg/clock"
)
const refreshTokenGrantLifetime = 1 * time.Hour
// RefreshTokenCommandTypes returns all command types goauth2.refreshToken supports.
func RefreshTokenCommandTypes() []string {
return []string{
RequestAccessTokenViaRefreshTokenGrant{}.CommandType(),
IssueRefreshTokenToUser{}.CommandType(),
RevokeRefreshTokenFromUser{}.CommandType(),
}
}
type refreshToken struct {
tokenGenerator TokenGenerator
clock clock.Clock
Token string
Scope string
PendingEvents []rangedb.Event
Username string
IsLoaded bool
HasBeenPreviouslyUsed bool
HasBeenRevoked bool
UserID string
ClientID string
}
func newRefreshToken(iter rangedb.RecordIterator, generator TokenGenerator, clock clock.Clock) *refreshToken {
aggregate := &refreshToken{
tokenGenerator: generator,
clock: clock,
}
for iter.Next() {
if event, ok := iter.Record().Data.(rangedb.Event); ok {
aggregate.apply(event)
}
}
return aggregate
}
func (a *refreshToken) apply(event rangedb.Event) {
switch e := event.(type) {
case *RefreshTokenWasIssuedToUser:
a.IsLoaded = true
a.UserID = e.UserID
a.Scope = e.Scope
case *RefreshTokenWasIssuedToUserViaRefreshTokenGrant:
a.HasBeenPreviouslyUsed = true
case *RefreshTokenWasRevokedFromUser:
a.HasBeenRevoked = true
}
}
func (a *refreshToken) Handle(command Command) {
switch c := command.(type) {
case RequestAccessTokenViaRefreshTokenGrant:
a.RequestAccessTokenViaRefreshTokenGrant(c)
case IssueRefreshTokenToUser:
a.IssueRefreshTokenToUser(c)
case RevokeRefreshTokenFromUser:
a.RevokeRefreshTokenFromUser(c)
}
}
func (a *refreshToken) GetPendingEvents() []rangedb.Event {
return a.PendingEvents
}
func (a *refreshToken) raise(events ...rangedb.Event) {
for _, event := range events {
a.apply(event)
}
a.PendingEvents = append(a.PendingEvents, events...)
}
func (a *refreshToken) RequestAccessTokenViaRefreshTokenGrant(c RequestAccessTokenViaRefreshTokenGrant) {
if !a.IsLoaded {
a.raise(RequestAccessTokenViaRefreshTokenGrantWasRejectedDueToInvalidRefreshToken{
RefreshToken: c.RefreshToken,
ClientID: c.ClientID,
})
return
}
if a.HasBeenPreviouslyUsed {
a.raise(RequestAccessTokenViaRefreshTokenGrantWasRejectedDueToPreviouslyUsedRefreshToken{
RefreshToken: c.RefreshToken,
})
return
}
if a.HasBeenRevoked {
a.raise(RequestAccessTokenViaRefreshTokenGrantWasRejectedDueToRevokedRefreshToken{
RefreshToken: c.RefreshToken,
ClientID: c.ClientID,
})
return
}
if c.Scope != "" && a.Scope != c.Scope {
a.raise(RequestAccessTokenViaRefreshTokenGrantWasRejectedDueToInvalidScope{
RefreshToken: c.RefreshToken,
ClientID: c.ClientID,
Scope: a.Scope,
RequestedScope: c.Scope,
})
return
}
nextRefreshToken := a.tokenGenerator.New()
expiresAt := a.clock.Now().Add(refreshTokenGrantLifetime).Unix()
a.raise(
AccessTokenWasIssuedToUserViaRefreshTokenGrant{
RefreshToken: c.RefreshToken,
UserID: a.UserID,
ClientID: c.ClientID,
Scope: c.Scope,
ExpiresAt: expiresAt,
},
RefreshTokenWasIssuedToUserViaRefreshTokenGrant{
RefreshToken: c.RefreshToken,
UserID: a.UserID,
ClientID: c.ClientID,
NextRefreshToken: nextRefreshToken,
Scope: c.Scope,
},
)
}
func (a *refreshToken) IssueRefreshTokenToUser(c IssueRefreshTokenToUser) {
a.raise(RefreshTokenWasIssuedToUser{
RefreshToken: c.RefreshToken,
UserID: c.UserID,
ClientID: c.ClientID,
Scope: c.Scope,
})
}
func (a *refreshToken) RevokeRefreshTokenFromUser(c RevokeRefreshTokenFromUser) {
a.raise(RefreshTokenWasRevokedFromUser{
RefreshToken: c.RefreshToken,
ClientID: c.ClientID,
UserID: c.UserID,
})
}