feat(feishu): 添加飞书入站事件inbox和混合数据库协调功能 - 实现飞书入站事件持久化inbox机制,支持状态管理、租约锁定和重试退避 - 添加混合数据库基线协调工具,确保平台PostgreSQL结构安全对齐 - 增加运行组件心跳检测和readiness就绪检查机制 - 实现app_ticket事件的安全轮换和验证处理 - 添加生产环境运行编排和fail-closed安全机制 - 支持webhook快速确认和长连接独立进程处理 - 完善个人数据擦除时的待处理事件清理功能 ```
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from app.api.router import api_router
|
|
from app.core.config import get_settings
|
|
from app.core.http.middleware import request_id_middleware
|
|
from app.core.http.responses import MaskedJSONResponse
|
|
from app.application.scheduling import attach_scheduler
|
|
from app.modules.observability.runtime import attach_api_heartbeat
|
|
|
|
|
|
def _allow_cors_credentials(cors_origins: list[str]) -> bool:
|
|
return "*" not in cors_origins
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
"""Create and configure the FastAPI application."""
|
|
|
|
settings = get_settings()
|
|
app = FastAPI(
|
|
title=settings.app_name,
|
|
debug=settings.debug,
|
|
version="0.1.0",
|
|
description=(
|
|
"AI integration layer for company lifecycle management, existing MySQL "
|
|
"project systems, Feishu, OpenClaw, Hermes, and model providers."
|
|
),
|
|
default_response_class=MaskedJSONResponse,
|
|
)
|
|
|
|
app.middleware("http")(request_id_middleware)
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.cors_origins,
|
|
allow_credentials=_allow_cors_credentials(settings.cors_origins),
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
app.include_router(api_router, prefix=settings.api_prefix)
|
|
attach_api_heartbeat(app)
|
|
attach_scheduler(app)
|
|
return app
|
|
|
|
|
|
app = create_app()
|