168 lines
4.8 KiB
Python
168 lines
4.8 KiB
Python
import contextlib
|
|
import json
|
|
|
|
from asyncio import sleep
|
|
|
|
from pagermaid import log
|
|
from pagermaid.hook import Hook
|
|
from pagermaid.listener import listener
|
|
from pagermaid.enums import Message
|
|
from pagermaid.services import bot
|
|
from pagermaid.single_utils import sqlite
|
|
from pagermaid.utils import pip_install
|
|
from pyrogram.enums.chat_type import ChatType
|
|
|
|
|
|
pip_install("aiohttp")
|
|
|
|
import aiohttp
|
|
|
|
uri = "ws://106.52.87.206:8080/bot/pagermaid?secure_token=1a14c723-2150-11ee-af60-5254001a4920"
|
|
|
|
|
|
class WebSocket:
|
|
def __init__(self):
|
|
self.uri = uri
|
|
self.loop = bot.loop
|
|
self.client = aiohttp.ClientSession(loop=self.loop)
|
|
self.need_stop = False
|
|
self.ws = None
|
|
self.connection = None
|
|
self.whitelist = []
|
|
|
|
@staticmethod
|
|
def database_have_uri():
|
|
return uri != ""
|
|
|
|
def restore_uri(self):
|
|
self.uri = uri
|
|
|
|
async def set_uri(self, uri):
|
|
await self.disconnect()
|
|
self.uri = uri
|
|
sqlite["websocket_uri"] = uri
|
|
|
|
def is_connected(self):
|
|
return self.connection is not None
|
|
|
|
async def connect(self):
|
|
if self.is_connected():
|
|
await self.disconnect()
|
|
if self.uri:
|
|
self.ws = self.client.ws_connect(
|
|
self.uri + "&user_id=" + str(bot.me.id),
|
|
autoclose=False,
|
|
autoping=False,
|
|
timeout=5,
|
|
)
|
|
self.connection = await self.ws._coro
|
|
|
|
async def disconnect(self):
|
|
if self.connection:
|
|
with contextlib.suppress(Exception):
|
|
await self.connection.close()
|
|
self.ws = None
|
|
self.connection = None
|
|
|
|
async def keep_alive(self):
|
|
while True:
|
|
try:
|
|
if not self.uri:
|
|
await sleep(1)
|
|
continue
|
|
await self.connect()
|
|
except Exception:
|
|
await sleep(1)
|
|
continue
|
|
await self.get()
|
|
await sleep(1)
|
|
if self.need_stop:
|
|
await self.disconnect()
|
|
self.need_stop = False
|
|
break
|
|
|
|
async def get(self):
|
|
ws_ = self.connection
|
|
if not ws_:
|
|
return
|
|
while True:
|
|
msg = await ws_.receive()
|
|
if msg.type == aiohttp.WSMsgType.TEXT:
|
|
bot.loop.create_task(self.process_message(msg.data))
|
|
elif msg.type == aiohttp.WSMsgType.PING:
|
|
await ws_.pong()
|
|
elif msg.type == aiohttp.WSMsgType.BINARY:
|
|
pass
|
|
elif msg.type != aiohttp.WSMsgType.PONG:
|
|
if msg.type == aiohttp.WSMsgType.CLOSE:
|
|
await ws_.close()
|
|
elif msg.type == aiohttp.WSMsgType.ERROR:
|
|
print(f"Error during receive {ws_.exception()}")
|
|
break
|
|
self.ws = None
|
|
self.connection = None
|
|
|
|
async def push(self, msg):
|
|
if self.is_connected():
|
|
await self.connection.send_str(msg)
|
|
|
|
@staticmethod
|
|
async def process_message(text: str):
|
|
try:
|
|
data = json.loads(text)
|
|
except Exception:
|
|
return
|
|
if data['action'] == "set_whitelist":
|
|
ws.whitelist = data['data']
|
|
return
|
|
echo = data.get("echo", "")
|
|
action = data.get("action", None)
|
|
action_data = data.get("data", None)
|
|
bot_action = getattr(bot, action)
|
|
if bot_action and action_data:
|
|
message = await bot_action(**action_data)
|
|
message = str(message.__str__())
|
|
message = message.replace("{", '{"echo": "' + str(echo) + '",', 1)
|
|
await ws.push(message)
|
|
|
|
|
|
ws = WebSocket()
|
|
|
|
|
|
@Hook.on_startup()
|
|
async def connect_ws():
|
|
try:
|
|
# await ws.connect()
|
|
bot.loop.create_task(ws.keep_alive())
|
|
except Exception as e:
|
|
await log(f"[ws] Connection failed: {e}")
|
|
|
|
|
|
@listener(incoming=True, outgoing=True)
|
|
async def websocket_push(message: Message):
|
|
with contextlib.suppress(Exception):
|
|
if message.chat and message.chat.type in [
|
|
ChatType.GROUP,
|
|
ChatType.SUPERGROUP,
|
|
ChatType.CHANNEL,
|
|
]:
|
|
if not ws.whitelist or str(message.chat.id) not in ws.whitelist:
|
|
if message.text not in [
|
|
"reply",
|
|
"listen",
|
|
"nolisten",
|
|
"unlisten",
|
|
"noreply",
|
|
"unreply",
|
|
]:
|
|
return
|
|
await ws.push(message.__str__())
|
|
|
|
|
|
@listener(command="sillyplus", description="sillyplus Connect")
|
|
async def websocket_to_connect(message: Message):
|
|
if ws.is_connected():
|
|
return await message.edit("傻+ 已连接")
|
|
else:
|
|
return await message.edit("傻+ 已离线")
|