4
4
"""
5
5
import asyncio
6
6
from http import HTTPStatus
7
- import json
8
7
import logging
9
8
from urllib .parse import parse_qs , urlparse
10
9
import uuid
11
10
12
11
from cryptography .exceptions import InvalidSignature , InvalidTag
13
12
from cryptography .hazmat .primitives import serialization
14
13
from cryptography .hazmat .primitives .asymmetric import ed25519 , x25519
15
- from cryptography . hazmat . primitives . ciphers . aead import ChaCha20Poly1305
14
+ from chacha20poly1305_reuseable import ChaCha20Poly1305Reusable as ChaCha20Poly1305
16
15
17
16
from pyhap import tlv
18
17
from pyhap .const import (
25
24
from pyhap .util import long_to_bytes
26
25
27
26
from .hap_crypto import hap_hkdf , pad_tls_nonce
28
- from .util import to_hap_json
27
+ from .util import to_hap_json , from_hap_json
29
28
30
29
# iOS will terminate the connection if it does not respond within
31
30
# 10 seconds, so we only allow 9 seconds to avoid this.
@@ -145,6 +144,7 @@ def __init__(self, accessory_handler, client_address):
145
144
self .command = None
146
145
self .headers = None
147
146
self .request_body = None
147
+ self .parsed_url = None
148
148
149
149
self .response = None
150
150
@@ -199,6 +199,7 @@ def dispatch(self, request, body=None):
199
199
self .command = request .method .decode ()
200
200
self .headers = {k .decode (): v .decode () for k , v in request .headers }
201
201
self .request_body = body
202
+ self .parsed_url = urlparse (self .path )
202
203
response = HAPResponse ()
203
204
self .response = response
204
205
@@ -210,7 +211,7 @@ def dispatch(self, request, body=None):
210
211
self .headers ,
211
212
)
212
213
213
- path = urlparse ( self .path ) .path
214
+ path = self .parsed_url .path
214
215
try :
215
216
getattr (self , self .HANDLERS [self .command ][path ])()
216
217
except UnprivilegedRequestException :
@@ -584,7 +585,7 @@ def handle_get_characteristics(self):
584
585
raise UnprivilegedRequestException
585
586
586
587
# Check that char exists and ...
587
- params = parse_qs (urlparse ( self .path ) .query )
588
+ params = parse_qs (self .parsed_url .query )
588
589
response = self .accessory_handler .get_characteristics (
589
590
params ["id" ][0 ].split ("," )
590
591
)
@@ -612,7 +613,7 @@ def handle_set_characteristics(self):
612
613
self .send_response (HTTPStatus .UNAUTHORIZED )
613
614
return
614
615
615
- requested_chars = json . loads (self .request_body .decode ("utf-8" ))
616
+ requested_chars = from_hap_json (self .request_body .decode ("utf-8" ))
616
617
logger .debug (
617
618
"%s: Set characteristics content: %s" , self .client_address , requested_chars
618
619
)
@@ -637,7 +638,7 @@ def handle_prepare(self):
637
638
self .send_response (HTTPStatus .UNAUTHORIZED )
638
639
return
639
640
640
- request = json . loads (self .request_body .decode ("utf-8" ))
641
+ request = from_hap_json (self .request_body .decode ("utf-8" ))
641
642
logger .debug ("%s: prepare content: %s" , self .client_address , request )
642
643
643
644
response = self .accessory_handler .prepare (request , self .client_address )
@@ -742,7 +743,7 @@ def _send_tlv_pairing_response(self, data):
742
743
743
744
def handle_resource (self ):
744
745
"""Get a snapshot from the camera."""
745
- data = json . loads (self .request_body .decode ("utf-8" ))
746
+ data = from_hap_json (self .request_body .decode ("utf-8" ))
746
747
747
748
if self .accessory_handler .accessory .category == CATEGORY_BRIDGE :
748
749
accessory = self .accessory_handler .accessory .accessories .get (data ["aid" ])
0 commit comments