2020-01-21 19:38:02 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Config - This struct will hold configuration components.
|
|
|
|
type Config struct {
|
2020-05-17 06:25:29 +00:00
|
|
|
Telegram struct {
|
|
|
|
Token string `json:"token"`
|
|
|
|
ChatID string `json:"chatID"`
|
|
|
|
Admins []int `json:"admins"`
|
|
|
|
} `json:"telegram"`
|
|
|
|
|
|
|
|
Sonarr struct {
|
2020-05-18 02:06:52 +00:00
|
|
|
URL string `json:"url"`
|
|
|
|
APIKey string `json:"apiKey"`
|
|
|
|
SeasonLimit int `json:"seasonLimit"`
|
|
|
|
ProfileID int `json:"proFileId"`
|
2020-05-17 06:25:29 +00:00
|
|
|
} `json:"sonarr"`
|
2020-01-21 19:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//GetConfig gets the configuration values for the api using the file in the supplied configPath.
|
|
|
|
func GetConfig(configPath string) (Config, error) {
|
|
|
|
if _, err := os.Stat(configPath); os.IsNotExist(err) {
|
|
|
|
return Config{}, fmt.Errorf("could not find the config file at path %s", configPath)
|
|
|
|
}
|
|
|
|
log.Println("Loading Configuration File: " + configPath)
|
|
|
|
return loadConfigFromFile(configPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
//if the config loaded from the file errors, no defaults will be loaded and the app will exit.
|
|
|
|
func loadConfigFromFile(configPath string) (conf Config, err error) {
|
|
|
|
file, err := os.Open(configPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error opening config file: %v", err)
|
|
|
|
} else {
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
err = json.NewDecoder(file).Decode(&conf)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error decoding config file: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return conf, err
|
|
|
|
}
|