-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhttp.go
88 lines (78 loc) · 2.36 KB
/
http.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
/*
* Copyright 2019 Kopano
*
* 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 oidc
import (
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"time"
"github.com/pquerna/cachecontrol"
)
// Basic HTTP related global settings.
var (
DefaultHTTPClient *http.Client
DefaultHTTPHeader http.Header
DefaultMaxJSONFetchSize int64 = 5 * 1024 * 1024 // 5 MiB
DefaultJSONFetchExpiry = time.Minute * 1
DefaultJSONFetchRetry = time.Second * 3
)
func fetchJSON(ctx context.Context, u *url.URL, dst interface{}, client *http.Client, header http.Header) (time.Duration, error) {
if client == nil {
client = DefaultHTTPClient
if client == nil {
client = http.DefaultClient
}
}
req, err := http.NewRequest(http.MethodGet, u.String(), nil)
if err != nil {
return DefaultJSONFetchRetry, fmt.Errorf("failed create fetch JSON request: %v", err)
}
if header == nil {
header = DefaultHTTPHeader
}
if header != nil {
for h, values := range header {
for _, v := range values {
req.Header.Add(h, v)
}
}
}
res, err := client.Do(req.WithContext(ctx))
if err != nil {
return DefaultJSONFetchRetry, fmt.Errorf("failed to fetch JSON: %v", err)
}
defer res.Body.Close()
if res.StatusCode != http.StatusOK {
return DefaultJSONFetchRetry, fmt.Errorf("failed to fetch JSON (status: %d)", res.StatusCode)
}
_, expires, _ := cachecontrol.CachableResponse(req, res, cachecontrol.Options{})
err = json.NewDecoder(io.LimitReader(res.Body, DefaultMaxJSONFetchSize)).Decode(dst)
if err != nil {
return DefaultJSONFetchRetry, fmt.Errorf("failed to fetch JSON: %v", err)
}
expirationDuration := expires.Sub(time.Now())
if expirationDuration < DefaultJSONFetchRetry {
if err == nil {
expirationDuration = DefaultJSONFetchExpiry
} else {
expirationDuration = DefaultJSONFetchRetry
}
}
return expirationDuration, err
}