AI 예측 - 생성 시점을 킥오프 22시간 전으로 변경(선발투수 예고 이후), 잡 매시간 실행 - 경기 시작 후 생성 금지(사후 예측 방지), 경기 단위 커밋으로 중단 시 진행분 보존 일정·라이브 UI - 야구 일정에 순위 탭 추가 (KBO 단일 순위표 · MLB 6개 디비전, /api/standings 신설) - 경기중 카드에 현재 이닝·실시간 스코어 표시 (30s 폴링, 서버 15s 캐시) - MLB 선발 누락 수정: statsapi 날짜 파라미터 미국 날짜 기준 보정(-1일) - 라이브 대기타석 스크롤바 다크 테마 처리 운영 견고성 - 우천취소: 경기 삭제 → cancelled 상태 보존 (투표·예측 기록 유지, 정산/투표/AI 제외) - 더블헤더: 시작시각순 seq로 1·2차전 분리 등록 (match_id _2, 정산·라이브·프리뷰 매핑) - 축구 데이터 수집을 wc 리그로 한정 (야구 팀을 축구 API에 검색하던 쿼터 낭비 수정) 점수제 - 야구 판정 완화: 근접=득실차 ±1, 부분=한 팀 득점 ±1 (등급·배점은 리그 공통 유지) - 채점 판정을 _grade_of() 단일 함수로 통합, 종료된 야구 경기 재채점 - 배점 안내 모달 야구 문구 분리, docs/SCORING.md 갱신 기타 - 야구 전용 댓글 닉네임 풀 (종목별 세션 캐시 분리) - 리더보드 리그별 조회 연동 (?league=)
66 lines
1.6 KiB
Python
66 lines
1.6 KiB
Python
"""FastAPI 앱 진입점 — API 서버.
|
|
|
|
시작 시 DB 초기화 + 시드. CORS 허용. 라우터 등록.
|
|
스케줄러는 별도 워커 컨테이너(worker.py)에서 실행한다(중복 방지).
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from contextlib import asynccontextmanager
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from .config import settings
|
|
from .database import init_db
|
|
from .routers import (
|
|
admin,
|
|
comments,
|
|
leaderboard,
|
|
matches,
|
|
predictions,
|
|
share,
|
|
standings,
|
|
visits,
|
|
)
|
|
from .scoring import load_scoring_data
|
|
from .seed import seed_if_empty
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
log = logging.getLogger("triplepick")
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(app: FastAPI): # noqa: ANN201
|
|
load_scoring_data() # data/scoring.json → 배점·배제 대상
|
|
await init_db()
|
|
await seed_if_empty()
|
|
log.info("API ready")
|
|
yield
|
|
|
|
|
|
app = FastAPI(title="TriplePick API", version="1.0.0", lifespan=lifespan)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.cors_origin_list,
|
|
allow_credentials=False,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
app.include_router(matches.router)
|
|
app.include_router(comments.router)
|
|
app.include_router(predictions.router)
|
|
app.include_router(leaderboard.router)
|
|
app.include_router(standings.router)
|
|
app.include_router(admin.router)
|
|
app.include_router(visits.router)
|
|
# 공유 미리보기(OG) 프리렌더 — nginx 가 크롤러 UA 의 /match/:id 만 여기로 보낸다.
|
|
app.include_router(share.router)
|
|
|
|
|
|
@app.get("/api/health")
|
|
async def health() -> dict:
|
|
return {"ok": True, "service": "triplepick-api"}
|