mirror of
https://github.com/civsocit/olgram.git
synced 2023-07-22 01:29:12 +03:00
test
This commit is contained in:
parent
a00652ecce
commit
68107caae4
54
server/custom.py
Normal file
54
server/custom.py
Normal file
@ -0,0 +1,54 @@
|
||||
from aiogram import Bot as AioBot, Dispatcher
|
||||
from aiogram.dispatcher.webhook import WebhookRequestHandler
|
||||
from aiogram.dispatcher.webhook import SendMessage
|
||||
from aiogram import types
|
||||
from olgram.models.models import Bot
|
||||
|
||||
|
||||
async def message_handler(message, *args, **kwargs):
|
||||
if message.text and message.text.startswith("/start"):
|
||||
# На команду start нужно ответить, не пересылая сообщение никуда
|
||||
return SendMessage(chat_id=message.chat.id, text=f'Hi from webhook {args} {kwargs}')
|
||||
|
||||
|
||||
class CustomRequestHandler(WebhookRequestHandler):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self._dispatcher = None
|
||||
super(CustomRequestHandler, self).__init__(*args, **kwargs)
|
||||
|
||||
async def _create_dispatcher(self):
|
||||
key = self.request.url.path[1:]
|
||||
|
||||
bot = await Bot.filter(code=key).first()
|
||||
if not bot:
|
||||
return None
|
||||
|
||||
dp = Dispatcher(AioBot(bot.token))
|
||||
|
||||
dp.register_message_handler(message_handler, content_types=[types.ContentType.TEXT,
|
||||
types.ContentType.CONTACT,
|
||||
types.ContentType.ANIMATION,
|
||||
types.ContentType.AUDIO,
|
||||
types.ContentType.DOCUMENT,
|
||||
types.ContentType.PHOTO,
|
||||
types.ContentType.STICKER,
|
||||
types.ContentType.VIDEO,
|
||||
types.ContentType.VOICE])
|
||||
|
||||
return dp
|
||||
|
||||
async def post(self):
|
||||
# TODO: refactor
|
||||
self._dispatcher = await self._create_dispatcher()
|
||||
res = await super(CustomRequestHandler, self).post()
|
||||
self._dispatcher = None
|
||||
return res
|
||||
|
||||
def get_dispatcher(self):
|
||||
"""
|
||||
Get Dispatcher instance from environment
|
||||
|
||||
:return: :class:`aiogram.Dispatcher`
|
||||
"""
|
||||
return self._dispatcher
|
@ -1,10 +1,15 @@
|
||||
from aiogram import Bot as AioBot, Dispatcher
|
||||
from aiogram.dispatcher.webhook import SendMessage, WebhookRequestHandler
|
||||
from aiogram import types
|
||||
from olgram.models.models import Bot
|
||||
from aiohttp import web
|
||||
from asyncio import get_event_loop
|
||||
from olgram.settings import ServerSettings
|
||||
from custom import CustomRequestHandler
|
||||
|
||||
import logging
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@ -43,47 +48,6 @@ async def unregister_token(token: str):
|
||||
del bot
|
||||
|
||||
|
||||
async def cmd_start(message, *args, **kwargs):
|
||||
return SendMessage(chat_id=message.chat.id, text=f'Hi from webhook, bot {message.via_bot}',
|
||||
reply_to_message_id=message.message_id)
|
||||
|
||||
|
||||
class CustomRequestHandler(WebhookRequestHandler):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self._dispatcher = None
|
||||
super(CustomRequestHandler, self).__init__(*args, **kwargs)
|
||||
|
||||
async def _create_dispatcher(self):
|
||||
key = self.request.url.path[1:]
|
||||
|
||||
bot = await Bot.filter(code=key).first()
|
||||
if not bot:
|
||||
return None
|
||||
|
||||
dp = Dispatcher(AioBot(bot.token))
|
||||
|
||||
dp.register_message_handler(cmd_start, commands=['start'])
|
||||
|
||||
return dp
|
||||
|
||||
async def post(self):
|
||||
# TODO: refactor
|
||||
logger.info(f"post request to {self}")
|
||||
self._dispatcher = await self._create_dispatcher()
|
||||
res = await super(CustomRequestHandler, self).post()
|
||||
self._dispatcher = None
|
||||
return res
|
||||
|
||||
def get_dispatcher(self):
|
||||
"""
|
||||
Get Dispatcher instance from environment
|
||||
|
||||
:return: :class:`aiogram.Dispatcher`
|
||||
"""
|
||||
return self._dispatcher
|
||||
|
||||
|
||||
def main():
|
||||
loop = get_event_loop()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user