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 207 208 209
|
package api
import (
"bufio"
"bytes"
"crypto/sha256"
"errors"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strings"
"sync"
"time"
)
type cache struct {
dir string
ttl time.Duration
}
type cacheRoundTripper struct {
fs fileStorage
rt http.RoundTripper
}
type fileStorage struct {
dir string
ttl time.Duration
mu *sync.RWMutex
}
type readCloser struct {
io.Reader
io.Closer
}
func isCacheableRequest(req *http.Request) bool {
if strings.EqualFold(req.Method, "GET") || strings.EqualFold(req.Method, "HEAD") {
return true
}
if strings.EqualFold(req.Method, "POST") && (req.URL.Path == "/graphql" || req.URL.Path == "/api/graphql") {
return true
}
return false
}
func isCacheableResponse(res *http.Response) bool {
return res.StatusCode < 500 && res.StatusCode != 403
}
func cacheKey(req *http.Request) (string, error) {
h := sha256.New()
fmt.Fprintf(h, "%s:", req.Method)
fmt.Fprintf(h, "%s:", req.URL.String())
fmt.Fprintf(h, "%s:", req.Header.Get("Accept"))
fmt.Fprintf(h, "%s:", req.Header.Get("Authorization"))
if req.Body != nil {
var bodyCopy io.ReadCloser
req.Body, bodyCopy = copyStream(req.Body)
defer bodyCopy.Close()
if _, err := io.Copy(h, bodyCopy); err != nil {
return "", err
}
}
digest := h.Sum(nil)
return fmt.Sprintf("%x", digest), nil
}
func (c cache) RoundTripper(rt http.RoundTripper) http.RoundTripper {
fs := fileStorage{
dir: c.dir,
ttl: c.ttl,
mu: &sync.RWMutex{},
}
return cacheRoundTripper{fs: fs, rt: rt}
}
func (crt cacheRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
reqDir, reqTTL := requestCacheOptions(req)
if crt.fs.ttl == 0 && reqTTL == 0 {
return crt.rt.RoundTrip(req)
}
if !isCacheableRequest(req) {
return crt.rt.RoundTrip(req)
}
origDir := crt.fs.dir
if reqDir != "" {
crt.fs.dir = reqDir
}
origTTL := crt.fs.ttl
if reqTTL != 0 {
crt.fs.ttl = reqTTL
}
key, keyErr := cacheKey(req)
if keyErr == nil {
if res, err := crt.fs.read(key); err == nil {
res.Request = req
return res, nil
}
}
res, err := crt.rt.RoundTrip(req)
if err == nil && keyErr == nil && isCacheableResponse(res) {
_ = crt.fs.store(key, res)
}
crt.fs.dir = origDir
crt.fs.ttl = origTTL
return res, err
}
// Allow an individual request to override cache options.
func requestCacheOptions(req *http.Request) (string, time.Duration) {
var dur time.Duration
dir := req.Header.Get("X-GH-CACHE-DIR")
ttl := req.Header.Get("X-GH-CACHE-TTL")
if ttl != "" {
dur, _ = time.ParseDuration(ttl)
}
return dir, dur
}
func (fs *fileStorage) filePath(key string) string {
if len(key) >= 6 {
return filepath.Join(fs.dir, key[0:2], key[2:4], key[4:])
}
return filepath.Join(fs.dir, key)
}
func (fs *fileStorage) read(key string) (*http.Response, error) {
cacheFile := fs.filePath(key)
fs.mu.RLock()
defer fs.mu.RUnlock()
f, err := os.Open(cacheFile)
if err != nil {
return nil, err
}
defer f.Close()
stat, err := f.Stat()
if err != nil {
return nil, err
}
age := time.Since(stat.ModTime())
if age > fs.ttl {
return nil, errors.New("cache expired")
}
body := &bytes.Buffer{}
_, err = io.Copy(body, f)
if err != nil {
return nil, err
}
res, err := http.ReadResponse(bufio.NewReader(body), nil)
return res, err
}
func (fs *fileStorage) store(key string, res *http.Response) error {
cacheFile := fs.filePath(key)
fs.mu.Lock()
defer fs.mu.Unlock()
err := os.MkdirAll(filepath.Dir(cacheFile), 0755)
if err != nil {
return err
}
f, err := os.OpenFile(cacheFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return err
}
defer f.Close()
var origBody io.ReadCloser
if res.Body != nil {
origBody, res.Body = copyStream(res.Body)
defer res.Body.Close()
}
err = res.Write(f)
if origBody != nil {
res.Body = origBody
}
return err
}
func copyStream(r io.ReadCloser) (io.ReadCloser, io.ReadCloser) {
b := &bytes.Buffer{}
nr := io.TeeReader(r, b)
return io.NopCloser(b), &readCloser{
Reader: nr,
Closer: r,
}
}
|