# -*- coding: future_fstrings -*- # mautrix-telegram - A Matrix-Telegram puppeting bridge # Copyright (C) 2019 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 . from typing import Optional, Tuple, TYPE_CHECKING if TYPE_CHECKING: import asyncio from alchemysession import AlchemySessionContainer from mautrix_appservice import AppService from .web import PublicBridgeWebsite, ProvisioningAPI from .config import Config from .bot import Bot from .matrix import MatrixHandler class Context: def __init__(self, az: 'AppService', config: 'Config', loop: 'asyncio.AbstractEventLoop', session_container: 'AlchemySessionContainer', bot: Optional['Bot']) -> None: self.az = az # type: AppService self.config = config # type: Config self.loop = loop # type: asyncio.AbstractEventLoop self.bot = bot # type: Optional[Bot] self.mx = None # type: Optional[MatrixHandler] self.session_container = session_container # type: AlchemySessionContainer self.public_website = None # type: Optional[PublicBridgeWebsite] self.provisioning_api = None # type: Optional[ProvisioningAPI] @property def core(self) -> Tuple['AppService', 'Config', 'asyncio.AbstractEventLoop', Optional['Bot']]: return self.az, self.config, self.loop, self.bot