Move messengers to separate module (#3)
Co-authored-by: Alex Kotov <kotovalexarian@gmail.com> Reviewed-on: #3
This commit is contained in:
parent
f212a8d411
commit
2ea41e1187
|
@ -1,7 +1,6 @@
|
|||
import asyncio
|
||||
|
||||
from matrix import MatrixLoop
|
||||
from abstract_source_platform.telegram import Telegram
|
||||
from messengers import Matrix as MatrixLoop, Telegram as TelegramLoop
|
||||
|
||||
from config_dataclass import Config
|
||||
|
||||
|
@ -18,14 +17,14 @@ class Application:
|
|||
def __init__(self, config):
|
||||
self.config = config
|
||||
self.matrix_loop = MatrixLoop(self)
|
||||
self.telegram = Telegram(self)
|
||||
self.telegram_loop = TelegramLoop(self)
|
||||
|
||||
async def run(self):
|
||||
try:
|
||||
await self.matrix_loop.prepare()
|
||||
await asyncio.gather(
|
||||
self.matrix_loop.run(),
|
||||
self.telegram.run(),
|
||||
self.telegram_loop.run(),
|
||||
)
|
||||
finally:
|
||||
if self.matrix_loop:
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
from abstract_source_platform.telegram import Telegram
|
||||
|
||||
platforms = [Telegram]
|
|
@ -1,9 +0,0 @@
|
|||
from abc import ABC, abstractmethod
|
||||
|
||||
from models.user import User
|
||||
|
||||
|
||||
class AbstractSourcePlatform(ABC):
|
||||
@abstractmethod
|
||||
def get_user_information(self) -> User:
|
||||
"""Init tables in database"""
|
|
@ -1,24 +0,0 @@
|
|||
import sys
|
||||
import aiogram as telegram
|
||||
|
||||
from abstract_source_platform.abstact_source_platform import (
|
||||
AbstractSourcePlatform,
|
||||
)
|
||||
from models.user import User
|
||||
|
||||
|
||||
class Telegram(AbstractSourcePlatform):
|
||||
def __init__(self, app):
|
||||
self.app = app
|
||||
self.bot = telegram.Bot(token=app.config.telegram_bot_token)
|
||||
self.dispatcher = telegram.Dispatcher(bot=self.bot)
|
||||
self.dispatcher.register_message_handler(self.on_message)
|
||||
|
||||
async def run(self):
|
||||
await self.dispatcher.start_polling()
|
||||
|
||||
async def on_message(self, msg):
|
||||
print(msg, file=sys.stderr)
|
||||
|
||||
async def get_user_information(self) -> User:
|
||||
pass
|
|
@ -1,35 +0,0 @@
|
|||
import nio as matrix
|
||||
import sys
|
||||
|
||||
|
||||
class MatrixLoop:
|
||||
def __init__(self, app):
|
||||
self.app = app
|
||||
self.client = matrix.AsyncClient(
|
||||
app.config.matrix_homeserver_url,
|
||||
app.config.matrix_full_bot_id,
|
||||
)
|
||||
self.client.add_event_callback(self.on_message, matrix.RoomMessage)
|
||||
|
||||
async def prepare(self):
|
||||
await self.client.login(self.app.config.matrix_bot_password)
|
||||
|
||||
async def finish(self):
|
||||
await self.client.close()
|
||||
|
||||
async def run(self):
|
||||
await self.client.sync_forever(timeout=30000)
|
||||
|
||||
async def on_message(self, room, event):
|
||||
print(room, event, file=sys.stderr)
|
||||
|
||||
def upgrade_room(self, room, telegram_nickname):
|
||||
event_dict = matrix.event_builders.event_builder.EventBuilder(
|
||||
name=telegram_nickname
|
||||
).as_dict()
|
||||
client.room_send(
|
||||
room_id=room,
|
||||
message_type=event_dict["type"],
|
||||
content=event_dict["content"],
|
||||
) # предположу что оно так работает
|
||||
# https://matrix-nio.readthedocs.io/en/latest/nio.html#module-nio.event_builders.state_events
|
2
mirrortea/messengers/__init__.py
Normal file
2
mirrortea/messengers/__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
from .matrix import Matrix
|
||||
from .telegram import Telegram
|
23
mirrortea/messengers/matrix.py
Normal file
23
mirrortea/messengers/matrix.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
import nio
|
||||
import sys
|
||||
|
||||
class Matrix:
|
||||
def __init__(self, app):
|
||||
self.app = app
|
||||
self.client = nio.AsyncClient(
|
||||
app.config.matrix_homeserver_url,
|
||||
app.config.matrix_full_bot_id,
|
||||
)
|
||||
self.client.add_event_callback(self.on_message, nio.RoomMessage)
|
||||
|
||||
async def prepare(self):
|
||||
await self.client.login(self.app.config.matrix_bot_password)
|
||||
|
||||
async def finish(self):
|
||||
await self.client.close()
|
||||
|
||||
async def run(self):
|
||||
await self.client.sync_forever(timeout=30000)
|
||||
|
||||
async def on_message(self, room, event):
|
||||
print(room, event, file=sys.stderr)
|
15
mirrortea/messengers/telegram.py
Normal file
15
mirrortea/messengers/telegram.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
import aiogram
|
||||
import sys
|
||||
|
||||
class Telegram:
|
||||
def __init__(self, app):
|
||||
self.app = app
|
||||
self.bot = aiogram.Bot(token=app.config.telegram_bot_token)
|
||||
self.dispatcher = aiogram.Dispatcher(bot=self.bot)
|
||||
self.dispatcher.register_message_handler(self.on_message)
|
||||
|
||||
async def run(self):
|
||||
await self.dispatcher.start_polling()
|
||||
|
||||
async def on_message(self, msg):
|
||||
print(msg, file=sys.stderr)
|
Reference in a new issue