-
Notifications
You must be signed in to change notification settings - Fork 0
/
vehicle.go
353 lines (323 loc) · 9.28 KB
/
vehicle.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
package goblue
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"time"
)
type HttpClient interface {
Do(req *http.Request) (*http.Response, error)
}
type VehicleStatus struct {
updatedAt time.Time
doorIsLocked bool
isCharging bool
batterySoc int
rangeLeft int
targetSocAC int
targetSocDC int
plugState int // TODO: 0 == unplugged
}
func (v *VehicleStatus) UpdatedAt() time.Time {
return v.updatedAt
}
func (v *VehicleStatus) DoorIsLocked() bool {
return v.doorIsLocked
}
func (v *VehicleStatus) IsCharging() bool {
return v.isCharging
}
func (v *VehicleStatus) SoC() int {
return v.batterySoc
}
func (v *VehicleStatus) RangeLeft() int {
return v.rangeLeft
}
func (v *VehicleStatus) MaxRange() int {
if v.batterySoc == 0 {
return 0
}
return v.rangeLeft / v.batterySoc * 100
}
func (v *VehicleStatus) TargetSocDC() int {
return v.targetSocDC
}
func (v *VehicleStatus) TargetSocAC() int {
return v.targetSocAC
}
type StartOptions struct{} // ClimateOptions || StartOptions
type VehicleOption func(*Vehicle)
func WithVehicleClient(h HttpClient) VehicleOption {
return func(v *Vehicle) {
v.http = h
}
}
func WithVehicleAuth(a auth) VehicleOption {
return func(v *Vehicle) {
v.auth = a
}
}
func WithVehicleEndpoints(e endpoints) VehicleOption {
return func(v *Vehicle) {
v.endpoints = e
}
}
func NewVehicle(
id, vin, name, vtype string,
b Brand,
opts ...VehicleOption,
) *Vehicle {
v := &Vehicle{id: id, vin: vin, name: name, vtype: vtype, brand: b}
for _, o := range opts {
o(v)
}
return v
}
type Vehicle struct {
id string
vin string
name string
vtype string
brand Brand
http HttpClient
auth auth
endpoints endpoints
}
func (v *Vehicle) VIN() string { return v.vin }
func (v *Vehicle) ID() string { return v.id }
func (v *Vehicle) Name() string { return v.name }
func (v *Vehicle) Type() string { return v.vtype }
func (v *Vehicle) Brand() Brand { return v.brand }
func (v *Vehicle) Unlock() error { return ErrNotImplemented }
func (v *Vehicle) Lock() error { return ErrNotImplemented }
func (v *Vehicle) Start(...StartOptions) error { return ErrNotImplemented }
func (v *Vehicle) Stop() error { return ErrNotImplemented }
func (v *Vehicle) Location() (string, error) { return "", ErrNotImplemented }
func (v *Vehicle) Odometer() (string, error) { return "", ErrNotImplemented }
func (v *Vehicle) Status() (*VehicleStatus, error) {
if v.auth.AccessToken == "" {
return nil, ErrNotAuthenticated
}
stamp, err := GetStampFromList(v.brand)
if err != nil {
return nil, err
}
headers := map[string]string{
"Authorization": v.auth.AccessToken,
"ccsp-device-id": v.auth.CCSPDeviceID,
"ccsp-application-id": v.auth.CCSPApplicationID,
"offset": "1",
"User-Agent": v.auth.UserAgent,
"Stamp": stamp,
}
uri := fmt.Sprintf(v.auth.URI+v.endpoints.Status, v.id)
req, err := newHttpRequest(http.MethodGet, uri, nil, headers)
if err != nil {
return nil, err
}
resp, err := v.http.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusUnauthorized ||
resp.StatusCode == http.StatusForbidden {
return nil, ErrNotAuthenticated
}
msg := vehicleStatusResponse{}
var buf bytes.Buffer
buf.ReadFrom(resp.Body)
if err := json.Unmarshal(buf.Bytes(), &msg); err != nil {
return nil, err
}
if msg.Retcode != apiCodeOk {
return nil, ErrNotAuthenticated
}
var rangebyfuel int
if len(msg.Resmsg.Evstatus.Drvdistance) > 0 {
rangebyfuel = msg.Resmsg.Evstatus.Drvdistance[0].Rangebyfuel.Evmoderange.Value
}
var acTarget, dcTarget int
for _, t := range msg.Resmsg.Evstatus.Reservchargeinfos.Targetsoclist {
switch t.Plugtype {
case PlugTypeAC:
acTarget = t.Targetsoclevel
case PlugTypeDC:
dcTarget = t.Targetsoclevel
}
}
return &VehicleStatus{
updatedAt: time.Now(), // TODO: grep from response
doorIsLocked: msg.Resmsg.Doorlock,
isCharging: msg.Resmsg.Evstatus.Batterycharge,
batterySoc: msg.Resmsg.Evstatus.Batterystatus,
plugState: msg.Resmsg.Evstatus.Batteryplugin,
rangeLeft: rangebyfuel,
targetSocAC: acTarget,
targetSocDC: dcTarget,
}, nil
}
type PlugType int
const (
PlugTypeAC PlugType = iota
PlugTypeDC
)
// thx to https://mholt.github.io/json-to-go/ :)
type vehicleStatusResponse struct {
Retcode string `json:"retCode"`
Rescode string `json:"resCode"`
Resmsg struct {
Airctrlon bool `json:"airCtrlOn"`
Engine bool `json:"engine"`
Doorlock bool `json:"doorLock"`
Dooropen struct {
Frontleft int `json:"frontLeft"`
Frontright int `json:"frontRight"`
Backleft int `json:"backLeft"`
Backright int `json:"backRight"`
} `json:"doorOpen"`
Trunkopen bool `json:"trunkOpen"`
Airtemp struct {
Value string `json:"value"`
Unit int `json:"unit"`
Hvactemptype int `json:"hvacTempType"`
} `json:"airTemp"`
Defrost bool `json:"defrost"`
Acc bool `json:"acc"`
Evstatus struct {
Batterycharge bool `json:"batteryCharge"`
Batterystatus int `json:"batteryStatus"`
Batteryplugin int `json:"batteryPlugin"`
Remaintime2 struct {
Etc1 struct {
Value int `json:"value"`
Unit int `json:"unit"`
} `json:"etc1"`
Etc2 struct {
Value int `json:"value"`
Unit int `json:"unit"`
} `json:"etc2"`
Etc3 struct {
Value int `json:"value"`
Unit int `json:"unit"`
} `json:"etc3"`
Atc struct {
Value int `json:"value"`
Unit int `json:"unit"`
} `json:"atc"`
} `json:"remainTime2"`
Drvdistance []struct {
Rangebyfuel struct {
Evmoderange struct {
Value int `json:"value"`
Unit int `json:"unit"`
} `json:"evModeRange"`
Totalavailablerange struct {
Value int `json:"value"`
Unit int `json:"unit"`
} `json:"totalAvailableRange"`
} `json:"rangeByFuel"`
Type int `json:"type"`
} `json:"drvDistance"`
Reservchargeinfos struct {
Reservchargeinfo struct {
Reservchargeinfodetail struct {
Reservinfo struct {
Day []int `json:"day"`
Time struct {
Time string `json:"time"`
Timesection int `json:"timeSection"`
} `json:"time"`
} `json:"reservInfo"`
Reservchargeset bool `json:"reservChargeSet"`
Reservfatcset struct {
Defrost bool `json:"defrost"`
Airtemp struct {
Value string `json:"value"`
Unit int `json:"unit"`
Hvactemptype int `json:"hvacTempType"`
} `json:"airTemp"`
Airctrl int `json:"airCtrl"`
Heating1 int `json:"heating1"`
} `json:"reservFatcSet"`
} `json:"reservChargeInfoDetail"`
} `json:"reservChargeInfo"`
Offpeakpowerinfo struct {
Offpeakpowertime1 struct {
Starttime struct {
Time string `json:"time"`
Timesection int `json:"timeSection"`
} `json:"starttime"`
Endtime struct {
Time string `json:"time"`
Timesection int `json:"timeSection"`
} `json:"endtime"`
} `json:"offPeakPowerTime1"`
Offpeakpowerflag int `json:"offPeakPowerFlag"`
} `json:"offpeakPowerInfo"`
Reservechargeinfo2 struct {
Reservchargeinfodetail struct {
Reservinfo struct {
Day []int `json:"day"`
Time struct {
Time string `json:"time"`
Timesection int `json:"timeSection"`
} `json:"time"`
} `json:"reservInfo"`
Reservchargeset bool `json:"reservChargeSet"`
Reservfatcset struct {
Defrost bool `json:"defrost"`
Airtemp struct {
Value string `json:"value"`
Unit int `json:"unit"`
Hvactemptype int `json:"hvacTempType"`
} `json:"airTemp"`
Airctrl int `json:"airCtrl"`
Heating1 int `json:"heating1"`
} `json:"reservFatcSet"`
} `json:"reservChargeInfoDetail"`
} `json:"reserveChargeInfo2"`
Reservflag int `json:"reservFlag"`
Ect struct {
Start struct {
Day int `json:"day"`
Time struct {
Time string `json:"time"`
Timesection int `json:"timeSection"`
} `json:"time"`
} `json:"start"`
End struct {
Day int `json:"day"`
Time struct {
Time string `json:"time"`
Timesection int `json:"timeSection"`
} `json:"time"`
} `json:"end"`
} `json:"ect"`
Targetsoclist []struct {
Targetsoclevel int `json:"targetSOClevel"`
Plugtype PlugType `json:"plugType"`
} `json:"targetSOClist"`
} `json:"reservChargeInfos"`
} `json:"evStatus"`
Ign3 bool `json:"ign3"`
Hoodopen bool `json:"hoodOpen"`
Transcond bool `json:"transCond"`
Steerwheelheat int `json:"steerWheelHeat"`
Sidebackwindowheat int `json:"sideBackWindowHeat"`
Tirepressurelamp struct {
Tirepressurelampall int `json:"tirePressureLampAll"`
Tirepressurelampfl int `json:"tirePressureLampFL"`
Tirepressurelampfr int `json:"tirePressureLampFR"`
Tirepressurelamprl int `json:"tirePressureLampRL"`
Tirepressurelamprr int `json:"tirePressureLampRR"`
} `json:"tirePressureLamp"`
Battery struct {
Batsoc int `json:"batSoc"`
Batstate int `json:"batState"`
} `json:"battery"`
Time string `json:"time"`
} `json:"resMsg"`
Msgid string `json:"msgId"`
}