Add config

This commit is contained in:
Alex Kotov 2023-01-08 23:31:11 +04:00
parent 2f5694cffb
commit dfa4c10138
No known key found for this signature in database
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 21 additions and 11 deletions

View File

@ -5,22 +5,32 @@ import sys
import aiogram as telegram
import nio as matrix
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']
def main():
asyncio.run(Application().run())
config = Config(
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'],
)
asyncio.run(Application(config).run())
class Config:
def __init__(self, **kwargs):
self.matrix_homeserver_url = kwargs['matrix_homeserver_url']
self.matrix_full_user_id = kwargs['matrix_full_user_id']
self.matrix_password = kwargs['matrix_password']
self.telegram_bot_token = kwargs['telegram_bot_token']
class Application:
def __init__(self):
def __init__(self, config):
self.config = config
self.matrix_loop = MatrixLoop(
MATRIX_HOMESERVER_URL,
MATRIX_FULL_USER_ID,
MATRIX_PASSWORD,
config.matrix_homeserver_url,
config.matrix_full_user_id,
config.matrix_password,
)
self.telegram_loop = TelegramLoop(TELEGRAM_BOT_TOKEN)
self.telegram_loop = TelegramLoop(config.telegram_bot_token)
async def run(self):
try: