blob: 9b2348465ba93e3b2891588ca092c7b0888e04ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
from contextlib import asynccontextmanager
from typing import Annotated
from fastapi import FastAPI, Depends
from .apirouters import agents
from .modules.database import cursor, conn
@asynccontextmanager
async def lifespan(app: FastAPI):
cursor.execute(
"CREATE TABLE IF NOT EXISTS agents(primary_key INTEGER PRIMARY KEY, callsign TEXT NOT NULL UNIQUE, token TEXT NOT NULL)")
conn.commit()
agents.load_agents_from_database()
yield
app = FastAPI(lifespan=lifespan)
app.include_router(agents.router)
@app.get("/{callsign}/tasks")
async def get_tasks(callsign: str, token: Annotated[str, Depends(agents.oauth2_scheme)]):
return f'{{"callsign": "{callsign}", "token": "{token}"}}'
|