Skip to content

Commit 48d94a6

Browse files
committed
Fix parsing of AD410 events
1 parent 2820c56 commit 48d94a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

custom_components/dahua/vto.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -341,10 +341,12 @@ def parse_response(response):
341341
# Note that there can 0 or more events per line. Typically it's 1 event, but sometimes 2 events will arrive.
342342
# This example shows 2 events
343343
# \x00\x00\x00DHIP*Q\xa8f\x08\x00\x00\x00m\x04\x00\x00\x00\x00\x00\x00m\x04\x00\x00\x00\x00\x00\x00{"id":8,"method":"client.notifyEventStream","params":{"SID":513,"eventList":[{"Action":"Start","Code":"CrossRegionDetection"...},"session":1722306858}\n \x00\x00\x00DHIP*Q\xa8f\x08\x00\x00\x00\xe8\x00\x00\x00\x00\x00\x00\x00\xe8\x00\x00\x00\x00\x00\x00\x00{"id":8,"method":"client.notifyEventStream","params":{"SID":513,"eventList":[{"Action":"Pulse","Code":"IntelliFrame",..."session":1722306858}\n'
344+
# Another exmaple
345+
# \x00\x00\x00DHIP\x8c-\x96{\x08\x00\x00\x00{\x01\x00\x00\x00\x00\x00\x00{\x01\x00\x00\x00\x00\x00\x00{"id":8,"method":"client.notifyEventStream","params":{"SID":513,"eventList":[{"Action":"State","Code":"VideoMotionInfo","Data":[{"Id":0,"Region":[4194303,4194303,4128767,3997695,3801087,3801087,3932159,3407871,3932159,3932158,3932156,3735548,3678204,2101244,2047,2097663,3146239,524799],"RegionName":"Region1","State":"Active","Threshold":54}],"Index":0}]},"session":1722306858}\n
344346

345347
response_parts = str(response).split("\\x00")
346348
for response_part in response_parts:
347-
if response_part.startswith("{"):
349+
if response_part.startswith("{\""):
348350
end = response_part.rindex("}") + 1
349351
message = response_part[0:end]
350352
result.append(json.loads(message))

0 commit comments

Comments
 (0)