1
0
mirror of https://github.com/fumiama/RVC-Models-Downloader.git synced 2024-09-29 22:36:25 +09:00
RVC-Models-Downloader/main.go

73 lines
2.0 KiB
Go
Raw Normal View History

2024-04-18 01:52:23 +09:00
package main
import (
"flag"
"fmt"
"os"
"runtime"
"time"
2024-04-19 00:29:30 +09:00
"github.com/fumiama/terasu/dns"
"github.com/fumiama/terasu/ip"
2024-04-18 01:52:23 +09:00
"github.com/sirupsen/logrus"
"gopkg.in/yaml.v3"
_ "rvcmd/console"
)
//go:generate ./pckcfg.sh assets packs tools
const ua = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0"
func main() {
logrus.Infoln("RVC Models Downloader start at", time.Now().Local().Format(time.DateTime+" (MST)"))
logrus.Infof("operating system: %s, architecture: %s", runtime.GOOS, runtime.GOARCH)
2024-04-19 00:29:30 +09:00
logrus.Infoln("can use ipv6:", ip.IsIPv6Available.Get())
2024-04-18 01:52:23 +09:00
ntrs := flag.Bool("notrs", false, "use standard TLS client")
dnsf := flag.String("dns", "", "custom dns.yaml")
cust := flag.Bool("c", false, "use custom yaml instruction")
2024-04-18 18:42:23 +09:00
force := flag.Bool("f", false, "force download even file exists")
2024-04-19 01:25:10 +09:00
wait := flag.Uint("w", 4, "connection waiting seconds")
2024-04-18 01:52:23 +09:00
flag.Parse()
args := flag.Args()
if len(args) != 1 {
2024-04-18 02:13:23 +09:00
fmt.Println("Usage:", os.Args[0], "[-notrs] [-dns dns.yaml] 'target/to/download'")
2024-04-18 01:52:23 +09:00
flag.PrintDefaults()
fmt.Println(" 'target/to/download'\n like packs/general/latest")
fmt.Println("All available targets:")
fmt.Println(cmdlst.String())
return
}
if *dnsf != "" {
f, err := os.Open(*dnsf)
if err != nil {
logrus.Errorln("open custom dns file", *dnsf, "err:", err)
return
}
m := map[string][]string{}
err = yaml.NewDecoder(f).Decode(&m)
if err != nil {
logrus.Errorln("decode custom dns file", *dnsf, "err:", err)
return
}
_ = f.Close()
2024-04-19 00:29:30 +09:00
if ip.IsIPv6Available.Get() {
dns.IPv6Servers.Add(m)
2024-04-18 01:52:23 +09:00
} else {
2024-04-19 00:29:30 +09:00
dns.IPv4Servers.Add(m)
2024-04-18 01:52:23 +09:00
}
fmt.Println("custom dns file added")
}
usercfg, err := readconfig(args[0], *cust)
2024-04-18 01:52:23 +09:00
if err != nil {
logrus.Errorln(err)
return
}
2024-04-19 01:25:10 +09:00
err = usercfg.download(args[0], "", time.Second*time.Duration(*wait), *cust, !*ntrs, *force)
2024-04-18 01:52:23 +09:00
if err != nil {
logrus.Errorln(err)
return
}
logrus.Info("all download tasks finished.")
2024-04-18 01:52:23 +09:00
}