forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroupe-e.go
92 lines (74 loc) · 1.99 KB
/
groupe-e.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package tariff
import (
"fmt"
"slices"
"sync"
"time"
"github.com/cenkalti/backoff/v4"
"github.com/evcc-io/evcc/api"
"github.com/evcc-io/evcc/util"
"github.com/evcc-io/evcc/util/request"
)
type GroupeE struct {
*embed
log *util.Logger
data *util.Monitor[api.Rates]
}
var _ api.Tariff = (*GroupeE)(nil)
func init() {
registry.Add("groupe-e", NewGroupeEFromConfig)
}
func NewGroupeEFromConfig(other map[string]interface{}) (api.Tariff, error) {
t := &GroupeE{
log: util.NewLogger("groupe-e"),
data: util.NewMonitor[api.Rates](2 * time.Hour),
}
done := make(chan error)
go t.run(done)
err := <-done
return t, err
}
func (t *GroupeE) run(done chan error) {
var once sync.Once
client := request.NewHelper(t.log)
tick := time.NewTicker(time.Hour)
for ; true; <-tick.C {
var res []struct {
StartTimestamp time.Time `json:"start_timestamp"`
EndTimestamp time.Time `json:"end_timestamp"`
VarioPlus float64 `json:"vario_plus"`
}
start := time.Now().Truncate(time.Hour)
uri := fmt.Sprintf("https://api.tariffs.groupe-e.ch/v1/tariffs?start_timestamp=%s&end_timestamp=%s", start.Format(time.RFC3339), start.Add(48*time.Hour).Format(time.RFC3339))
if err := backoff.Retry(func() error {
return backoffPermanentError(client.GetJSON(uri, &res))
}, bo()); err != nil {
once.Do(func() { done <- err })
t.log.ERROR.Println(err)
continue
}
data := make(api.Rates, 0, len(res))
for _, r := range res {
ar := api.Rate{
Start: r.StartTimestamp.Local(),
End: r.EndTimestamp.Local(),
Price: r.VarioPlus / 1e2, // Rp/kWh
}
data = append(data, ar)
}
mergeRates(t.data, data)
once.Do(func() { close(done) })
}
}
// Rates implements the api.Tariff interface
func (t *GroupeE) Rates() (api.Rates, error) {
var res api.Rates
err := t.data.GetFunc(func(val api.Rates) {
res = slices.Clone(val)
})
return res, err
}
// Type implements the api.Tariff interface
func (t *GroupeE) Type() api.TariffType {
return api.TariffTypePriceForecast
}