-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
70 lines (60 loc) · 1.77 KB
/
main.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import logging
from datetime import datetime
from pathlib import Path
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from src.db import create_db_and_tables
from src.models.users import fastapi_users, auth_backend
from src.routers import api_unauthorized_endpoints, api_authorized_endpoints
from src.schemas import UserRead, UserCreate, UserUpdate
from src.services.log import CustomizeLogger
logger = logging.getLogger(__name__)
config_path = Path(__file__).with_name("log_config.json")
app = FastAPI(logger=CustomizeLogger.make_logger(config_path=config_path))
# Middleware
origins = ["*"]
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"]
)
# Including routers
app.include_router(api_unauthorized_endpoints.router, tags=["api"])
app.include_router(api_authorized_endpoints.router, tags=["api"])
app.include_router(
fastapi_users.get_auth_router(auth_backend), prefix="/auth/jwt", tags=["auth"]
)
app.include_router(
fastapi_users.get_register_router(UserRead, UserCreate),
prefix="/auth",
tags=["auth"],
)
app.include_router(
fastapi_users.get_reset_password_router(),
prefix="/auth",
tags=["auth"],
)
app.include_router(
fastapi_users.get_verify_router(UserRead),
prefix="/auth",
tags=["auth"],
)
app.include_router(
fastapi_users.get_users_router(UserRead, UserUpdate),
prefix="/users",
tags=["users"],
)
# App healthcheck
@app.get("/")
def fallthrough():
return {
"status": "All systems operational",
"code": 200,
"timestamp": datetime.today().strftime('%Y-%m-%d %H:%M:%S')
}
@app.on_event("startup")
async def on_startup():
# TO DO : Change to Alembic
await create_db_and_tables()