forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
polestar.go
67 lines (54 loc) · 1.45 KB
/
polestar.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
package vehicle
import (
"context"
"fmt"
"time"
"github.com/evcc-io/evcc/api"
"github.com/evcc-io/evcc/util"
"github.com/evcc-io/evcc/util/request"
"github.com/evcc-io/evcc/vehicle/polestar"
)
// Polestar is an api.Vehicle implementation for Polestar cars
type Polestar struct {
*embed
*polestar.Provider
}
func init() {
registry.Add("polestar", NewPolestarFromConfig)
}
// NewPolestarFromConfig creates a new vehicle
func NewPolestarFromConfig(other map[string]interface{}) (api.Vehicle, error) {
cc := struct {
embed `mapstructure:",squash"`
User, Password string
VIN string
Cache time.Duration
Timeout time.Duration
}{
Cache: interval,
Timeout: request.Timeout,
}
if err := util.DecodeOther(other, &cc); err != nil {
return nil, err
}
log := util.NewLogger("polestar").Redact(cc.User, cc.Password, cc.VIN)
v := &Polestar{
embed: &cc.embed,
}
identity, err := polestar.NewIdentity(log, cc.User, cc.Password)
if err != nil {
return v, fmt.Errorf("login failed: %w", err)
}
api := polestar.NewAPI(log, identity)
vehicle, err := ensureVehicleEx(cc.VIN, func() ([]polestar.ConsumerCar, error) {
ctx, cancel := context.WithTimeout(context.Background(), cc.Timeout)
defer cancel()
return api.Vehicles(ctx)
}, func(v polestar.ConsumerCar) string {
return v.VIN
})
if err == nil {
v.Provider = polestar.NewProvider(log, api, vehicle.VIN, cc.Timeout, cc.Cache)
}
return v, err
}