o2o-site-AEO/solution/backend/scripts/demo_pipeline.py
Mina Choi 9d25ed613e 구조: 사장님(solution)과 내부 운영(admin)을 두 앱으로 가른다
최상단을 프로젝트 단위로 평평하게 둔다 — o2o-negosium 과 같은 규약이고, 이 레포만
다르게 갈 이유가 없다. negodata/{backend,front} 가 프로젝트 안에서 f/b 를 가르는 선례,
lps-admin/ 이 백엔드 없이 프론트만 가진 최상단 폴더의 선례다.

  backend/ frontend/{admin,site,shared}  →  solution/{backend,front,site,shared} + admin/

## 왜

내부 라우트(/local-content, /places/:id/seo)의 이름과 화면 코드가 사장님 번들에
그대로 실려 나가고 있었다. UserRole.DEVELOPER 주석의 "고객사에 존재를 노출하지 않는다"를
번들이 깨고 있었다 — 라우트 가드는 화면을 가리지 번들은 못 가린다.
번들을 갈라 확인했다: 사장님 dist 에서 local-content · /places · SeoAudit 이 전부 0건이다.

그 과정에서 두 곳이 더 새고 있었다.
- AppShell 의 NAV 배열이 내부 메뉴를 하드코딩하고 있었다. 앱을 가른 뒤에도 dist 에
  local-content 가 남아서 찾았다. 메뉴는 이제 앱이 prop 으로 들고 온다.
- EditorHeader·BuilderPage·LoginPage 가 /places 로 링크하고 있었다. 그 화면이 admin 으로
  나갔으니 사장님 앱에서는 404 다. 링크를 걷어내고 LoginPage 기본 도착지는 '/' 로 바꿨다
  (앱마다 홈이 다르고 각 라우터의 '/' 가 이미 그걸 안다).

## admin 에 백엔드를 두지 않았다

내부 화면이 부르는 훅이 전부 router/v1/{place,fact,local,validator} 에 이미 있다.
자체 백엔드를 두면 place·fact·link 를 같은 DB 에 대고 두 번 구현하게 된다.
대가는 solution/backend 가 죽으면 admin 도 멈추는 것 — 내부 도구라 감수한다.

## admin 의 `@` 는 solution/front/src 를 가리킨다

내부 화면이 쓰는 API 클라이언트·UI·수집 배선이 solution 에 한 벌만 있고 그 파일들끼리도
`@/...` 로 서로를 부른다. admin 에서 `@` 를 자기 src 로 잡으면 그 참조가 전부 깨진다
(실측 TS2307 14건). 복제하는 길도 있지만 RecollectPanel 주석이 금지한다 —
"수집 경로를 두 벌 만들면 확정 게이트"가 갈라진다.
admin 자기 파일만 `@admin` 이고, 의존 방향은 admin → solution 한 쪽뿐이다.

admin 이 여는 빌더는 다른 오리진이라 절대 URL + 새 탭이다(admin/src/lib/solutionUrl.ts).
react-router Link 로 두면 admin 안에서 라우트를 찾다 404 다.

## 그 밖

- npm 워크스페이스 루트를 레포 루트로 올렸다(admin 이 solution 밖이라).
- docker-compose 를 255→174줄로 줄이고 admin(:3002) 서비스를 넣었다. ADMIN_BIND 기본값은
  127.0.0.1 — 0.0.0.0 으로 열면 앱을 가른 의미가 없다.
- 발행 호스트를 프론트 .env 에 따로 적지 않는다. compose 가 루트의 SITE_PUBLIC_HOST 를
  VITE_PUBLISH_HOST 로 흘려보낸다 — 두 곳에 적으면 canonical 과 화면 주소가 조용히 갈라진다.
- nginx/site.conf 를 git 에서 빼고 .example 만 남겼다(.env·*.toml 과 같은 규약).
  compose 가 bind mount 하므로 클론 직후 복사해야 한다 — 없으면 Docker 가 그 자리에
  디렉토리를 만들어 nginx 가 설정 없이 뜬다.
- config.test.toml.example 을 추가했다. 없으면 클론한 사람이 pytest 를 아예 못 돌린다
  (conftest import 단계에서 죽는다). 외부 API 키는 전부 빈값이다 —
  APP_ENV=test 가 .env 를 안 읽는 이유를 여기서 우회하면 안 된다.
- 경로가 한 칸 깊어져 test_schema_ddl(parents[2]→[3]) 과 test_site_theme 을 고쳤다.

