-
Notifications
You must be signed in to change notification settings - Fork 15
/
client.py
948 lines (790 loc) · 36.1 KB
/
client.py
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
"""Client library to the fusion solar API"""
import logging
import time
from datetime import datetime
from functools import wraps
import json
from typing import Any, Optional
import requests
from .exceptions import AuthenticationException, CaptchaRequiredException, FusionSolarException
from .constants import MODULE_SIGNALS
from .encryption import encrypt_password, get_secure_random
# global logger object
_LOGGER = logging.getLogger(__name__)
class PowerStatus:
"""Class representing the basic power status"""
def __init__(
self,
current_power_kw: float,
energy_today_kwh: float = None,
energy_kwh: float = None,
**kwargs
):
"""Create a new PowerStatus object
:param current_power_kw: The currently produced power in kW
:type current_power_kw: float
:param energy_today_kwh: The total power produced that day in kWh
:type energy_today_kwh: float
:param energy_kwh: The total power ever produced
:type energy_kwh: float
:param kwargs: Deprecated parameters
"""
self.current_power_kw = current_power_kw
self.energy_today_kwh = energy_today_kwh
self.energy_kwh = energy_kwh
if 'total_power_today_kwh' in kwargs.keys() and not energy_today_kwh:
_LOGGER.warning(
"The parameter 'total_power_today_kwh' is deprecated. Please use "
"'energy_today_kwh' instead.", DeprecationWarning
)
self.energy_today_kwh = kwargs['total_power_today_kwh']
if 'total_power_kwh' in kwargs.keys() and not energy_kwh:
_LOGGER.warning(
"The parameter 'total_power_kwh' is deprecated. Please use "
"'energy_kwh' instead.", DeprecationWarning
)
self.energy_kwh = kwargs['total_power_kwh']
@property
def total_power_today_kwh(self):
"""The total power produced that day in kWh"""
_LOGGER.warning(
"The parameter 'total_power_today_kwh' is deprecated. Please use "
"'energy_today_kwh' instead.")
return self.energy_today_kwh
@property
def total_power_kwh(self):
"""The total power ever produced"""
_LOGGER.warning(
"The parameter 'total_power_kwh' is deprecated. Please use "
"'energy_kwh' instead.")
return self.energy_kwh
def __repr__(self):
return (f"PowerStatus(current_power_kw={self.current_power_kw}, "
f"energy_today_kwh={self.energy_today_kwh}, "
f"energy_kwh={self.energy_kwh})")
class BatteryStatus:
"""Class representing the basic battery status"""
def __init__(
self,
state_of_charge: float,
rated_capacity: float,
operating_status: str,
backup_time: str,
bus_voltage: float,
total_charged_today_kwh: float,
total_discharged_today_kwh: float,
current_charge_discharge_kw: float,
):
"""Create a new BatteryStatus object
:param state_of_charge: The current state of charge in %
:type state_of_charge: float
:param rated_capacity: The rated capacity in kWh
:type rated_capacity: float
:param operating_status: The operating status
:type operating_status: str
:param backup_time: The backup time
:type backup_time: str
:param bus_voltage: The bus voltage in V
:type bus_voltage: float
:param total_charged_today_kwh: The total energy charged today in kWh
:type total_charged_today_kwh: float
:param total_discharged_today_kwh: The total energy discharged today in kWh
:type total_discharged_today_kwh: float
:param current_charge_discharge_kw: The current charge/discharge power in kW
:type current_charge_discharge_kw: float
"""
self.state_of_charge = state_of_charge
self.rated_capacity = rated_capacity
self.operating_status = operating_status
self.backup_time = backup_time
self.bus_voltage = bus_voltage
self.total_charged_today_kwh = total_charged_today_kwh
self.total_discharged_today_kwh = total_discharged_today_kwh
self.current_charge_discharge_kw = current_charge_discharge_kw
def __repr__(self):
return (
f"BatteryStatus("
f"state_of_charge={self.state_of_charge}, "
f"rated_capacity={self.rated_capacity}, "
f"operating_status={self.operating_status}, "
f"backup_time={self.backup_time}, "
f"bus_voltage={self.bus_voltage}, "
f"total_charged_today_kwh={self.total_charged_today_kwh}, "
f"total_discharged_today_kwh={self.total_discharged_today_kwh}, "
f"current_charge_discharge_kw={self.current_charge_discharge_kw}, "
)
def logged_in(func):
"""
Decorator to make sure user is logged in.
"""
@wraps(func)
def wrapper(self, *args, **kwargs):
# use the is-session-alive feature to check whether the session is active
if not self.is_session_active():
_LOGGER.debug("No active session. Resetting session and logging in...")
# reset the session
self._session = requests.Session()
self._configure_session()
try:
result = func(self, *args, **kwargs)
except (json.JSONDecodeError):
# this may indicate that the login failed
_LOGGER.error("Login apparently failed. Received invalid response.")
raise FusionSolarException("Failed to reset session and login again.")
return result
return wrapper
def with_solver(func):
"""
Decorator to solve captchas when required
"""
@wraps(func)
def wrapper(self, *args, **kwargs):
try:
result = func(self, *args, **kwargs)
except (CaptchaRequiredException):
_LOGGER.info("solving captcha and retrying login")
# don't allow another captcha exception to be caught by this wrapper
kwargs["allow_captcha_exception"] = False
# check if captcha is required and populate self._verify_code
# clear previous verify code if there was one for the check later
self._captcha_verify_code = None
captcha_present = self._check_captcha()
if not captcha_present:
raise AuthenticationException("Login failed: Captcha required but captcha not found.")
if self._captcha_verify_code is not None:
result = func(self, *args, **kwargs)
else:
raise AuthenticationException("Login failed: no verify code found.")
return result
return wrapper
class FusionSolarClient:
"""The main client to interact with the Fusion Solar API
"""
def __init__(
self, username: str, password: str, huawei_subdomain: str = "region01eu5",
session: Optional[requests.Session] = None, captcha_model_path: Optional[str] = None, captcha_device: Optional[Any] = ['CPUExecutionProvider']
) -> None:
"""Initialiazes a new FusionSolarClient instance. This is the main
class to interact with the FusionSolar API.
The client tests the login credentials as soon as it is initialized
:param username: The username for the system
:type username: str
:param password: The password
:type password: str
:param huawei_subdomain: The FusionSolar API uses different subdomains for different regions.
Adapt this based on the first part of the URL when you access your system.
:type huawei_subdomain: str
:param session: An optional requests session object. If not set, a new session will be created.
:type session: requests.Session
:param captcha_model_path: Path to the weights file for the captcha solver. Only required if you want to use the auto captcha solver
:type captcha_model_path: str
:param captcha_device : The device to run the captcha solver on, as list of execution providers. Only required if you want to use the auto captcha solver.
Please refer to the onnxruntime documentation for more information. https://onnxruntime.ai/docs/execution-providers/
:type captcha_device: list
"""
self._user = username
self._password = password
self._captcha_verify_code = None
if session is None:
self._session = requests.Session()
else:
self._session = session
self._huawei_subdomain = huawei_subdomain
# hierarchy: company <- plants <- devices <- subdevices
self._company_id = None
if self._huawei_subdomain.startswith("region"):
self._login_subdomain = self._huawei_subdomain[8:]
elif self._huawei_subdomain.startswith("uni"):
self._login_subdomain = self._huawei_subdomain[6:]
else:
self._login_subdomain = self._huawei_subdomain
self._captcha_model_path = captcha_model_path
self.captcha_device = captcha_device
self._captcha_solver = None
# Only login if no session has been provided. The session should hold the cookies for a logged in state
if session is None:
self._configure_session()
def log_out(self):
"""Log out from the FusionSolarAPI
"""
self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/unisess/v1/logout",
params={
"service": f"https://{self._huawei_subdomain}.fusionsolar.huawei.com"
},
)
def _check_captcha(self):
"""Checks if the captcha is required for the login.
Also solves the captcha and places the answer into self._verify_code
:returns True if captcha is required, False otherwise
"""
# check if the import is available
try:
import bs4
except ImportError:
_LOGGER.error("Required libraries for CAPTCHA solving are not available. Please install the package using pip install fusion_solar_py[captcha].")
raise Exception("Required libraries for CAPTCHA solving are not available.")
_LOGGER.debug("Checking if captcha is required")
url = f"https://{self._login_subdomain}.fusionsolar.huawei.com/"
params = {
"service": "%2Funisess%2Fv1%2Fauth%3Fservice%3D%252Fnetecowebext%252Fhome%252Findex.html",
}
r = self._session.get(url=url, params=params)
r.raise_for_status()
soup = bs4.BeautifulSoup(r.text, 'html.parser')
captcha_exists = soup.find(id="verificationCodeInput")
if captcha_exists:
captcha = self._get_captcha()
self._init_solver()
self._captcha_verify_code = self._captcha_solver.solve_captcha(captcha)
r = self._session.post(url=f"https://{self._login_subdomain}.fusionsolar.huawei.com/unisso/preValidVerifycode",
data={"verifycode": self._captcha_verify_code, "index": 0})
r.raise_for_status()
if r.text != "success":
raise AuthenticationException("Login failed: captcha prevalidverify fail.")
return True
else:
return False
def _get_captcha(self):
url = f"https://{self._login_subdomain}.fusionsolar.huawei.com/unisso/verifycode"
params = {"timestamp": round(time.time() * 1000)}
r = self._session.get(url=url, params=params)
r.raise_for_status()
image_buffer = r.content
return image_buffer
def _init_solver(self):
if self._captcha_model_path is None:
raise ValueError("Captcha required but no captcha solver model provided. Please refer to the documentation for more information.")
if self._captcha_solver is not None:
return
from .captcha_solver_onnx import Solver
self._captcha_solver = Solver(self._captcha_model_path, self.captcha_device)
@with_solver
def _login(self, allow_captcha_exception=True):
# retrieve the public key in order to test which loging function to use
key_request = self._session.get("https://eu5.fusionsolar.huawei.com/unisso/pubkey")
if key_request.status_code != 200:
_LOGGER.error(f"Failed to retrieve public key. Status code = {key_request.status_code}")
raise FusionSolarException("Failed to retrieve public key.")
key_data = key_request.json()
# find the correct login function
url = f"https://{self._login_subdomain}.fusionsolar.huawei.com/unisso/v2/validateUser.action"
url_params = {}
password = self._password
if key_data['enableEncrypt']:
_LOGGER.debug("Using V3 loging function with encrypted passwords")
url = f"https://{self._login_subdomain}.fusionsolar.huawei.com/unisso/v3/validateUser.action"
url_params['timeStamp'] = key_data['timeStamp']
url_params['nonce'] = get_secure_random()
# encrypt the password
password = encrypt_password(key_data=key_data, password=password)
else:
url_params["decision"] = 1
url_params["service"] = f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/unisess/v1/auth?service=/netecowebext/home/index.html#/LOGIN",
json_data = {
"organizationName": "",
"username": self._user,
"password": password,
}
# add the verify code if it was set
if self._captcha_verify_code:
json_data["verifycode"] = self._captcha_verify_code
# invalidate verify code after use
self._captcha_verify_code = None
# send the request
r = self._session.post(url=url, params=url_params, json=json_data)
r.raise_for_status()
try:
login_response = r.json()
except Exception as e:
_LOGGER.error("Retrieved invalid data as login response.")
_LOGGER.exception(e)
raise FusionSolarException("Failed to process login response")
# in the new login procedure, an errorCode 470 is pointing to a success
# but requires another request to start the session
if login_response["errorCode"] == "470":
_LOGGER.debug("New loging procedure successful, sending additional request")
target_subdomain = login_response['respMultiRegionName'][1]
target_url = f"https://{self._login_subdomain}.fusionsolar.huawei.com{ target_subdomain }"
new_procedure_response = self._session.get(target_url)
new_procedure_response.raise_for_status()
# make sure that the login worked - NOTE: This may no longer work with the new procedure
error = None
if login_response["errorMsg"]:
error = login_response["errorMsg"]
if error:
# only attempt to solve the captcha if it hasn't been tried before and
# a model path is available
if "incorrect verification code" in error.lower() and allow_captcha_exception and self._captcha_model_path:
raise CaptchaRequiredException("Login failed: Incorrect verification code.")
raise AuthenticationException(
f"Failed to login into FusionSolarAPI: { error }"
)
def _configure_session(self):
"""Logs into the Fusion Solar API. Raises an exception if the login fails.
"""
# check the login credentials right away
_LOGGER.debug("Logging into Huawei Fusion Solar API")
# set the user agent
self._session.headers["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
self._login()
# get the payload
payload = self.keep_alive()
if not payload:
raise FusionSolarException("Login failed. No payload received from keep-alive.")
# get the main id
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/neteco/web/organization/v2/company/current",
params={"_": round(time.time() * 1000)},
)
# the new API returns a 500 exception if the subdomain is incorrect
if r.status_code == 500:
try:
data = r.json()
if data["exceptionId"] == "Query company failed.":
raise AuthenticationException("Invalid response received. Please check the correct Huawei subdomain.")
except json.JSONDecodeError as e:
_LOGGER.error("Login validation failed. Failed to process response.")
_LOGGER.exception(e)
raise AuthenticationException("Failed to log into FusionSolarAPI.")
r.raise_for_status()
# catch an incorrect subdomain
response_text = r.content.decode()
if not response_text.strip().startswith("{\"data\":"):
raise AuthenticationException("Invalid response received. Please check the correct Huawei subdomain.")
response_data = r.json()
if "data" not in response_data:
_LOGGER.error(f"Failed to retrieve data object. {json.dumps(response_data)}")
raise AuthenticationException(
"Failed to login into FusionSolarAPI."
)
self._company_id = r.json()["data"]["moDn"]
# get the roarand, which is needed for non-GET requests, thus to change device settings
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/unisess/v1/auth/session"
)
r.raise_for_status()
try:
self._session.headers["roarand"] = r.json()[
"csrfToken"
] # needed for post requests, otherwise it will return 401
except Exception:
# this currently does not work in the new login procedure
pass
def is_session_active(self) -> bool:
"""Tests whether the current session is active. In the web-based application, this
function is triggered every 10 seconds.
:return: Indicates whether the current session is active.
:rtype: bool
"""
if not self._session:
return False
# send the request
r = self._session.get(f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/dpcloud/auth/v1/is-session-alive")
r.raise_for_status()
# get the response
response_data = r.json()
if "code" not in response_data or response_data["code"] != 0:
return False
else:
return True
@logged_in
def keep_alive(self) -> str:
"""This function replicates a call sent by the web-based application. Currently,
the rate at which this function is called is unclear. It seems to be called around
every 30 seconds.
:return: This function returns the payload returned by the respective call
:rtype: str
"""
r = self._session.get(f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/dpcloud/auth/v1/keep-alive")
r.raise_for_status()
response_data = r.json()
if "code" not in response_data or response_data["code"] != 0:
raise FusionSolarException("Failed to set keep alive.")
# get the payload
if "payload" in response_data:
# save the payload as a session header
self._session.headers["roarand"] = response_data["payload"]
return response_data["payload"]
return None
@logged_in
def get_power_status(self) -> PowerStatus:
"""Retrieve the current power status. This is the complete
summary accross all stations.
:return: The current status as a PowerStatus object
"""
url = f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/station/v1/station/total-real-kpi"
params = {
"queryTime": round(time.time() * 1000),
"timeZone": 1,
"_": round(time.time() * 1000),
}
r = self._session.get(url=url, params=params)
r.raise_for_status()
# errors in decoding the object generally mean that the login expired
# this is handeled by @logged_in
power_obj = r.json()
power_status = PowerStatus(
current_power_kw=float( power_obj["data"]["currentPower"] ),
energy_today_kwh=float( power_obj["data"]["dailyEnergy"] ),
energy_kwh=float( power_obj["data"]["cumulativeEnergy"] ),
)
return power_status
@logged_in
def get_current_plant_data(self, plant_id: str) -> dict:
"""Retrieve the current power status for a specific plant.
:return: A dict object containing the whole data
"""
url = f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/station/v1/overview/station-real-kpi"
params = {
"stationDn": plant_id,
"clientTime": round(time.time() * 1000),
"timeZone": 1,
"_": round(time.time() * 1000),
}
r = self._session.get(url=url, params=params)
r.raise_for_status()
# errors in decoding the object generally mean that the login expired
# this is handeled by @logged_in
power_obj = r.json()
if "data" not in power_obj:
raise FusionSolarException("Failed to retrieve plant data.")
return power_obj["data"]
@logged_in
def get_plant_ids(self) -> list:
"""Get the ids of all available stations linked
to this account
:return: A list of plant ids (strings)
:rtype: list
"""
# get the complete object tree
station_list = self.get_station_list()
# get the ids
plant_ids = [obj["dn"] for obj in station_list]
return plant_ids
@logged_in
def get_station_list(self) -> list:
"""Get the list of available PV stations.
:return: _description_
:rtype: list
"""
# get the complete list
r = self._session.post(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/station/v1/station/station-list",
json={
"curPage": 1,
"pageSize": 10,
"gridConnectedTime": "",
"queryTime": self._get_day_start_sec(),
"timeZone": 2,
"sortId": "createTime",
"sortDir": "DESC",
"locale": "en_US"
}
)
r.raise_for_status()
obj_tree = r.json()
if not obj_tree["success"]:
raise FusionSolarException("Failed to retrieve station list")
# simply return the original object list
return obj_tree["data"]["list"]
@logged_in
def get_device_ids(self) -> dict:
"""gets the devices associated to a given parent_id (can be a plant or a company/account)
returns a dictionary mapping device_type to device_id"""
url = f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/neteco/web/config/device/v1/device-list"
params = {
"conditionParams.parentDn": self._company_id, # can be a plant or company id
"conditionParams.mocTypes": "20814,20815,20816,20819,20822,50017,60066,60014,60015,23037", # specifies the types of devices
"_": round(time.time() * 1000),
}
r = self._session.get(url=url, params=params)
r.raise_for_status()
device_data = r.json()
device_key = {}
for device in device_data["data"]:
device_key[device["mocTypeName"]] = device["dn"]
return device_key
@logged_in
def get_battery_ids(self, plant_id) -> list:
"""gets the battery ids associated to a given plant id
:return: A list of battery ids (strings)
:rtype: list
"""
plant_flow = self.get_plant_flow(plant_id)
nodes = plant_flow['data']['flow']['nodes']
battery_ids = []
for node in nodes:
if "energy_store" in node["name"]:
battery_ids.append(node["devIds"][0])
return battery_ids
@logged_in
def get_battery_basic_stats(self, battery_id: str) -> BatteryStatus:
"""Retrieves the basic stats for the given battery.
:param battery_id: The battery's id
:type battery_id: str
:return: The basic stats as a BatteryStatus object
"""
battery_stats = self.get_battery_status(battery_id)
battery_status = BatteryStatus(
state_of_charge=float(battery_stats[8]["realValue"]),
rated_capacity=float(battery_stats[2]["realValue"]),
operating_status=battery_stats[0]["value"],
backup_time=battery_stats[3]["value"],
bus_voltage=float(battery_stats[7]["realValue"]),
total_charged_today_kwh=float(battery_stats[4]["realValue"]),
total_discharged_today_kwh=float(battery_stats[5]["realValue"]),
current_charge_discharge_kw=float(battery_stats[6]["realValue"]),
)
return battery_status
@logged_in
def get_battery_day_stats(self, battery_id: str) -> dict:
"""Retrieves the SOC (state of charge) in % and charge/discharge power in kW of
the battery for the current day.
:param battery_id: The battery's id
:type battery_id: str
:return: The complete data structure as a dict
"""
current_time = round(time.time() * 1000)
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/device/v1/device-history-data",
params={
"signalIds": ["30005", "30007"], # 30005 is Charge/Discharge power, 30007 is SOC, state of charge in %
"deviceDn": battery_id,
"date": current_time,
"_": current_time,
},
)
r.raise_for_status()
battery_data = r.json()
if not battery_data["success"] or "data" not in battery_data:
raise FusionSolarException(
f"Failed to retrieve battery day stats for {battery_id}"
)
battery_data["data"]["30005"]["name"] = "Charge/Discharge power"
battery_data["data"]["30007"]["name"] = "SOC"
return battery_data["data"]
@logged_in
def get_battery_module_stats(
self, battery_id: str, module_id: str="1", signal_ids: list=None
) -> dict:
"""Retrieves the complete stats for the given battery module
of the latest recorded time. See signals.md for a list of signals.
:param battery_id: The battery's id
:type battery_id: str
:param module_id: The module's id
:type module_id: str
:param signal_ids: The signal ids to retrieve. If not set, all signals will be retrieved
:type signal_ids: list
:return: The complete data structure as a dict
"""
if signal_ids is None:
signal_ids = MODULE_SIGNALS[module_id]
else:
if not all(signal_id in MODULE_SIGNALS[module_id] for signal_id in signal_ids):
raise ValueError(f"One or more unknown signal ids for module {module_id}")
signal_ids = ",".join(signal_ids)
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/device/v1/query-battery-dc",
params={
"sigids": signal_ids,
"dn": battery_id,
"moduleId": module_id,
"_": round(time.time() * 1000),
},
)
r.raise_for_status()
battery_data = r.json()
if not battery_data["success"] or "data" not in battery_data:
raise FusionSolarException(
f"Failed to retrieve battery status for {battery_id}"
)
return battery_data["data"]
@logged_in
def get_battery_status(self, battery_id: str) -> dict:
"""Retrieve the current battery status. This is the complete
summary accross all battery modules.
:param battery_id: The battery's id
:type battery_id: str
:return: The current status as a dict
"""
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/device/v1/device-realtime-data",
params={
"deviceDn": battery_id,
"_": round(time.time() * 1000),
}
)
r.raise_for_status()
battery_data = r.json()
if not battery_data["success"] or "data" not in battery_data:
raise FusionSolarException(
f"Failed to retrieve battery status for {battery_id}"
)
return battery_data["data"][1]["signals"]
@logged_in
def active_power_control(self, power_setting) -> None:
"""apply active power control.
This can be usefull when electrity prices are
negative (sunny summer holiday) and you want
to limit the power that is exported into the grid"""
power_setting_options = {
"No limit": 0,
"Zero Export Limitation": 5,
"Limited Power Grid (kW)": 6,
"Limited Power Grid (%)": 7,
}
if power_setting not in power_setting_options:
raise ValueError("Unknown power setting")
device_key = self.get_device_ids()
url = f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/device/v1/deviceExt/set-config-signals"
data = {
"dn": device_key["Dongle"], # power control needs to be done in the dongle
# 230190032 stands for "Active Power Control"
"changeValues": f'[{{"id":"230190032","value":"{power_setting_options[power_setting]}"}}]',
}
r = self._session.post(url, data=data)
r.raise_for_status()
@logged_in
def get_plant_flow(self, plant_id: str) -> dict:
"""Retrieves the data for the energy flow
diagram displayed for each plant
:param plant_id: The plant's id
:type plant_id: str
:return: The complete data structure as a dict
"""
# https://region01eu5.fusionsolar.huawei.com/rest/pvms/web/station/v1/overview/energy-flow?stationDn=NE%3D33594051&_=1652469979488
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/station/v1/overview/energy-flow",
params={"stationDn": plant_id, "_": round(time.time() * 1000)},
)
r.raise_for_status()
flow_data = r.json()
if not flow_data["success"] or "data" not in flow_data:
raise FusionSolarException(f"Failed to retrieve plant flow for {plant_id}")
return flow_data
@logged_in
def get_plant_stats(
self, plant_id: str, query_time: int = None
) -> dict:
"""Retrieves the complete plant usage statistics for the current day.
:param plant_id: The plant's id
:type plant_id: str
:param query_time: If set, must be set to 00:00:00 of the day the data should
be fetched for. If not set, retrieves the data for the
current day.
:type query_time: int
:return: _description_
"""
# set the query time to today
if not query_time:
query_time = self._get_day_start_sec()
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/station/v1/overview/energy-balance",
params={
"stationDn": plant_id,
"timeDim": 2,
"queryTime": query_time, # TODO: this may have changed to micro-seconds ie. timestamp * 1000
# dateTime=2024-03-07 00:00:00
"timeZone": 2, # 1 in no daylight
"timeZoneStr": "Europe/Vienna",
"_": round(time.time() * 1000),
},
)
r.raise_for_status()
plant_data = r.json()
if not plant_data["success"] or "data" not in plant_data:
raise FusionSolarException(
f"Failed to retrieve plant status for {plant_id}"
)
# return the plant data
return plant_data["data"]
def get_last_plant_data(self, plant_data: dict) -> dict:
"""Extracts the last measurements from the plant data
The dict contains detailed information about the data of the plant.
If "existInverter" the "productPower" is reported.
:param plant_data: The plant's stats data returned by get_plant_stats
"""
# make sure the object is valid
if "xAxis" not in plant_data:
raise FusionSolarException("Invalid plant_data object passed.")
measurement_times = plant_data["xAxis"]
# initialize the extracted data
extracted_data = {}
# process the complete data
for key_name in plant_data.keys():
try:
# fields to ignore
if key_name in ("xAxis", "stationTimezone", "clientTimezone", "stationDn"):
continue
key_value = plant_data[key_name]
if type(key_value) is list:
extracted_data[key_name] = self._get_last_value(key_value, measurement_times)
# Missing data
elif key_value == "--":
extracted_data[key_name] = None
# Boolean
elif key_name.startswith("exist"):
extracted_data[key_name] = bool(key_value)
# should be numeric
else:
extracted_data[key_name] = float(key_value)
# if anything goes wrong, simply store "None" as value
except Exception as e:
_LOGGER.debug(f"Failed to parse {key_name} = {key_value}")
extracted_data[key_name] = None
return extracted_data
def _get_last_value(self, values: list, measurement_times: list):
"""Get the last valid value from a values array where
missing values are stored as '--'
:param values: The list of values
:type values: list
:param measurement_times: The list of matching timepoints
:type values: list
:return: A dict with a "value" and "timepoint"
"""
# add all found values in a list
found_values = list()
for index, value in enumerate(values):
if value != "--":
found_values.append({"time": measurement_times[index], "value": float(values[index])})
# if it's the last value
if len(found_values) > 0:
return found_values[-1]
else:
# If nothing is found return "None" for the current time
return {"time": datetime.now().strftime("%Y-%m-%d %H:%M"), "value": None}
def _get_day_start_sec(self) -> int:
"""Return the start of the current day in seconds since
epoche.
:return: The start of the day ("00:00:00") in seconds
:rtype: int
"""
start_today = time.strftime("%Y-%m-%d 00:00:00", time.gmtime())
struct_time = time.strptime(start_today, "%Y-%m-%d %H:%M:%S")
seconds = round(time.mktime(struct_time) * 1000)
return seconds
@logged_in
def get_optimizer_stats(
self, inverter_id: str
) -> dict:
"""Retrieves the complete list of optimizers and returns real time stats.
:param inverter_id: The inverter ID
:type plant_id: str
:return: _description_
"""
r = self._session.get(
url=f"https://{self._huawei_subdomain}.fusionsolar.huawei.com/rest/pvms/web/station/v1/layout/optimizer-info",
params={
"inverterDn": inverter_id,
"_": round(time.time() * 1000),
},
)
r.raise_for_status()
optimizer_data = r.json()
if not optimizer_data["success"] or "data" not in optimizer_data:
raise FusionSolarException(
f"Failed to retrieve plant status for {inverter_id}"
)
# return the plant data
return optimizer_data["data"]