summaryrefslogtreecommitdiff
path: root/cmd/generate/httpcache.go
blob: 6d663b733350d83b9d94ceccb3ad8030821bd501 (plain)
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
package main

import (
	"encoding/json"
	"fmt"
	"io"
	"net/http"
	"net/url"
	"os"
	"path/filepath"
	"sort"
)

type httpCacheEntry struct {
	Body string
	Err  error
}

var httpCache = map[string]httpCacheEntry{}

type httpStatusError struct {
	StatusCode int
	Status     string
}

// Is implements the interface for [errors.Is].
func (e *httpStatusError) Is(target error) bool {
	switch target {
	case os.ErrNotExist:
		return e.StatusCode == http.StatusNotFound
	default:
		return false
	}
}

// Error implements [error].
func (e *httpStatusError) Error() string {
	return fmt.Sprintf("unexpected HTTP status: %v", e.Status)
}

func httpGet(u string, hdr map[string]string) (string, error) {
	cacheKey := url.QueryEscape(u)
	hdrKeys := make([]string, 0, len(hdr))
	for k := range hdr {
		hdrKeys = append(hdrKeys, http.CanonicalHeaderKey(k))
	}
	sort.Strings(hdrKeys)
	for _, k := range hdrKeys {
		cacheKey += "|" + url.QueryEscape(k) + ":" + url.QueryEscape(hdr[k])
	}

	if cache, ok := httpCache[cacheKey]; ok {
		fmt.Printf("CACHE-GET %q\n", u)
		return cache.Body, cache.Err
	}
	if err := os.Mkdir(".http-cache", 0777); err != nil && !os.IsExist(err) {
		return "", err
	}
	cacheFile := filepath.Join(".http-cache", cacheKey)
	if bs, err := os.ReadFile(cacheFile); err == nil {
		fmt.Printf("CACHE-GET %q\n", u)
		httpCache[cacheKey] = httpCacheEntry{Body: string(bs)}
		return httpCache[cacheKey].Body, nil
	} else if !os.IsNotExist(err) {
		httpCache[cacheKey] = httpCacheEntry{Err: err}
		return "", err
	}

	fmt.Printf("GET %q...", u)
	req, err := http.NewRequest(http.MethodGet, u, nil)
	if err != nil {
		httpCache[cacheKey] = httpCacheEntry{Err: err}
		return "", err
	}
	req.Header.Set("User-Agent", "https://git.lukeshu.com/www/tree/cmd/generate")
	for k, v := range hdr {
		req.Header.Add(k, v)
	}
	resp, err := http.DefaultClient.Do(req)
	if err != nil {
		fmt.Printf(" err\n")
		httpCache[cacheKey] = httpCacheEntry{Err: err}
		return "", err
	}
	if resp.StatusCode != http.StatusOK {
		fmt.Printf(" err\n")
		httpCache[cacheKey] = httpCacheEntry{Err: err}
		return "", &httpStatusError{StatusCode: resp.StatusCode, Status: resp.Status}
	}
	bs, err := io.ReadAll(resp.Body)
	if err != nil {
		fmt.Printf(" err\n")
		httpCache[cacheKey] = httpCacheEntry{Err: err}
		httpCache[cacheKey] = httpCacheEntry{Err: err}
		return "", err
	}
	fmt.Printf(" ok\n")
	if err := os.WriteFile(cacheFile, bs, 0666); err != nil {
		return "", err
	}
	httpCache[cacheKey] = httpCacheEntry{Body: string(bs)}
	return httpCache[cacheKey].Body, nil
}

func httpGetJSON(u string, hdr map[string]string, out any) error {
	str, err := httpGet(u, hdr)
	if err != nil {
		return err
	}
	return json.Unmarshal([]byte(str), out)
}

func httpGetPaginatedJSON[T any](uStr string, hdr map[string]string, out *[]T, pageFn func(i int) url.Values) error {
	u, err := url.Parse(uStr)
	if err != nil {
		return err
	}
	query := u.Query()

	for i := 0; true; i++ {
		pageParams := pageFn(i)
		for k, v := range pageParams {
			query[k] = v
		}

		u.RawQuery = query.Encode()
		var resp []T
		if err := httpGetJSON(u.String(), hdr, &resp); err != nil {
			return err
		}
		fmt.Printf(" -> %d records\n", len(resp))
		if len(resp) == 0 {
			break
		}
		*out = append(*out, resp...)
	}

	return nil
}