Created
October 1, 2022 19:57
-
-
Save Wh1terat/c4a4c665d692af461796e5eee9f5461d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import requests | |
import time | |
import uuid | |
import json | |
import urllib.parse | |
from Crypto.PublicKey import RSA | |
from Crypto.Hash import MD5 | |
from Crypto.Cipher import PKCS1_v1_5 | |
from base64 import b64encode | |
from requests_toolbelt.utils import dump | |
class pyAqara(): | |
areas = { | |
"CN": { | |
"server": "https://aiot-rpc.aqara.cn", | |
"appid": "94549908487478b220992a70", | |
"appkey": "Jddz01kIORDYrBzqGYgpUXKBnIHfW8E3" | |
}, | |
"EU": { | |
"server": "https://rpc-ger.aqara.com", | |
"appid": "7be1984f0556276133336839", | |
"appkey": "Jddz01kIORDYrBzqGYgpUXKBnIHfW8E3" | |
}, | |
"RU":{ | |
"server": "https://rpc-ru.aqara.com", | |
"appid": "94549908487478b220992a70", | |
"appkey": "euGhPe2rcmxwculATNj45eEtnd50zp0I" | |
}, | |
"KR":{ | |
"server": "https://rpc-kr.aqara.com", | |
"appid": "94549908487478b220992a70", | |
"appkey": "euGhPe2rcmxwculATNj45eEtnd50zp0I" | |
}, | |
"USA": { | |
"server" : "https://aiot-rpc-usa.aqara.com", | |
"appid": "94549908487478b220992a70", | |
"appkey": "Jddz01kIORDYrBzqGYgpUXKBnIHfW8E3" | |
}, | |
"OTHER": { | |
"server" : "https://aiot-rpc-usa.aqara.com", | |
"appid": "94549908487478b220992a70", | |
"appkey": "Jddz01kIORDYrBzqGYgpUXKBnIHfW8E3" | |
} | |
} | |
pubkey = '''-----BEGIN PUBLIC KEY----- | |
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCG46slB57013JJs4Vvj5cVyMpR | |
9b+B2F+YJU6qhBEYbiEmIdWpFPpOuBikDs2FcPS19MiWq1IrmxJtkICGurqImRUt | |
4lP688IWlEmqHfSxSRf2+aH0cH8VWZ2OaZn5DWSIHIPBF2kxM71q8stmoYiV0oZs | |
rZzBHsMuBwA4LQdxBwIDAQAB | |
-----END PUBLIC KEY-----''' | |
def __init__(self, area="CN"): | |
self.area = area | |
self._userid = None | |
self._token = None | |
self._session = requests.session() | |
self._session.headers.update({ | |
"User-Agent": "pyAqara/1.0.0", | |
"App-Version": "3.0.0", | |
"Sys-Type": "1", #0: iOS, 1: Android | |
"Lang": "en", | |
"Phone-Model": "pyAqara", | |
"PhoneId": str(uuid.uuid4()).upper(), | |
}) | |
@property | |
def server(self): | |
return self.areas[self.area]['server'] | |
@property | |
def appid(self): | |
return self.areas[self.area]['appid'] | |
@property | |
def appkey(self): | |
return self.areas[self.area]['appkey'] | |
@property | |
def area(self): | |
return self._area | |
@area.setter | |
def area(self, area): | |
area = area.upper() | |
if area not in self.areas.keys(): | |
area = "OTHER" | |
self._area = area | |
def encrypt_password(self, password): | |
rsa = PKCS1_v1_5.new(RSA.importKey(self.pubkey)) | |
return b64encode( | |
rsa.encrypt(MD5.new(password.encode()).hexdigest().encode()) | |
).decode() | |
def login(self, username, password): | |
payload = { | |
"account": username, | |
"encryptType": 2, | |
"password": self.encrypt_password(password) | |
} | |
req = self.request('POST', f'{self.server}/app/v1.0/lumi/user/login', json=payload) | |
#print(dump.dump_all(req).decode("utf-8")) | |
res = req.json() | |
if res['code'] == 0: | |
self._userid = res['result']['userId'] | |
self._token = res['result']['token'] | |
return True | |
return False | |
def add_headers(self, payload): | |
headers = { | |
"Area": self.area, | |
"Appid": self.appid, | |
"Appkey": self.appkey, | |
"Nonce": MD5.new(str(uuid.uuid4()).encode()).hexdigest(), | |
"Time": str(round(time.time() * 1000)), | |
"RequestBody": payload | |
} | |
if self._token is not None: | |
headers['Token'] = self._token | |
headers['Sign'] = self.sign_header(headers) | |
del headers['Appkey'] | |
del headers['RequestBody'] | |
return headers | |
def sign_header(self, headers): | |
if headers.get('Token'): | |
sign = 'Appid={Appid}&Nonce={Nonce}&Time={Time}&Token={Token}&{RequestBody}&{Appkey}'.format(**headers) | |
else: | |
sign = 'Appid={Appid}&Nonce={Nonce}&Time={Time}&{RequestBody}&{Appkey}'.format(**headers) | |
return MD5.new(sign.encode()).hexdigest() | |
def request(self, *args, **kwargs): | |
method = args[0] | |
if method == 'GET': | |
payload = urllib.parse.urlencode(kwargs['params']) | |
elif method == 'POST': | |
if kwargs.get('json'): | |
payload = json.dumps(kwargs['json']) | |
elif kwargs.get('data'): | |
payload = kwargs['data'] | |
elif kwargs.get('params'): | |
payload = urllib.parse.urlencode(kwargs['params']) | |
else: | |
raise ValueError('Unsupported Method') | |
kwargs.setdefault('headers', self.add_headers(payload)) | |
return self._session.request(*args, **kwargs) | |
username='[email protected]' | |
password='nopenopenope' | |
aqara = pyAqara('EU') | |
if aqara.login(username, password): | |
#params = {'firmwareVersion': '3.3.2', 'model': 'lumi.camera.gwpagl01'} | |
#params = {'firmwareVersion': '0.0.0_0021', 'model': 'lumi.airrtc.agl001'} | |
params = {'firmwareVersion': '1.0.24', 'model': 'lumi.vibration.agl01'} | |
req = aqara.request('GET', f'{aqara.server}/app/v1.0/lumi/ota/query/firmware/online', params=params) | |
print(json.dumps(req.json(), indent=4, sort_keys=True)) | |
print(dump.dump_all(req).decode("utf-8")) | |
else: | |
print('Login Failed!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment