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 {
|
2023-03-07 02:14:52 +01:00
|
|
|
DefaultHost string `yaml:"default-host"`
|
|
|
|
DefaultUser string `yaml:"default-user"`
|
|
|
|
DefaultPassword *string `yaml:"default-password"`
|
|
|
|
DefaultToken string `yaml:"default-token"`
|
|
|
|
DefaultCommand string `yaml:"default-command"`
|
|
|
|
Subscribe []Subscribe `yaml:"subscribe"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subscribe is the struct for a Subscription within Config
|
|
|
|
type Subscribe struct {
|
|
|
|
Topic string `yaml:"topic"`
|
2023-08-07 06:44:35 +02:00
|
|
|
User *string `yaml:"user"`
|
2023-03-07 02:14:52 +01:00
|
|
|
Password *string `yaml:"password"`
|
2023-08-07 06:44:35 +02:00
|
|
|
Token *string `yaml:"token"`
|
2023-03-07 02:14:52 +01:00
|
|
|
Command string `yaml:"command"`
|
|
|
|
If map[string]string `yaml:"if"`
|
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{
|
2022-07-31 21:12:15 +02:00
|
|
|
DefaultHost: DefaultBaseURL,
|
|
|
|
DefaultUser: "",
|
2022-10-09 15:50:37 +02:00
|
|
|
DefaultPassword: nil,
|
2023-03-06 06:57:51 +01:00
|
|
|
DefaultToken: "",
|
2022-07-31 21:12:15 +02:00
|
|
|
DefaultCommand: "",
|
|
|
|
Subscribe: nil,
|
2021-12-18 20:43:27 +01:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
}
|