-
Notifications
You must be signed in to change notification settings - Fork 0
/
vesync.py
executable file
·229 lines (216 loc) · 7.14 KB
/
vesync.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
from os import pardir
import requests, json, time, datetime, io, hashlib
from random import randint
from datetime import datetime
from urllib.request import urlopen
import urllib3
urllib3.disable_warnings()
# Define pseudo constants
SCRIPT_NAME = 'vesync.py'
SCRIPT_VERSION = '1.0'
#requests.packages.urllib3.disable_warnings()
BASE_URL = "https://smartapi.vesync.com"
ts = time.time()
st = datetime.fromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S')
#Creates empty token and accountid variables which are automatically filled when script runs as long as username and password entered above.
token = ""
accountID = ""
import logging
logging.basicConfig(
filename='vesync.log',
filemode='a',
format='%(asctime)s,%(msecs)d %(name)s %(levelname)s %(message)s',
datefmt='%H:%M:%S',
level=logging.DEBUG)
class VesyncApi:
def __init__(self, username, password):
global token
global accountID
payload = json.dumps({
"account":
username,
"devToken":
"",
"password":
hashlib.md5(password.encode('utf-8')).hexdigest()
})
account = requests.post(BASE_URL + "/vold/user/login",
verify=False,
data=payload).json()
if "error" in account:
raise RuntimeError("Invalid username or password")
else:
self._account = account
#logging.info (account)
token = account['tk']
#logging.info (token)
accountID = account['accountID']
#logging.info (accountID)
logging.info('Account Connection Successful')
self._devices = []
def get_detail(self, id):
global token
global accountID
payload = {
"acceptLanguage": "en",
"accountID": accountID,
"appVersion": "VeSync 3.1.54 build10",
"cid": id,
"configModule": "WFON_AHM_LUH-A602S-WUS_US",
"deviceRegion": "US",
"method": "bypassV2",
"payload": {
"data": {},
"method": "getHumidifierStatus",
"source": "APP"
},
"phoneBrand": "iPhone",
"phoneOS": "iOS 15.1.1",
"timeZone": "America/New_York",
"token": token,
"traceId": "1639257589508",
"userCountryCode": "US"
}
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
r = requests.post(BASE_URL + '/cloud/v2/deviceManaged/bypassV2',
headers=headers,
json=payload)
return r
def get_devices(self, id):
global token
global accountID
payload = {
"acceptLanguage": "en",
"accountID": accountID,
"appVersion": "VeSync 3.1.54 build10",
"cid": id,
"method": "deviceInfo",
"phoneBrand": "iPhone",
"phoneOS": "iOS 15.1.1",
"subDeviceNo": 0,
"timeZone": "America/New_York",
"token": token,
"traceId": "1639257579506",
"userCountryCode": "US"
}
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
r = requests.post(BASE_URL + '/cloud/v1/deviceManaged/deviceInfo',
headers=headers,
json=payload)
return r
def turn_off(self, id):
payload = {
"acceptLanguage": "en",
"accountID": accountID,
"appVersion": "VeSync 3.1.54 build10",
"cid": id,
"configModule": "WFON_AHM_LUH-A602S-WUS_US",
"debugMode": False,
"deviceRegion": "US",
"method": "bypassV2",
"payload": {
"data": {
"enabled": False,
"id": 0
},
"method": "setSwitch",
"source": "APP"
},
"phoneBrand": "iPhone",
"phoneOS": "iOS 15.1.1",
"timeZone": "America/New_York",
"token": token,
"traceId": "1639267601802",
"userCountryCode": "US"
}
headers = {
'Content-Type':
'application/json',
'Accept':
'*/*',
'user-agent':
'VeSync/3.1.54 (com.etekcity.vesyncPlatform; build:10; iOS 15.1.1) Alamofire/5.2.1'
}
r = requests.put(BASE_URL + '/cloud/v2/deviceManaged/bypassV2',
headers=headers,
json=payload)
logging.info(r.text)
def turn_on(self, id):
payload = {
"acceptLanguage": "en",
"accountID": accountID,
"appVersion": "VeSync 3.1.54 build10",
"cid": id,
"configModule": "WFON_AHM_LUH-A602S-WUS_US",
"debugMode": False,
"deviceRegion": "US",
"method": "bypassV2",
"payload": {
"data": {
"enabled": True,
"id": 0
},
"method": "setSwitch",
"source": "APP"
},
"phoneBrand": "iPhone",
"phoneOS": "iOS 15.1.1",
"timeZone": "America/New_York",
"token": token,
"traceId": "1639267601802",
"userCountryCode": "US"
}
headers = {
'Content-Type':
'application/json',
'Accept':
'*/*',
'user-agent':
'VeSync/3.1.54 (com.etekcity.vesyncPlatform; build:10; iOS 15.1.1) Alamofire/5.2.1'
}
r = requests.put(BASE_URL + '/cloud/v2/deviceManaged/bypassV2',
headers=headers,
json=payload)
logging.info(r.text)
def set_target(self, id, target):
payload = {
"acceptLanguage": "en",
"accountID": accountID,
"appVersion": "VeSync 3.1.54 build10",
"cid": id,
"configModule": "WFON_AHM_LUH-A602S-WUS_US",
"debugMode": False,
"deviceRegion": "US",
"method": "bypassV2",
"payload": {
"data": {
"target_humidity": target
},
"method": "setTargetHumidity",
"source": "APP"
},
"phoneBrand": "iPhone",
"phoneOS": "iOS 15.1.1",
"timeZone": "America/New_York",
"token": token,
"traceId": "1639267601802",
"userCountryCode": "US"
}
headers = {
'Content-Type':
'application/json',
'Accept':
'*/*',
'user-agent':
'VeSync/3.1.54 (com.etekcity.vesyncPlatform; build:10; iOS 15.1.1) Alamofire/5.2.1'
}
r = requests.put(BASE_URL + '/cloud/v2/deviceManaged/bypassV2',
headers=headers,
json=payload)
logging.info(r.text)