ntfy/client/config.go

51 lines
1.2 KiB
Go
Raw Normal View History

2021-12-19 08:43:27 +13:00
package client
2021-12-23 01:46:17 +13:00
import (
"gopkg.in/yaml.v2"
"os"
)
2021-12-19 08:43:27 +13:00
const (
// DefaultBaseURL is the base URL used to expand short topic names
2021-12-19 08:43:27 +13:00
DefaultBaseURL = "https://ntfy.sh"
)
// Config is the config struct for a Client
2021-12-19 08:43:27 +13:00
type Config struct {
DefaultHost string `yaml:"default-host"`
DefaultUser string `yaml:"default-user"`
DefaultPassword string `yaml:"default-password"`
DefaultCommand string `yaml:"default-command"`
Subscribe []struct {
2022-02-18 07:16:01 +13:00
Topic string `yaml:"topic"`
User string `yaml:"user"`
Password string `yaml:"password"`
Command string `yaml:"command"`
If map[string]string `yaml:"if"`
2021-12-21 14:46:51 +13:00
} `yaml:"subscribe"`
2021-12-19 08:43:27 +13:00
}
// NewConfig creates a new Config struct for a Client
2021-12-19 08:43:27 +13:00
func NewConfig() *Config {
return &Config{
DefaultHost: DefaultBaseURL,
DefaultUser: "",
DefaultPassword: "",
DefaultCommand: "",
Subscribe: nil,
2021-12-19 08:43:27 +13:00
}
}
2021-12-23 01:46:17 +13:00
// LoadConfig loads the Client config from a yaml file
func LoadConfig(filename string) (*Config, error) {
b, err := os.ReadFile(filename)
if err != nil {
return nil, err
}
c := NewConfig()
if err := yaml.Unmarshal(b, c); err != nil {
return nil, err
}
return c, nil
}