-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathadmin.py
39 lines (30 loc) · 1.14 KB
/
admin.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
import json
import asyncio
config = {}
async def reply_http(reply, ver, code, content):
await reply(code, f'{ver} {code}\r\nConnection: close\r\nContent-Type: text/plain\r\nCache-Control: max-age=900\r\nContent-Length: {len(content)}\r\n\r\n'.encode(), content, True)
async def status_handler(reply, **kwarg):
method = kwarg.get('method')
if method == 'GET':
data = {"status": "ok"}
value = json.dumps(data).encode()
ver = kwarg.get('ver')
await reply_http(reply, ver, '200 OK', value)
async def configs_handler(reply, **kwarg):
method = kwarg.get('method')
ver = kwarg.get('ver')
if method == 'GET':
data = {"argv": config['argv']}
value = json.dumps(data).encode()
await reply_http(reply, ver, '200 OK', value)
elif method == 'POST':
config['argv'] = kwarg.get('content').decode().split(' ')
config['reload'] = True
data = {"result": 'ok'}
value = json.dumps(data).encode()
await reply_http(reply, ver, '200 OK', value)
raise KeyboardInterrupt
httpget = {
'/status': status_handler,
'/configs': configs_handler,
}