git 저장소가 없어 히스토리·협업 기반이 아예 없던 상태를 연다.
함께 문서를 재편했다. 그동안 문서가 있어도 "이 제품이 뭘 푸는가"와
"어떻게 도는가"를 담은 문서가 없어서, 목표 문장이 backend/frontend
README 두 곳에 복붙돼 있었다 — 상위 문서가 없어 아래로 샌 것이다.
신설
README.md 레포 진입점 + 문서 지도 + 문서 규칙 4가지
AGENTS.md 에이전트·신규 합류자용 함정 목록과 규약
(CLAUDE.md 는 여기로 걸린 심볼릭 링크)
docs/PRODUCT.md 제품 정의 — 문제·사용자·원칙·**non-goals**·성공 기준
docs/ARCHITECTURE.md payload 경계·발행 파이프라인·서빙 결정·앱 분리 설계
이동
backend/docs/DECISIONS.md → docs/DECISIONS.md
백엔드만의 결정이 아니다. 게다가 코드 주석 ~25곳이 이미
`docs/DECISIONS.md` 로 적고 있어 레포 루트 기준으로는 그게 맞다.
갱신
docs/DEPLOY.md 서빙 결정 반영 — nginx 정적 서빙이 지금 경로(3절),
Azure 는 나중에 켤 때(4절)로 분리
docs/ARCHITECTURE.md 사이트 = 한 장(2026-08-31) 구조 반영
docs/COLLECTION_SEO_AEO_FLOW.md
robots.txt·sitemap.xml 은 오리진 루트에만 굽는다는 점 명시
frontend/site/scripts/prerender.ts
헤더 주석의 렌더 보고서 경로가 실제(422줄)와 달라 수정
.gitignore
★ CLAUDE.md 를 더 이상 무시하지 않는다. 에이전트 지침은 팀과 모든
에이전트가 공유하는 규약이라 커밋해야 한다 — 무시하면 클론한 사람이
"배포 후 republish_all.py 필수" 같은 함정을 전달받지 못한다.
개인용 오버라이드는 ~/.claude/CLAUDE.md 에 둔다.
82 lines
3.5 KiB
Python
82 lines
3.5 KiB
Python
from sqlalchemy import and_, select, update
|
|
from sqlalchemy.dialects.postgresql import insert as pg_insert
|
|
|
|
from common.database.db_session_manager import DB_SESSION_MNG
|
|
from common.database.model.models import local_contents
|
|
from common.enums import ErrorType, LocalContentType
|
|
from common.utils.gtime import GTime
|
|
|
|
|
|
class LocalContentCRUD:
|
|
async def list(self, db, status: int | None = None, region_code: str | None = None):
|
|
conds = [local_contents.deleted == False, local_contents.content_type == LocalContentType.FESTIVAL.value] # noqa: E712
|
|
if status is not None:
|
|
conds.append(local_contents.status == status)
|
|
if region_code:
|
|
conds.append(local_contents.region_code == region_code)
|
|
return await DB_SESSION_MNG.execute(
|
|
db, select(local_contents).where(and_(*conds)).order_by(local_contents.collected_at.desc())
|
|
)
|
|
|
|
async def insert(self, db, row):
|
|
return await DB_SESSION_MNG.insert(db, row)
|
|
|
|
async def get_by_external_id(self, db, region_code: str, external_id: str):
|
|
err, rows = await DB_SESSION_MNG.execute(
|
|
db,
|
|
select(local_contents).where(
|
|
local_contents.region_code == region_code,
|
|
local_contents.content_type == LocalContentType.FESTIVAL.value,
|
|
local_contents.external_id == external_id,
|
|
local_contents.deleted == False, # noqa: E712
|
|
).limit(1),
|
|
)
|
|
return err, rows[0] if rows else None
|
|
|
|
async def publish(self, db, ids: list, user_id):
|
|
return await DB_SESSION_MNG.add_with_rowcount(
|
|
db,
|
|
update(local_contents).where(
|
|
local_contents.local_content_id.in_(ids), local_contents.deleted == False # noqa: E712
|
|
).values(status=2, published_at=GTime.UTC(), published_by=user_id, updated_at=GTime.UTC()),
|
|
)
|
|
|
|
async def update(self, db, content_id, data: dict):
|
|
return await DB_SESSION_MNG.add_with_rowcount(
|
|
db,
|
|
update(local_contents).where(
|
|
local_contents.local_content_id == content_id, local_contents.deleted == False # noqa: E712
|
|
).values(**data, updated_at=GTime.UTC()),
|
|
)
|
|
|
|
async def end(self, db, content_id):
|
|
return await self.update(db, content_id, {"status": 3})
|
|
|
|
async def get_weather(self, db, region_code: str):
|
|
err, rows = await DB_SESSION_MNG.execute(
|
|
db,
|
|
select(local_contents).where(
|
|
local_contents.region_code == region_code,
|
|
local_contents.content_type == LocalContentType.WEATHER.value,
|
|
local_contents.external_id.is_(None),
|
|
local_contents.deleted == False, # noqa: E712
|
|
).limit(1),
|
|
)
|
|
return err, rows[0] if rows else None
|
|
|
|
async def upsert_weather(self, db, values: dict):
|
|
stmt = pg_insert(local_contents).values(**values)
|
|
stmt = stmt.on_conflict_do_update(
|
|
index_elements=[local_contents.region_code, local_contents.content_type],
|
|
index_where=and_(local_contents.deleted == False, local_contents.external_id.is_(None)), # noqa: E712
|
|
set_={
|
|
"source": stmt.excluded.source,
|
|
"body": stmt.excluded.body,
|
|
"status": stmt.excluded.status,
|
|
"collected_at": stmt.excluded.collected_at,
|
|
"expires_at": stmt.excluded.expires_at,
|
|
"updated_at": stmt.excluded.updated_at,
|
|
},
|
|
)
|
|
return await DB_SESSION_MNG.add(db, stmt)
|