This commit is contained in:
Gregory Salaun 2023-12-07 23:20:47 +08:00
parent aa39764a99
commit b38fcd2942
3 changed files with 25 additions and 2 deletions

View File

@ -0,0 +1,7 @@
# config.toml
host = "127.0.0.1"
port = "3000"
# TMDbApiKey is required
tmdbApiKey = ""
dbName = "racer.db"
uploadFolder = "/home/rouggy/torrents/rtorrent/Race"

View File

@ -1,6 +1,7 @@
package config
import (
"bytes"
"errors"
"log"
"os"
@ -35,6 +36,7 @@ func writeConfig(configPath string, configFile string) error {
}
// check if config exists, if not create it
host := "0.0.0.0"
if _, err := os.Stat(cfgPath); errors.Is(err, os.ErrNotExist) {
f, err := os.Create(cfgPath)
@ -46,9 +48,23 @@ func writeConfig(configPath string, configFile string) error {
defer f.Close()
// setup text template to inject variables into
_, err = template.New("config").Parse(configTemplate)
tmpl, err := template.New("config").Parse(configTemplate)
if err != nil {
log.Println("Could not create config file:", err)
return err
}
tmplVars := map[string]string{
"host": host,
}
var buffer bytes.Buffer
if err = tmpl.Execute(&buffer, &tmplVars); err != nil {
return err
}
if _, err = f.WriteString(buffer.String()); err != nil {
log.Printf("error writing contents to file: %v %q", configPath, err)
return err
}
return f.Sync()

BIN
racer.db.db Normal file

Binary file not shown.