Compare commits

...

2 Commits

Author SHA1 Message Date
JoYo 619d9fcea2 Ignore empty addons, minor log messeges 2024-06-07 17:52:03 -04:00
JoYo 0ef489faa7 update ttc price tables 2024-06-07 17:44:31 -04:00
1 changed files with 62 additions and 4 deletions

View File

@ -47,6 +47,17 @@ func main() {
panic(error)
}
error = ttc_update(filepath.Join(args.Out_dir, "TamrielTradeCentre"))
if error != nil {
panic(error)
}
fmt.Println("Updated,", TCC_PRICE_TABLE_URI)
if args.Ttc {
return
}
addon_paths, error := os.ReadDir(args.Out_dir)
if error != nil {
panic(error)
@ -73,7 +84,7 @@ func main() {
for _, eso_live_name := range eso_live_addon_names {
eso_live, error := eso_live_stat_init(eso_live_name)
if error != nil {
panic(error)
continue
}
matching := ""
@ -85,8 +96,8 @@ func main() {
}
if matching == "" {
fmt.Println("Removing inactive addon", eso_live.path)
// TODO os.RemoveAll(eso_live.path)
fmt.Println("Removed,", eso_live.path)
os.RemoveAll(eso_live.path)
continue
}
@ -97,7 +108,7 @@ func main() {
fmt.Printf("Live, %s, %s\n", eso_live.name, eso_live.version)
}
for _, eso_ui := range eso_ui_list {
fmt.Printf("Update, %s, %s\n", eso_ui.name, eso_ui.version)
fmt.Printf("Updated, %s, %s\n", eso_ui.name, eso_ui.version)
error = eso_ui_get_unzip(eso_ui.path, args.Out_dir)
if error != nil {
panic(error)
@ -285,3 +296,50 @@ func eso_ui_get_unzip(esoui_url string, out_dir string) error {
return nil
}
func ttc_update(out_path string) error {
response, error := http.Get(TCC_PRICE_TABLE_URI)
if error != nil {
return error
}
defer response.Body.Close()
if response.StatusCode == http.StatusNotFound {
return errors.New(http.StatusText(response.StatusCode))
}
body, error := io.ReadAll(response.Body)
if error != nil {
return error
}
reader := bytes.NewReader(body)
zip_reader, error := zip.NewReader(reader, int64(len(body)))
if error != nil {
return error
}
for _, zipped_file := range zip_reader.File {
if zipped_file.Mode().IsDir() {
continue
}
zipped_file_open, error := zipped_file.Open()
if error != nil {
return error
}
name := filepath.Join(out_path, zipped_file.Name)
os.MkdirAll(filepath.Dir(name), os.ModePerm)
create, error := os.Create(name)
if error != nil {
return error
}
defer create.Close()
create.ReadFrom(zipped_file_open)
}
return nil
}