-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathrevocation.go
156 lines (123 loc) · 4.52 KB
/
revocation.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
// Copyright 2018 AccelByte Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package iam
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"time"
"github.com/AccelByte/bloom"
"github.com/AccelByte/go-restful-plugins/v3/pkg/jaeger"
"github.com/cenkalti/backoff"
"github.com/opentracing/opentracing-go"
"github.com/pkg/errors"
)
func (client *DefaultClient) setRevocationFilterSafe(filter *bloom.Filter) {
client.revocationFilterMutex.Lock()
defer client.revocationFilterMutex.Unlock()
client.revocationFilter = filter
}
func (client *DefaultClient) putRevocationFilterSafe(data []byte) {
client.revocationFilterMutex.Lock()
defer client.revocationFilterMutex.Unlock()
client.revocationFilter.Put(data)
}
func (client *DefaultClient) refreshRevocationList(rootSpan opentracing.Span) {
span := jaeger.StartChildSpan(rootSpan, "client.refreshJWKS")
defer jaeger.Finish(span)
time.Sleep(client.config.RevocationListRefreshInterval)
backOffTime := time.Second
for {
client.revocationListRefreshError = client.getRevocationList(span)
if client.revocationListRefreshError != nil {
time.Sleep(backOffTime)
if backOffTime < maxBackOffTime {
backOffTime *= 2
}
continue
}
backOffTime = time.Second
time.Sleep(client.config.RevocationListRefreshInterval)
}
}
// nolint: dupl,funlen
func (client *DefaultClient) getRevocationList(rootSpan opentracing.Span) error {
span := jaeger.StartChildSpan(rootSpan, "client.getRevocationList")
defer jaeger.Finish(span)
req, err := http.NewRequest(http.MethodGet, client.config.BaseURL+revocationListPath, nil)
if err != nil {
jaeger.TraceError(span, errors.Wrap(err, "getRevocationList: unable to make new HTTP request"))
return errors.Wrap(err, "getRevocationList: unable to make new HTTP request")
}
req.SetBasicAuth(client.config.ClientID, client.config.ClientSecret)
b := backoff.NewExponentialBackOff()
b.MaxElapsedTime = maxBackOffTime
var responseStatusCode int
var responseBodyBytes []byte
err = backoff.
Retry(
func() error {
reqSpan := jaeger.StartChildSpan(span, "client.getRevocationList.Retry")
defer jaeger.Finish(reqSpan)
jErr := jaeger.InjectSpanIntoRequest(reqSpan, req)
logErr(jErr)
resp, e := client.httpClient.Do(req)
if e != nil {
return backoff.Permanent(e)
}
defer resp.Body.Close()
responseStatusCode = resp.StatusCode
if resp.StatusCode >= http.StatusInternalServerError {
jaeger.TraceError(reqSpan, fmt.Errorf("StatusCode: %v", resp.StatusCode))
return errors.Errorf("getRevocationList: endpoint returned status code : %v", responseStatusCode)
}
responseBodyBytes, e = ioutil.ReadAll(resp.Body)
if e != nil {
jaeger.TraceError(reqSpan, fmt.Errorf("Body.ReadAll: %s", e))
return errors.Wrap(e, "getRevocationList: unable to read HTTP response body")
}
return nil
},
b,
)
if err != nil {
jaeger.TraceError(span, errors.Wrap(err, "getRevocationList: unable to do HTTP request"))
return errors.Wrap(err, "getRevocationList: unable to do HTTP request")
}
if responseStatusCode != http.StatusOK {
jaeger.TraceError(
span,
errors.Errorf(
"getRevocationList: unable to get revocation list: error code : %d, error message : %s",
responseStatusCode,
string(responseBodyBytes),
),
)
return errors.Errorf("getRevocationList: unable to get revocation list: error code : %d, error message : %s",
responseStatusCode, string(responseBodyBytes))
}
var revocationList *RevocationList
err = json.Unmarshal(responseBodyBytes, &revocationList)
if err != nil {
jaeger.TraceError(span, errors.Wrap(err, "getRevocationList: unable to unmarshal response body"))
return errors.Wrap(err, "getRevocationList: unable to unmarshal response body")
}
client.setRevokedUsersSafe(make(map[string]time.Time))
client.setRevocationFilterSafe(bloom.From(revocationList.RevokedTokens.B, revocationList.RevokedTokens.K))
for _, revokedUser := range revocationList.RevokedUsers {
client.setRevokedUserSafe(revokedUser.ID, revokedUser.RevokedAt)
}
return nil
}