-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpcJwt.go
138 lines (119 loc) · 3.29 KB
/
rpcJwt.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
package geniusAuth
import (
"container/list"
"context"
"errors"
"github.com/ncuhome/GeniusAuthoritarianClient/jwt"
"github.com/ncuhome/GeniusAuthoritarianClient/jwt/jwtClaims"
"google.golang.org/protobuf/types/known/emptypb"
"sync"
"sync/atomic"
"time"
)
type RpcJwtParser struct {
Rpc *RpcClient
Jwt *jwt.Parser
// UserOperationIDTable uint64 => uint64 uid => UserOperationID
UserOperationIDTable sync.Map
// CanceledTokenTable uint64 => time.Time TokenID => ValidBefore
CanceledTokenTable sync.Map
Connected atomic.Bool
// OnError process error produced in rpc watch stream
OnError func(err error)
}
var (
RpcJwtNotConnected = errors.New("jwt parser rpc not connected")
RpcJwtUserOperationIDNotFound = errors.New("user operation id not exist")
RpcJwtTokenInvalid = errors.New("token canceled")
)
func (p *RpcJwtParser) init() error {
if p.OnError == nil {
p.OnError = func(_ error) {}
}
go p._RpcStream()
go p._TableClean()
return nil
}
func (p *RpcJwtParser) _RpcStream() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
for {
rpcCtx, rpcCancel := context.WithCancel(ctx)
srv, err := p.Rpc.WatchTokenOperation(rpcCtx, &emptypb.Empty{})
if err != nil {
rpcCancel()
p.OnError(err)
time.Sleep(time.Second * 5)
continue
}
p.Connected.Store(true)
for {
msg, err := srv.Recv()
if err != nil {
p.OnError(err)
break
}
for _, userOperation := range msg.UserOperation {
if userOperation.OperationId == 0 {
p.UserOperationIDTable.Delete(userOperation.Uid)
} else {
p.UserOperationIDTable.Store(userOperation.Uid, userOperation.OperationId)
}
}
for _, canceledToken := range msg.CanceledToken {
p.CanceledTokenTable.Store(canceledToken.Id, time.Unix(canceledToken.ValidBefore, 0))
}
}
p.Connected.Store(false)
rpcCancel()
}
}
func (p *RpcJwtParser) _TableClean() {
for {
time.Sleep(time.Hour * 12)
expiredCanceledToken := list.New()
now := time.Now()
p.CanceledTokenTable.Range(func(key, value any) bool {
if value.(time.Time).Before(now) {
expiredCanceledToken.PushBack(key)
}
return true
})
for el := expiredCanceledToken.Front(); el != nil; el = el.Next() {
p.CanceledTokenTable.Delete(el.Value)
}
}
}
func (p *RpcJwtParser) TokenStatCheck(claims jwtClaims.ClaimsStandard) error {
if claims.GetAppCode() != p.Rpc.Api.AppCode {
return RpcJwtTokenInvalid
}
if !p.Connected.Load() {
return RpcJwtNotConnected
}
currentUserOperationID, ok := p.UserOperationIDTable.Load(claims.GetUID())
if !ok {
return RpcJwtUserOperationIDNotFound
} else if currentUserOperationID != claims.GetUserOperateID() {
return RpcJwtTokenInvalid
}
_, ok = p.CanceledTokenTable.Load(claims.GetID())
if ok {
return RpcJwtTokenInvalid
}
return nil
}
func (p *RpcJwtParser) ParseRefreshToken(token string) (*jwtClaims.RefreshToken, bool, error) {
claims, valid, err := p.Jwt.ParseRefreshToken(token)
if err != nil || !valid {
return claims, valid, err
}
return claims, valid, p.TokenStatCheck(claims)
}
func (p *RpcJwtParser) ParseAccessToken(token string) (*jwtClaims.AccessToken, bool, error) {
claims, valid, err := p.Jwt.ParseAccessToken(token)
if err != nil || !valid {
return claims, valid, err
}
return claims, valid, p.TokenStatCheck(claims)
}