2021-12-18 20:43:27 +01:00
|
|
|
package client
|
|
|
|
|
2021-12-22 13:46:17 +01:00
|
|
|
import (
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2021-12-18 20:43:27 +01:00
|
|
|
const (
|
2021-12-19 20:27:26 +01:00
|
|
|
// DefaultBaseURL is the base URL used to expand short topic names
|
2021-12-18 20:43:27 +01:00
|
|
|
DefaultBaseURL = "https://ntfy.sh"
|
|
|
|
)
|
|
|
|
|
2021-12-19 20:27:26 +01:00
|
|
|
// Config is the config struct for a Client
|
2021-12-18 20:43:27 +01:00
|
|
|
type Config struct {
|
2021-12-21 02:46:51 +01:00
|
|
|
DefaultHost string `yaml:"default-host"`
|
2021-12-18 20:43:27 +01:00
|
|
|
Subscribe []struct {
|
2022-02-17 19:16:01 +01: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 02:46:51 +01:00
|
|
|
} `yaml:"subscribe"`
|
2021-12-18 20:43:27 +01:00
|
|
|
}
|
|
|
|
|
2021-12-19 20:27:26 +01:00
|
|
|
// NewConfig creates a new Config struct for a Client
|
2021-12-18 20:43:27 +01:00
|
|
|
func NewConfig() *Config {
|
|
|
|
return &Config{
|
|
|
|
DefaultHost: DefaultBaseURL,
|
|
|
|
Subscribe: nil,
|
|
|
|
}
|
|
|
|
}
|
2021-12-22 13:46:17 +01: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
|
|
|
|
}
|