This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
forked from varkaria/guweb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
executable file
·118 lines (95 loc) · 3.2 KB
/
main.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
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-
__all__ = ()
import os
import time
import aiohttp
import orjson
from quart import Quart
from quart import render_template
from cmyui.logging import Ansi
from cmyui.logging import log
from cmyui.mysql import AsyncSQLPool
from cmyui.version import Version
from objects import glob
from objects.privileges import Privileges
app = Quart(__name__)
version = Version(1, 3, 0)
# used to secure session data.
# we recommend using a long randomly generated ascii string.
app.secret_key = glob.config.secret_key
@app.before_serving
async def mysql_conn() -> None:
glob.db = AsyncSQLPool()
await glob.db.connect(glob.config.mysql) # type: ignore
log('Connected to MySQL!', Ansi.LGREEN)
@app.before_serving
async def http_conn() -> None:
glob.http = aiohttp.ClientSession(json_serialize=lambda x: orjson.dumps(x).decode())
log('Got our Client Session!', Ansi.LGREEN)
@app.after_serving
async def shutdown() -> None:
await glob.db.close()
await glob.http.close()
# globals which can be used in template code
@app.template_global()
def appVersion() -> str:
return repr(version)
@app.template_global()
def appName() -> str:
return glob.config.app_name
@app.template_global()
def captchaKey() -> str:
return glob.config.hCaptcha_sitekey
@app.template_global()
def domain() -> str:
return glob.config.domain
@app.template_global()
def beatmap_download_mirror() -> str:
return glob.config.beatmap_download_mirror
# Verified/Unrestricted -> Normal
# Dangerous/Admin/Mod -> Staff
# Supporter/Premium -> Donator
# Not verified -> Not verified or a bot
# Not unrestricted -> Restricted
@app.template_global()
def format_priv(target_priv: int) -> set:
priv_list = [
priv.name
for priv in Privileges
if target_priv & priv and bin(priv).count("1") == 1
][::-1]
if "Normal" not in priv_list:
return ["Restricted"]
if "Verified" not in priv_list:
return ["Not verified or a bot"]
if set(["Verified", "Unrestricted"]).issubset(priv_list):
priv_list.remove("Verified")
priv_list.remove("Unrestricted")
priv_list.append("Normal")
if set(["Dangerous", "Admin", "Mod"]).issubset(priv_list):
priv_list.remove("Dangerous")
priv_list.remove("Admin")
priv_list.remove("Mod")
priv_list.append("Staff")
if set(["Supporter", "Premium"]).issubset(priv_list):
priv_list.remove("Supporter")
priv_list.remove("Premium")
priv_list.append("Donator")
if "Normal" in priv_list and len(priv_list) != 1:
priv_list.remove("Normal")
return priv_list
@app.template_global()
def handle_timestamp(timestamp):
return time.strftime("%Y-%m-%d %H:%M", time.localtime(int(timestamp)))
from blueprints.frontend import frontend
app.register_blueprint(frontend)
from blueprints.admin import admin
app.register_blueprint(admin, url_prefix='/admin')
@app.errorhandler(404)
async def page_not_found(e):
# NOTE: we set the 404 status explicitly
return (await render_template('404.html'), 404)
if __name__ == '__main__':
os.chdir(os.path.dirname(os.path.realpath(__file__)))
app.run(port=8000, debug=glob.config.debug) # blocking call