Read config from YAML file
This commit is contained in:
parent
39ec8f2764
commit
4f91940047
87
config.go
87
config.go
|
@ -10,17 +10,80 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.sr.ht/~michalr/go-satel"
|
"git.sr.ht/~michalr/go-satel"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
ConfigFilePath = "hswro-alarm-bot.yml"
|
||||||
|
)
|
||||||
|
|
||||||
|
type OwnDuration struct {
|
||||||
|
duration time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
|
type SatelChangeType struct {
|
||||||
|
changeType satel.ChangeType
|
||||||
|
}
|
||||||
|
|
||||||
type AppConfig struct {
|
type AppConfig struct {
|
||||||
SatelAddr string
|
SatelAddr string `yaml:"satel-addr"`
|
||||||
ChatIds []int64
|
ChatIds []int64 `yaml:"tg-chat-ids"`
|
||||||
AllowedTypes []satel.ChangeType
|
AllowedTypes []SatelChangeType `yaml:"allowed-types"`
|
||||||
AllowedIndexes []int
|
AllowedIndexes []int `yaml:"allowed-indexes"`
|
||||||
PoolInterval time.Duration
|
PoolInterval OwnDuration `yaml:"pool-interval"`
|
||||||
ArmCallbackUrls []string
|
ArmCallbackUrls []string `yaml:"arm-callback-urls"`
|
||||||
DisarmCallbackUrls []string
|
DisarmCallbackUrls []string `yaml:"disarm-callback-urls"`
|
||||||
AlarmCallbackUrls []string
|
AlarmCallbackUrls []string `yaml:"alarm-callback-urls"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *SatelChangeType) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
|
var inputStr string
|
||||||
|
err := unmarshal(&inputStr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
ct, err := StringToSatelChangeType(inputStr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*m = SatelChangeType{ct}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *OwnDuration) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
|
var inputStr string
|
||||||
|
err := unmarshal(&inputStr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
duration, err := time.ParseDuration(inputStr)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*m = OwnDuration{duration}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self SatelChangeType) GetChangeType() satel.ChangeType { return self.changeType }
|
||||||
|
func (self OwnDuration) GetDuration() time.Duration { return self.duration }
|
||||||
|
|
||||||
|
func loadConfigFromFile(filePath string, logger *log.Logger) AppConfig {
|
||||||
|
f, err := os.ReadFile(filePath)
|
||||||
|
if err != nil {
|
||||||
|
logger.Print("Error opening config file: ", err, ". Trying to continue without it")
|
||||||
|
return AppConfig{}
|
||||||
|
}
|
||||||
|
return parseConfigFromFile(f, logger)
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseConfigFromFile(contents []byte, logger *log.Logger) AppConfig {
|
||||||
|
var config AppConfig
|
||||||
|
err := yaml.Unmarshal(contents, &config)
|
||||||
|
if err != nil {
|
||||||
|
logger.Print("Error while parsing config file: ", err, ". Trying to continue without it")
|
||||||
|
return AppConfig{}
|
||||||
|
}
|
||||||
|
return config
|
||||||
}
|
}
|
||||||
|
|
||||||
func getCmdLineParams(config *AppConfig, logger *log.Logger) {
|
func getCmdLineParams(config *AppConfig, logger *log.Logger) {
|
||||||
|
@ -45,7 +108,7 @@ func getCmdLineParams(config *AppConfig, logger *log.Logger) {
|
||||||
chatIds = append(chatIds, chatId)
|
chatIds = append(chatIds, chatId)
|
||||||
}
|
}
|
||||||
allowedTypesStrings := strings.Split(*allowedTypesRaw, ",")
|
allowedTypesStrings := strings.Split(*allowedTypesRaw, ",")
|
||||||
var allowedTypes []satel.ChangeType
|
var allowedTypes []SatelChangeType
|
||||||
for _, allowedTypeStr := range allowedTypesStrings {
|
for _, allowedTypeStr := range allowedTypesStrings {
|
||||||
if len(allowedTypeStr) == 0 {
|
if len(allowedTypeStr) == 0 {
|
||||||
continue
|
continue
|
||||||
|
@ -54,7 +117,7 @@ func getCmdLineParams(config *AppConfig, logger *log.Logger) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Fatalf("Error trying to understand an allowed type: %s.", err)
|
logger.Fatalf("Error trying to understand an allowed type: %s.", err)
|
||||||
}
|
}
|
||||||
allowedTypes = append(allowedTypes, allowedType)
|
allowedTypes = append(allowedTypes, SatelChangeType{allowedType})
|
||||||
}
|
}
|
||||||
allowedIndexesStrings := strings.Split(*allowedIndexesRaw, ",")
|
allowedIndexesStrings := strings.Split(*allowedIndexesRaw, ",")
|
||||||
var allowedIndexes []int
|
var allowedIndexes []int
|
||||||
|
@ -75,11 +138,11 @@ func getCmdLineParams(config *AppConfig, logger *log.Logger) {
|
||||||
config.ChatIds = chatIds
|
config.ChatIds = chatIds
|
||||||
config.AllowedTypes = allowedTypes
|
config.AllowedTypes = allowedTypes
|
||||||
config.AllowedIndexes = allowedIndexes
|
config.AllowedIndexes = allowedIndexes
|
||||||
config.PoolInterval = *satelPoolInterval
|
config.PoolInterval = OwnDuration{*satelPoolInterval}
|
||||||
}
|
}
|
||||||
|
|
||||||
func MakeConfig(logger *log.Logger) AppConfig {
|
func MakeConfig(logger *log.Logger) AppConfig {
|
||||||
config := AppConfig{}
|
config := loadConfigFromFile(ConfigFilePath, logger)
|
||||||
config.ArmCallbackUrls = []string{}
|
config.ArmCallbackUrls = []string{}
|
||||||
config.DisarmCallbackUrls = []string{}
|
config.DisarmCallbackUrls = []string{}
|
||||||
config.AlarmCallbackUrls = []string{}
|
config.AlarmCallbackUrls = []string{}
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"git.sr.ht/~michalr/go-satel"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
const data = `
|
||||||
|
satel-addr: "test satel address"
|
||||||
|
tg-chat-ids:
|
||||||
|
- 1234
|
||||||
|
- 5678
|
||||||
|
- 9876
|
||||||
|
allowed-types:
|
||||||
|
- "zone-isolate"
|
||||||
|
- "zone-alarm"
|
||||||
|
allowed-indexes:
|
||||||
|
- 5678
|
||||||
|
- 1337
|
||||||
|
pool-interval: 5m
|
||||||
|
arm-callback-urls:
|
||||||
|
- "test arm callback url"
|
||||||
|
- "second test arm callback url"
|
||||||
|
disarm-callback-urls:
|
||||||
|
- "test disarm callback url"
|
||||||
|
- "second test disarm callback url"
|
||||||
|
alarm-callback-urls:
|
||||||
|
- "test alarm callback url"
|
||||||
|
- "second test alarm callback url"
|
||||||
|
`
|
||||||
|
|
||||||
|
func TestParseYamlConfig(t *testing.T) {
|
||||||
|
a := assert.New(t)
|
||||||
|
|
||||||
|
actualConfig := parseConfigFromFile([]byte(data), log.New(os.Stderr, "", log.Ltime))
|
||||||
|
|
||||||
|
a.Equal("test satel address", actualConfig.SatelAddr)
|
||||||
|
a.ElementsMatch([]int64{1234, 5678, 9876}, actualConfig.ChatIds)
|
||||||
|
a.ElementsMatch([]int{5678, 1337}, actualConfig.AllowedIndexes)
|
||||||
|
a.ElementsMatch([]SatelChangeType{{satel.ZoneIsolate}, {satel.ZoneAlarm}}, actualConfig.AllowedTypes)
|
||||||
|
a.Equal(5*time.Minute, actualConfig.PoolInterval.GetDuration())
|
||||||
|
a.ElementsMatch([]string{"test arm callback url", "second test arm callback url"}, actualConfig.ArmCallbackUrls)
|
||||||
|
a.ElementsMatch([]string{"test disarm callback url", "second test disarm callback url"}, actualConfig.DisarmCallbackUrls)
|
||||||
|
a.ElementsMatch([]string{"test alarm callback url", "second test alarm callback url"}, actualConfig.AlarmCallbackUrls)
|
||||||
|
}
|
|
@ -7,9 +7,9 @@ import (
|
||||||
"git.sr.ht/~michalr/go-satel"
|
"git.sr.ht/~michalr/go-satel"
|
||||||
)
|
)
|
||||||
|
|
||||||
func isBasicEventElementOkay(basicEventElement satel.BasicEventElement, allowedTypes []satel.ChangeType, allowedIndexes []int) bool {
|
func isBasicEventElementOkay(basicEventElement satel.BasicEventElement, allowedTypes []SatelChangeType, allowedIndexes []int) bool {
|
||||||
for _, allowedType := range allowedTypes {
|
for _, allowedType := range allowedTypes {
|
||||||
if allowedType == basicEventElement.Type {
|
if allowedType.GetChangeType() == basicEventElement.Type {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ func isBasicEventElementOkay(basicEventElement satel.BasicEventElement, allowedT
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func FilterByTypeOrIndex(ev <-chan satel.Event, wg *sync.WaitGroup, allowedTypes []satel.ChangeType, allowedIndexes []int) <-chan satel.Event {
|
func FilterByTypeOrIndex(ev <-chan satel.Event, wg *sync.WaitGroup, allowedTypes []SatelChangeType, allowedIndexes []int) <-chan satel.Event {
|
||||||
returnChan := make(chan satel.Event)
|
returnChan := make(chan satel.Event)
|
||||||
|
|
||||||
if (len(allowedTypes) == 0) && (len(allowedIndexes) == 0) {
|
if (len(allowedTypes) == 0) && (len(allowedIndexes) == 0) {
|
||||||
|
|
|
@ -18,7 +18,7 @@ func TestSatelEventTypeFiltering(t *testing.T) {
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
for e := range FilterByTypeOrIndex(testEvents, &wg, []satel.ChangeType{satel.ArmedPartition, satel.PartitionFireAlarm}, []int{}) {
|
for e := range FilterByTypeOrIndex(testEvents, &wg, []SatelChangeType{{satel.ArmedPartition}, {satel.PartitionFireAlarm}}, []int{}) {
|
||||||
receivedEvents = append(receivedEvents, e)
|
receivedEvents = append(receivedEvents, e)
|
||||||
}
|
}
|
||||||
wg.Done()
|
wg.Done()
|
||||||
|
@ -46,7 +46,7 @@ func TestSatelEventTypeFiltering_NoAllowedEventTypesMeansAllAreAllowed(t *testin
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
for e := range FilterByTypeOrIndex(testEvents, &wg, []satel.ChangeType{}, []int{}) {
|
for e := range FilterByTypeOrIndex(testEvents, &wg, []SatelChangeType{}, []int{}) {
|
||||||
receivedEvents = append(receivedEvents, e)
|
receivedEvents = append(receivedEvents, e)
|
||||||
}
|
}
|
||||||
wg.Done()
|
wg.Done()
|
||||||
|
@ -72,7 +72,7 @@ func TestSatelIndexFiltering(t *testing.T) {
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
for e := range FilterByTypeOrIndex(testEvents, &wg, []satel.ChangeType{}, []int{1, 3}) {
|
for e := range FilterByTypeOrIndex(testEvents, &wg, []SatelChangeType{}, []int{1, 3}) {
|
||||||
receivedEvents = append(receivedEvents, e)
|
receivedEvents = append(receivedEvents, e)
|
||||||
}
|
}
|
||||||
wg.Done()
|
wg.Done()
|
||||||
|
@ -101,7 +101,7 @@ func TestSatelIndexFiltering_NoAllowedEventTypesMeansAllAreAllowed(t *testing.T)
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
for e := range FilterByTypeOrIndex(testEvents, &wg, []satel.ChangeType{}, []int{}) {
|
for e := range FilterByTypeOrIndex(testEvents, &wg, []SatelChangeType{}, []int{}) {
|
||||||
receivedEvents = append(receivedEvents, e)
|
receivedEvents = append(receivedEvents, e)
|
||||||
}
|
}
|
||||||
wg.Done()
|
wg.Done()
|
||||||
|
|
2
main.go
2
main.go
|
@ -58,7 +58,7 @@ func main() {
|
||||||
stopRequested.Store(false)
|
stopRequested.Store(false)
|
||||||
config := MakeConfig(logger)
|
config := MakeConfig(logger)
|
||||||
|
|
||||||
s := makeSatel(config.SatelAddr, config.PoolInterval)
|
s := makeSatel(config.SatelAddr, config.PoolInterval.GetDuration())
|
||||||
logger.Printf("Connected to Satel: %s", config.SatelAddr)
|
logger.Printf("Connected to Satel: %s", config.SatelAddr)
|
||||||
|
|
||||||
bot, err := tgbotapi.NewBotAPI(os.Getenv("TELEGRAM_APITOKEN"))
|
bot, err := tgbotapi.NewBotAPI(os.Getenv("TELEGRAM_APITOKEN"))
|
||||||
|
|
Loading…
Reference in New Issue