1 Star 0 Fork 97

xhyue / fastapi

forked from binkuolo / fastapi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.py 3.71 KB
一键复制 编辑 原始数据 按行查看 历史
# -*- coding:utf-8 -*-
"""
@Created on : 2022/4/22 22:02
@Author: binkuolo
@Des: app运行时文件
"""
from fastapi import FastAPI, HTTPException
from fastapi.exceptions import RequestValidationError
from fastapi.middleware.cors import CORSMiddleware
from starlette.middleware.sessions import SessionMiddleware
from config import settings
from fastapi.staticfiles import StaticFiles
from core import Exception, Events, Router, Middleware
from fastapi.templating import Jinja2Templates
from tortoise.exceptions import OperationalError, DoesNotExist, IntegrityError, ValidationError
from fastapi.openapi.docs import (get_redoc_html, get_swagger_ui_html, get_swagger_ui_oauth2_redirect_html)
from fastapi.openapi.utils import get_openapi
application = FastAPI(
debug=settings.APP_DEBUG,
docs_url=None,
redoc_url=None,
swagger_ui_oauth2_redirect_url=settings.SWAGGER_UI_OAUTH2_REDIRECT_URL,
)
# custom_openapi
def custom_openapi():
if application.openapi_schema:
return application.openapi_schema
openapi_schema = get_openapi(
description=settings.DESCRIPTION,
version=settings.VERSION,
title=settings.PROJECT_NAME,
routes=app.routes,
)
openapi_schema["info"]["x-logo"] = {
"url": "/logo-teal.png"
}
application.openapi_schema = openapi_schema
return application.openapi_schema
application.openapi = custom_openapi
# custom_swagger_ui_html
@application.get("/docs", include_in_schema=False)
async def custom_swagger_ui_html():
return get_swagger_ui_html(
openapi_url=application.openapi_url,
title=application.title + " - Swagger UI",
oauth2_redirect_url=application.swagger_ui_oauth2_redirect_url,
swagger_js_url="/swagger-ui-bundle.js",
swagger_css_url="/swagger-ui.css",
)
# swagger_ui_oauth2_redirect_url
@application.get(application.swagger_ui_oauth2_redirect_url, include_in_schema=False)
async def swagger_ui_redirect():
return get_swagger_ui_oauth2_redirect_html()
# redoc
@application.get("/redoc", include_in_schema=False)
async def redoc_html():
return get_redoc_html(
openapi_url=application.openapi_url,
title=application.title + " - ReDoc",
redoc_js_url="/redoc.standalone.js",
)
# 事件监听
application.add_event_handler("startup", Events.startup(application))
application.add_event_handler("shutdown", Events.stopping(application))
# 异常错误处理
application.add_exception_handler(HTTPException, Exception.http_error_handler)
application.add_exception_handler(RequestValidationError, Exception.http422_error_handler)
application.add_exception_handler(Exception.UnicornException, Exception.unicorn_exception_handler)
application.add_exception_handler(DoesNotExist, Exception.mysql_does_not_exist)
application.add_exception_handler(IntegrityError, Exception.mysql_integrity_error)
application.add_exception_handler(ValidationError, Exception.mysql_validation_error)
application.add_exception_handler(OperationalError, Exception.mysql_operational_error)
# 中间件
application.add_middleware(Middleware.BaseMiddleware)
application.add_middleware(
CORSMiddleware,
allow_origins=settings.CORS_ORIGINS,
allow_credentials=settings.CORS_ALLOW_CREDENTIALS,
allow_methods=settings.CORS_ALLOW_METHODS,
allow_headers=settings.CORS_ALLOW_HEADERS,
)
application.add_middleware(
SessionMiddleware,
secret_key=settings.SECRET_KEY,
session_cookie=settings.SESSION_COOKIE,
max_age=settings.SESSION_MAX_AGE
)
# 路由
application.include_router(Router.router)
# 静态资源目录
application.mount('/', StaticFiles(directory=settings.STATIC_DIR), name="static")
application.state.views = Jinja2Templates(directory=settings.TEMPLATE_DIR)
app = application
1
https://gitee.com/hyue95/fastapi.git
git@gitee.com:hyue95/fastapi.git
hyue95
fastapi
fastapi
main

搜索帮助