diff --git a/.gitignore b/.gitignore index 2eea525..dc12cb7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.env \ No newline at end of file +.env +__pycache__ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 811544c..1863f11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.10 -RUN python -m pip install git+https://github.com/Rapptz/discord.py aiohttp +RUN python -m pip install git+https://github.com/Rapptz/discord.py aiohttp websocket-client ENV PYTHONUNBUFFERED 1 WORKDIR /app COPY ./ ./ diff --git a/bot.py b/bot.py index 2522d8e..1c1aca6 100644 --- a/bot.py +++ b/bot.py @@ -12,6 +12,7 @@ import traceback from exceptions import * import asyncio, sys, argparse from aiohttp.client_exceptions import ClientConnectionError +import ws #Скрыть сообщение если надо ephemeral=True class DiscordClient(commands.Bot): @@ -102,6 +103,7 @@ class DiscordClient(commands.Bot): elif isinstance(error.original, NotFoundPlayerOnServer): return await interaction.followup.send("Игрок не найден на серверах", ephemeral=True) elif isinstance(error.original, UnknownBackendResponse): + traceback.print_exc() return await interaction.followup.send("Ошибка на стороне сервера в исполнении говнокода, стоит подождать или позвать помощь", ephemeral=False) elif isinstance(error.original, discord.errors.NotFound): return await interaction.followup.send("Слишком долгий ответ со стороны сервера, причины:\n1) Возможно бекенд сдох\n2)Cлишком долгий незапланированный ответ с сервера\n3)Стоит позвать помощь", ephemeral=True) @@ -190,7 +192,12 @@ if __name__ == "__main__": DiscordClient("","") sys.exit(0) - DiscordClient( - os.getenv("BACKEND_URL"), - os.getenv("BACKEND_SECRETKEY") - ).run(os.getenv("DISCORD_TOKEN")) \ No newline at end of file + def run(): + DiscordClient( + os.getenv("BACKEND_URL"), + os.getenv("BACKEND_SECRETKEY") + ).run(os.getenv("DISCORD_TOKEN")) + + ws.SERVICE_NAME = "discord_bot" + ws.START_AFTER_CONNECT = run + wsc = ws.WS(os.getenv("BACKEND_URL"), os.getenv("BACKEND_SECRETKEY")) \ No newline at end of file diff --git a/git_build/Dockerfile b/git_build/Dockerfile index 66e95fd..705ed5d 100644 --- a/git_build/Dockerfile +++ b/git_build/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.10 -RUN python -m pip install git+https://github.com/Rapptz/discord.py aiohttp +RUN python -m pip install git+https://github.com/Rapptz/discord.py aiohttp websocket-client WORKDIR /app ENV TZ=Europe/Moscow diff --git a/ws.py b/ws.py new file mode 100644 index 0000000..b7e8cbf --- /dev/null +++ b/ws.py @@ -0,0 +1,51 @@ +import websocket, sys +from threading import Thread +from json import dumps +from time import sleep + +START_AFTER_CONNECT = None +SERVICE_NAME = None + +def create_pulser(ws: websocket.WebSocketApp): + def run(ws): + while 1: + ws.send_text(dumps({"name":SERVICE_NAME})) + sleep(15) + thread = Thread(target=run, args=[ws], daemon=True) + thread.start() + +def start(): + print("substart") + + +class WS: + ws: websocket.WebSocketApp + def __init__(self, backend, auth): + if (START_AFTER_CONNECT is None or SERVICE_NAME is None): + print("Setup START_AFTER_CONNECT and SERVICE_NAME") + sys.exit(1) + else: + print(f"Run after setup {SERVICE_NAME}: {START_AFTER_CONNECT}") + self.ws = websocket.WebSocketApp(backend, cookie="secretkey="+auth, on_close=self.on_close, on_open=self.on_open) + + @staticmethod + def on_close(ws_self, status_code, msg): + print(f"WS Close, code:{status_code}, msg: {msg}") + sys.exit(0) + + @staticmethod + def on_open(ws_self): + print("Connected") + create_pulser(ws_self) + if START_AFTER_CONNECT: + START_AFTER_CONNECT() + + def run(self): + if self.ws.run_forever(): + print("fuck") + +if __name__ == "__main__": + START_AFTER_CONNECT = start + SERVICE_NAME = "test" + wsc = WS("wss://tf2.pblr-nyk.pro/ws/services", "") + wsc.run() \ No newline at end of file