- 종류 셋(table · drawing · structure) · 뼈대 검사 한 벌(도면.entities · 산출근거.열)
- POST /api/m02/structures/{열 id} — A1 도각 + 빈 산출근거 표(머리 다섯) · 도번 = 있는 것 중 가장 큰 번호 + 1 · 있으면 409 · 없는 열 404
- GET /api/m02/structures/numbers — {열 id: 도번}
- Api_Fetch — Kind 에 structure · StructureDoc · listStructures · createStructure · fetchStructureNumbers
- 폴더 resources/master_template/structure/ · 시험 test_m02_structure.py
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014yTsevyL7QysasVVgWW7vW
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
"""M02 마스터 템플릿 API — 시스템 층(계약 `6_계약.md` 서버 길 첫 묶음).
|
|
|
|
⚠ 권한은 등록하는 쪽(`main.py`)이 `system_admin_only` 로 붙임.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from fastapi import APIRouter, HTTPException
|
|
from pydantic import BaseModel
|
|
|
|
from M02_MasterTemplete import M02_MasterTemplete_Store as store
|
|
|
|
router = APIRouter(prefix="/api/m02", tags=["M02 MasterTemplete"])
|
|
|
|
|
|
class SaveBody(BaseModel):
|
|
판: str = ""
|
|
문서: Any
|
|
|
|
|
|
def _call(fn, *args):
|
|
try:
|
|
return fn(*args)
|
|
except store.StoreError as e:
|
|
raise HTTPException(status_code=e.status, detail=e.detail) from e
|
|
|
|
|
|
@router.get("/templates")
|
|
def get_templates() -> list[dict]:
|
|
return _call(store.list_all)
|
|
|
|
|
|
@router.get("/structures/numbers")
|
|
def get_structure_numbers() -> dict:
|
|
return _call(store.structure_numbers)
|
|
|
|
|
|
@router.post("/structures/{column}")
|
|
def post_structure(column: str) -> dict:
|
|
"""구조물 도면 새로 — 열 id 하나 · 도번 자동 · A1 도각 + 빈 산출근거 표 · 이미 있으면 409."""
|
|
return _call(store.create_structure, column)
|
|
|
|
|
|
@router.get("/templates/{kind}/{name}")
|
|
def get_template(kind: str, name: str) -> dict:
|
|
return _call(store.read, kind, name)
|
|
|
|
|
|
@router.put("/templates/{kind}/{name}")
|
|
def put_template(kind: str, name: str, body: SaveBody) -> dict:
|
|
return _call(store.write, kind, name, body.판, body.문서)
|
|
|
|
|
|
@router.delete("/templates/{kind}/{name}")
|
|
def delete_template(kind: str, name: str, 판: str | None = None) -> dict:
|
|
_call(store.delete, kind, name, 판)
|
|
return {"ok": True}
|