Compare commits

..

No commits in common. "4f99e500c0a6adf650fb16f2492b4945671af76b" and "65ee9808279724472cfbca19f1244b0dbe48d436" have entirely different histories.

2 changed files with 22 additions and 23 deletions

View File

@ -17,7 +17,7 @@ func DownloadCache() error {
}
defer resp.Body.Close()
if err = os.MkdirAll(TMPDIR, os.ModePerm); err != nil {
if err := os.MkdirAll(TMPDIR, os.ModePerm); err != nil {
return fmt.Errorf("couldn't create tmpdir: %w", err)
}
out, err := os.Create(PAYLOAD)
@ -26,7 +26,7 @@ func DownloadCache() error {
}
defer out.Close()
if _, err = io.Copy(out, resp.Body); err != nil {
if _, err := io.Copy(out, resp.Body); err != nil {
return fmt.Errorf("couldn't write to file: %w", err)
}
@ -35,28 +35,24 @@ func DownloadCache() error {
func DownloadBepinex() error {
tmpPath := TMPDIR + "/bepinex.zip"
resp, err := http.Get("https://github.com/BepInEx/BepInEx/releases/download/v5.4.23.2/BepInEx_win_x64_5.4.23.2.zip")
if err != nil {
return fmt.Errorf("could not download bepinex: %w", err)
}
defer resp.Body.Close()
// download only if it doesnt exist
if _, err := os.Stat(tmpPath); err != nil {
resp, err := http.Get("https://github.com/BepInEx/BepInEx/releases/download/v5.4.23.2/BepInEx_win_x64_5.4.23.2.zip")
if err != nil {
return fmt.Errorf("could not download bepinex: %w", err)
}
defer resp.Body.Close()
out, err := os.Create(tmpPath)
if err != nil {
return fmt.Errorf("could not create file: %w", err)
}
defer out.Close()
out, err := os.Create(tmpPath)
if err != nil {
return fmt.Errorf("could not create file: %w", err)
}
defer out.Close()
_, err = io.Copy(out, resp.Body)
if err != nil {
return fmt.Errorf("could not save file: %w", err)
}
_, err = io.Copy(out, resp.Body)
if err != nil {
return fmt.Errorf("could not save file: %w", err)
}
err := unzip(tmpPath, GAME_PATH)
err = unzip(tmpPath, GAME_PATH)
if err != nil {
return fmt.Errorf("could not extract BepInEx: %w", err)
}

View File

@ -1,6 +1,7 @@
package main
import (
"fmt"
"log"
"os"
"time"
@ -25,13 +26,14 @@ func getCache() error {
info, err := os.Stat(PAYLOAD)
if err != nil {
// payload isn't accessible, requesting
fmt.Println("payload isn't accessible, requesting")
DownloadCache()
} else if !(info.ModTime().After(time.Now().Add(-2 * time.Hour))) {
// download again if payload is older than 2 hours
DownloadCache()
} else {
fmt.Println("payload was updated recently, won't update")
}
// else payload was updated recently, won't update
return nil
}
@ -42,6 +44,7 @@ func installBepinex() {
if err != nil {
// install bepinex
DownloadBepinex()
} else {
fmt.Println("bepinex already installed")
}
// else bepinex already installed
}