-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacctl.py
192 lines (159 loc) · 6.84 KB
/
acctl.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
import sys
import os
import json
from urllib.parse import parse_qs
import hashlib
sys.path.append(os.path.dirname(__file__))
import acmod
import acpriv
auth_file=os.path.dirname(__file__) + "/auth.txt";
response_content_type="application/json;charset=utf-8";
# Return simple dictionary of current AC state values
def getvals():
ss_data = acmod.ac_get_data()
res = {}
res['auto_on'] = ss_data['result']['smartMode']['enabled']
res['run'] = ss_data['result']['acState']['on']
res['run_mode'] = ss_data['result']['acState']['mode']
res['auto_enabled'] = ss_data['result']['smartMode']['enabled']
res['temp'] = ss_data['result']['measurements']['temperature']
# set to defaults
res['tgt_temp_heat'] = acmod.tgt_temp_heat
res['tgt_temp_cool'] = acmod.tgt_temp_cool
res['tgt_temp_any'] = 22
if ss_data['result']['smartMode']['lowTemperatureState']['on']:
res['auto_mode'] = "heat"
res['lo_temp'] = ss_data['result']['smartMode']['lowTemperatureThreshold']
res['hi_temp'] = ss_data['result']['smartMode']['highTemperatureThreshold']
res['tgt_temp_heat'] = ss_data['result']['smartMode']['lowTemperatureState']['targetTemperature']
res['tgt_temp_any'] = res['tgt_temp_heat']
elif ss_data['result']['smartMode']['highTemperatureState']['on']:
res['auto_mode'] = "cool"
res['lo_temp'] = ss_data['result']['smartMode']['lowTemperatureThreshold']
res['hi_temp'] = ss_data['result']['smartMode']['highTemperatureThreshold']
res['tgt_temp_cool'] = ss_data['result']['smartMode']['highTemperatureState']['targetTemperature']
res['tgt_temp_any'] = res['tgt_temp_cool']
else:
res['auto_mode'] = "off"
try:
res['lo_temp'] = ss_data['result']['smartMode']['lowTemperatureThreshold']
except Exception as e:
res['lo_temp'] = 21.6
try:
res['hi_temp'] = ss_data['result']['smartMode']['highTemperatureThreshold']
except Exception as e:
res['hi_temp'] = 21.8
return res
def do_send_ok(app_res):
ret_arr = { "status": "OK" }
ret_js = json.dumps(ret_arr, indent = 3)
status = '200 OK'
response_header = [('Content-type', response_content_type)]
app_res(status, response_header)
return [bytes(ret_js, encoding='utf-8')]
def do_info(app_res):
ret_arr = getvals()
ret_arr["status"] = "OK"
ret_js = json.dumps(ret_arr, indent = 3)
status = '200 OK'
response_header = [('Content-type', response_content_type)]
app_res(status, response_header)
return [bytes(ret_js, encoding='utf-8')]
def do_set_heat(app_res, in_args):
ret_arr = getvals()
try:
b_on = int(in_args["on"][0]) != 0
except Exception:
b_on = ret_arr['auto_enabled']
if (ret_arr['auto_mode'].lower() != "heat"):
# if not in heat mode (cool or off) - turn off if running
if (ret_arr['run']):
ac_set_state(False, "heat", ret_arr['tgt_temp_heat'], "auto")
acmod.ac_set_smartmode(b_on, "heat", ret_arr['lo_temp'], ret_arr['hi_temp'], ret_arr['tgt_temp_heat'])
return do_send_ok(app_res)
def do_set_cool(app_res, in_args):
ret_arr = getvals()
try:
b_on = int(in_args["on"][0]) != 0
except Exception:
b_on = ret_arr['auto_enabled']
if (ret_arr['auto_mode'].lower() != "cool"):
if (ret_arr['run']):
ac_set_state(False, "cool", ret_arr['tgt_temp_cool'], "auto")
acmod.ac_set_smartmode(b_on, "cool", ret_arr['lo_temp'], ret_arr['hi_temp'], ret_arr['tgt_temp_cool'])
return do_send_ok(app_res)
def do_set_on(app_res):
ret_arr = getvals()
if (not ret_arr['auto_enabled']):
if (ret_arr['auto_mode'].lower() == "off"):
raise Exception("Cannot enable auto mode when selection is off")
acmod.ac_set_smartmode(True, ret_arr['auto_mode'], ret_arr['lo_temp'], ret_arr['hi_temp'], ret_arr['tgt_temp_any'])
def do_set_off(app_res):
ret_arr = getvals()
if (ret_arr['run']):
ac_set_state(False, ret_arr['run_mode'], ret_arr['tgt_temp_any'], "auto")
if (ret_arr['auto_mode'].lower() != "off"):
acmod.ac_set_smartmode(False, ret_arr['auto_mode'], ret_arr['lo_temp'], ret_arr['hi_temp'], ret_arr['tgt_temp_any'])
return do_send_ok(app_res)
def do_set_temp(app_res, in_args):
try:
lo_temp = float(in_args["lo_temp"][0])
hi_temp = float(in_args["hi_temp"][0])
except Exception as e:
raise Exception("Required temp parameter is missing")
# Clamp temp range to 19-26 and make sure lo_temp and hi_temp more than 0.1 degree apart (i.e. 0.2)
if (lo_temp < 19 or lo_temp > 26 or hi_temp < 19 or hi_temp > 26 or lo_temp + 0.1 >= hi_temp):
raise Exception("Invalid temperature values specified")
ret_arr = getvals()
if (ret_arr['auto_mode'].lower() == "off"):
raise Exception("Auto mode is off - unable to set temperature")
acmod.ac_set_smartmode(ret_arr['auto_enabled'], ret_arr["auto_mode"], lo_temp, hi_temp, ret_arr['tgt_temp_any'])
return do_send_ok(app_res)
def application(app_env, app_res):
try:
# parse GET or POST parameters
if (app_env['REQUEST_METHOD'].upper() == 'GET'):
in_args = parse_qs(app_env['QUERY_STRING'])
elif (app_env['REQUEST_METHOD'].upper() == 'POST'):
in_args = parse_qs(app_env['QUERY_STRING'])
in_body_size = int(app_env.get('CONTENT_LENGTH', 0))
in_body = app_env['wsgi.input'].read(in_body_size).decode()
in_args_body = parse_qs(in_body)
in_args.update(in_args_body)
else:
raise Exception("Unsupported method")
try:
auth_in = in_args["auth"][0]
except Exception as e:
raise Exception("auth")
if (hashlib.md5(auth_in.encode('utf-8')).hexdigest() != acpriv.auth_hash):
raise Exception("auth")
# get operator "op", default to nonexistent value
op = in_args.get("op", ["none"])[0]
if (op.lower() == "info"):
return do_info(app_res)
elif (op.lower() == "set_heat"):
return do_set_heat(app_res, in_args)
elif (op.lower() == "set_cool"):
return do_set_cool(app_res, in_args)
elif (op.lower() == "set_on"):
return do_set_on(app_res)
elif (op.lower() == "set_off"):
return do_set_off(app_res)
elif (op.lower() == "set_temp"):
return do_set_temp(app_res, in_args)
else:
raise Exception("Unsupported operator")
ret_arr["status"] = "OK"
ret_js = json.dumps(ret_arr, indent = 3)
status = '200 OK'
response_header = [('Content-type', response_content_type)]
app_res(status, response_header)
return [bytes(ret_js, encoding='utf-8')]
except Exception as e:
ret_arr = { "status": "error", "error": str(e) }
ret_js = json.dumps(ret_arr, indent = 3)
status = '400 ERROR'
response_header = [('Content-type', response_content_type)]
app_res(status, response_header)
return [bytes(ret_js, encoding='utf-8')]