update upgrade script

This commit is contained in:
Yasuhiro Matsumoto
2026-01-01 22:32:40 +09:00
parent a66908a543
commit aa7cdd300f
4 changed files with 35 additions and 43 deletions

View File

@@ -7,6 +7,7 @@ import (
"archive/zip"
"bufio"
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
@@ -15,36 +16,49 @@ import (
"os"
"path"
"path/filepath"
"runtime"
"strings"
"time"
"github.com/PuerkitoBio/goquery"
)
func download(prefix string) (url string, content []byte, err error) {
year := time.Now().Year()
site := "https://www.sqlite.org/download.html"
//fmt.Printf("scraping %v\n", site)
doc, err := goquery.NewDocument(site)
resp, err := http.Get("https://www.sqlite.org/download.html")
if err != nil {
log.Fatal(err)
return "", nil, err
}
defer resp.Body.Close()
doc.Find("a").Each(func(_ int, s *goquery.Selection) {
if strings.HasPrefix(s.Text(), prefix) {
url = fmt.Sprintf("https://www.sqlite.org/%d/", year) + s.Text()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return "", nil, err
}
html := string(b)
start := strings.Index(html, `<!-- Download product data for scripts to read`)
if start == -1 {
return "", nil, errors.New("Unable to find download section on sqlite.org")
}
html = html[start:]
end := strings.Index(html, `-->`)
if end == -1 {
return "", nil, errors.New("Unable to find download section on sqlite.org")
}
html = html[:end]
for _, line := range strings.Split(html, "\n") {
if strings.Contains(line, prefix) {
if tok := strings.Split(line, ","); len(tok) >= 5 {
url = fmt.Sprintf("https://www.sqlite.org/%s", tok[2])
break
}
}
})
}
if url == "" {
return "", nil, fmt.Errorf("Unable to find prefix '%s' on sqlite.org", prefix)
}
fmt.Printf("Downloading %v\n", url)
resp, err := http.Get(url)
resp, err = http.Get(url)
if err != nil {
log.Fatal(err)
return "", nil, err
}
// Ready Body Content
@@ -98,13 +112,13 @@ func mergeFile(src string, dst string) error {
func main() {
fmt.Println("Go-SQLite3 Upgrade Tool")
wd, err := os.Getwd()
if err != nil {
log.Fatal(err)
_, file, _, ok := runtime.Caller(0)
if !ok {
log.Fatal("could not get current file info")
}
if filepath.Base(wd) != "upgrade" {
log.Printf("Current directory is %q but should run in upgrade directory", wd)
os.Exit(1)
err := os.Chdir(filepath.Dir(filepath.Dir(file)))
if err != nil {
log.Fatalf("could not change directory: %s", err)
}
// Download Amalgamation