feat: request and time mod payload

This commit is contained in:
jabuxas 2024-09-19 22:22:49 -03:00
parent 94eafd94ae
commit a23b36a2df

View File

@ -1,7 +1,59 @@
package main package main
import "fmt" import (
"fmt"
"io"
"log"
"net/http"
"os"
"time"
)
const TMPDIR = "/tmp/spire"
const PAYLOAD = TMPDIR + "/payload.json"
func main() { func main() {
fmt.Println("hello hi") get_cache()
}
func get_cache() error {
info, err := os.Stat(PAYLOAD)
if err != nil {
fmt.Println("payload isn't accessible, requesting")
download_cache()
} else if !(info.ModTime().After(time.Now().Add(-2 * time.Hour))) {
download_cache()
} else {
fmt.Println("payload was updated recently, won't update")
}
return nil
}
func download_cache() error {
resp, err := http.Get("https://thunderstore.io/api/v1/package/")
if err != nil {
log.Fatal("couldn't download thunderstore payload")
return err
}
defer resp.Body.Close()
if err := os.MkdirAll(TMPDIR, os.ModePerm); err != nil {
log.Fatal("couldn't create tmpdir")
return err
}
out, err := os.Create(PAYLOAD)
if err != nil {
log.Fatal("couldn't create payload file")
return err
}
defer out.Close()
if _, err := io.Copy(out, resp.Body); err != nil {
log.Fatal("couldn't write to payload file")
return err
}
return nil
} }