1
0
mirror of https://github.com/Luzifer/tasmota-config.git synced 2024-09-19 00:52:56 +00:00
tasmota-config/settings.go
Knut Ahlers 4e039d96bc
Add more settings reader
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-07-15 20:41:14 +02:00

113 lines
3.5 KiB
Go

package main
import (
"encoding/json"
"fmt"
"strconv"
"strings"
"time"
"github.com/pkg/errors"
)
type settingExtractor func([]byte) (interface{}, error)
var extractors = map[string]settingExtractor{
"currentcal": func(p []byte) (interface{}, error) { return extractFloatToInt("CurrentCal", p) },
"devicename": func(p []byte) (interface{}, error) { return extractGenericJSONValue("DeviceName", p) },
"ledstate": func(p []byte) (interface{}, error) { return extractFloatToInt("LedState", p) },
"module": extractModule,
"otaurl": func(p []byte) (interface{}, error) { return extractGenericJSONValue("OtaUrl", p) },
"powercal": func(p []byte) (interface{}, error) { return extractFloatToInt("PowerCal", p) },
"poweronstate": func(p []byte) (interface{}, error) { return extractFloatToInt("PowerOnState", p) },
"pulsetime1": func(p []byte) (interface{}, error) { return extractPulseTime(1, p) },
"switchmode1": func(p []byte) (interface{}, error) { return extractFloatToInt("SwitchMode1", p) },
"switchmode2": func(p []byte) (interface{}, error) { return extractFloatToInt("SwitchMode2", p) },
"teleperiod": func(p []byte) (interface{}, error) { return extractFloatToInt("TelePeriod", p) },
"timezone": func(p []byte) (interface{}, error) { return extractGenericJSONValue("Timezone", p) },
"topic": func(p []byte) (interface{}, error) { return extractGenericJSONValue("Topic", p) },
"voltagecal": func(p []byte) (interface{}, error) { return extractFloatToInt("VoltageCal", p) },
}
func extractSettingValue(setting string, payloadChan chan []byte) (interface{}, error) {
e, ok := extractors[strings.ToLower(setting)]
if !ok {
// Default extractor: Full value
e = func(in []byte) (interface{}, error) { return string(in), nil }
}
var deadline = time.NewTimer(cfg.MQTTCommandTimeout)
for {
select {
case payload := <-payloadChan:
return e(payload)
case <-deadline.C:
return nil, errors.New("Read timed out")
}
}
}
func extractGenericJSONValue(setting string, payload []byte) (interface{}, error) {
var data = map[string]interface{}{}
if err := json.Unmarshal(payload, &data); err != nil {
return nil, errors.Wrap(err, "Unable to map payload into map[string]interface{}")
}
if _, ok := data[setting]; !ok {
return nil, errors.New("Unable to find requested value")
}
return data[setting], nil
}
func extractFloatToInt(setting string, payload []byte) (interface{}, error) {
v, err := extractGenericJSONValue(setting, payload)
if err != nil {
return nil, err
}
if _, ok := v.(float64); !ok {
return nil, errors.Errorf("Expected float value, got %T in %s", v, setting)
}
return int(v.(float64)), nil
}
func extractModule(payload []byte) (interface{}, error) {
var v = &struct {
Module map[string]string `json:"Module"`
}{}
if err := json.Unmarshal(payload, v); err != nil {
return nil, err
}
var values []string
for k := range v.Module {
values = append(values, k)
}
if len(values) != 1 {
return nil, errors.New("Unexpected number of module definitions found")
}
return strconv.Atoi(values[0])
}
func extractPulseTime(slot int, payload []byte) (interface{}, error) {
// {"PulseTime1":{"Set":15,"Remaining":0}}
var data = map[string]struct{ Remaining, Set int }{}
if err := json.Unmarshal(payload, &data); err != nil {
return nil, errors.Wrap(err, "Unable to unmarshal response")
}
pt, ok := data[fmt.Sprintf("PulseTime%d", slot)]
if !ok {
return nil, errors.Errorf("Found no response to PulseTime%d", slot)
}
return pt.Set, nil
}