Pārlūkot izejas kodu

Replaced requests with aiohttp

Damian Sypniewski 10 mēneši atpakaļ
vecāks
revīzija
7dd2bfb512
4 mainītis faili ar 28 papildinājumiem un 28 dzēšanām
  1. 1 1
      requirements.txt
  2. 1 1
      requirements_dev.txt
  3. 1 1
      setup.py
  4. 25 25
      switchbot/devices/lock.py

+ 1 - 1
requirements.txt

@@ -1,4 +1,4 @@
+aiohttp>=3.9.5
 bleak>=0.17.0
 bleak-retry-connector>=2.9.0
 cryptography>=38.0.3
-requests>=2.28.1

+ 1 - 1
requirements_dev.txt

@@ -1,6 +1,6 @@
 pytest-asyncio
 pytest-cov
+aiohttp>=3.9.5
 bleak>=0.17.0
 bleak-retry-connector>=3.4.0
 cryptography>=38.0.3
-requests>=2.28.1

+ 1 - 1
setup.py

@@ -4,11 +4,11 @@ setup(
     name="PySwitchbot",
     packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"],
     install_requires=[
+        "aiohttp>=3.9.5",
         "bleak>=0.19.0",
         "bleak-retry-connector>=3.4.0",
         "cryptography>=39.0.0",
         "pyOpenSSL>=23.0.0",
-        "requests>=2.28.1",
     ],
     version="0.44.1",
     description="A library to communicate with Switchbot",

+ 25 - 25
switchbot/devices/lock.py

@@ -1,12 +1,12 @@
 """Library to handle connection with Switchbot Lock."""
 from __future__ import annotations
 
-import json
 import logging
 import time
 from typing import Any
 
-import requests
+import aiohttp
+import asyncio
 from bleak.backends.device import BLEDevice
 from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
 
@@ -84,34 +84,34 @@ class SwitchbotLock(SwitchbotDevice):
         return lock_info is not None
 
     @staticmethod
-    def api_request(subdomain: str, path: str, data: dict, headers: dict = None):
-        result = requests.post(
-            url=f"https://{subdomain}.{SWITCHBOT_APP_API_BASE_URL}/{path}",
-            headers=headers,
-            json=data,
-            timeout=5,
-        )
-
-        if result.status_code > 299:
-            raise SwitchbotApiError(
-                f"Unexpected status code returned by SwitchBot API: {result.status_code}"
-            )
-
-        response = json.loads(result.content)
-        if response["statusCode"] != 100:
-            raise SwitchbotApiError(
-                f"{response['message']}, status code: {response['statusCode']}"
-            )
-
-        return response["body"]
+    async def api_request(subdomain: str, path: str, data: dict = None, headers: dict = None):
+        async with aiohttp.ClientSession(headers=headers, timeout=aiohttp.ClientTimeout(total=10)) as session:
+            url = f"https://{subdomain}.{SWITCHBOT_APP_API_BASE_URL}/{path}"
+            async with session.post(url, json=data) as result:
+                if result.status > 299:
+                    raise SwitchbotApiError(
+                        f"Unexpected status code returned by SwitchBot API: {result.status}"
+                    )
+
+                response = await result.json()
+                if response["statusCode"] != 100:
+                    raise SwitchbotApiError(
+                        f"{response['message']}, status code: {response['statusCode']}"
+                    )
+
+                return response["body"]
 
     @staticmethod
     def retrieve_encryption_key(device_mac: str, username: str, password: str):
+        return asyncio.run(SwitchbotLock.async_retrieve_encryption_key(device_mac, username, password))
+
+    @staticmethod
+    async def async_retrieve_encryption_key(device_mac: str, username: str, password: str):
         """Retrieve lock key from internal SwitchBot API."""
         device_mac = device_mac.replace(":", "").replace("-", "").upper()
 
         try:
-            auth_result = SwitchbotLock.api_request(
+            auth_result = await SwitchbotLock.api_request(
                 "account",
                 "account/api/v1/user/login",
                 {
@@ -127,7 +127,7 @@ class SwitchbotLock(SwitchbotDevice):
             raise SwitchbotAuthenticationError(f"Authentication failed: {err}") from err
 
         try:
-            userinfo = SwitchbotLock.api_request(
+            userinfo = await SwitchbotLock.api_request(
                 "account", "account/api/v1/user/userinfo", {}, auth_headers
             )
             if "botRegion" in userinfo and userinfo["botRegion"] != "":
@@ -140,7 +140,7 @@ class SwitchbotLock(SwitchbotDevice):
             ) from err
 
         try:
-            device_info = SwitchbotLock.api_request(
+            device_info = await SwitchbotLock.api_request(
                 f"wonderlabs.{region}",
                 "wonder/keys/v1/communicate",
                 {