-
Notifications
You must be signed in to change notification settings - Fork 1
/
update-forms-ver.go
178 lines (154 loc) · 4.25 KB
/
update-forms-ver.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package main
import (
"archive/zip"
"bytes"
"crypto/sha1"
"encoding/json"
"errors"
"fmt"
"html"
"io"
"log"
"net/http"
"os"
"regexp"
"strings"
"time"
)
// KeepAliveToken represents a unique token per calendar month.
type KeepAliveToken struct{}
func (g KeepAliveToken) MarshalJSON() ([]byte, error) { return json.Marshal(g.String()) }
func (KeepAliveToken) String() string {
// sha1 encoded month of year
return fmt.Sprintf("%x", sha1.Sum([]byte{byte(time.Now().Month())}))
}
type FormsInfo struct {
// We need this to keep the gh action from being disabled due to repo
// inactivity if Standard Froms is not updated for a while.
// (>= 60 days).
GhKeepAlive KeepAliveToken `json:"_gh_keepalive"`
Version string `json:"version"`
ArchiveURL string `json:"archive_url"`
}
func (f FormsInfo) String() string {
return fmt.Sprintf("version: '%s', url: '%s'", f.Version, f.ArchiveURL)
}
const (
FormsInfoURL = "https://www.winlink.org/content/how_manually_update_standard_templates"
PatFormsAPIPath = "https://api.getpat.io/v1/forms/standard-templates/"
)
var client = &http.Client{Timeout: 30 * time.Second}
func main() {
url, err := getLatestFormsUrl()
if err != nil {
log.Fatalf("could not get latest forms info: %v", err)
}
log.Printf("Found URL %s", url)
latest, err := downloadZipURL(url)
if err != nil {
log.Fatalf("could not download archive url: %v", err)
}
log.Printf("Found version %s", latest.Version)
_ = json.NewEncoder(os.Stdout).Encode(latest)
}
func downloadZipURL(url string) (*FormsInfo, error) {
resp, err := client.Get(url)
if err != nil {
return nil, err
}
defer resp.Body.Close()
switch resp.StatusCode {
case http.StatusFound, http.StatusOK:
break
default:
return nil, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
b, version, err := readAndCheckZip(resp.Body)
if err != nil {
return nil, err
}
filename := fmt.Sprintf("Standard_Forms_%s.zip", version)
out, err := os.Create(filename)
if err != nil {
return nil, err
}
defer out.Close()
_, err = io.Copy(out, bytes.NewReader(b))
return &FormsInfo{
Version: version,
ArchiveURL: fmt.Sprintf("%s%s", PatFormsAPIPath, filename),
}, err
}
func readAndCheckZip(rc io.ReadCloser) ([]byte, string, error) {
var version string
// https://stackoverflow.com/a/50539327/587091
body, err := io.ReadAll(rc)
if err != nil {
return nil, "", err
}
zipReader, err := zip.NewReader(bytes.NewReader(body), int64(len(body)))
if err != nil {
return nil, "", err
}
// Read all the files from zip archive
for _, zipFile := range zipReader.File {
// If the file is Standard_Forms_Version.dat, read the contents
if zipFile.Name == "Standard_Forms_Version.dat" {
ver, err := readZipFileContents(zipFile)
if err != nil {
return nil, "", err
}
version = strings.TrimSpace(string(ver))
}
// Otherwise, read the file to check for errors but discard the contents
if err = readZipFile(zipFile); err != nil {
return nil, "", err
}
}
return body, version, nil
}
func readZipFile(zf *zip.File) error {
f, err := zf.Open()
if err != nil {
return err
}
defer f.Close()
_, err = io.Copy(io.Discard, f)
return err
}
func readZipFileContents(zf *zip.File) ([]byte, error) {
f, err := zf.Open()
if err != nil {
return nil, err
}
defer f.Close()
return io.ReadAll(f)
}
func getLatestFormsUrl() (string, error) {
req, err := http.NewRequest("GET", FormsInfoURL, nil)
if err != nil {
return "", err
}
req.Header.Set("User-Agent", "pat-forms-scraper")
req.Header.Set("Cache-Control", "no-cache")
resp, err := client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
bodyBytes, err := io.ReadAll(resp.Body)
if err != nil {
return "", fmt.Errorf("can't read winlink forms version page: %w", err)
}
bodyString := string(bodyBytes)
// Scrape for the version and download link
hrefRe := regexp.MustCompile(`<a href="(https://.+)">\s*Standard_Forms - Latest Version\s*</a>`)
hrefMatches := hrefRe.FindStringSubmatch(bodyString)
if len(hrefMatches) < 2 {
return "", errors.New("can't scrape the version info page, HTML structure may have changed")
}
return html.UnescapeString(hrefMatches[1]), nil
}