-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.js
More file actions
2151 lines (2035 loc) · 86.9 KB
/
main.js
File metadata and controls
2151 lines (2035 loc) · 86.9 KB
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
/*
* Created with @iobroker/create-adapter v2.3.0
*/
// The adapter-core module gives you access to the core ioBroker functions
// you need to create an adapter
const utils = require('@iobroker/adapter-core');
const crypto = require('node:crypto');
const axios = require('axios');
const OA_BaseURI = 'https://openapi.alphaess.com/api';
const ReadAfterWriteTimeoutIntervalInS = 6;
const REQUEST_TIMEOUT = 20000;
const WATCHDOG_TIMER = 60000;
/**
* Functions and definitions using the Alpha-ESS official "open" API.
*/
class OpenAPI {
/**
* @param adapter Adapter object
*/
constructor(adapter) {
this.stateInfoList = [
{
Group: 'Realtime',
fnct: this.getLastPowerData.bind(this),
enabledName: 'oAEnableRealtime',
intervalName: 'oAIntervalRealtime',
intervalFactor: 1,
states: [
{
alphaAttrName: 'ppv',
role: 'value.power',
id: 'PV_power_total',
name: 'PV power total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'ppv1',
role: 'value.power',
id: 'PV_power_string_1',
name: 'PV power string 1',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ppv2',
role: 'value.power',
id: 'PV_power_string_2',
name: 'PV power string 2',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ppv3',
role: 'value.power',
id: 'PV_power_string_3',
name: 'PV power string 3',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ppv4',
role: 'value.power',
id: 'PV_power_string_4',
name: 'PV power string 4',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'pmeterDc',
role: 'value.power',
id: 'PV_power_meter',
name: 'PV power meter',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'pload',
role: 'value.power',
id: 'Load_total',
name: 'Load total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'soc',
role: 'value.battery',
id: 'Battery_SOC',
name: 'State of charge',
type: 'number',
unit: '%',
},
{
alphaAttrName: 'pmeterL1',
role: 'value.power',
id: 'Grid_power_L1',
name: 'Grid power L1',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'pmeterL2',
role: 'value.power',
id: 'Grid_power_L2',
name: 'Grid power L2',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'pmeterL3',
role: 'value.power',
id: 'Grid_power_L3',
name: 'Grid power L3',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'pgrid',
role: 'value.power',
id: 'Grid_power_total',
name: 'Grid power total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'pbat',
role: 'value.power',
id: 'Battery_power',
name: 'Battery power',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'pev',
role: 'value.power',
id: 'Charging_pile_power_total',
name: 'Charging pile (Wallbox) power total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'prealL1',
role: 'value.power',
id: 'Inverter_power_L1',
name: 'Inverter power L1',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'prealL2',
role: 'value.power',
id: 'Inverter_power_L2',
name: 'Inverter power L2',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'prealL3',
role: 'value.power',
id: 'Inverter_power_L3',
name: 'Inverter power L3',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ev1Power',
role: 'value.power',
id: 'Charging_pile_power_1',
name: 'Charging pile (Wallbox) power 1',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ev2Power',
role: 'value.power',
id: 'Charging_pile_power_2',
name: 'Charging pile (Wallbox) power 2',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ev3Power',
role: 'value.power',
id: 'Charging_pile_power_3',
name: 'Charging pile (Wallbox) power 3',
type: 'number',
unit: 'W',
dayIndex: false,
},
{
alphaAttrName: 'ev4Power',
role: 'value.power',
id: 'Charging_pile_power_4',
name: 'Charging pile (Wallbox) power 4',
type: 'number',
unit: 'W',
dayIndex: false,
},
],
},
{
Group: 'Recent',
fnct: this.getLatestTodayPowerBySn.bind(this),
enabledName: 'oAEnableRecent',
intervalFactor: 1, // For scheduled group not used
isSchedule: true,
states: [
{
alphaAttrName: 'ppv',
role: 'value.power',
id: 'PV_power_total',
name: 'PV power total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'load',
role: 'value.power',
id: 'Load_total',
name: 'Load total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'cbat',
role: 'value.battery',
id: 'Battery_SOC',
name: 'State of charge',
type: 'number',
unit: '%',
},
{
alphaAttrName: 'gridCharge',
role: 'value.power',
id: 'Grid_power_total_charge',
name: 'Grid power total charge',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'feedIn',
role: 'value.power',
id: 'Grid_power_total_feedin',
name: 'Grid power total feedin',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'pchargingPile',
role: 'value.power',
id: 'Charging_pile_power_total',
name: 'Charging pile (Wallbox) power total',
type: 'number',
unit: 'W',
},
{
alphaAttrName: 'sysSn',
role: 'text',
id: 'System_SN',
name: 'System S/N',
type: 'string',
unit: null,
},
{
alphaAttrName: 'uploadTime',
role: 'text',
id: 'Upload_time',
name: 'Upload time to Alpha ESS Cloud',
type: 'string',
unit: null,
},
],
},
{
Group: 'System',
fnct: this.getEssList.bind(this),
enabledName: 'oAEnableEssList',
intervalName: 'oAIntervalEssList',
intervalFactor: 1,
states: [
{
alphaAttrName: 'cobat',
role: 'value.energy',
id: 'Battery_capacity',
name: 'Battery capacity',
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'emsStatus',
role: 'text',
id: 'EMS_status',
name: 'EMS status',
type: 'string',
unit: null,
},
{
alphaAttrName: 'mbat',
role: 'text',
id: 'Battery_model',
name: 'Battery model',
type: 'string',
unit: null,
},
{
alphaAttrName: 'minv',
role: 'text',
id: 'Inverter_model',
name: 'Inverter model',
type: 'string',
unit: null,
},
{
alphaAttrName: 'poinv',
role: 'value.power',
id: 'Inverter_nominal_power',
name: 'Inverter nominal Power',
type: 'number',
unit: 'kW',
},
{
alphaAttrName: 'popv',
role: 'value.power',
id: 'PV_nominal_power',
name: 'PV nominal Power',
type: 'number',
unit: 'kW',
},
{
alphaAttrName: 'surplusCobat',
role: 'value.energy',
id: 'Battery_capacity_remaining',
name: 'Battery capacity remaining',
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'usCapacity',
role: 'value',
id: 'Battery_available_percentage',
name: 'Battery Available Percentage',
type: 'number',
unit: '%',
},
{
alphaAttrName: 'sysSn',
role: 'text',
id: 'System_SN',
name: 'System S/N',
type: 'string',
unit: null,
},
],
},
{
Group: 'Energy',
fnct: this.getOneDateEnergyBySn.bind(this),
enabledName: 'oAEnableEnergy',
intervalName: 'oAIntervalEnergyMins',
intervalFactor: 60,
states: [
{
alphaAttrName: 'eCharge',
role: 'value.power.consumption',
id: 'Battery_charge_today',
name: "Today's battery charge",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'eDischarge',
role: 'value.power.consumption',
id: 'Battery_discharge_today',
name: "Today's battery discharge",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'eChargingPile',
role: 'value.power.consumption',
id: 'Charging_pile',
name: 'Charging pile (Wallbox)',
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'eGridCharge',
role: 'value.power.consumption',
id: 'Grid_charge',
name: 'Grid charge',
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'eInput',
role: 'value.power.consumption',
id: 'Grid_consumption_today',
name: "Today's grid consumption",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'eOutput',
role: 'value.power.consumption',
id: 'Grid_feed_in_today',
name: "Today's grid feed in",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'epv',
role: 'value.power.consumption',
id: 'Generation_today',
name: "Today's generation",
type: 'number',
unit: 'kWh',
},
],
},
{
Group: 'Settings_Charge',
fnct: this.getChargeConfigInfo.bind(this),
writeFnct: this.writeConfigInfo.bind(this),
writeTimeoutIntervalInS: 5,
requestName: 'updateChargeConfigInfo',
enabledName: 'oAEnableSettingsCharge',
intervalName: 'oAIntervalSettingsChargeMins',
intervalFactor: 60,
states: [
{
alphaAttrName: 'gridCharge',
role: 'switch.enable',
id: 'Battery_Charging_enabled',
name: 'Battery Charging enabled',
type: 'boolean',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeChaf1',
role: 'value',
id: 'Charging_period_1_start',
name: 'Charging period 1 start',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeChae1',
role: 'value',
id: 'Charging_period_1_end',
name: 'Charging period 1 end',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeChaf2',
role: 'value',
id: 'Charging_period_2_start',
name: 'Charging period 2 start',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeChae2',
role: 'value',
id: 'Charging_period_2_end',
name: 'Charging period 2 end',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'batHighCap',
role: 'value',
id: 'Charging_stopps_at_SOC',
name: 'Charging stopps at SOC',
type: 'number',
unit: '%',
writeable: true,
},
],
},
{
Group: 'Settings_Discharge',
fnct: this.getDisChargeConfigInfo.bind(this),
writeFnct: this.writeConfigInfo.bind(this),
writeTimeoutIntervalInS: 5,
requestName: 'updateDisChargeConfigInfo',
enabledName: 'oAEnableSettingsDischarge',
intervalName: 'oAIntervalSettingsDischargeMins',
intervalFactor: 60,
states: [
{
alphaAttrName: 'ctrDis',
role: 'switch.enable',
id: 'Battery_Discharging_enabled',
name: 'Battery Discharging enabled',
type: 'boolean',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeDisf1',
role: 'value',
id: 'Discharging_period_1_start',
name: 'Discharging period 1 start',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeDise1',
role: 'value',
id: 'Discharging_period_1_end',
name: 'Discharging period 1 end',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeDisf2',
role: 'value',
id: 'Discharging_period_2_start',
name: 'Discharging period 2 start',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'timeDise2',
role: 'value',
id: 'Discharging_period_2_end',
name: 'Discharging period 2 end',
type: 'string',
unit: '',
writeable: true,
},
{
alphaAttrName: 'batUseCap',
role: 'value',
id: 'Discharging_Cutoff_SOC',
name: 'Discharging Cutoff SOC',
type: 'number',
unit: '%',
writeable: true,
},
],
},
{
Group: 'Summary',
fnct: this.getSumDataForCustomer.bind(this),
enabledName: 'oAEnableSummary',
intervalName: 'oAIntervalSummaryMins',
intervalFactor: 60,
states: [
{
alphaAttrName: 'epvtoday',
role: 'value.power.consumption',
id: 'Generation_today',
name: "Today's Generation",
type: 'number',
unit: 'kWh',
round: 3,
},
{
alphaAttrName: 'epvtotal',
role: 'value.power.consumption',
id: 'Generation_total',
name: 'Total Generation',
type: 'number',
unit: 'kWh',
round: 3,
},
{
alphaAttrName: 'todayIncome',
role: 'value',
id: 'Income_today',
name: "Today's Income",
type: 'number',
unit: '{moneyType}',
round: 2,
},
{
alphaAttrName: 'totalIncome',
role: 'value',
id: 'Income_total',
name: 'Total Profit',
type: 'number',
unit: '{moneyType}',
round: 2,
},
{
alphaAttrName: 'eselfConsumption',
role: 'value',
id: 'Self_consumption_total',
name: 'Total Self Consumption',
type: 'number',
unit: '%',
factor: 100,
round: 1,
},
{
alphaAttrName: 'eselfSufficiency',
role: 'value',
id: 'Self_sufficiency_total',
name: 'Total Self Sufficiency',
type: 'number',
unit: '%',
factor: 100,
round: 1,
},
{
alphaAttrName: 'treeNum',
role: 'value',
id: 'Trees_plantet_total',
name: 'Total Trees planted',
type: 'number',
unit: '🌳',
round: 1,
},
{
alphaAttrName: 'carbonNum',
role: 'value',
id: 'CO2_reduction_total',
name: 'Total CO₂ reduction',
type: 'number',
unit: 'kg',
round: 1,
},
{
alphaAttrName: 'moneyType',
role: 'value',
id: 'Currency',
name: 'Currency',
type: 'string',
unit: '',
},
{
alphaAttrName: 'eload',
role: 'value.power.consumption',
id: 'Consumption_today',
name: "Today's consumption",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'eoutput',
role: 'value.power.consumption',
id: 'Grid_feed_in_today',
name: "Today's grid feed in",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'einput',
role: 'value.power.consumption',
id: 'Grid_consumption_today',
name: "Today's grid consumption",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'echarge',
role: 'value.power.consumption',
id: 'Battery_charge_today',
name: "Today's battery charge",
type: 'number',
unit: 'kWh',
},
{
alphaAttrName: 'edischarge',
role: 'value.power.consumption',
id: 'Battery_discharge_today',
name: "Today's battery discharge",
type: 'number',
unit: 'kWh',
},
],
},
{
Group: 'Wallbox',
fnct: this.getWallboxData.bind(this),
writeFnct: this.writeWallboxChargerControl.bind(this),
writeTimeoutIntervalInS: 0,
requestName: 'remoteControlEvCharger',
enabledName: 'oAEnableWallbox',
intervalName: 'oAIntervalWallboxMins',
intervalFactor: 60,
states: [
{
alphaAttrName: 'evchargerSn',
role: 'value',
id: 'SN',
name: 'Wallbox serial number',
type: 'string',
unit: '',
isStatic: true,
},
{
alphaAttrName: 'evchargerModel',
role: 'value',
id: 'Model',
name: 'Wallbox model',
type: 'string',
unit: '',
isStatic: true,
},
{
alphaAttrName: 'remoteControlEvChargerStart',
role: 'button.start',
id: 'Charging_Start',
name: 'Charging Start',
type: 'boolean',
unit: '',
isStatic: true,
writeable: true,
readable: false,
},
{
alphaAttrName: 'remoteControlEvChargerStop',
role: 'button.stop',
id: 'Charging_Stop',
name: 'Charging Stop',
type: 'boolean',
unit: '',
isStatic: true,
writeable: true,
readable: false,
},
{
alphaAttrName: 'evchargerStatus',
role: 'value',
id: 'Status',
name: 'Wallbox status',
type: 'number',
unit: '',
states: {
0: '0 - Unknown',
1: '1 - Available state (not plugged in)',
2: '2 - Preparing state of insertion (plugged in and not activated)',
3: '3 - Charging state (charging with power output)',
4: '4 - SuspendedEVSE pile Suspended at the terminal (already started but no available power)',
5: '5 - SuspendedEV Suspended at the vehicle end (with available power, waiting for the car to respond)',
6: '6 - Finishing The charging end state (actively swiping the card to stop or EMS stop control)',
7: '7 - Unknown',
8: '8 - Unknown',
9: '9 - Faulted fault state (pile failure)',
},
},
],
},
{
Group: 'Wallbox_Current',
fnct: this.getWallboxCurrentData.bind(this),
writeFnct: this.writeConfigInfo.bind(this),
writeTimeoutIntervalInS: 0,
requestName: 'setEvChargerCurrentsBySn',
enabledName: 'oAEnableWallboxCurrent',
intervalName: 'oAIntervalWallboxCurrent',
intervalFactor: 1,
states: [
{
alphaAttrName: 'currentsetting',
role: 'level.current',
id: 'Current',
name: 'Wallbox household current setting',
type: 'number',
unit: 'A',
writeable: true,
},
],
},
];
this.adapter = adapter;
this.emptyBody = { data: null };
}
/**
* @param timestamp Timestamp for signature calculation
*/
getSignature(timestamp) {
return crypto
.createHash('sha512')
.update(this.adapter.config.appID + this.adapter.config.appSecret + timestamp)
.digest('hex');
}
/**
* @param headers Initial header attributes
*/
async addAuthHeaders(headers) {
const timestamp = Math.floor(Date.now() / 1000);
const sign = this.getSignature(timestamp);
headers['appId'] = this.adapter.config.appID;
headers['timestamp'] = `${timestamp}`;
headers['sign'] = sign;
return headers;
}
/**
* @param path Path for request
* @param headers Headers for request
*/
async getRequest(path, headers) {
try {
const url = `${OA_BaseURI}/${path}`;
headers = await this.addAuthHeaders(headers);
const res = await axios.get(url, {
timeout: REQUEST_TIMEOUT,
headers: headers,
});
return res;
} catch (e) {
this.adapter.log.debug(`Error performing get request ${path}: ${e}`);
return this.emptyBody;
}
}
/**
* @param path Path for request
* @param sndBody Body for request
* @param headers Headers for request
*/
async postRequest(path, sndBody, headers) {
try {
const url = `${OA_BaseURI}/${path}`;
headers = await this.addAuthHeaders(headers);
const res = await axios.post(url, sndBody, {
timeout: REQUEST_TIMEOUT,
headers: headers,
});
return res;
} catch (e) {
this.adapter.log.error(`Error performing post request ${path}: ${e}`);
return this.emptyBody;
}
}
/**
* @param group Group name
*/
async getLastPowerData(group) {
try {
await this.adapter.stopGroupTimeout(group);
this.adapter.log.debug(`Fetching ${group} data...`);
const res = await this.getRequest(`getLastPowerData?sysSn=${this.adapter.config.systemId}`, {});
if (res && res['status'] == 200 && res.data && res.data.data) {
await this.adapter.createAndUpdateStates(group, res.data.data);
} else {
await this.handleError(res, group);
}
} catch (e) {
this.adapter.log.error(`Fetching data for group ${group}: Exception occurred: ${e}`);
await this.handleError(this.emptyBody, group);
}
await this.startGroupTimeout(group);
}
/**
* @param group Group name
*/
async getLatestTodayPowerBySn(group) {
try {
await this.adapter.stopGroupTimeout(group);
this.adapter.log.debug(`Fetching ${group} data...`);
const dt = new Date();
const dts = `${dt.getFullYear()}-${`0${dt.getMonth() + 1}`.slice(-2)}-${`0${dt.getDate()}`.slice(-2)}`;
const res = await this.getRequest(
`getOneDayPowerBySn?sysSn=${this.adapter.config.systemId}&queryDate=${dts}`,
{},
);
if (res && res['status'] == 200 && res.data && res.data.data) {
const latestEntry = res.data.data.reduce((latest, current) => {
return new Date(current.uploadTime) > new Date(latest.uploadTime) ? current : latest;
});
if (latestEntry.uploadTime != null) {
const deliveredTs = new Date(latestEntry.uploadTime.replace(' ', 'T')).getTime();
if (Date.now() - deliveredTs < 600000) {
// ensure that the data is not older than 10 minutes
await this.adapter.createAndUpdateStates(group, latestEntry);
} else {
this.adapter.log.error(
`Time received for data of group ${group} is too old or invalid (${latestEntry.uploadTime})! States not updated!`,
);
}
} else {
this.adapter.log.error(`No time received for data of group ${group}! States not updated!`);
}
} else {
await this.handleError(res, group);
}
} catch (e) {
this.adapter.log.error(`Fetching data for group ${group}: Exception occurred: ${e}`);
await this.handleError(this.emptyBody, group);
}
await this.startGroupTimeout(group);
}
async getEssList(group) {
try {
await this.adapter.stopGroupTimeout(group);
this.adapter.log.debug(`Fetching ${group} data...`);
const res = await this.getRequest('getEssList', {});
if (res && res['status'] == 200 && res.data && res.data.data) {
await this.adapter.createAndUpdateStates(group, res.data.data);
} else {
await this.handleError(res, group);
}
} catch (e) {
this.adapter.log.error(`Fetching data for group ${group}: Exception occurred: ${e}`);
await this.handleError(this.emptyBody, group);
}
await this.startGroupTimeout(group);
}
/**
* @param group Group name
*/
async getOneDateEnergyBySn(group) {
try {
await this.adapter.stopGroupTimeout(group);
this.adapter.log.debug(`Fetching ${group} data...`);
const dt = new Date();
const dts = `${dt.getFullYear()}-${`0${dt.getMonth() + 1}`.slice(-2)}-${`0${dt.getDate()}`.slice(-2)}`;
const res = await this.getRequest(
`getOneDateEnergyBySn?sysSn=${this.adapter.config.systemId}&queryDate=${dts}`,
{},
);
if (res && res['status'] == 200 && res.data && res.data.data) {
await this.adapter.createAndUpdateStates(group, res.data.data);
} else {
await this.handleError(res, group);
}
} catch (e) {
this.adapter.log.error(`Fetching data for group ${group}: Exception occurred: ${e}`);
await this.handleError(this.emptyBody, group);
}
await this.startGroupTimeout(group);
}
/**
* @param group Group name
*/
async getChargeConfigInfo(group) {
try {
await this.adapter.stopGroupTimeout(group);
this.adapter.log.debug(`Fetching ${group} data...`);
const res = await this.getRequest(`getChargeConfigInfo?sysSn=${this.adapter.config.systemId}`, {});
if (res && res['status'] == 200 && res.data && res.data.data) {
await this.adapter.createAndUpdateStates(group, res.data.data);
} else {
await this.handleError(res, group);
}
} catch (e) {
this.adapter.log.error(`Fetching data for group ${group}: Exception occurred: ${e}`);
await this.handleError(this.emptyBody, group);
}
await this.startGroupTimeout(group);
}
/**
* @param group Group name to fetch data for
*/
async getDisChargeConfigInfo(group) {
try {