-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpanel.py
67 lines (49 loc) · 1.61 KB
/
webpanel.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
from aiohttp import web
import aiohttp_jinja2
import json
import jinja2
@aiohttp_jinja2.template("template.jinja2")
async def handle_index(request):
panel = request.app["panel"]
return {"panel": panel.decode()}
async def handle_json_raw(request):
panel = request.app["panel"]
text = text + json.dumps(panel.decode(), indent=4)
return web.Response(text=text)
@aiohttp_jinja2.template("json.jinja2")
async def handle_json(request):
panel = request.app["panel"]
text = json.dumps(panel.decode(), indent=4)
return {"json": text}
@aiohttp_jinja2.template("config.jinja2")
async def handle_config(request):
text = "Config\n\n"
panel = request.app["panel"]
return {"panel": panel.decode()}
@aiohttp_jinja2.template("user-detail.jinja2")
async def handle_user_detail(request):
return {"user": ""}
def get_web_app(mem, io, args, panel):
app = web.Application()
app.add_routes(
[
web.get("/", handle_config),
web.get("/user", handle_user_detail),
web.get("/json", handle_json),
web.static("/static", "static", show_index=True),
]
)
aiohttp_jinja2.setup(app, loader=jinja2.FileSystemLoader("templates"))
app["panel"] = panel
app["args"] = args
return app
async def start_server(mem, io, args, panel):
app = get_web_app(mem, io, args, panel)
runner = web.AppRunner(app)
await runner.setup()
site = web.TCPSite(runner, "", args.web_port)
await site.start()
print(f"Serving web interface on {args.web_port}")
return runner
if __name__ == "__main__":
web.run_app(get_web_app())