mirror of
https://github.com/mautrix/telegram.git
synced 2026-05-16 23:15:45 +03:00
118 lines
4.4 KiB
Python
118 lines
4.4 KiB
Python
# -*- coding: future_fstrings -*-
|
|
# mautrix-telegram - A Matrix-Telegram puppeting bridge
|
|
# Copyright (C) 2018 Tulir Asokan
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
import argparse
|
|
import sys
|
|
import logging
|
|
import asyncio
|
|
|
|
import sqlalchemy as sql
|
|
from sqlalchemy import orm
|
|
|
|
from telethon_aio.sessions import AlchemySessionContainer
|
|
from mautrix_appservice import AppService
|
|
|
|
from .base import Base
|
|
from .config import Config
|
|
from .matrix import MatrixHandler
|
|
|
|
from .db import init as init_db
|
|
from .abstract_user import init as init_abstract_user
|
|
from .user import init as init_user, User
|
|
from .bot import init as init_bot
|
|
from .portal import init as init_portal
|
|
from .puppet import init as init_puppet
|
|
from .formatter import init as init_formatter
|
|
from .public import PublicBridgeWebsite
|
|
from .context import Context
|
|
|
|
log = logging.getLogger("mau")
|
|
time_formatter = logging.Formatter("[%(asctime)s] [%(levelname)s@%(name)s] %(message)s")
|
|
handler = logging.StreamHandler()
|
|
handler.setFormatter(time_formatter)
|
|
log.addHandler(handler)
|
|
|
|
parser = argparse.ArgumentParser(
|
|
description="A Matrix-Telegram puppeting bridge.",
|
|
prog="python -m mautrix-telegram")
|
|
parser.add_argument("-c", "--config", type=str, default="config.yaml",
|
|
metavar="<path>", help="the path to your config file")
|
|
parser.add_argument("-g", "--generate-registration", action="store_true",
|
|
help="generate registration and quit")
|
|
parser.add_argument("-r", "--registration", type=str, default="registration.yaml",
|
|
metavar="<path>", help="the path to save the generated registration to")
|
|
args = parser.parse_args()
|
|
|
|
config = Config(args.config, args.registration)
|
|
config.load()
|
|
config.check_updates()
|
|
|
|
if args.generate_registration:
|
|
config.generate_registration()
|
|
config.save()
|
|
print(f"Registration generated and saved to {config.registration_path}")
|
|
sys.exit(0)
|
|
|
|
if config["appservice.debug"]:
|
|
telethon_log = logging.getLogger("telethon_aio")
|
|
telethon_log.addHandler(handler)
|
|
telethon_log.setLevel(logging.DEBUG)
|
|
log.setLevel(logging.DEBUG)
|
|
log.debug("Debug messages enabled.")
|
|
|
|
db_engine = sql.create_engine(config.get("appservice.database", "sqlite:///mautrix-telegram.db"))
|
|
db_factory = orm.sessionmaker(bind=db_engine)
|
|
db_session = orm.scoping.scoped_session(db_factory)
|
|
Base.metadata.bind = db_engine
|
|
|
|
telethon_session_container = AlchemySessionContainer(engine=db_engine, session=db_session,
|
|
table_base=Base, table_prefix="telethon_",
|
|
manage_tables=False)
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
appserv = AppService(config["homeserver.address"], config["homeserver.domain"],
|
|
config["appservice.as_token"], config["appservice.hs_token"],
|
|
config["appservice.bot_username"], log="mau.as", loop=loop,
|
|
verify_ssl=config["homeserver.verify_ssl"])
|
|
|
|
context = Context(appserv, db_session, config, loop, None, None, telethon_session_container)
|
|
|
|
if config["appservice.public.enabled"]:
|
|
public = PublicBridgeWebsite(loop)
|
|
appserv.app.add_subapp(config.get("appservice.public.prefix", "/public"), public.app)
|
|
|
|
with appserv.run(config["appservice.hostname"], config["appservice.port"]) as start:
|
|
init_db(db_session)
|
|
init_abstract_user(context)
|
|
context.bot = init_bot(context)
|
|
context.mx = MatrixHandler(context)
|
|
init_formatter(context)
|
|
init_portal(context)
|
|
init_puppet(context)
|
|
startup_actions = init_user(context) + [start, context.mx.init_as_bot()]
|
|
|
|
if context.bot:
|
|
startup_actions.append(context.bot.start())
|
|
|
|
try:
|
|
loop.run_until_complete(asyncio.gather(*startup_actions, loop=loop))
|
|
loop.run_forever()
|
|
except KeyboardInterrupt:
|
|
for user in User.by_tgid.values():
|
|
user.stop()
|
|
sys.exit(0)
|