2023-01-07 20:11:46 +00:00
|
|
|
import asyncio
|
2023-01-08 13:01:33 +00:00
|
|
|
import os
|
2023-01-08 12:55:14 +00:00
|
|
|
import sys
|
2023-01-07 21:13:27 +00:00
|
|
|
|
|
|
|
import aiogram as telegram
|
|
|
|
import nio as matrix
|
2023-01-07 20:11:46 +00:00
|
|
|
|
2023-01-08 13:01:33 +00:00
|
|
|
MATRIX_HOMESERVER_URL = os.environ['MATRIX_HOMESERVER_URL']
|
|
|
|
MATRIX_FULL_USER_ID = os.environ['MATRIX_FULL_USER_ID']
|
|
|
|
MATRIX_PASSWORD = os.environ['MATRIX_PASSWORD']
|
|
|
|
TELEGRAM_BOT_TOKEN = os.environ['TELEGRAM_BOT_TOKEN']
|
2023-01-07 21:42:02 +00:00
|
|
|
|
2023-01-08 19:28:13 +00:00
|
|
|
def main():
|
|
|
|
asyncio.run(Application().run())
|
2023-01-07 21:42:02 +00:00
|
|
|
|
2023-01-08 19:28:13 +00:00
|
|
|
class Application:
|
|
|
|
def __init__(self):
|
|
|
|
self.matrix_loop = MatrixLoop(
|
|
|
|
MATRIX_HOMESERVER_URL,
|
|
|
|
MATRIX_FULL_USER_ID,
|
|
|
|
MATRIX_PASSWORD,
|
2023-01-08 13:54:22 +00:00
|
|
|
)
|
2023-01-08 19:28:13 +00:00
|
|
|
self.telegram_loop = TelegramLoop(TELEGRAM_BOT_TOKEN)
|
|
|
|
|
|
|
|
async def run(self):
|
|
|
|
try:
|
|
|
|
await self.matrix_loop.prepare()
|
|
|
|
await asyncio.gather(
|
|
|
|
self.matrix_loop.run(),
|
|
|
|
self.telegram_loop.run(),
|
|
|
|
)
|
|
|
|
finally:
|
|
|
|
if self.matrix_loop:
|
|
|
|
await self.matrix_loop.finish()
|
2023-01-08 18:43:37 +00:00
|
|
|
|
|
|
|
class MatrixLoop:
|
|
|
|
def __init__(self, homeserver_url, full_user_id, password):
|
|
|
|
self.password = password
|
|
|
|
self.client = matrix.AsyncClient(homeserver_url, full_user_id)
|
|
|
|
self.client.add_event_callback(self.on_message, matrix.RoomMessage)
|
|
|
|
|
|
|
|
async def prepare(self):
|
|
|
|
await self.client.login(self.password)
|
|
|
|
|
|
|
|
async def finish(self):
|
|
|
|
await self.client.close()
|
|
|
|
|
|
|
|
async def run(self):
|
|
|
|
await self.client.sync_forever(timeout=30000)
|
2023-01-07 21:05:21 +00:00
|
|
|
|
2023-01-08 18:43:37 +00:00
|
|
|
async def on_message(self, room, event):
|
|
|
|
print(room, event, file=sys.stderr)
|
2023-01-07 20:11:46 +00:00
|
|
|
|
2023-01-08 18:43:37 +00:00
|
|
|
class TelegramLoop:
|
|
|
|
def __init__(self, bot_token):
|
|
|
|
self.bot = telegram.Bot(token=bot_token)
|
|
|
|
self.dispatcher = telegram.Dispatcher(bot=self.bot)
|
|
|
|
self.dispatcher.register_message_handler(self.on_message)
|
2023-01-07 21:29:12 +00:00
|
|
|
|
2023-01-08 18:43:37 +00:00
|
|
|
async def run(self):
|
2023-01-08 18:51:45 +00:00
|
|
|
await self.dispatcher.start_polling()
|
2023-01-08 12:46:08 +00:00
|
|
|
|
2023-01-08 18:43:37 +00:00
|
|
|
async def on_message(self, msg):
|
|
|
|
print(msg, file=sys.stderr)
|
2023-01-08 13:54:22 +00:00
|
|
|
|
2023-01-07 20:11:46 +00:00
|
|
|
if __name__ == '__main__':
|
2023-01-08 19:28:13 +00:00
|
|
|
main()
|