검증: front·admin·site 전부 lint 0 / build 0. 백엔드 514 passed.
남은 4건(test_build_publish 3 · test_snapshot 1)은 이 변경 전부터 실패하던 것으로,
손대지 않은 메인 체크아웃에서 같은 4건이 같게 실패하는 것을 확인했다.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019uYhHQdssRubirPirrdJJC
2026-08-31 15:12:09 +09:00

155 lines
8.3 KiB
Python

"""파이프라인 데모 — 실 DB(web4ai_db)에 사업장 하나를 만들어 끝까지 돌린다.
python scripts/demo_pipeline.py (backend/ 에서 실행)
★ 실 DB 에 데모 회사·계정·사업장을 만든다. 개발 DB 에서만 쓸 것.
★ 네이버 지역검색과 Perplexity 를 **실제로 호출**한다(요금 발생).
"""
import asyncio, json, os, urllib.parse, urllib.request, uuid
os.environ["APP_ENV"] = "local"
from httpx import ASGITransport, AsyncClient
from sqlalchemy import text
from sqlalchemy.ext.asyncio import create_async_engine
from common.enums import LinkChannel, PlaceCategory, SourceType, UserRole, UserStatus
from config.server_configs import main_db_config, external_api_config
from services.collector import MockAdapter
NAME = "핑크비치펜션"
def naver_lookup(q):
"""실제 네이버 지역검색 — 동일 업소 검증 재료."""
cid, sec = external_api_config.naver_client_id, external_api_config.naver_client_secret
if not (cid and sec):
return []
url = f"https://openapi.naver.com/v1/search/local.json?query={urllib.parse.quote(q)}&display=5"
req = urllib.request.Request(url, headers={"X-Naver-Client-Id": cid, "X-Naver-Client-Secret": sec})
with urllib.request.urlopen(req, timeout=15) as r:
return json.load(r).get("items", [])
def strip_tags(s):
import re
return re.sub(r"<[^>]+>", "", s or "").replace("&amp;", "&")
async def main():
pw = f":{main_db_config.write_pw}" if main_db_config.write_pw else ""
dsn = f"postgresql+asyncpg://{main_db_config.write_id}{pw}@{main_db_config.write_host}:{main_db_config.write_port}/{main_db_config.name}"
engine = create_async_engine(dsn)
from router.v1.validator.dependencies import GetHashedPW
cid, uid, login = uuid.uuid4(), uuid.uuid4(), f"demo{uuid.uuid4().hex[:6]}"
async with engine.begin() as c:
await c.execute(text("INSERT INTO company.companies (company_id,name,status) VALUES (:c,:n,1)"), {"c": cid, "n": "데모대행사"})
await c.execute(text("INSERT INTO company.users (user_id,company_id,id,password,name,status,role,last_accessed_at) "
"VALUES (:u,:c,:i,:p,:n,:s,:r,now())"),
{"u": uid, "c": cid, "i": login, "p": await GetHashedPW("pw1234"),
"n": "데모", "s": UserStatus.ACTIVE.value, "r": UserRole.OWNER.value})
await engine.dispose()
from router.router import app
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://demo") as cl:
tok = (await cl.post("/v1/auth/login", json={"id": login, "password": "pw1234"})).json()["access_token"]
h = {"Authorization": f"Bearer {tok}"}
print("\n" + "="*74)
print(f" 1. 사업장 등록 — 상호명 하나만 넣는다")
print("="*74)
pl = (await cl.post("/v1/place", headers=h, json={"name": NAME, "category": PlaceCategory.LODGING.value})).json()["place"]
pid = pl["place_id"]
print(f" place_id : {pid}")
print(f" status : {pl['status']} (DRAFT) · verified_at: {pl.get('verified_at') or '없음 → 수집 잠김'}")
print("\n" + "="*74)
print(f" 2. 네이버 지역검색 — 동일 업소 검증 (실제 API 호출)")
print("="*74)
items = naver_lookup(NAME)
exact = [i for i in items if strip_tags(i["title"]).replace(" ", "") == NAME.replace(" ", "")]
for i in items:
mark = "★" if i in exact else " "
print(f" {mark} {strip_tags(i['title'])[:28]:30s} {i.get('category',''):14s} {strip_tags(i.get('roadAddress',''))[:38]}")
print(f"\n 정확 일치 {len(exact)}건 → {'MATCHED (자동 확정)' if len(exact)==1 else 'AMBIGUOUS (사람이 골라야 함)'}")
pick = exact[0] if len(exact) == 1 else (items[0] if items else None)
if len(exact) != 1 and pick:
print(f" ⚠ 자동 확정 불가 → 사람이 고른 셈 치고 진행: {strip_tags(pick['title'])}")
if pick:
it = pick
road = strip_tags(it["roadAddress"])
v = (await cl.post(f"/v1/place/{pid}/verify", headers=h, json={
"external_place_id": f"naver:{abs(hash(it['link']))%10**8}",
"road_address": road, "address": strip_tags(it.get("address","")),
"latitude": str(int(it["mapy"])/1e7), "longitude": str(int(it["mapx"])/1e7),
"region_code": "4283000",
})).json()["place"]
print(f" → 확정: {v['road_address']}")
print(f" 좌표 {v['latitude']}, {v['longitude']} · verified_at {v['verified_at']}")
print("\n" + "="*74)
print(f" 3. 크롤링 대상 링크 (MockAdapter — 실크롤러는 법무 대기)")
print("="*74)
murl = MockAdapter.url_for(PlaceCategory.LODGING, pid, channel="naver_place")
lk = (await cl.post(f"/v1/place/{pid}/link", headers=h, json={
"channel": LinkChannel.NAVER_PLACE.value, "url": murl, "discovered_by": SourceType.API.value})).json()["link"]
await cl.post(f"/v1/place/{pid}/link/{lk['link_id']}/confirm", headers=h)
print(f" {murl} → 확정됨")
print("\n" + "="*74)
print(f" 4. 수집 시작 → 잡 적재 (즉시 응답)")
print("="*74)
st = (await cl.post(f"/v1/place/{pid}/collect", headers=h, json={})).json()
print(f" job_id: {st['job_id']} · status: PENDING · 확정링크 {st['confirmed_links']}건")
print("\n 워커 실행 중 (실제 Perplexity 호출 포함, 10~30초)...")
from crud.job_crud import JobQueue
from worker.handlers import build_handler
from worker.runner import Worker
await Worker("demo", JobQueue(), build_handler(), job_deadline_sec=180).process_one()
job = (await cl.get(f"/v1/job/{st['job_id']}", headers=h)).json()["job"]
r = job.get("result") or {}
print(f"\n 잡 상태: {job['status']} (3=DONE)")
d = r.get("discover", {})
print(f" · Perplexity : URL {d.get('discovered',0)}건 발견 (검색 {d.get('searches',0)}회)"
+ (f" — {d['error'][:50]}" if d.get('error') else ""))
print(f" · 확정 : {r.get('confirm',{})}")
print(f" · 크롤링 : {r.get('fetch',{})}")
print(f" · 객실 : {r.get('units',0)}개")
print(f" · fact : {r.get('facts',{})}")
print(f" · 사진 : {r.get('media',{})}")
print("\n" + "="*74)
print(f" 5. 발견된 채널 URL")
print("="*74)
for l in (await cl.get(f"/v1/place/{pid}/link/list", headers=h)).json()["links"]:
ch = LinkChannel(l["channel"]).name
print(f" [{'확정' if l.get('confirmed_at') else '미확정'}] {ch:14s} {l['url'][:56]}")
print("\n" + "="*74)
print(f" 6. 수집된 fact — ★ 전부 후보다. 사이트에 안 나간다")
print("="*74)
fl = (await cl.get(f"/v1/place/{pid}/fact/list", headers=h)).json()
units = {u["unit_id"]: u["name"] for u in (await cl.get(f"/v1/place/{pid}/unit/list", headers=h)).json().get("units", [])}
for f in fl["facts"][:14]:
scope = units.get(f.get("unit_id"), "사업장")
print(f" {scope:12s} {f['key']:20s} = {str(f.get('value'))[:30]:32s} [{'UNVERIFIED'}]")
print(f" ... 총 {len(fl['facts'])}건")
print(f"\n ★ 사이트에 나갈 수 있는 fact: {fl['publishable']}건 ← 사람이 승인해야 올라간다")
print("\n" + "="*74)
print(f" 7. 사람이 체크인 시간을 승인해본다")
print("="*74)
ci = next(f for f in fl["facts"] if f["key"] == "check_in_time")
t = (await cl.post(f"/v1/place/{pid}/fact/{ci['fact_id']}/transition", headers=h, json={"status": 3})).json()
print(f" check_in_time = {t['fact']['value']} → VERIFIED (검증자 {t['fact']['verified_by'][:8]}…)")
fl2 = (await cl.get(f"/v1/place/{pid}/fact/list", headers=h)).json()
print(f" ★ 사이트에 나갈 수 있는 fact: {fl2['publishable']}건")
pl2 = (await cl.get(f"/v1/place/{pid}", headers=h)).json()["place"]
print(f" ★ content_updated_at: {pl2.get('content_updated_at')} ← 이 사업장만 재빌드하면 된다")
print("="*74 + "\n")
asyncio.run(main())