This repository was archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.py
53 lines (37 loc) · 1.5 KB
/
app.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
from concurrent.futures import Executor
from typing import Iterator
import concurrent.futures
from sanic import Sanic
from sanic.request import Request
from sanic.response import HTTPResponse
from sanic_oauth.blueprint import login_required
from sanic_oauth.providers import DiscordClient
from sanic_jinja2 import SanicJinja2
from discord_web_panel.discord_entites import User, Guild, get_user, get_guilds
from discord_web_panel.setup_sanic import get_config, get_app, Config
import discord
from discord.ext.commands import Bot
config: Config = get_config("discord_web_panel/config.json")
app: Sanic = get_app("discord_web_panel")
jinja: SanicJinja2 = SanicJinja2(app)
bot: Bot = Bot(command_prefix="!wp ")
@bot.command(name="ping")
async def owo(ctx: discord.ext.commands.Context) -> None:
await ctx.send("pong")
@app.route("/")
@login_required(add_user_info=False)
async def index(request: Request) -> HTTPResponse:
provider: DiscordClient = request.app.oauth_factory(
**{'access_token': request['session']['token']})
user: User = await get_user(provider)
guilds: Iterator[Guild] = await get_guilds(provider)
return jinja.render("index.html", request, user=user, guilds=guilds)
def run_bot() -> None:
bot.run(config.bot_token)
def run_sanic() -> None:
app.run(port=5000, register_sys_signals=False)
if __name__ == "__main__":
executor: Executor
with concurrent.futures.ProcessPoolExecutor() as executor:
executor.submit(run_bot)
executor.submit(run_sanic)