|
| 1 | +""" |
| 2 | +Main module for the API server. |
| 3 | +""" |
| 4 | + |
| 5 | +from asyncio import set_event_loop |
| 6 | +from contextlib import asynccontextmanager |
| 7 | +from logging import INFO |
| 8 | +from typing import TYPE_CHECKING, Any, Optional |
| 9 | + |
| 10 | +from fastapi import FastAPI |
| 11 | +from uvicorn import Config, Server, run |
| 12 | +from uvicorn.config import LOGGING_CONFIG |
| 13 | + |
| 14 | +from bot.database import Database |
| 15 | +from bot.utils.config import config as bot_config |
| 16 | +from bot.utils.logger import DATE_FMT_STR, LOG_FMT_COLOR, create_logger |
| 17 | + |
| 18 | +from .routes.account import account_router |
| 19 | +from .routes.oauth import oauth_router |
| 20 | +from .utils.session import SessionManager |
| 21 | + |
| 22 | +if TYPE_CHECKING: |
| 23 | + from asyncio import AbstractEventLoop |
| 24 | + |
| 25 | + |
| 26 | +_database: Optional[Database] = None |
| 27 | + |
| 28 | + |
| 29 | +@asynccontextmanager |
| 30 | +async def lifespan(app: FastAPI): |
| 31 | + logger = create_logger('api.lifespan') |
| 32 | + |
| 33 | + if _database is None: |
| 34 | + logger.warn('Manually creating database connection') |
| 35 | + database = Database(bot_config.db_file) |
| 36 | + else: |
| 37 | + logger.info('Connecting to database from FastAPI') |
| 38 | + database = _database |
| 39 | + |
| 40 | + app.state.database = database |
| 41 | + app.state.session_manager = SessionManager(database) |
| 42 | + yield |
| 43 | + |
| 44 | + |
| 45 | +app = FastAPI(lifespan=lifespan) |
| 46 | +app.include_router(account_router) |
| 47 | +app.include_router(oauth_router) |
| 48 | + |
| 49 | + |
| 50 | +@app.get('/') |
| 51 | +async def health_check(): |
| 52 | + return {'status': 'ok'} |
| 53 | + |
| 54 | + |
| 55 | +def _get_log_config() -> dict[str, Any]: |
| 56 | + log_config = LOGGING_CONFIG |
| 57 | + log_config['formatters']['default']['fmt'] = LOG_FMT_COLOR[INFO] |
| 58 | + log_config['formatters']['default']['datefmt'] = DATE_FMT_STR |
| 59 | + log_config['formatters']['access']['fmt'] = LOG_FMT_COLOR[INFO] |
| 60 | + |
| 61 | + return log_config |
| 62 | + |
| 63 | + |
| 64 | +def run_app(loop: 'AbstractEventLoop', db: Database): |
| 65 | + """ |
| 66 | + Run the API server in the bot's event loop. |
| 67 | + """ |
| 68 | + global _database # noqa: PLW0603 |
| 69 | + _database = db |
| 70 | + |
| 71 | + set_event_loop(loop) |
| 72 | + |
| 73 | + config = Config( |
| 74 | + app=app, |
| 75 | + loop=loop, # type: ignore |
| 76 | + host='0.0.0.0', |
| 77 | + port=bot_config.server_port, |
| 78 | + log_config=_get_log_config(), |
| 79 | + ) |
| 80 | + server = Server(config) |
| 81 | + |
| 82 | + loop.create_task(server.serve()) |
| 83 | + |
| 84 | + |
| 85 | +if __name__ == '__main__': |
| 86 | + run( |
| 87 | + app='bot.api.main:app', |
| 88 | + host='127.0.0.1', |
| 89 | + port=bot_config.server_port, |
| 90 | + reload=True, |
| 91 | + reload_dirs=['bot/api'], |
| 92 | + log_config=_get_log_config(), |
| 93 | + ) |
0 commit comments