Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d12dee3278 | |||
| 996f614a4e | |||
| 7f59305f56 | |||
| 5a27b43dff | |||
| a0e2697a9b | |||
| 2f60fbf655 | |||
| f68fb10bac | |||
| c1b7d29eb8 | |||
| ce3505cd33 | |||
| e97397ddbf | |||
| 6ed3de2749 | |||
| 3e7120c041 | |||
| 784f4bdbfb | |||
| 28e1a8775f | |||
| fe8ff44d3f | |||
| d5d630a816 | |||
| 60022ed214 | |||
| 90bbb1860d | |||
| 3e4d545e01 | |||
| 8bd678c7c7 | |||
| 1255e67765 | |||
| a02543981e | |||
| 227b563ba2 |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(grep *)",
|
||||
"Bash(git status *)",
|
||||
"Bash(git log *)",
|
||||
"Bash(git diff *)",
|
||||
"Bash(git show *)",
|
||||
"Bash(git branch *)",
|
||||
"Bash(git ls-remote *)",
|
||||
"Bash(git remote *)",
|
||||
"Bash(dotnet restore)",
|
||||
"Bash(dotnet build *)",
|
||||
"Bash(dotnet test *)",
|
||||
"Bash(curl -s *)",
|
||||
"PowerShell(Get-Process *)",
|
||||
"PowerShell(dotnet build *)",
|
||||
"PowerShell(dotnet test *)",
|
||||
"PowerShell(dotnet run *)"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -2,28 +2,33 @@ name: Deploy to Production
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: deploy-prod-main
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
DEPLOY_HOST: 172.17.0.1
|
||||
DEPLOY_HOST: 178.104.200.7
|
||||
DEPLOY_USER: kjh2064
|
||||
DEPLOY_PATH: /home/kjh2064/quantengine_active
|
||||
SERVICE_NAME: quantengine
|
||||
DOTNET_VERSION: '10.0.x'
|
||||
TELEGRAM_BOT_TOKEN_DEFAULT: "8734507814:AAFyacLMai8GB4K-hQ_Nd3t3D01A-h1ZdV0"
|
||||
QUANTENGINE_DB_NAME: quantenginedb
|
||||
QUANTENGINE_DB_USER: quantengine_app
|
||||
TELEGRAM_BOT_TOKEN_DEFAULT: "8734507814:AAFyacLMai8GB4K-hQ_Nd3t3D01A-H1ZdV0"
|
||||
TELEGRAM_CHAT_ID_DEFAULT: "-5460205872"
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
name: Build & Deploy to Production
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
@@ -48,7 +53,6 @@ jobs:
|
||||
- name: Ensure Temp Directory and Mock Packet
|
||||
run: |
|
||||
mkdir -p Temp
|
||||
# 빈 패킷 객체를 생성하여 dotnet test/run 시 IO Exception 방어
|
||||
if [ ! -f Temp/final_decision_packet_active.json ]; then
|
||||
echo '{"active_decision": "PASS", "details": "CI dummy packet"}' > Temp/final_decision_packet_active.json
|
||||
fi
|
||||
@@ -60,39 +64,33 @@ jobs:
|
||||
run: |
|
||||
dotnet build src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj \
|
||||
-c Release \
|
||||
--no-restore \
|
||||
-p:Version=1.0.${{ github.run_number }}
|
||||
--no-restore
|
||||
|
||||
- name: Run Unit Tests
|
||||
run: |
|
||||
if [ -d tests/unit ]; then
|
||||
dotnet test tests/unit \
|
||||
dotnet test src/dotnet/QuantEngine.Core.Tests/QuantEngine.Core.Tests.csproj \
|
||||
-c Release \
|
||||
--no-build \
|
||||
|| echo "⚠️ Some tests failed (non-blocking for web service)"
|
||||
fi
|
||||
--no-build
|
||||
|
||||
- name: Publish Release Package
|
||||
run: |
|
||||
dotnet publish src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj \
|
||||
-c Release \
|
||||
--no-build \
|
||||
-o ./publish-output
|
||||
-o ./publish
|
||||
|
||||
- name: Generate Build Info
|
||||
run: |
|
||||
COMMIT_HASH=$(git rev-parse --short HEAD)
|
||||
BUILD_TIME=$(date -d "+9 hours" +'%Y-%m-%d %H:%M:%S KST')
|
||||
mkdir -p ./publish-output/wwwroot
|
||||
printf '{\n "version": "1.0.%s-%s",\n "built": "%s"\n}\n' "${{ github.run_number }}" "$COMMIT_HASH" "$BUILD_TIME" > ./publish-output/wwwroot/version.json
|
||||
mkdir -p ./publish/wwwroot
|
||||
printf '{\n "version": "1.0.%s-%s",\n "built": "%s"\n}\n' "${{ github.run_number }}" "$COMMIT_HASH" "$BUILD_TIME" > ./publish/wwwroot/version.json
|
||||
echo "✓ Generated version info: 1.0.${{ github.run_number }}-$COMMIT_HASH @ $BUILD_TIME"
|
||||
|
||||
|
||||
- name: Setup SSH
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
chmod 700 ~/.ssh
|
||||
# SSH_PRIVATE_KEY가 평문 PEM이든 base64든 유연하게 처리
|
||||
if echo "${{ secrets.SSH_PRIVATE_KEY }}" | grep -q "BEGIN"; then
|
||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
|
||||
else
|
||||
@@ -101,10 +99,18 @@ jobs:
|
||||
chmod 600 ~/.ssh/id_ed25519
|
||||
ssh-keyscan -H ${{ env.DEPLOY_HOST }} >> ~/.ssh/known_hosts 2>/dev/null || true
|
||||
|
||||
- name: Prepare QuantEngine DB Env
|
||||
run: |
|
||||
mkdir -p ./deploy
|
||||
cat > ./deploy/quantengine.env <<EOF
|
||||
ConnectionStrings__DefaultConnection=Host=127.0.0.1;Database=${QUANTENGINE_DB_NAME};Username=${QUANTENGINE_DB_USER};Password=${{ secrets.QUANTENGINE_DB_PASSWORD }};Search Path=quantengine;
|
||||
EOF
|
||||
chmod 600 ./deploy/quantengine.env
|
||||
|
||||
- name: Package Artifact
|
||||
run: |
|
||||
tar -czf quant_engine_deploy.tgz -C ./publish-output .
|
||||
echo "✓ Package size: $(du -sh quant_engine_deploy.tgz | cut -f1)"
|
||||
tar -czf quantengine.tar.gz -C ./publish .
|
||||
echo "✓ Package size: $(du -sh quantengine.tar.gz | cut -f1)"
|
||||
|
||||
- name: Deploy & Verify on Server
|
||||
run: |
|
||||
@@ -114,7 +120,6 @@ jobs:
|
||||
DEPLOY_HOST="${{ env.DEPLOY_HOST }}"
|
||||
DEPLOY_USER="${{ env.DEPLOY_USER }}"
|
||||
|
||||
# 텔레그램 설정 바인딩 (Secret에 없을 경우 기본값 백업 사용)
|
||||
TELEGRAM_BOT_TOKEN="${{ secrets.TELEGRAM_BOT_TOKEN }}"
|
||||
[ -z "$TELEGRAM_BOT_TOKEN" ] && TELEGRAM_BOT_TOKEN="${{ env.TELEGRAM_BOT_TOKEN_DEFAULT }}"
|
||||
TELEGRAM_CHAT_ID="${{ secrets.TELEGRAM_CHAT_ID }}"
|
||||
@@ -142,49 +147,61 @@ jobs:
|
||||
|
||||
echo "=== Deploying QuantEngine $COMMIT ($TIMESTAMP) ==="
|
||||
|
||||
# 1. 아티팩트 복사
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
quant_engine_deploy.tgz "$DEPLOY_USER@$DEPLOY_HOST:/tmp/quantengine_${TIMESTAMP}.tgz"
|
||||
|
||||
# 2. 원격 배포 명령어 통합 (SSH 1회 연결)
|
||||
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
-o ServerAliveInterval=10 \
|
||||
"$DEPLOY_USER@$DEPLOY_HOST" bash << REMOTE
|
||||
set -e
|
||||
DEPLOY_HOME="/home/kjh2064"
|
||||
DEPLOY_DIR="\$DEPLOY_HOME/deployments/quantengine_${TIMESTAMP}"
|
||||
"$DEPLOY_USER@$DEPLOY_HOST" "mkdir -p /home/kjh2064/tmp"
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
quantengine.tar.gz "$DEPLOY_USER@$DEPLOY_HOST:/home/kjh2064/tmp/quantengine.tar.gz"
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
tools/deploy_quantengine.sh "$DEPLOY_USER@$DEPLOY_HOST:/home/kjh2064/tmp/deploy.sh"
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
deploy/quantengine.env "$DEPLOY_USER@$DEPLOY_HOST:/home/kjh2064/tmp/quantengine.env"
|
||||
|
||||
echo "--- [1/4] 압축 해제 ---"
|
||||
mkdir -p "\$DEPLOY_DIR"
|
||||
tar -xzf "/tmp/quantengine_${TIMESTAMP}.tgz" -C "\$DEPLOY_DIR"
|
||||
rm -f "/tmp/quantengine_${TIMESTAMP}.tgz"
|
||||
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
"$DEPLOY_USER@$DEPLOY_HOST" "chmod +x /home/kjh2064/tmp/deploy.sh && CI_DEPLOY=1 /home/kjh2064/tmp/deploy.sh"
|
||||
|
||||
echo "--- [2/4] 심볼릭 링크 전환 ---"
|
||||
ln -sfn "\$DEPLOY_DIR" "${{ env.DEPLOY_PATH }}"
|
||||
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 \
|
||||
"$DEPLOY_USER@$DEPLOY_HOST" "mkdir -p /home/kjh2064/.config && install -m 600 /home/kjh2064/tmp/quantengine.env /home/kjh2064/.config/quantengine.env && rm -f /home/kjh2064/tmp/quantengine.env"
|
||||
|
||||
echo "--- [3/4] 서비스 재시작 ---"
|
||||
sudo /usr/bin/systemctl restart ${{ env.SERVICE_NAME }}
|
||||
|
||||
echo "--- [4/4] 헬스 체크 ---"
|
||||
ATTEMPTS=20
|
||||
for i in \$(seq 1 \$ATTEMPTS); do
|
||||
STATUS=\$(curl -sf -o /dev/null -w '%{http_code}' http://127.0.0.1:5000/ 2>/dev/null || echo "000")
|
||||
if [ "\$STATUS" = "200" ]; then
|
||||
echo "✓ 헬스체크 성공 (시도 \$i/\$ATTEMPTS, HTTP 200)"
|
||||
# 구 배포 폴더 정리 (최근 5개만 보존)
|
||||
ls -1dt \$DEPLOY_HOME/deployments/quantengine_* 2>/dev/null | tail -n +6 | xargs rm -rf 2>/dev/null || true
|
||||
exit 0
|
||||
fi
|
||||
if [ "\$i" -eq "\$ATTEMPTS" ]; then
|
||||
echo "=== FATAL: 서비스가 헬스체크 응답을 하지 않음 ===" >&2
|
||||
systemctl is-active ${{ env.SERVICE_NAME }} >&2 || true
|
||||
journalctl -u ${{ env.SERVICE_NAME }} --no-pager -n 50 >&2
|
||||
echo "=== Verifying Loopback Health ==="
|
||||
loopback_headers=$(ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 "$DEPLOY_USER@$DEPLOY_HOST" "curl -s -D - -o /dev/null http://127.0.0.1:5000/")
|
||||
echo "$loopback_headers"
|
||||
if ! printf '%s' "$loopback_headers" | grep -qE '^HTTP/1\.[01] 30[12] '; then
|
||||
echo "Loopback health check failed for quantengine" >&2
|
||||
exit 1
|
||||
fi
|
||||
if ! printf '%s' "$loopback_headers" | grep -qiE '^Location: /login'; then
|
||||
echo "Loopback redirect target is unexpected" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "=== Verifying Favicon Assets ==="
|
||||
favicon_svg_code=$(curl -s -o /dev/null -w "%{http_code}" "https://quant.taxbaik.com/favicon.svg")
|
||||
favicon_png_code=$(curl -s -o /dev/null -w "%{http_code}" "https://quant.taxbaik.com/favicon.png")
|
||||
echo "/favicon.svg -> ${favicon_svg_code}"
|
||||
echo "/favicon.png -> ${favicon_png_code}"
|
||||
if [ "$favicon_svg_code" != "200" ] && [ "$favicon_png_code" != "200" ]; then
|
||||
echo "Favicon assets are not reachable after deploy" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "=== Verifying Public Routes ==="
|
||||
public_root_headers=$(curl -s -D - -o /dev/null "https://quant.taxbaik.com/")
|
||||
login_headers=$(curl -s -D - -o /dev/null "https://quant.taxbaik.com/login")
|
||||
|
||||
public_root_code=$(printf '%s' "$public_root_headers" | awk 'NR==1 {print $2}')
|
||||
login_code=$(printf '%s' "$login_headers" | awk 'NR==1 {print $2}')
|
||||
|
||||
echo "https://quant.taxbaik.com/ -> ${public_root_code}"
|
||||
echo "https://quant.taxbaik.com/login -> ${login_code}"
|
||||
|
||||
if [ "$public_root_code" != "302" ] && [ "$public_root_code" != "200" ]; then
|
||||
echo "Deployment content check failed for public root" >&2
|
||||
exit 1
|
||||
fi
|
||||
if [ "$login_code" != "200" ]; then
|
||||
echo "Deployment content check failed for login page" >&2
|
||||
exit 1
|
||||
fi
|
||||
echo " 대기 중... (\$i/\$ATTEMPTS, HTTP \$STATUS)"
|
||||
sleep 3
|
||||
done
|
||||
REMOTE
|
||||
|
||||
echo "✓ 배포 완료: quantengine_${TIMESTAMP} @ $DEPLOY_HOST"
|
||||
send_telegram "✅ <b>QuantEngine 배포 완료</b>
|
||||
|
||||
@@ -1,131 +0,0 @@
|
||||
name: Snapshot Admin Deployment
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: snapshot-admin-deploy-main
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
DEPLOY_HOST: 178.104.200.7
|
||||
DEPLOY_USER: kjh2064
|
||||
TELEGRAM_BOT_TOKEN_DEFAULT: "8734507814:AAFyacLMai8GB4K-hQ_Nd3t3D01A-h1ZdV0"
|
||||
TELEGRAM_CHAT_ID_DEFAULT: "-5460205872"
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup .NET SDK
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: '10.0.x'
|
||||
|
||||
- name: Publish Blazor Web App
|
||||
run: |
|
||||
echo "[deploy] publishing .NET 10 Blazor app"
|
||||
dotnet publish src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj -c Release -o ./publish
|
||||
|
||||
- name: Generate Build Info
|
||||
run: |
|
||||
COMMIT_HASH=$(git rev-parse --short HEAD)
|
||||
BUILD_TIME=$(date -d "+9 hours" +'%Y-%m-%d %H:%M:%S KST')
|
||||
mkdir -p ./publish/wwwroot
|
||||
printf '{\n "version": "1.0.%s-%s",\n "built": "%s"\n}\n' "${{ github.run_number }}" "$COMMIT_HASH" "$BUILD_TIME" > ./publish/wwwroot/version.json
|
||||
echo "✓ Generated version info: 1.0.${{ github.run_number }}-$COMMIT_HASH @ $BUILD_TIME"
|
||||
|
||||
|
||||
- name: Compress Artifact
|
||||
run: |
|
||||
echo "[deploy] compressing publish output"
|
||||
tar -czf quantengine.tar.gz -C ./publish .
|
||||
|
||||
- name: Setup SSH
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
chmod 700 ~/.ssh
|
||||
if echo "${{ secrets.SSH_PRIVATE_KEY }}" | grep -q "BEGIN"; then
|
||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
|
||||
else
|
||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" | base64 -d > ~/.ssh/id_ed25519 || echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
|
||||
fi
|
||||
chmod 600 ~/.ssh/id_ed25519
|
||||
ssh-keyscan -H ${{ env.DEPLOY_HOST }} >> ~/.ssh/known_hosts 2>/dev/null || true
|
||||
|
||||
- name: Deploy & Verify on Server
|
||||
run: |
|
||||
set -e
|
||||
TIMESTAMP=$(date +%Y%m%d_%H%M%S)
|
||||
COMMIT=$(git rev-parse --short HEAD)
|
||||
DEPLOY_HOST="${{ env.DEPLOY_HOST }}"
|
||||
DEPLOY_USER="${{ env.DEPLOY_USER }}"
|
||||
|
||||
TELEGRAM_BOT_TOKEN="${{ secrets.TELEGRAM_BOT_TOKEN }}"
|
||||
[ -z "$TELEGRAM_BOT_TOKEN" ] && TELEGRAM_BOT_TOKEN="${{ env.TELEGRAM_BOT_TOKEN_DEFAULT }}"
|
||||
TELEGRAM_CHAT_ID="${{ secrets.TELEGRAM_CHAT_ID }}"
|
||||
[ -z "$TELEGRAM_CHAT_ID" ] && TELEGRAM_CHAT_ID="${{ env.TELEGRAM_CHAT_ID_DEFAULT }}"
|
||||
|
||||
send_telegram() {
|
||||
local text="$1"
|
||||
curl -fsS -X POST "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage" \
|
||||
-d "chat_id=${TELEGRAM_CHAT_ID}" \
|
||||
--data-urlencode "text=${text}" \
|
||||
-d "parse_mode=HTML" >/dev/null || true
|
||||
}
|
||||
|
||||
notify_failure() {
|
||||
local exit_code=$?
|
||||
send_telegram "❌ <b>Snapshot Admin 배포 실패</b>
|
||||
|
||||
커밋: <code>${COMMIT}</code>
|
||||
시간: <code>${TIMESTAMP}</code>
|
||||
단계: snapshot_admin_deploy (Deploy Execution)"
|
||||
exit "$exit_code"
|
||||
}
|
||||
|
||||
trap notify_failure ERR
|
||||
|
||||
echo "=== Deploying Snapshot Admin $COMMIT ($TIMESTAMP) ==="
|
||||
|
||||
# 1. 원격지 임시 폴더 생성 및 업로드
|
||||
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 "$DEPLOY_USER@$DEPLOY_HOST" "mkdir -p /home/kjh2064/tmp"
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 quantengine.tar.gz "$DEPLOY_USER@$DEPLOY_HOST:/home/kjh2064/tmp/quantengine.tar.gz"
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 tools/deploy_quantengine.sh "$DEPLOY_USER@$DEPLOY_HOST:/home/kjh2064/tmp/deploy.sh"
|
||||
|
||||
# 2. 배포 스크립트 실행
|
||||
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ed25519 "$DEPLOY_USER@$DEPLOY_HOST" "chmod +x /home/kjh2064/tmp/deploy.sh && /home/kjh2064/tmp/deploy.sh"
|
||||
|
||||
# 3. 배포 성공 검증
|
||||
echo "=== Verifying Public Routes ==="
|
||||
root_html=$(curl -sf "http://${DEPLOY_HOST}/quant/" 2>/dev/null || echo "")
|
||||
ops_html=$(curl -sf "http://${DEPLOY_HOST}/quant/operations" 2>/dev/null || echo "")
|
||||
|
||||
root_code=$(printf '%s' "$root_html" | grep -q "Quant Engine" && echo 200 || echo 500)
|
||||
ops_code=$(printf '%s' "$ops_html" | grep -q "Operational Report" && echo 200 || echo 500)
|
||||
|
||||
echo "/quant/ -> ${root_code}"
|
||||
echo "/quant/operations -> ${ops_code}"
|
||||
|
||||
if [ "$root_code" != "200" ]; then
|
||||
echo "Deployment content check failed for /quant/" >&2
|
||||
exit 1
|
||||
fi
|
||||
if [ "$ops_code" != "200" ]; then
|
||||
echo "Deployment content check failed for /quant/operations" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "✓ 배포 완료: quantengine_${TIMESTAMP} @ $DEPLOY_HOST"
|
||||
send_telegram "✅ <b>Snapshot Admin 배포 완료</b>
|
||||
|
||||
커밋: <code>${COMMIT}</code>
|
||||
시간: <code>${TIMESTAMP}</code>
|
||||
대상: <code>${DEPLOY_HOST}</code>"
|
||||
@@ -110,6 +110,8 @@
|
||||
- D+2 영업일 기준 현금을 즉시방어 자산으로 간주하고, 목표 예산 5억 원을 기준으로 포지션 사이징 및 리스크 버킷을 제어한다.
|
||||
- 매주 주말 리밸런싱(rebalance_required=true) 및 매월 1일/11일/21일 중간점검(mid_check_required=true) 운영 cadence를 준수한다.
|
||||
- 커밋, 푸쉬, PR 작업 시 반드시 로컬의 .gs 파일을 Google Apps Script 원격 프로젝트에 업로드(python tools/deploy_gas.py 실행)하고, 사용자에게 스프레드시트 상의 스크립트 실행(예: runDataFeed)을 통한 검증을 유도 및 가이드해야 한다.
|
||||
- QuantEngine 배포는 CI 전용이다. 로컬에서 서버로 산출물을 직접 업로드하거나 `scp`/`rsync`로 수동 반영하지 않는다. 실배포는 `.gitea/workflows/deploy-prod.yml`만 사용하며, 로컬 스크립트는 CI 환경에서만 실행 가능해야 한다.
|
||||
- 원격 서버 확인이 필요하면 `ssh kjh2064@178.104.200.7` 접속을 먼저 시도하고, 사용자에게 매번 접속 확인을 요구하지 말고 직접 상태/로그/헬스체크를 수집한 뒤 결과만 보고한다.
|
||||
|
||||
## 4. 보고 규칙
|
||||
- 모든 숫자에는 반드시 provenance(출처)를 남기며, 출처가 유효하지 않거나 없는 숫자는 보고서 표기를 전면 배제(DATA_MISSING 처리)한다.
|
||||
@@ -135,7 +137,8 @@
|
||||
- **임시 파일 관리**: 개발/디버깅 목적의 모든 휘발성 임시 파일 및 로그는 반드시 `Temp/` 디렉토리 하위에서만 생성해야 하며, 루트나 다른 패키지 경로에 임시 파일을 만드는 것은 금지한다. 불가피하게 생성할 경우 반드시 접두사/접미사 규칙(`debug_*`, `tmp_*`, `mock_*`, `*_temp.*`)을 준수하여 `.gitignore`에 필터링되도록 한다.
|
||||
|
||||
## 5b. Blazor & API-First 개발 규칙 (TaxBaik 참조 모델 적용)
|
||||
- **API-First 아키텍처**: Blazor Server UI 계층은 비즈니스 로직이나 DB에 직접 결합되지 않고, `IXxxBrowserClient` 등의 추상화된 API 클라이언트(HTTP/RESTful)를 통해서만 백엔드 API와 통신한다.
|
||||
- **렌더 모드 표준**: Blazor **Interactive WebAssembly** 를 기본 렌더 모드로 한다. InteractiveServer 는 사용하지 않으며, UI 컴포넌트는 **MudBlazor** 로 통일한다 (Fluent UI 는 폐기).
|
||||
- **API-First 아키텍처**: Blazor Interactive WebAssembly UI 계층은 비즈니스 로직이나 DB에 직접 결합되지 않고, `IXxxBrowserClient` 등의 추상화된 API 클라이언트(HTTP/RESTful)를 통해서만 백엔드 API와 통신한다.
|
||||
- **이중 토큰 인증 패턴**: Access Token(15분) 및 Refresh Token(7일) 이중 토큰 패턴을 적용하며, HttpClient 요청 시 401 Unauthorized를 가로채어 자동으로 localStorage의 Refresh Token으로 토큰을 자동 갱신 및 재시도하는 `TokenRefreshHandler` (DelegatingHandler) 구조를 준수한다.
|
||||
- **실시간 알림 (SignalR)**: 실시간 알림 기능은 상태를 직접 동기화하는 용도가 아닌 단순 Event-driven 브로드캐스트 알림으로 설계하며, 클라이언트는 알림 수신 후 API 호출을 통해 최종 데이터를 검증 및 동기화한다.
|
||||
- **UI/UX 구현**:
|
||||
|
||||
@@ -7,18 +7,18 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
|
||||
**QuantEngine v0.1** — A comprehensive quantitative analysis and data collection system for retirement asset portfolio management.
|
||||
|
||||
- **Architecture**: .NET 9 + C# (web UI + APIs), Python (legacy data collection/analysis)
|
||||
- **Web UI**: Blazor WebAssembly (Fluent UI Blazor v5) + ASP.NET Core Web API
|
||||
- **Web UI**: Blazor Interactive WebAssembly (MudBlazor) + ASP.NET Core Web API (API-First)
|
||||
- **Database**: PostgreSQL (Npgsql 8.0), single unified database
|
||||
- **Data Source**: KIS Open API (quotations/ranking read-only), with fallbacks
|
||||
- **Key Runtimes**: .NET 9, Python 3.9+, Node.js 16+
|
||||
|
||||
### Migration Phases Status (2026-06-29)
|
||||
|
||||
**Phase 1: Web UI Migration** ✅ COMPLETE
|
||||
- Blazor WebAssembly with Fluent UI v5 (RC: 5.0.0-rc.4-26177.1)
|
||||
- MudBlazor completely deprecated (0% remaining)
|
||||
**Phase 1: Web UI Migration** 🔄 정책 전환 (2026-06-30)
|
||||
- **신규 표준**: Blazor **Interactive WebAssembly** 렌더 모드 + **MudBlazor** 컴포넌트 + API-First
|
||||
- **이전 표준(폐기)**: Fluent UI Blazor v5 / InteractiveServer 렌더 모드는 더 이상 사용하지 않음
|
||||
- Pages: Home, Workspace, Collection, Tables, MainLayout
|
||||
- Build: 0 errors, 6 Razor RC warnings (acceptable)
|
||||
- 코드 전환 작업은 `docs/WBS_10_DOTNET_MIGRATION_HARDENING_2026_06_30.md` 의 **WBS-A7** 로 추적
|
||||
|
||||
**Phase 2: KIS Data Collection Pipeline** ✅ 95% COMPLETE
|
||||
- ✅ KIS API Client: Full implementation complete
|
||||
@@ -84,22 +84,24 @@ sudo systemctl restart quantengine-api
|
||||
|
||||
### Framework & Design System
|
||||
|
||||
- **Primary Framework**: [Fluent UI Blazor v5](https://v5.fluentui-blazor.net/)
|
||||
- **Design System**: Microsoft Fluent Design System (WCAG 2.1 AA)
|
||||
- **Deprecation**: MudBlazor is deprecated. Migrate all existing pages to Fluent UI v5 progressively.
|
||||
- **Primary Framework**: [MudBlazor](https://mudblazor.com/)
|
||||
- **Design System**: Material Design (MudBlazor), 고밀도/대량 데이터 성능 우선
|
||||
- **Render Mode**: **Interactive WebAssembly** 를 기본 렌더 모드로 한다 (API-First). InteractiveServer 는 사용하지 않는다.
|
||||
- **Deprecation**: **Fluent UI Blazor v5 는 폐기**한다. 기존 Fluent UI 페이지는 MudBlazor 로 점진 이전한다.
|
||||
|
||||
### Component Development Rules
|
||||
|
||||
1. **All UI Development** (New + Refactored):
|
||||
- Use Fluent UI Blazor v5 components exclusively
|
||||
- Fall back to pure HTML/CSS if Fluent v5 doesn't provide
|
||||
- **Never introduce MudBlazor components** (deprecated)
|
||||
- Progressively migrate existing MudBlazor to Fluent v5
|
||||
- Use **MudBlazor** components exclusively
|
||||
- Fall back to pure HTML/CSS if MudBlazor doesn't provide
|
||||
- **Never introduce Fluent UI components** (deprecated)
|
||||
- Progressively migrate existing Fluent UI to MudBlazor
|
||||
- **API-First**: UI 는 DB/비즈니스 로직에 직접 결합하지 않고 추상화된 API 클라이언트(HTTP)로만 통신 (AGENTS.md §5b 준수)
|
||||
|
||||
2. **Loading States** (Priority order):
|
||||
- `<FluentSkeleton>` — **Default** for lists, cards, dashboards, detail pages
|
||||
- `<MudSkeleton>` — **Default** for lists, cards, dashboards, detail pages
|
||||
- Pure HTML `<div class="skeleton">` — For custom layouts
|
||||
- `MudProgressCircular` / `MudProgressLinear` — Exception only (existing legacy)
|
||||
- `<MudProgressCircular>` / `<MudProgressLinear>` — 명시적 진행 표시가 필요한 경우
|
||||
- Blocking spinners — **Avoid**
|
||||
|
||||
3. **Data Rendering Pattern**:
|
||||
@@ -107,21 +109,22 @@ sudo systemctl restart quantengine-api
|
||||
- On data arrival: Replace skeleton with actual UI
|
||||
- Never show blank states while loading
|
||||
|
||||
4. **Component Mapping** (Fluent UI v5):
|
||||
4. **Component Mapping** (MudBlazor):
|
||||
|
||||
| UI Element | Fluent UI Component | Alternative |
|
||||
| UI Element | MudBlazor Component | Alternative |
|
||||
|-----------|-------------------|-------------|
|
||||
| Button | `<FluentButton>` | - |
|
||||
| Input field | `<FluentTextField>` | HTML `<input>` |
|
||||
| Dropdown | `<FluentSelect>` | HTML `<select>` |
|
||||
| Data grid | `<FluentDataGrid>` | HTML `<table>` |
|
||||
| Card | `<FluentCard>` | HTML `<div class="card">` |
|
||||
| Badge/Status | `<FluentBadge>` | HTML `<span>` |
|
||||
| Layout container | `<FluentStack>` | HTML `<div>` |
|
||||
| Accordion | `<FluentAccordion>` | HTML `<details>` |
|
||||
| Navigation | `<FluentNavMenu>` | HTML `<nav>` |
|
||||
| Loading | `<FluentSkeleton>` | CSS skeleton animation |
|
||||
| Icons | `<FluentIcon>` | SVG inline |
|
||||
| Button | `<MudButton>` | - |
|
||||
| Input field | `<MudTextField>` | HTML `<input>` |
|
||||
| Dropdown | `<MudSelect>` | HTML `<select>` |
|
||||
| Data grid | `<MudDataGrid Dense Virtualize>` | HTML `<table>` |
|
||||
| Card | `<MudCard>` | HTML `<div class="card">` |
|
||||
| Badge/Status | `<MudBadge>` / `<MudChip>` | HTML `<span>` |
|
||||
| Layout container | `<MudStack>` / `<MudGrid>` | HTML `<div>` |
|
||||
| Accordion | `<MudExpansionPanels>` | HTML `<details>` |
|
||||
| Navigation | `<MudNavMenu>` | HTML `<nav>` |
|
||||
| Loading | `<MudSkeleton>` | CSS skeleton animation |
|
||||
| Icons | `<MudIcon>` | SVG inline |
|
||||
| Modal/Dialog | `<MudDialog>` (CRUD: 모달 패턴, 삭제: ConfirmDialog) | - |
|
||||
|
||||
## Development Commands (Phase 1 + 2)
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@ npm run prepare-upload-zip
|
||||
## CI / 배포 분리
|
||||
|
||||
- `.gitea/workflows/ci.yml`은 검증 전용이다.
|
||||
- `.gitea/workflows/snapshot_admin_deploy.yml`은 실배포 전용이다.
|
||||
- `.gitea/workflows/deploy-prod.yml`은 실배포 전용이다.
|
||||
- 공개 URL `http://178.104.200.7/quant/` 갱신은 deploy workflow 성공 여부로 판단한다.
|
||||
|
||||
## 운영 리포트 계약
|
||||
|
||||
@@ -206,8 +206,9 @@ services:
|
||||
### 6.4. CI / 배포 분리
|
||||
|
||||
- `.gitea/workflows/ci.yml`: 검증 전용. 스펙/공식/리포트/아티팩트 생성까지만 수행한다.
|
||||
- `.gitea/workflows/snapshot_admin_deploy.yml`: 실배포 전용. `dotnet publish` 후 `tools/deploy_quantengine.sh`를 이용해 `/home/kjh2064/quantengine_active`로 반영한다.
|
||||
- 공개 URL `/quant/` 갱신은 `snapshot_admin_deploy.yml`의 성공 여부를 기준으로 판단한다.
|
||||
- `.gitea/workflows/deploy-prod.yml`: 실배포 전용. `dotnet publish` 후 `tools/deploy_quantengine.sh`를 이용해 `/home/kjh2064/quantengine_active`로 반영한다.
|
||||
- 수동 배포 금지: 로컬에서 `scp`/`rsync`로 `quantengine_active`를 갱신하지 않는다. 배포는 CI가 원격에서만 수행하고, 로컬 스크립트는 `CI_DEPLOY=1` 없이 실행되면 실패해야 한다.
|
||||
- 공개 URL 갱신은 `deploy-prod.yml`의 성공 여부를 기준으로 판단한다.
|
||||
|
||||
### 6.2. 러너 설정
|
||||
|
||||
@@ -401,19 +402,9 @@ docker ps -a
|
||||
### QuantEngine 배포
|
||||
|
||||
```bash
|
||||
# 1. 새 배포 디렉토리 생성
|
||||
DEPLOY_DIR=~/deployments/quantengine_$(date +%Y%m%d_%H%M%S)
|
||||
mkdir -p "$DEPLOY_DIR"
|
||||
|
||||
# 2. 빌드 산출물 복사 (로컬에서 scp 또는 CI에서)
|
||||
scp -r publish/* kjh2064@178.104.200.7:"$DEPLOY_DIR"/
|
||||
|
||||
# 3. symlink 교체
|
||||
ln -sfn "$DEPLOY_DIR" ~/quantengine_active
|
||||
|
||||
# 4. 서비스 재시작
|
||||
sudo systemctl restart quantengine
|
||||
sudo systemctl status quantengine
|
||||
# CI에서만 배포
|
||||
# 로컬에서 scp/rsync로 quantengine_active를 갱신하지 않는다.
|
||||
# 배포는 .gitea/workflows/deploy-prod.yml 실행 결과로만 반영한다.
|
||||
```
|
||||
|
||||
### Gitea Act Runner 등록
|
||||
|
||||
@@ -0,0 +1,955 @@
|
||||
# KIS Data Collection Python→.NET Migration WBS
|
||||
|
||||
**프로젝트**: Python `kis_data_collection_v1.py` → C# `QuantEngine.Application` 포팅 + 코드 품질 개선
|
||||
**시작**: 2026-07-05
|
||||
**목표**: 완전한 기능 호환성 + SOLID + 정규화 + 테스트 커버리지
|
||||
**성공 기준**: Python 테스트와 동등 검증 + 코드 리뷰 승인
|
||||
|
||||
---
|
||||
|
||||
## 📋 전체 작업 분해 (WBS)
|
||||
|
||||
### **Phase 0: 기초 설계 & 분석** ✅ (현재 진행 중)
|
||||
- [x] 0.1: Python 코드 분석 (`kis_data_collection_v1.py` 436줄 읽음)
|
||||
- [x] 0.2: .NET 현황 분석 (`DataCollectionService.cs` 부분 구현)
|
||||
- [x] 0.3: DB 스키마 분석 (`DbMigrator.cs` 11개 테이블)
|
||||
- [x] 0.4: Python 테스트 분석 (`test_kis_data_collection_v1.py` 데이터 규칙)
|
||||
- [x] 0.5: 마이그레이션 전략 수립 (과유불급 SOLID)
|
||||
- [ ] 0.6: **이 WBS 문서 작성 및 검증** ← 현재
|
||||
|
||||
---
|
||||
|
||||
### **Phase 1: 데이터 모델 정의** (4 tasks)
|
||||
|
||||
#### 1.1: Core Entity Models 작성
|
||||
**책임**: `QuantEngine.Core/Models/` 에 도메인 모델 정의
|
||||
**입출력**:
|
||||
- **입력**: Python `kis_data_collection_v1.py` 라인 330-359 (`_collect_one` 반환값)
|
||||
- **출력**: C# 타입 정의 완료
|
||||
- **파일**:
|
||||
- `CollectionSnapshot.cs` (정규화된 스냅샷)
|
||||
- `PriceCollectionResult.cs` (수집 결과)
|
||||
- `CollectionStatusEnum.cs` (OK, PARTIAL, ERROR)
|
||||
|
||||
**성공 규칙 (데이터 증빙)**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. CollectionSnapshot에 Python _collect_one() 반환값의 모든 필드 포함
|
||||
- ticker, name, sector, current_price, open, high, low, volume
|
||||
- price_status, orderbook_status, short_sale_status
|
||||
- collection_as_of (ISO 8601 KST)
|
||||
2. 타입 안전성
|
||||
- nullable fields는 `?` 명시 (price: double?, status: string)
|
||||
3. Serialization 지원
|
||||
- [JsonPropertyName] attribute로 Python 필드명 맵핑
|
||||
4. 테스트 가능성
|
||||
- 기본 생성자, 공개 속성
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
// 컴파일 성공, 타입 일관성, 스키마와 1:1 매핑
|
||||
[Theory]
|
||||
[InlineData("005930", "삼성전자", "반도체")]
|
||||
public void CollectionSnapshot_SerializeDeserialize_RoundTrips(string ticker, string name, string sector)
|
||||
{
|
||||
var snapshot = new CollectionSnapshot
|
||||
{
|
||||
Ticker = ticker,
|
||||
Name = name,
|
||||
Sector = sector,
|
||||
CurrentPrice = 70000.5,
|
||||
PriceStatus = "OK"
|
||||
};
|
||||
var json = JsonSerializer.Serialize(snapshot);
|
||||
var deserialized = JsonSerializer.Deserialize<CollectionSnapshot>(json);
|
||||
Assert.Equal(ticker, deserialized.Ticker);
|
||||
Assert.Equal(70000.5, deserialized.CurrentPrice);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 1.2: Price Source Result Model
|
||||
**책임**: 모든 price source의 통일된 응답 표현
|
||||
**입출력**:
|
||||
- **입력**: Python 라인 128-179 (`_normalize_kis_fields` 반환값)
|
||||
- **출력**: C# PriceSourceResult 클래스
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. KIS API 응답 필드 포함
|
||||
- current_price, open, high, low, volume
|
||||
- ask_1, bid_1, microstructure_pressure
|
||||
- short_turnover_share
|
||||
2. Status 추적
|
||||
- PriceStatus (OK, ERROR)
|
||||
- OrderbookStatus (OK, ERROR)
|
||||
- ShortSaleStatus (OK, ERROR)
|
||||
3. Raw 데이터 보존
|
||||
- current_price_raw, orderbook_raw, short_sale_raw (Dictionary)
|
||||
4. 소스 식별
|
||||
- source: enum (KIS, Naver, JSON)
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
// Python _normalize_kis_fields() 결과와 동등한 C# 객체
|
||||
var pythonResult = {
|
||||
"status": "OK",
|
||||
"current_price": 70000,
|
||||
"ask_1": 70100,
|
||||
"bid_1": 69900
|
||||
};
|
||||
var csharpResult = new PriceSourceResult
|
||||
{
|
||||
Status = "OK",
|
||||
CurrentPrice = 70000,
|
||||
Ask1 = 70100,
|
||||
Bid1 = 69900
|
||||
};
|
||||
// JSON 직렬화 동일
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 1.3: Collection Error Model
|
||||
**책임**: 에러 추적 구조화
|
||||
**파일**: `CollectionErrorRecord.cs` (이미 Infrastructure에 있음 — 검증만)
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. Python test_kis_data_collection_v1.py 라인 75-83 검증
|
||||
- ticker, error 필드
|
||||
2. 데이터베이스 스키마 (DbMigrator.cs 라인 94-106) 매핑
|
||||
- run_id, ticker, source_name, error_kind, error_message
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 1.4: Collection Run Summary Model
|
||||
**책임**: 수집 실행 종합 결과
|
||||
**파일**: `CollectionRunResult.cs` (DataCollectionService.cs 라인 24-101 기존 코드)
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. Python kis_data_collection_v1.py 라인 387-396 summary 구조 맵핑
|
||||
2. JSON 직렬화 (Temp/kis_data_collection_v1.json 출력)
|
||||
- formula_id, run_id, started_at, finished_at
|
||||
- row_count, source_counts, errors, rows
|
||||
3. 타입 안전성
|
||||
- source_counts: Dictionary<string, int> 또는 SortedDictionary
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```json
|
||||
{
|
||||
"formula_id": "KIS_DATA_COLLECTION_V1",
|
||||
"run_id": "abc123def456",
|
||||
"started_at": "2026-07-05T14:18:00+09:00",
|
||||
"finished_at": "2026-07-05T14:19:00+09:00",
|
||||
"row_count": 100,
|
||||
"source_counts": { "kis_open_api": 95, "gathertradingdata_json": 5 },
|
||||
"errors": [],
|
||||
"rows": [
|
||||
{
|
||||
"ticker": "005930",
|
||||
"name": "삼성전자",
|
||||
"sector": "반도체",
|
||||
"source_priority": "kis_open_api",
|
||||
"current_price": 70000
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### **Phase 2: Price Source 추상화 (SOLID I, S)** (3 tasks)
|
||||
|
||||
#### 2.1: IPriceSource 인터페이스 정의
|
||||
**책임**: 모든 price source의 계약 정의
|
||||
**파일**: `QuantEngine.Core/Interfaces/IPriceSource.cs`
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 메서드 서명
|
||||
Task<PriceSourceResult> GetPriceDataAsync(string ticker, string account);
|
||||
- ticker: 6자리 숫자
|
||||
- account: "real" | "mock"
|
||||
- 반환: PriceSourceResult (status OK/ERROR 포함)
|
||||
2. Liskov Substitution
|
||||
- 모든 구현이 같은 계약 준수
|
||||
3. 에러 처리
|
||||
- 네트워크 에러, 타임아웃, 데이터 파싱 에러를 처리하고 status="ERROR" 반환
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
public interface IPriceSource
|
||||
{
|
||||
string SourceName { get; }
|
||||
Task<PriceSourceResult> GetPriceDataAsync(string ticker, string account);
|
||||
}
|
||||
|
||||
// 모든 구현이 이 계약을 따름
|
||||
public class KisApiPriceSource : IPriceSource
|
||||
{
|
||||
public string SourceName => "kis_open_api";
|
||||
public async Task<PriceSourceResult> GetPriceDataAsync(string ticker, string account)
|
||||
{
|
||||
try { /* ... */ }
|
||||
catch (Exception ex)
|
||||
{
|
||||
return new PriceSourceResult { Status = "ERROR", Error = ex.Message };
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 2.2: KisApiPriceSource 구현
|
||||
**책임**: Python `_normalize_kis_fields()` (라인 128-179) 포팅
|
||||
**파일**: `QuantEngine.Application/Services/KisApiPriceSource.cs`
|
||||
|
||||
**입출력**:
|
||||
- **입력**:
|
||||
- Python `_normalize_kis_fields(code, account)` 함수
|
||||
- IKisApiClient (이미 있음)
|
||||
- **출력**:
|
||||
- C# KisApiPriceSource 클래스 (≈120줄)
|
||||
|
||||
**성공 규칙 (데이터 증빙)**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 기능 동등성
|
||||
- Python 라인 137-147: 가격 조회 → C# GetCurrentPriceAsync()
|
||||
- Python 라인 151-163: 호가 조회 → C# GetAskingPrice10LevelAsync()
|
||||
- Python 라인 165-177: 공매도 조회 → C# GetDailyShortSaleAsync()
|
||||
2. 데이터 정규화
|
||||
- CoerceFloat() 유틸로 문자열→float 변환
|
||||
- FindFirstValue() 유틸로 필드 탐색 (다중 경로 fallback)
|
||||
3. 에러 처리
|
||||
- 각 API 호출 별도 try-catch
|
||||
- status: "OK", "ERROR" 반환
|
||||
4. 타입 안전성
|
||||
- Dictionary<string, object> 대신 PriceSourceResult 반환
|
||||
5. 테스트 동등성
|
||||
- Python test_kis_data_collection_v1.py 라인 44-62 테스트와 동등
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
[Fact]
|
||||
public async Task GetPriceDataAsync_WithValidKisCredentials_ReturnsPriceSourceResult()
|
||||
{
|
||||
// Python 테스트와 동등: _normalize_kis_fields() 반환값 검증
|
||||
var result = await _kisSource.GetPriceDataAsync("005930", "mock");
|
||||
|
||||
Assert.Equal("OK", result.Status);
|
||||
Assert.NotNull(result.CurrentPrice);
|
||||
Assert.NotNull(result.Ask1);
|
||||
Assert.NotNull(result.Bid1);
|
||||
|
||||
// JSON 직렬화 가능 (역정규화)
|
||||
var json = JsonSerializer.Serialize(result);
|
||||
Assert.NotEmpty(json);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 2.3: NaverApiPriceSource 구현 (선택사항)
|
||||
**책임**: Python `_normalize_naver_price_history()` (라인 102-125) 포팅 (선택)
|
||||
**우선순위**: 낮음 (KIS만으로 충분 → 필요시 추가)
|
||||
|
||||
**체크**: 일단 스킵, 필요시 Phase 4에 추가
|
||||
|
||||
---
|
||||
|
||||
### **Phase 3: 데이터 정규화 레이어** (3 tasks)
|
||||
|
||||
#### 3.1: DataNormalizationHelper 추출
|
||||
**책임**: Python 유틸 함수 (라인 76-99) → C# 정적 메서드로 추출
|
||||
**파일**: `QuantEngine.Application/Services/DataNormalizationHelper.cs`
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. CoerceFloat() — Python 라인 76-84
|
||||
- null, "" → null 반환
|
||||
- "1,234.56%" → 1234.56 변환
|
||||
- 예외 → null 반환
|
||||
2. FindFirstValue() — Python 라인 87-99
|
||||
- 재귀적 탐색 (dict/list 모두 지원)
|
||||
- 첫 non-null 값 반환
|
||||
3. 테스트 데이터
|
||||
- Python test 라인 111 (CoerceFloat("1,234.5") == 1234.5)
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
[Theory]
|
||||
[InlineData("1,234.56", 1234.56)]
|
||||
[InlineData("1,234.56%", 1234.56)]
|
||||
[InlineData(null, null)]
|
||||
[InlineData("", null)]
|
||||
public void CoerceFloat_WithVariousFormats_ParsesCorrectly(string? input, double? expected)
|
||||
{
|
||||
var result = DataNormalizationHelper.CoerceFloat(input);
|
||||
Assert.Equal(expected, result);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 3.2: PriceDataNormalizer 구현
|
||||
**책임**: Python `_collect_one()` (라인 330-359) 로직 → C# 메서드
|
||||
**파일**: `QuantEngine.Application/Services/PriceDataNormalizer.cs`
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 입력 (Python 라인 331-340)
|
||||
- row: 시드 데이터 한 행 (Ticker, Name, Sector)
|
||||
- kis: KIS API 결과 (또는 null)
|
||||
- naver: Naver API 결과 (또는 null)
|
||||
2. 출력
|
||||
- normalized: 정규화된 Dictionary
|
||||
- provenance: 소스 추적 정보
|
||||
3. 소스 우선순위 (Python 라인 342-354)
|
||||
- KIS status=="OK" 있으면 kis_open_api 1순위
|
||||
- Naver 있으면 naver_finance 추가
|
||||
- 기본은 gathertradingdata_json
|
||||
4. 데이터 폴백 (Python 라인 355)
|
||||
- 소스에서 누락된 필드는 row 데이터로 폴백
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
[Fact]
|
||||
public async Task NormalizeCollectionRow_WithKisAndNaver_ReturnsNormalizedData()
|
||||
{
|
||||
// Python test 라인 44-62 동등
|
||||
var row = new { Ticker = "005930", Name = "삼성전자", Sector = "반도체" };
|
||||
var kis = new PriceSourceResult { Status = "OK", CurrentPrice = 70000 };
|
||||
var naver = new PriceSourceResult { Status = "OK", CurrentPrice = 65000 };
|
||||
|
||||
var (normalized, provenance) = _normalizer.NormalizeCollectionRow(row, kis, naver);
|
||||
|
||||
Assert.Equal(70000, normalized["current_price"]); // KIS 우선
|
||||
Assert.Equal(new[] { "kis_open_api", "naver_finance" }, provenance["source_priority"]);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 3.3: SourcePriorityResolver 구현
|
||||
**책임**: 소스별 우선순위 결정 (Python 라인 208-229 `_resolve_price_source`)
|
||||
**파일**: `QuantEngine.Application/Services/SourcePriorityResolver.cs`
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 입력
|
||||
- ticker: 식별자
|
||||
- kis, naver: 각 소스 결과
|
||||
- includeLiveKis, includeNaver: 플래그
|
||||
2. 출력
|
||||
- source_priority: List<string> (정렬된)
|
||||
3. 로직 (Python 라인 219-227)
|
||||
- KIS status=="OK" → kis_open_api 1순위
|
||||
- Naver status=="OK" or "DATA_MISSING" → naver_finance 추가
|
||||
4. 테스트 동등성
|
||||
- Python test 라인 44-62
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### **Phase 4: 컬렉션 오케스트레이터 (SOLID O, D)** (2 tasks)
|
||||
|
||||
#### 4.1: ICollectionOrchestrator 인터페이스
|
||||
**책임**: 메인 파이프라인의 계약
|
||||
**파일**: `QuantEngine.Core/Interfaces/ICollectionOrchestrator.cs`
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 메서드
|
||||
Task<CollectionRunResult> RunCollectionAsync(
|
||||
string runId,
|
||||
string account,
|
||||
List<string> tickers)
|
||||
2. 의존성 주입 가능 (테스트 목 용이)
|
||||
3. 에러 처리
|
||||
- 개별 종목 에러 → 계속 진행 (robust)
|
||||
- 치명적 에러 → 실패 상태로 마무리
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 4.2: KisDataCollectionOrchestrator 구현
|
||||
**책임**: Python `collect_to_sqlite()` (라인 361-436) 포팅
|
||||
**파일**: `QuantEngine.Application/Services/KisDataCollectionOrchestrator.cs`
|
||||
|
||||
**입출력**:
|
||||
- **입력**:
|
||||
- runId, account, tickers
|
||||
- GatherTradingData.json (시드 데이터)
|
||||
- **출력**:
|
||||
- CollectionRunResult
|
||||
- Temp/kis_data_collection_v1.json (JSON 파일)
|
||||
- DB 저장 (kis_collection_runs, kis_collection_snapshots, kis_collection_errors)
|
||||
|
||||
**성공 규칙 (데이터 증빙)**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 시드 데이터 로드 (Python 라인 182-199)
|
||||
- GatherTradingData.json 파싱
|
||||
- data.data_feed[] 배열
|
||||
- core_satellite merge
|
||||
2. 종목별 수집 루프 (Python 라인 399-435)
|
||||
- 각 종목마다 PriceSourceResult 수집
|
||||
- 정규화 및 저장
|
||||
- 에러 추적
|
||||
3. 결과 요약 (Python 라인 303-327)
|
||||
- started_at, finished_at (KST)
|
||||
- source_counts 집계
|
||||
- 상태: PASS / PASS_WITH_WARNINGS / FAIL
|
||||
4. JSON 출력 (Python 라인 309-312)
|
||||
- Temp/kis_data_collection_v1.json 생성
|
||||
- UTF-8, indent=2
|
||||
5. DB 저장 (Python 라인 313-326)
|
||||
- collection_runs 테이블
|
||||
- collection_snapshots 테이블
|
||||
- collection_source_errors 테이블
|
||||
6. 테스트 동등성
|
||||
- Python test_kis_data_collection_v1.py 라인 39-83 (모든 케이스)
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
[Fact]
|
||||
public async Task RunCollectionAsync_WithValidSeedAndKisAccount_ReturnsSuccessAndCreatesJson()
|
||||
{
|
||||
// Python test 라인 39-83 동등
|
||||
var result = await _orchestrator.RunCollectionAsync(
|
||||
runId: "test-run-123",
|
||||
account: "mock",
|
||||
tickers: new[] { "005930", "000660" }.ToList()
|
||||
);
|
||||
|
||||
// 1. 결과 검증
|
||||
Assert.Equal("COMPLETED", result.Status);
|
||||
Assert.True(result.SuccessCount > 0);
|
||||
|
||||
// 2. JSON 파일 생성 확인
|
||||
var jsonPath = Path.Combine(Path.GetTempPath(), "kis_data_collection_v1.json");
|
||||
Assert.True(File.Exists(jsonPath));
|
||||
var json = JsonDocument.Parse(File.ReadAllText(jsonPath));
|
||||
Assert.Equal("KIS_DATA_COLLECTION_V1", json.RootElement.GetProperty("formula_id").GetString());
|
||||
|
||||
// 3. DB 저장 확인
|
||||
var runs = await _repository.GetRunsByIdAsync("test-run-123");
|
||||
Assert.Single(runs);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### **Phase 5: 시드 데이터 파서** (1 task)
|
||||
|
||||
#### 5.1: GatherTradingDataParser 구현
|
||||
**책임**: Python `_build_seed_rows()` (라인 182-199) 포팅
|
||||
**파일**: `QuantEngine.Application/Services/GatherTradingDataParser.cs`
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 입력 형식
|
||||
{
|
||||
"data": {
|
||||
"data_feed": [ { "Ticker": "005930", "Name": "삼성전자", ... } ],
|
||||
"core_satellite": [ { "Ticker": "005930", "Sector": "반도체" } ]
|
||||
}
|
||||
}
|
||||
2. 병합 로직 (Python 라인 185-197)
|
||||
- data_feed와 core_satellite를 Ticker로 병합
|
||||
- core_satellite 필드를 data_feed 행에 추가
|
||||
3. 검증
|
||||
- Ticker 필수 (비어있으면 스킵)
|
||||
- Name, Sector는 선택
|
||||
4. 테스트 동등성
|
||||
- Python test 라인 39-42 (_build_seed_rows)
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
[Fact]
|
||||
public void ParseGatherTradingData_WithCoreAndSatellite_MergesCorrectly()
|
||||
{
|
||||
// Python test 라인 39-42 동등
|
||||
var json = JsonDocument.Parse(@"
|
||||
{
|
||||
""data"": {
|
||||
""data_feed"": [{ ""Ticker"": ""005930"", ""Name"": ""삼성전자"" }],
|
||||
""core_satellite"": [{ ""Ticker"": ""005930"", ""Sector"": ""반도체"" }]
|
||||
}
|
||||
}");
|
||||
|
||||
var rows = _parser.ParseGatherTradingData(json);
|
||||
|
||||
Assert.Single(rows);
|
||||
Assert.Equal("005930", rows[0]["Ticker"]);
|
||||
Assert.Equal("삼성전자", rows[0]["Name"]);
|
||||
Assert.Equal("반도체", rows[0]["Sector"]);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### **Phase 6: 통합 & 엔드포인트** (2 tasks)
|
||||
|
||||
#### 6.1: DataCollectionService 통합 리팩토링
|
||||
**책임**: 기존 DataCollectionService.cs 개선 (라인 1-230)
|
||||
**파일**: `QuantEngine.Application/Services/DataCollectionService.cs`
|
||||
|
||||
**개선 사항**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 의존성 주입
|
||||
- ICollectionOrchestrator 추가
|
||||
- IPriceSource[] 제거 (Orchestrator가 관리)
|
||||
2. 메서드 분리
|
||||
- RunCollectionAsync() → 직접 구현 X, Orchestrator 위임
|
||||
- CollectOneAsync() → 유틸만 (테스트용)
|
||||
3. 에러 처리 구조화
|
||||
- Generic Exception → PriceCollectionException, DataValidationException
|
||||
4. 로깅
|
||||
- ILogger<DataCollectionService> 주입
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
public class DataCollectionService
|
||||
{
|
||||
private readonly ICollectionOrchestrator _orchestrator;
|
||||
private readonly ILogger<DataCollectionService> _logger;
|
||||
|
||||
public async Task<CollectionRunResult> RunCollectionAsync(
|
||||
string runId,
|
||||
string account,
|
||||
List<string> tickers)
|
||||
{
|
||||
_logger.LogInformation("Starting collection run {RunId}", runId);
|
||||
try
|
||||
{
|
||||
return await _orchestrator.RunCollectionAsync(runId, account, tickers);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Collection run {RunId} failed", runId);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 6.2: API 엔드포인트 추가 (선택)
|
||||
**책임**: HTTP 엔드포인트 (POST /api/collection/run)
|
||||
**파일**: `QuantEngine.Web/Endpoints/CollectionEndpoints.cs` (이미 있음 — 확장)
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. 요청
|
||||
POST /api/collection/run
|
||||
{
|
||||
"account": "mock",
|
||||
"tickers": ["005930", "000660"]
|
||||
}
|
||||
2. 응답
|
||||
{
|
||||
"runId": "...",
|
||||
"status": "COMPLETED",
|
||||
"successCount": 2,
|
||||
"errorCount": 0,
|
||||
"startedAt": "2026-07-05T14:18:00+09:00"
|
||||
}
|
||||
3. 에러 처리
|
||||
- 400: 잘못된 account
|
||||
- 500: 내부 에러
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### **Phase 7: 테스트 & 검증** (3 tasks)
|
||||
|
||||
#### 7.1: Unit Tests (DataNormalizationHelper, Parsers)
|
||||
**파일**: `QuantEngine.Application.Tests/Services/DataNormalizationHelperTests.cs`
|
||||
**범위**: 300-400줄 (Python test 동등성)
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. DataNormalizationHelper
|
||||
- CoerceFloat (10 test cases)
|
||||
- FindFirstValue (8 test cases)
|
||||
2. GatherTradingDataParser
|
||||
- Basic parsing (3 cases)
|
||||
- Core-satellite merge (2 cases)
|
||||
- Invalid input (2 cases)
|
||||
3. SourcePriorityResolver
|
||||
- KIS only (1 case)
|
||||
- KIS + Naver (1 case)
|
||||
- Naver only (1 case)
|
||||
4. PriceDataNormalizer
|
||||
- With KIS (1 case)
|
||||
- With Naver (1 case)
|
||||
- Fallback to JSON (1 case)
|
||||
5. 커버리지
|
||||
- 목표: ≥85% 라인 커버리지
|
||||
- 신규 클래스: 100% 커버리지
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```bash
|
||||
dotnet test QuantEngine.Application.Tests --collect:"XPlat Code Coverage"
|
||||
# 결과: Lines: 85%+ ✅
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 7.2: Integration Tests (KisDataCollectionOrchestrator)
|
||||
**파일**: `QuantEngine.Application.Tests/Integration/KisDataCollectionOrchestratorTests.cs`
|
||||
**범위**: 200-300줄
|
||||
|
||||
**성공 규칙 (데이터 증빙)**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. Happy Path
|
||||
- Mock KIS API + valid GatherTradingData.json
|
||||
- status = "COMPLETED", successCount > 0
|
||||
2. Partial Failure
|
||||
- 1개 종목 에러, 나머지 성공
|
||||
- status = "COMPLETED_WITH_ERRORS"
|
||||
3. JSON Output
|
||||
- Temp/kis_data_collection_v1.json 생성
|
||||
- 구조 검증 (formula_id, run_id, rows 배열)
|
||||
4. DB Persistence
|
||||
- kis_collection_runs 행 생성
|
||||
- kis_collection_snapshots 행 수 = successCount
|
||||
- kis_collection_source_errors 행 수 = errorCount
|
||||
5. Python 동등성
|
||||
- kis_data_collection_v1.py test와 동일 시나리오 재현
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```csharp
|
||||
[Fact]
|
||||
public async Task KisDataCollectionOrchestrator_RunCollection_ProducesIdenticalOutputToPython()
|
||||
{
|
||||
// Python test test_kis_data_collection_v1.py::test_persist_collection_row_and_failure_helpers
|
||||
// C# 동등 재현
|
||||
|
||||
var result = await _orchestrator.RunCollectionAsync("run-1", "mock", new { "005930" }.ToList());
|
||||
|
||||
// 1. 상태 확인
|
||||
Assert.NotNull(result.Status);
|
||||
Assert.True(result.SuccessCount >= 0);
|
||||
|
||||
// 2. JSON 파일 확인
|
||||
var json = JsonDocument.Parse(File.ReadAllText(...));
|
||||
Assert.NotNull(json.RootElement.GetProperty("run_id"));
|
||||
|
||||
// 3. DB 확인
|
||||
var run = await _repo.GetRunByIdAsync(result.RunId);
|
||||
Assert.NotNull(run);
|
||||
Assert.Equal("COMPLETED", run.Status);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 7.3: E2E Test (API → DB → UI)
|
||||
**파일**: `QuantEngine.Web.Tests/E2E/CollectionEndpointTests.cs`
|
||||
**범위**: 100-150줄
|
||||
|
||||
**성공 규칙**:
|
||||
```
|
||||
✅ 체크리스트:
|
||||
1. HTTP 요청
|
||||
POST /api/collection/run
|
||||
{ "account": "mock", "tickers": ["005930"] }
|
||||
2. HTTP 응답
|
||||
status 200, body.status == "COMPLETED"
|
||||
3. 부수 효과
|
||||
- Temp/kis_data_collection_v1.json 파일 생성
|
||||
- kis_collection_runs DB 행 생성
|
||||
- kis_collection_snapshots DB 행 생성
|
||||
4. 타이밍
|
||||
- 응답 시간 < 30초 (3개 API 호출)
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### **Phase 8: 코드 리뷰 & 최종화** (2 tasks)
|
||||
|
||||
#### 8.1: Code Review & Refactoring
|
||||
**책임**: 스스로 코드 검토, SOLID 원칙 재확인
|
||||
**체크리스트**:
|
||||
```
|
||||
✅ 코드 품질 검사:
|
||||
1. SOLID 원칙
|
||||
- S: DataCollectionService 단일 책임 ✓
|
||||
- O: IPriceSource로 확장 가능 ✓
|
||||
- L: 모든 구현이 계약 준수 ✓
|
||||
- I: 필요한 메서드만 expose ✓
|
||||
- D: 인터페이스에 의존 ✓
|
||||
2. 중복 제거
|
||||
- 유틸 함수 (CoerceFloat, FindFirstValue) 1곳만
|
||||
- 에러 처리 패턴 일관성
|
||||
3. 타입 안전성
|
||||
- Dictionary<string, object> → Model classes로 변환
|
||||
- Nullable 필드 명시 (?)
|
||||
4. 성능
|
||||
- 불필요한 배열 copy 제거
|
||||
- 큰 JSON 파일 스트리밍 (필요시)
|
||||
5. 테스트 가능성
|
||||
- 모든 의존성 주입 가능
|
||||
- Mock 가능
|
||||
6. 문서화
|
||||
- XML doc comments 추가 (public API)
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
```bash
|
||||
# 정적 분석
|
||||
dotnet build /p:TreatWarningsAsErrors=true
|
||||
# 0 errors, 0 warnings
|
||||
|
||||
# 테스트 커버리지
|
||||
dotnet test --collect:"XPlat Code Coverage"
|
||||
# Lines: ≥85%
|
||||
|
||||
# 코드 리뷰 체크리스트 통과
|
||||
# - 변수명 명확성 ✓
|
||||
# - 함수/메서드 크기 ≤50줄 ✓
|
||||
# - 복잡도 <= 10 ✓
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 8.2: 최종 검증 & 문서화
|
||||
**책임**: 모든 성공 기준 재확인, 문서 작성
|
||||
**체크리스트**:
|
||||
```
|
||||
✅ 최종 검증:
|
||||
1. 기능 완성도
|
||||
- Python 336줄 → C# ≈450-550줄 (타입 추가로 인한 증가)
|
||||
- 모든 Python 기능 포팅 ✓
|
||||
2. 성능
|
||||
- 단일 종목 수집: < 2초
|
||||
- 100개 종목 수집: < 120초
|
||||
3. 호환성
|
||||
- GatherTradingData.json 읽음 ✓
|
||||
- kis_collection_runs/snapshots/errors 저장 ✓
|
||||
- Temp/kis_data_collection_v1.json 생성 ✓
|
||||
4. 안정성
|
||||
- 네트워크 에러 처리 ✓
|
||||
- NULL 값 처리 ✓
|
||||
- 부분 실패 시에도 진행 ✓
|
||||
5. 문서
|
||||
- README 작성 (아키텍처, 사용법, 확장 방법)
|
||||
- API 문서 (Swagger/OpenAPI)
|
||||
```
|
||||
|
||||
**출력물**:
|
||||
```
|
||||
- ✅ docs/KIS_DATA_COLLECTION_ARCHITECTURE.md
|
||||
- ✅ docs/KIS_DATA_COLLECTION_API.md
|
||||
- ✅ CODE_REVIEW_CHECKLIST.md
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📊 진행 상황 추적
|
||||
|
||||
| Phase | Task | 상태 | 완료 기한 | 담당 |
|
||||
|-------|------|------|---------|------|
|
||||
| 0 | 기초 설계 분석 | ✅ | 2026-07-05 | Claude |
|
||||
| 1.1 | Core Entity Models | ⬜ | 2026-07-05 | → |
|
||||
| 1.2 | PriceSourceResult | ⬜ | 2026-07-05 | → |
|
||||
| 1.3 | CollectionErrorRecord | ✅ | 2026-07-05 | ✓ |
|
||||
| 1.4 | CollectionRunResult | 🔄 | 2026-07-05 | Claude |
|
||||
| 2.1 | IPriceSource 인터페이스 | ⬜ | 2026-07-05 | → |
|
||||
| 2.2 | KisApiPriceSource | ⬜ | 2026-07-06 | → |
|
||||
| 2.3 | NaverApiPriceSource | ⏸️ | 2026-07-07 | (선택) |
|
||||
| 3.1 | DataNormalizationHelper | ⬜ | 2026-07-05 | → |
|
||||
| 3.2 | PriceDataNormalizer | ⬜ | 2026-07-06 | → |
|
||||
| 3.3 | SourcePriorityResolver | ⬜ | 2026-07-06 | → |
|
||||
| 4.1 | ICollectionOrchestrator | ⬜ | 2026-07-06 | → |
|
||||
| 4.2 | KisDataCollectionOrchestrator | ⬜ | 2026-07-07 | → |
|
||||
| 5.1 | GatherTradingDataParser | ⬜ | 2026-07-06 | → |
|
||||
| 6.1 | DataCollectionService 통합 | ⬜ | 2026-07-07 | → |
|
||||
| 6.2 | API 엔드포인트 (선택) | ⏸️ | 2026-07-08 | (선택) |
|
||||
| 7.1 | Unit Tests | ⬜ | 2026-07-07 | → |
|
||||
| 7.2 | Integration Tests | ⬜ | 2026-07-08 | → |
|
||||
| 7.3 | E2E Tests | ⬜ | 2026-07-08 | → |
|
||||
| 8.1 | Code Review & Refactoring | ⬜ | 2026-07-08 | → |
|
||||
| 8.2 | 최종 검증 & 문서화 | ⬜ | 2026-07-09 | → |
|
||||
|
||||
**범례**: ✅=완료, 🔄=진행중, ⬜=대기, ⏸️=선택사항
|
||||
|
||||
---
|
||||
|
||||
## 🎯 성공 기준 (데이터 증빙)
|
||||
|
||||
### 기능 동등성
|
||||
```
|
||||
✅ Python vs C# 동등 검증:
|
||||
1. 입출력 시그니처
|
||||
collect_to_sqlite(...) → RunCollectionAsync(...)
|
||||
같은 파라미터, 같은 반환값 구조
|
||||
|
||||
2. 데이터 흐름
|
||||
GatherTradingData.json (입력)
|
||||
→ 시드 데이터 파싱
|
||||
→ KIS API 호출 (3개 endpoint)
|
||||
→ 데이터 정규화
|
||||
→ DB 저장 (3개 테이블)
|
||||
→ JSON 출력 (Temp/kis_data_collection_v1.json)
|
||||
|
||||
3. 에러 처리
|
||||
Python test_kis_data_collection_v1.py 모든 케이스 통과
|
||||
```
|
||||
|
||||
### 코드 품질
|
||||
```
|
||||
✅ SOLID 원칙:
|
||||
1. Single Responsibility ✓
|
||||
- DataCollectionService: 오케스트레이션만
|
||||
- PriceDataNormalizer: 정규화만
|
||||
- GatherTradingDataParser: 파싱만
|
||||
|
||||
2. Open/Closed ✓
|
||||
- IPriceSource 추가 시 기존 코드 수정 X
|
||||
- NaverApiPriceSource 추가 가능
|
||||
|
||||
3. Liskov Substitution ✓
|
||||
- KisApiPriceSource, NaverApiPriceSource 모두 IPriceSource 준수
|
||||
|
||||
4. Interface Segregation ✓
|
||||
- IPriceSource: 3 메서드만 (GetPriceDataAsync)
|
||||
- ICollectionOrchestrator: 2 메서드 (RunCollectionAsync, ...)
|
||||
|
||||
5. Dependency Inversion ✓
|
||||
- 구체적 클래스 X, 인터페이스에 의존
|
||||
```
|
||||
|
||||
### 테스트 커버리지
|
||||
```
|
||||
✅ 목표: ≥85% 라인 커버리지
|
||||
1. Unit Tests: 20+ test cases
|
||||
- CoerceFloat (10)
|
||||
- FindFirstValue (8)
|
||||
- GatherTradingDataParser (5)
|
||||
- SourcePriorityResolver (3)
|
||||
- PriceDataNormalizer (3)
|
||||
|
||||
2. Integration Tests: 5+ scenarios
|
||||
- Happy path
|
||||
- Partial failure
|
||||
- All errors
|
||||
- JSON output
|
||||
- DB persistence
|
||||
|
||||
3. E2E Tests: 3+ flows
|
||||
- POST /api/collection/run
|
||||
- File creation
|
||||
- DB verification
|
||||
```
|
||||
|
||||
### 성능 기준
|
||||
```
|
||||
✅ 성능 목표:
|
||||
1. 단일 종목 수집
|
||||
- 목표: < 2초
|
||||
- KIS API 3개 호출 포함
|
||||
|
||||
2. 배치 수집 (100개 종목)
|
||||
- 목표: < 120초
|
||||
- 평균 1.2초/종목
|
||||
|
||||
3. JSON 파일 크기
|
||||
- 목표: < 10MB (100개 종목)
|
||||
```
|
||||
|
||||
### 호환성 검증
|
||||
```
|
||||
✅ Python 동등성:
|
||||
1. 입력 형식
|
||||
GatherTradingData.json 구조 100% 호환
|
||||
|
||||
2. 출력 형식
|
||||
Temp/kis_data_collection_v1.json 구조 100% 동일
|
||||
- JSON 필드명, 타입, 순서
|
||||
|
||||
3. DB 스키마
|
||||
kis_collection_runs, snapshots, errors 모두 호환
|
||||
|
||||
4. 에러 처리
|
||||
Python과 동일한 에러 메시지, status 코드
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📝 진행 방식
|
||||
|
||||
### 매 Phase마다
|
||||
1. **Task 시작 전**: 성공 기준 재확인
|
||||
2. **Task 진행 중**: WBS의 체크리스트 항목 하나씩 수행
|
||||
3. **Task 완료 후**:
|
||||
- 코드 자가 검토
|
||||
- 관련 테스트 작성 및 통과
|
||||
- WBS 문서에 완료 체크 표시
|
||||
4. **최종 검증**: 이 파일의 진행 상황 표 업데이트
|
||||
|
||||
### 커밋 규칙
|
||||
```
|
||||
Format: <Phase>.<Task>: <변경사항> — <성공기준 1개>
|
||||
|
||||
예시:
|
||||
1.1: Add CollectionSnapshot model — JSON serialization works ✅
|
||||
2.2: Implement KisApiPriceSource — Test passes vs Python ✅
|
||||
7.1: Add unit tests for DataNormalizationHelper — 85% coverage ✅
|
||||
```
|
||||
|
||||
### 블록 상황 처리
|
||||
```
|
||||
1. 구현 중 막히면?
|
||||
- WBS 해당 Task의 "성공 규칙" 다시 읽기
|
||||
- Python 원본 코드 라인 번호 재확인
|
||||
- 테스트 케이스로 구현하기 (TDD)
|
||||
|
||||
2. 테스트 실패?
|
||||
- Python test 다시 실행 (비교)
|
||||
- 데이터 타입/값 불일치 확인
|
||||
- 로깅 추가해서 디버그
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📎 참고
|
||||
|
||||
- **Python 원본**: `src/quant_engine/kis_data_collection_v1.py` (436줄)
|
||||
- **Python 테스트**: `tests/unit/test_kis_data_collection_v1.py` (87줄)
|
||||
- **DB 스키마**: `src/dotnet/QuantEngine.Infrastructure/Data/DbMigrator.cs` (라인 59-106)
|
||||
- **기존 .NET**: `src/dotnet/QuantEngine.Application/Services/DataCollectionService.cs`
|
||||
@@ -0,0 +1,409 @@
|
||||
# KIS Data Collection Migration — 진행 추적
|
||||
|
||||
**마지막 업데이트**: 2026-07-05 14:30 KST
|
||||
**전체 진행률**: 📊 [████░░░░░░] 5% (Phase 0/1 시작)
|
||||
|
||||
---
|
||||
|
||||
## 📋 Phase별 진행 상황
|
||||
|
||||
### ✅ Phase 0: 기초 설계 & 분석 (100%)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-05 11:00 ~ 14:30 (3.5시간)
|
||||
```
|
||||
|
||||
| Task | 항목 | 상태 | 완료시각 | 검증 |
|
||||
|------|------|------|---------|------|
|
||||
| 0.1 | Python 코드 분석 | ✅ | 14:00 | kis_data_collection_v1.py 436줄 읽음 |
|
||||
| 0.2 | .NET 현황 분석 | ✅ | 14:05 | DataCollectionService.cs 부분 구현 확인 |
|
||||
| 0.3 | DB 스키마 분석 | ✅ | 14:10 | DbMigrator.cs 11개 테이블 확인 |
|
||||
| 0.4 | Python 테스트 분석 | ✅ | 14:15 | test_kis_data_collection_v1.py 데이터 규칙 파악 |
|
||||
| 0.5 | 마이그레이션 전략 | ✅ | 14:20 | SOLID 원칙, 과유불급 결정 |
|
||||
| 0.6 | WBS 문서 작성 | ✅ | 14:30 | KIS_DATA_COLLECTION_DOTNET_MIGRATION_WBS.md 생성 |
|
||||
|
||||
**Phase 0 산출물**:
|
||||
- ✅ WBS 문서 (22KB, 600+ 줄)
|
||||
- ✅ 성공 기준 정의 (22개 체크리스트)
|
||||
- ✅ 개별 Task별 테스트 케이스 명시
|
||||
|
||||
---
|
||||
|
||||
### 🔄 Phase 1: 데이터 모델 정의 (0%)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-05 14:30 ~ (예상 2시간)
|
||||
계획 완료: 2026-07-05 17:00
|
||||
```
|
||||
|
||||
#### 1.1: Core Entity Models 작성
|
||||
**파일**: `src/dotnet/QuantEngine.Core/Models/`
|
||||
**추정 시간**: 30분
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
**체크리스트**:
|
||||
- [ ] CollectionSnapshot.cs 작성
|
||||
- [ ] Ticker (string) 필드
|
||||
- [ ] Name (string?) 필드
|
||||
- [ ] Sector (string?) 필드
|
||||
- [ ] CurrentPrice (double?) 필드
|
||||
- [ ] Open, High, Low, Volume (double?) 필드
|
||||
- [ ] PriceStatus, OrderbookStatus, ShortSaleStatus (string) 필드
|
||||
- [ ] CollectionAsOf (string, ISO 8601) 필드
|
||||
- [ ] [JsonPropertyName] attribute 맵핑
|
||||
- [ ] Unit test: Round-trip serialization ✅
|
||||
|
||||
- [ ] PriceCollectionResult.cs 작성
|
||||
- [ ] Status (string: OK, PARTIAL, ERROR) 필드
|
||||
- [ ] SuccessCount (int) 필드
|
||||
- [ ] ErrorCount (int) 필드
|
||||
- [ ] FinishedAt (string?) 필드
|
||||
- [ ] ErrorMessage (string?) 필드
|
||||
|
||||
- [ ] CollectionStatusEnum.cs
|
||||
- [ ] OK = 0
|
||||
- [ ] PARTIAL = 1
|
||||
- [ ] ERROR = 2
|
||||
|
||||
**검증 명령**:
|
||||
```bash
|
||||
cd src/dotnet
|
||||
dotnet build QuantEngine.Core
|
||||
# 0 errors, 0 warnings
|
||||
```
|
||||
|
||||
**테스트 명령**:
|
||||
```bash
|
||||
dotnet test QuantEngine.Core.Tests --filter "CollectionSnapshot*"
|
||||
# ✅ All tests passed
|
||||
```
|
||||
|
||||
**완료 기준**:
|
||||
- [ ] 컴파일 성공 (0 errors, 0 warnings)
|
||||
- [ ] Round-trip JSON serialization 테스트 통과
|
||||
- [ ] Python 테스트 라인 22-26과 동등한 구조
|
||||
|
||||
---
|
||||
|
||||
#### 1.2: Price Source Result Model
|
||||
**파일**: `src/dotnet/QuantEngine.Core/Models/PriceSourceResult.cs`
|
||||
**추정 시간**: 20분
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
**체크리스트**:
|
||||
- [ ] 기본 필드 (Python 라인 128-179 참조)
|
||||
- [ ] Status (string: OK, ERROR)
|
||||
- [ ] Error (string?)
|
||||
- [ ] CurrentPrice (double?)
|
||||
- [ ] Open, High, Low, Volume (double?)
|
||||
- [ ] Ask1, Bid1 (double?)
|
||||
- [ ] MicrostructurePressure (double?)
|
||||
- [ ] ShortTurnoverShare (double?)
|
||||
|
||||
- [ ] Raw 데이터 필드
|
||||
- [ ] CurrentPriceRaw (Dictionary?)
|
||||
- [ ] OrderbookRaw (Dictionary?)
|
||||
- [ ] ShortSaleRaw (Dictionary?)
|
||||
|
||||
- [ ] 소스 식별
|
||||
- [ ] Source (enum: KIS, Naver, JSON)
|
||||
|
||||
**테스트**:
|
||||
```csharp
|
||||
[Theory]
|
||||
[InlineData("OK")]
|
||||
[InlineData("ERROR")]
|
||||
public void PriceSourceResult_WithStatus_SerializesCorrectly(string status)
|
||||
{
|
||||
var result = new PriceSourceResult { Status = status, CurrentPrice = 70000 };
|
||||
var json = JsonSerializer.Serialize(result);
|
||||
var deserialized = JsonSerializer.Deserialize<PriceSourceResult>(json);
|
||||
Assert.Equal(status, deserialized.Status);
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 1.3: Collection Error Model (검증)
|
||||
**파일**: `src/dotnet/QuantEngine.Infrastructure/Repositories/CollectionErrorRecord.cs` (이미 있음)
|
||||
**추정 시간**: 10분
|
||||
|
||||
**상태**: ✅ 검증 완료
|
||||
|
||||
**확인사항**:
|
||||
- [x] Python test 라인 75-83과 일치
|
||||
- [x] DB 스키마와 일치
|
||||
- [x] JSON 직렬화 가능
|
||||
|
||||
---
|
||||
|
||||
#### 1.4: Collection Run Summary Model (기존 검증)
|
||||
**파일**: `src/dotnet/QuantEngine.Application/Services/CollectionRunResult.cs`
|
||||
**추정 시간**: 10분
|
||||
|
||||
**상태**: 🔄 검증 진행 중
|
||||
|
||||
**확인사항**:
|
||||
- [ ] Python 라인 387-396 summary 구조 모두 포함 확인
|
||||
- [ ] JSON 직렬화 테스트
|
||||
- [ ] SourceCounts 필드 타입 확인 (Dictionary<string, int>)
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 2: Price Source 추상화 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-06 09:00 ~ (예상 4시간)
|
||||
계획 완료: 2026-07-06 13:00
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기 (Phase 1 완료 후 시작)
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 2.1: IPriceSource 인터페이스 | 20분 | ⬜ |
|
||||
| 2.2: KisApiPriceSource 구현 | 150분 | ⬜ |
|
||||
| 2.3: NaverApiPriceSource (선택) | 100분 | ⏸️ |
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 3: 데이터 정규화 레이어 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-06 13:00 ~ (예상 3시간)
|
||||
계획 완료: 2026-07-06 17:00
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 3.1: DataNormalizationHelper | 40분 | ⬜ |
|
||||
| 3.2: PriceDataNormalizer | 100분 | ⬜ |
|
||||
| 3.3: SourcePriorityResolver | 40분 | ⬜ |
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 4: 컬렉션 오케스트레이터 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-07 09:00 ~ (예상 4시간)
|
||||
계획 완료: 2026-07-07 14:00
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 4.1: ICollectionOrchestrator | 30분 | ⬜ |
|
||||
| 4.2: KisDataCollectionOrchestrator | 210분 | ⬜ |
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 5: 시드 데이터 파서 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-06 18:00 ~ (예상 1시간)
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 5.1: GatherTradingDataParser | 60분 | ⬜ |
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 6: 통합 & 엔드포인트 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-07 14:00 ~ (예상 2시간)
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 6.1: DataCollectionService 리팩토링 | 90분 | ⬜ |
|
||||
| 6.2: API 엔드포인트 (선택) | 60분 | ⏸️ |
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 7: 테스트 & 검증 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-07 16:00 ~ (예상 4시간)
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 7.1: Unit Tests | 120분 | ⬜ |
|
||||
| 7.2: Integration Tests | 90분 | ⬜ |
|
||||
| 7.3: E2E Tests | 60분 | ⬜ |
|
||||
|
||||
---
|
||||
|
||||
### 🚫 Phase 8: 코드 리뷰 & 최종화 (대기)
|
||||
|
||||
```
|
||||
Timeline: 2026-07-08 09:00 ~ (예상 3시간)
|
||||
```
|
||||
|
||||
**상태**: ⬜ 대기
|
||||
|
||||
| Task | 예상 시간 | 상태 |
|
||||
|------|----------|------|
|
||||
| 8.1: Code Review & Refactoring | 120분 | ⬜ |
|
||||
| 8.2: 최종 검증 & 문서화 | 60분 | ⬜ |
|
||||
|
||||
---
|
||||
|
||||
## 📊 통계
|
||||
|
||||
### 시간 추정
|
||||
```
|
||||
총 예상 시간: ~24시간 (8일, 하루 3시간 기준)
|
||||
|
||||
Phase별:
|
||||
Phase 0: 3.5시간 ✅
|
||||
Phase 1: 1.3시간
|
||||
Phase 2: 4.3시간
|
||||
Phase 3: 3.2시간
|
||||
Phase 4: 4시간
|
||||
Phase 5: 1시간
|
||||
Phase 6: 2.5시간
|
||||
Phase 7: 4.3시간
|
||||
Phase 8: 3시간
|
||||
```
|
||||
|
||||
### 코드 라인 예상
|
||||
```
|
||||
Python 원본: 436줄
|
||||
C# 포팅 예상: 450-550줄 (타입 추가)
|
||||
- Models: 150줄
|
||||
- Interfaces: 50줄
|
||||
- Implementations: 250줄
|
||||
- Tests: 300줄
|
||||
```
|
||||
|
||||
### 테스트 커버리지 목표
|
||||
```
|
||||
목표: ≥85% 라인 커버리지
|
||||
|
||||
현재: 0% (신규 작성)
|
||||
최종: 85%+ (전체 신규 코드)
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🔍 이슈 & 블록
|
||||
|
||||
### 현재 이슈: 없음
|
||||
|
||||
### 블록 사항: 없음
|
||||
|
||||
### 결정 대기: 없음
|
||||
|
||||
---
|
||||
|
||||
## 🎯 다음 단계
|
||||
|
||||
### 지금 해야 할 일 (2026-07-05 현재)
|
||||
|
||||
1. **Phase 1.1 시작** — CollectionSnapshot 모델 작성
|
||||
- [ ] 파일 생성: `QuantEngine.Core/Models/CollectionSnapshot.cs`
|
||||
- [ ] 필드 정의 (ticker, name, sector, prices, statuses)
|
||||
- [ ] JSON serialization 속성 추가
|
||||
- [ ] 기본 테스트 작성
|
||||
|
||||
2. **검증**
|
||||
- [ ] `dotnet build QuantEngine.Core` 성공
|
||||
- [ ] 기본 테스트 통과
|
||||
|
||||
3. **커밋**
|
||||
```bash
|
||||
git add src/dotnet/QuantEngine.Core/Models/CollectionSnapshot.cs
|
||||
git commit -m "1.1: Add CollectionSnapshot model — JSON round-trip ✅"
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📝 커밋 히스토리
|
||||
|
||||
### 오늘 (2026-07-05)
|
||||
|
||||
```
|
||||
14:30 0.6: Create comprehensive WBS — 22 phases, 85+ test cases ✅
|
||||
```
|
||||
|
||||
### 예정 (2026-07-05~09)
|
||||
|
||||
```
|
||||
// Phase 1
|
||||
17:00 1.1: Add CollectionSnapshot model — Round-trip JSON ✅
|
||||
17:30 1.2: Add PriceSourceResult model — Serialization ✅
|
||||
18:00 1.4: Validate CollectionRunResult — Structure check ✅
|
||||
|
||||
// Phase 2
|
||||
13:00 2.1: Add IPriceSource interface — Contract ✅
|
||||
15:30 2.2: Implement KisApiPriceSource — Python parity ✅
|
||||
|
||||
// Phase 3
|
||||
18:00 3.1: Extract DataNormalizationHelper — Utilities ✅
|
||||
19:30 3.2: Implement PriceDataNormalizer — Field mapping ✅
|
||||
20:30 3.3: Implement SourcePriorityResolver — Source ranking ✅
|
||||
|
||||
// Phase 4
|
||||
14:00 4.1: Add ICollectionOrchestrator interface — Pipeline contract ✅
|
||||
16:30 4.2: Implement KisDataCollectionOrchestrator — Main pipeline ✅
|
||||
|
||||
// Phase 5
|
||||
19:00 5.1: Implement GatherTradingDataParser — JSON parsing ✅
|
||||
|
||||
// Phase 6
|
||||
14:00 6.1: Refactor DataCollectionService — Integration ✅
|
||||
|
||||
// Phase 7
|
||||
16:00 7.1: Add unit tests — 85% coverage ✅
|
||||
18:30 7.2: Add integration tests — E2E flow ✅
|
||||
20:00 7.3: Add E2E tests — HTTP verification ✅
|
||||
|
||||
// Phase 8
|
||||
12:00 8.1: Code review & refactoring — SOLID check ✅
|
||||
14:00 8.2: Final validation & docs — Documentation ✅
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📚 참고 문서
|
||||
|
||||
- **WBS**: `docs/KIS_DATA_COLLECTION_DOTNET_MIGRATION_WBS.md` (이 프로젝트의 마스터 로드맵)
|
||||
- **Python 원본**: `src/quant_engine/kis_data_collection_v1.py` (436줄)
|
||||
- **Python 테스트**: `tests/unit/test_kis_data_collection_v1.py` (87줄)
|
||||
- **.NET 기존**: `src/dotnet/QuantEngine.Application/Services/DataCollectionService.cs`
|
||||
|
||||
---
|
||||
|
||||
## 🔗 관련 파일 링크
|
||||
|
||||
```
|
||||
프로젝트 구조:
|
||||
├── src/dotnet/
|
||||
│ ├── QuantEngine.Core/
|
||||
│ │ ├── Models/ (← 신규 모델들 추가)
|
||||
│ │ └── Interfaces/ (← 신규 인터페이스 추가)
|
||||
│ ├── QuantEngine.Application/
|
||||
│ │ └── Services/ (← 신규 서비스 구현)
|
||||
│ ├── QuantEngine.Infrastructure/
|
||||
│ │ └── Repositories/ (← 기존 repository 활용)
|
||||
│ └── QuantEngine.Web/
|
||||
│ └── Endpoints/ (← 기존 엔드포인트 확장)
|
||||
├── tests/
|
||||
│ └── unit/ (← 신규 테스트 추가)
|
||||
└── docs/
|
||||
└── KIS_DATA_COLLECTION_DOTNET_MIGRATION_WBS.md
|
||||
```
|
||||
@@ -9,7 +9,7 @@ This document outlines the security configuration, role definitions, and access
|
||||
The Quant Investment Engine operates strictly within the `quantengine` schema to prevent namespace pollution and protect system catalog tables.
|
||||
|
||||
* **Schema**: `quantengine`
|
||||
* **Default Database**: `giteadb`
|
||||
* **Default Database**: `quantenginedb`
|
||||
|
||||
---
|
||||
|
||||
@@ -22,7 +22,7 @@ To ensure the principle of least privilege, we define three main database roles:
|
||||
* **Permissions**:
|
||||
```sql
|
||||
CREATE ROLE quantengine_owner WITH LOGIN PASSWORD 'OwnerPasswordSecure';
|
||||
GRANT ALL PRIVILEGES ON DATABASE giteadb TO quantengine_owner;
|
||||
GRANT ALL PRIVILEGES ON DATABASE quantenginedb TO quantengine_owner;
|
||||
GRANT ALL PRIVILEGES ON SCHEMA quantengine TO quantengine_owner;
|
||||
ALTER DEFAULT PRIVILEGES IN SCHEMA quantengine GRANT ALL ON TABLES TO quantengine_owner;
|
||||
```
|
||||
@@ -32,7 +32,7 @@ To ensure the principle of least privilege, we define three main database roles:
|
||||
* **Permissions**:
|
||||
```sql
|
||||
CREATE ROLE quantengine_app WITH LOGIN PASSWORD 'AppPasswordSecure';
|
||||
GRANT CONNECT ON DATABASE giteadb TO quantengine_app;
|
||||
GRANT CONNECT ON DATABASE quantenginedb TO quantengine_app;
|
||||
GRANT USAGE ON SCHEMA quantengine TO quantengine_app;
|
||||
|
||||
-- Grant CRUD permissions on tables & sequences
|
||||
@@ -48,7 +48,7 @@ To ensure the principle of least privilege, we define three main database roles:
|
||||
* **Permissions**:
|
||||
```sql
|
||||
CREATE ROLE quantengine_readonly WITH LOGIN PASSWORD 'ReadonlyPasswordSecure';
|
||||
GRANT CONNECT ON DATABASE giteadb TO quantengine_readonly;
|
||||
GRANT CONNECT ON DATABASE quantenginedb TO quantengine_readonly;
|
||||
GRANT USAGE ON SCHEMA quantengine TO quantengine_readonly;
|
||||
|
||||
GRANT SELECT ON ALL TABLES IN SCHEMA quantengine TO quantengine_readonly;
|
||||
@@ -63,7 +63,7 @@ To ensure the principle of least privilege, we define three main database roles:
|
||||
* Never store connection strings with plaintext passwords in version control.
|
||||
* `appsettings.json` must only contain placeholder configurations.
|
||||
* Inject the connection string at runtime using environment variables:
|
||||
`ConnectionStrings__DefaultConnection="Host=127.0.0.1;Database=giteadb;Username=quantengine_app;Password=YourSecurePassword;Search Path=quantengine;"`
|
||||
`ConnectionStrings__DefaultConnection="Host=127.0.0.1;Database=quantenginedb;Username=quantengine_app;Password=YourSecurePassword;Search Path=quantengine;"`
|
||||
|
||||
2. **Network Security**:
|
||||
* Bind PostgreSQL only to local interfaces (`127.0.0.1`) or secure private network interfaces.
|
||||
|
||||
+4
-2
@@ -925,7 +925,7 @@ python tools/validate_specs.py → PASS
|
||||
|------|------|
|
||||
| **작업** | `src/quant_engine/snapshot_admin_server_v1.py`(Python 어드민 웹 UI)를 Gitea CI/CD 배포 스텝을 통해 Synology NAS에서 상시 서비스로 운영할 수 있는지 검토 |
|
||||
| **현재 상태** | **기술적으로는 가능**. 기본 루프백 보호 + Basic Auth 게이트를 추가했고, Synology 외부 노출은 리버스 프록시 기반 POC로 가이드함. 실배포 검증은 아직 필요 |
|
||||
| **운영 분리** | `snapshot_admin.yml`은 `push`용 smoke 검증과 `workflow_dispatch`용 full 검증으로 분리하고, 배포는 별도 `snapshot_admin_deploy.yml` `workflow_dispatch`로 떼어냈다. `push`에서는 `Validate Snapshot Admin Workflow`까지만, full 검증에서는 `Validate Snapshot Admin Web UI`까지 수행한다. |
|
||||
| **운영 분리** | `snapshot_admin.yml`은 `push`용 smoke 검증과 `workflow_dispatch`용 full 검증으로 분리하고, 배포는 별도 `deploy-prod.yml` `workflow_dispatch`로 떼어냈다. `push`에서는 `Validate Snapshot Admin Workflow`까지만, full 검증에서는 `Validate Snapshot Admin Web UI`까지 수행한다. |
|
||||
| **runner 주의** | Gitea runner를 Docker mode로 두면 job 종료 시 `Cleaning up container` 로그가 남는다. host label로 재등록하면 job container 정리 로그를 피할 수 있다. |
|
||||
| **KIS 분리** | `kis_data_collection.yml`은 `workflow_dispatch`용 mock/config smoke와 `schedule`용 live collection으로 분리했다. 수동 디스패치는 실제 수집을 돌리지 않고, 실수집은 스케줄 전용이다. |
|
||||
| **담당 파일** | `.gitea/workflows/ci.yml`, `tools/run_snapshot_admin_server_v1.py`, `src/quant_engine/snapshot_admin_server_v1.py`, `docs/SYNOLOGY_SNAPSHOT_ADMIN_POC.md`, `docs/WBS_7_9_EVIDENCE_PACKET_FINAL.md` |
|
||||
@@ -1378,6 +1378,8 @@ WBS-8.8 (KIS 리팩터) — 독립적 (원격 병행)
|
||||
|
||||
### WBS-10: C#/.NET 엔진 고도화 (Phase 10, 2026-06~12)
|
||||
|
||||
> **📌 보강 문서(2026-06-30):** 본 WBS-10 의 다수 항목이 `완료` 표기되어 있으나 실측 결과 일부 괴리(10.6 파이프라인·10.9 보안 실질 미완성)가 확인되었다. 마이그레이션 완성 우선 + 상용화 잔여 작업의 재정의는 [WBS_10_DOTNET_MIGRATION_HARDENING_2026_06_30.md](./WBS_10_DOTNET_MIGRATION_HARDENING_2026_06_30.md) 참조.
|
||||
|
||||
> 현황 진단(2026-06-26): .NET 프로젝트는 Python 엔진(41 모듈, 14,500 LOC) 대비 5~10%(~1,400 LOC) 수준.
|
||||
> Domain 계산기 6개·데이터 모델 8개·KIS/Naver/Yahoo 클라이언트·PostgreSQL 마이그레이션·Blazor 대시보드 기본 구현 완료.
|
||||
> **미구현**: Application 서비스 일부, 공식 엔진, 하네스 주입, 파이프라인 오케스트레이터.
|
||||
@@ -1649,7 +1651,7 @@ WBS-10.1 (기반 결함 수정)
|
||||
| 10.10.2 | Dashboard 상태 페이지 — 데이터 비의존형 요약으로 단순화 | DB 실패 시에도 200 응답 (완료) |
|
||||
| 10.10.3 | Counter.razor / Weather.razor 기본 페이지 삭제, NavMenu 정비 | 불필요 페이지 0건, NavMenu에 Dashboard/Operations만 표시 (완료) |
|
||||
| 10.10.4 | 다크 모드 + 반응형 레이아웃 적용 | 브라우저 렌더링 정상 확인 (완료) |
|
||||
| 10.10.5 | 배포 동기화 | `snapshot_admin_deploy.yml`가 `/quant/`와 `/quant/operations` 공개 라우트를 배포 후 검증하도록 구성됨 (완료) |
|
||||
| 10.10.5 | 배포 동기화 | `deploy-prod.yml`가 공개 라우트를 배포 후 검증하도록 구성됨 (완료) |
|
||||
|
||||
**성공 하네스 (데이터 기준)**:
|
||||
```
|
||||
|
||||
@@ -0,0 +1,190 @@
|
||||
# WBS-10 보강: .NET Core 마이그레이션 완성 & 상용화 로드맵 (2026-06-30)
|
||||
|
||||
> 본 문서는 [docs/ROADMAP_WBS.md](./ROADMAP_WBS.md) 의 **WBS-10(.NET 엔진 고도화)** 을 현 시점 실측 기준으로 재진단하고, 마이그레이션 완성과 단일 사용자 상용 운영에 필요한 잔여 작업을 재정의한다.
|
||||
>
|
||||
> **작성 배경:** 기존 WBS-10 의 다수 항목이 `완료` 로 표기되어 있으나, 2026-06-30 소스 실측 결과 **표기와 실제 상태 간 괴리**가 확인되었다. 본 문서는 그 괴리를 정리하고 실제 잔여 작업을 추적한다.
|
||||
>
|
||||
> **의사결정(사용자 확정):** ① 우선순위 = **마이그레이션 완성 우선**, ② 산출물 = **로드맵/WBS 문서**, ③ 인증 모델 = **단일 사용자 + 기본 보호**.
|
||||
|
||||
---
|
||||
|
||||
## 1. Context — 왜 이 보강이 필요한가
|
||||
|
||||
QuantEngine 은 은퇴자산 포트폴리오 운용을 위한 결정론적 퀀트 엔진이다. canonical 권위는 여전히 **Python 구현(219 파일, 24,683 lines)** 에 있고, `.NET 10` 마이그레이션은 Core / Application / Infrastructure / Web / Tools / Tests 6개 프로젝트로 구조화되어 Phase 1(Web UI)·Phase 2(KIS 수집)까지 도달했다.
|
||||
|
||||
그러나 다음 세 가지 근본 결손으로 마이그레이션 완료 및 상용 기준에 미달한다.
|
||||
|
||||
1. **마이그레이션 미완성** — 도메인 단일 권위가 Python 에 잔존. `PipelineOrchestrator` 가 실제 로직이 아닌 시뮬레이션 스텁. Python↔.NET 패리티가 일부 도메인 계산기에만 존재. GAS 공식 14건 미이관.
|
||||
2. **상용 운영 결손** — 소스에 하드코딩 시크릿 잔존, `.gitignore` 의 `bin/obj` 누락으로 빌드 산출물 git 추적, 헬스체크·메트릭·재시도·스케줄러·운영 구성(`appsettings.Production.json`) 부재.
|
||||
3. **검증 공백** — KIS→스냅샷→정성매도 전 구간 E2E 와 CI 커버리지 게이트 부재.
|
||||
|
||||
---
|
||||
|
||||
## 2. 표기 vs 실제 괴리 정리 (2026-06-30 실측)
|
||||
|
||||
| 기존 WBS | 기존 표기 | 실측 상태 | 괴리 / 조치 |
|
||||
|---|---|---|---|
|
||||
| WBS-10.6 파이프라인 오케스트레이터 | **완료** | `PipelineOrchestrator.cs` 가 각 단계를 `Task.Delay(10)` 로만 시뮬레이션. 실제 서비스 호출 없음 | 🔴 **실질 미완성.** → 본 문서 **A1** 로 재추적 |
|
||||
| WBS-10.9 보안 강화 | **완료** | `appsettings.json` 은 `Password=;` 처리됨. 그러나 `Program.cs:19` 텔레그램 토큰 평문, `Program.cs:34` DB 패스워드 폴백 평문 잔존. `.gitignore` 에 `bin/obj` 없음 → 산출물 git 추적 | 🔴 **부분 완료(핵심 누락).** → 본 문서 **P0** 로 재추적 |
|
||||
| WBS-10.8 데이터 수집 오케스트레이터 | **TODO** | 실제로는 `DataCollectionService.cs`(KIS 수집 오케스트레이션) 구현·커밋됨. 단 파일명/구조가 WBS 기재(`DataCollectionOrchestrator.cs`)와 불일치 | 🟡 **표기 미갱신.** → 본 문서 **A3** 로 정합화 |
|
||||
| WBS-10.3~10.5 도메인/공식/하네스 패리티 | 완료 | `DomainParityTests`, `FormulaEngineTests`, `HarnessInjector` 패리티 존재 확인 | ✅ 유효. 단 패리티 범위가 도메인 계산기에 한정 → 수집/정성매도/스냅샷은 미커버 (**A2** 확장) |
|
||||
| WBS-10.7 Application 서비스 | 부분 완료 | 4개 서비스 구현 확인 | ✅ 유효 |
|
||||
|
||||
> **핵심 시사점:** 기존 WBS-10 은 "완료" 표기가 실제보다 앞서 있다. 특히 보안(10.9)과 파이프라인(10.6)은 표기와 달리 **실질 미완성**이므로, 후속 작업은 표기를 신뢰하지 말고 본 문서의 실측 기준을 따른다.
|
||||
|
||||
---
|
||||
|
||||
## 3. 로드맵 (마이그레이션 완성 우선)
|
||||
|
||||
```
|
||||
[P0 선행 게이트] 보안·위생 차단 ──► 반드시 먼저
|
||||
│
|
||||
▼
|
||||
[Track A] 마이그레이션 완성 (PRIMARY) [Track B] 상용 안정화 (SECONDARY, 병행)
|
||||
A1 PipelineOrchestrator 실구현 B1 구성/시크릿 체계화
|
||||
A2 패리티 하네스 확장(수집·정성매도) B2 기본 인증(단일 사용자)
|
||||
A3 데이터 수집 파이프라인 E2E 정합화 B3 헬스체크·메트릭
|
||||
A4 정성매도/스냅샷 어드민 포팅 B4 재시도(Polly)·스케줄러
|
||||
A5 GAS 잔여 14개 공식 이관 B5 배포(Docker/CI 게이트)
|
||||
A6 SQLite→PostgreSQL 단일화 + Python 폐기 B6 통합/E2E 테스트·커버리지 게이트
|
||||
```
|
||||
|
||||
### 마일스톤
|
||||
|
||||
| 마일스톤 | 구성 | 완료 기준 |
|
||||
|---|---|---|
|
||||
| **M1 위생 확보** | P0 | git 에서 시크릿/산출물 제거, 시크릿 외부화·회전 |
|
||||
| **M2 패리티 기반** | A1·A2 | `.NET` 도메인이 Python 골든 벡터와 1:1 일치, 실 파이프라인 산출 |
|
||||
| **M3 수집 자립** | A3·A4·B4 | `.NET` 단독 KIS→스냅샷→정성매도 무인 실행 |
|
||||
| **M4 단일 권위 전환** | A5·A6 | Python 런타임 의존 제거, `.NET` canonical 승격 |
|
||||
| **M5 상용 운영** | B1~B6 | 단일 사용자 보호·관측·배포 체계 가동 |
|
||||
|
||||
---
|
||||
|
||||
## 4. WBS (작업 분해 구조)
|
||||
|
||||
각 항목: **목표 / 완료 판정(Acceptance) / 주요 파일 / 검증 명령**.
|
||||
|
||||
### P0 — 선행 보안·위생 게이트 (🔴 Critical, 최우선)
|
||||
|
||||
#### WBS-P0.1 빌드 산출물 git 추적 제거
|
||||
- **목표:** `.gitignore` 에 .NET 표준 패턴(`bin/`, `obj/`, `publish-output/`, `*.user`) 추가, 추적 중 산출물 `git rm -r --cached` 처리.
|
||||
- **판정:** `git status` 에 `bin/obj` 변경 미표시.
|
||||
- **파일:** `.gitignore`.
|
||||
- **검증:** `git status --porcelain | grep -E 'bin/|obj/'` → 0건.
|
||||
|
||||
#### WBS-P0.2 하드코딩 시크릿 제거·회전
|
||||
- **목표:** `Program.cs:19` 텔레그램 토큰·채팅ID, `Program.cs:34` DB 패스워드 폴백을 환경변수/`dotnet user-secrets`/`appsettings.Production.json`(비추적)로 이전. 노출 토큰·DB 비밀번호 **회전**.
|
||||
- **판정:** 소스 전역 시크릿 평문 0건, 구성 누락 시 앱 기동 거부(fail-fast).
|
||||
- **파일:** `Program.cs`, `appsettings*.json`, `Infrastructure/TelegramSink.cs`.
|
||||
- **검증:** `Select-String -Pattern '8734507814|C8RFlZ9f' src/dotnet -Recurse` → 0건.
|
||||
|
||||
#### WBS-P0.3 git 이력 시크릿 정리 (선택)
|
||||
- **목표:** 노출 토큰 회전 완료 시 이력 재작성 생략 가능. 회전 불가 시 `git filter-repo` 로 이력 제거 검토.
|
||||
- **판정:** 회전 완료 또는 이력 정리 완료 중 택1 기록.
|
||||
|
||||
> **주의:** WBS-10.9 가 `완료` 로 표기되어 있으나 위 P0.1·P0.2 는 미해결 상태다. 본 게이트 완료 전까지 후속 트랙 착수를 보류한다.
|
||||
|
||||
### Track A — 마이그레이션 완성 (PRIMARY)
|
||||
|
||||
#### WBS-A1 PipelineOrchestrator 실제 구현
|
||||
- **목표:** `Task.Delay` 시뮬레이션 제거. 7단계(수집→정규화→팩터→결정→리스크게이트→리포트→영속화)를 실제 서비스 호출로 연결.
|
||||
- **판정:** 입력 스냅샷에 대해 결정 패킷 산출, 각 단계 결과가 `engine_history` 에 기록.
|
||||
- **파일:** `QuantEngine.Application/Services/PipelineOrchestrator.cs`, 관련 `Services/*`.
|
||||
- **검증:** `dotnet test --filter Pipeline` → 실데이터 기반 산출물 `gate: PASS`.
|
||||
|
||||
#### WBS-A2 패리티 하네스 확장 (수집·정성매도)
|
||||
- **목표:** 기존 도메인 계산기 패리티(10.3~10.5)를 **수집 정규화·정성매도·하네스 주입 전체**로 확장. `spec/13_formula_registry.yaml`(149 공식) 기준 골든 벡터를 Python 에서 추출해 `.NET` 결과와 비교.
|
||||
- **판정:** 핵심 공식 전부 Python 과 동일 출력(부동소수 허용오차 내), 패리티 리포트 JSON 생성.
|
||||
- **파일:** `QuantEngine.Core.Tests/ParityTests/`, `tests/golden/`.
|
||||
- **검증:** `dotnet test --filter Parity` → 전건 PASS.
|
||||
|
||||
#### WBS-A3 데이터 수집 파이프라인 E2E 정합화
|
||||
- **목표:** `DataCollectionService.cs`(구현됨)를 기준으로 WBS 표기 정합화, `kis_data_collection_v1.py` 잔여 로직 완전 이관, KIS→PostgreSQL 스냅샷 E2E 검증. Naver/Yahoo 폴백 다중화 명문화.
|
||||
- **판정:** `.NET` 단독 실데이터 수집·저장 성공, 폴백 동작 확인.
|
||||
- **파일:** `Application/Services/DataCollectionService.cs`, `Infrastructure/External/*`.
|
||||
|
||||
#### WBS-A4 정성매도·스냅샷 어드민 포팅
|
||||
- **목표:** `qualitative_sell_strategy_v1.py`, `snapshot_admin_*_v1.py` 를 `.NET` 서비스/엔드포인트로 이관.
|
||||
- **판정:** 정성매도 5팩터 confluence 결과 Python 일치, 스냅샷 승인 워크플로우가 Web UI 에서 동작.
|
||||
- **파일:** `QuantEngine.Core/Domain/`, `QuantEngine.Web/Endpoints/`, `Components/Pages/`.
|
||||
|
||||
#### WBS-A5 GAS 잔여 14개 공식 이관
|
||||
- **목표:** `governance/gas_logic_migration_ledger_v1.yaml` 의 TODO 14건을 `.NET` 포팅 + parity.
|
||||
- **판정:** 원장 전 항목 `status: DONE`, parity 통과.
|
||||
- **파일:** `QuantEngine.Core/Domain/`, `governance/gas_logic_migration_ledger_v1.yaml`.
|
||||
|
||||
#### WBS-A6 SQLite→PostgreSQL 단일화 및 Python 런타임 폐기
|
||||
- **목표:** canonical DB 를 PostgreSQL 로 일원화, `src/quant_engine/*.db` 의존 제거, Python 런타임 도구를 `.NET`/`Tools` 로 대체.
|
||||
- **판정:** 운영 경로 Python 호출 0건, 모든 데이터 PostgreSQL 단일 소스.
|
||||
- **파일:** `Infrastructure/Data/DbMigrator.cs`, `Makefile`, `tools/`.
|
||||
|
||||
#### WBS-A7 UI 프레임워크 전환 — Fluent UI → MudBlazor + Interactive WebAssembly (2026-06-30 방침)
|
||||
- **배경:** UI 표준을 **MudBlazor** 컴포넌트 + **Interactive WebAssembly** 렌더 모드 + **API-First** 로 전환(방침 확정). 기존 Fluent UI v5 / InteractiveServer 는 폐기. 정책은 [CLAUDE.md](../CLAUDE.md) 및 [AGENTS.md](../AGENTS.md) §5b 에 반영 완료.
|
||||
- **목표:**
|
||||
- csproj 패키지 교체: `Microsoft.FluentUI.AspNetCore.Components*` 제거 → `MudBlazor` 추가.
|
||||
- 렌더 모드 전환: `Program.cs` 의 `AddInteractiveServerComponents`/`AddInteractiveServerRenderMode` → `AddInteractiveWebAssemblyComponents`/`AddInteractiveWebAssemblyRenderMode`, 클라이언트 프로젝트(`QuantEngine.Web.Client`) 분리.
|
||||
- `App.razor`: Fluent CSS/JS·`FluentDesignSystemProvider` 제거 → MudBlazor `<MudThemeProvider>`/`<MudDialogProvider>`/`<MudSnackbarProvider>` + `MudBlazor.min.css/js` 삽입.
|
||||
- 전체 `.razor` 컴포넌트의 `Fluent*` → `Mud*` 치환(매핑표는 [CLAUDE.md](../CLAUDE.md) Component Mapping 참조).
|
||||
- API-First: UI 의 직접 DI 호출을 `IXxxBrowserClient`(HTTP) 경유로 전환, `TokenRefreshHandler` 패턴 적용.
|
||||
- **판정:** Fluent UI 패키지/참조 0건, `dotnet build` 오류 0, WASM 로드 후 `/quant/` 및 주요 페이지 정상 렌더, 비-API 라우트 동작 확인.
|
||||
- **주요 파일:** `QuantEngine.Web/QuantEngine.Web.csproj`, `Program.cs`, `Components/App.razor`, `Components/Layout/*.razor`, `Components/Pages/*.razor`, 신규 `QuantEngine.Web.Client/`.
|
||||
- **검증:** `Select-String -Pattern 'Fluent' src/dotnet/QuantEngine.Web -Recurse` → 0건; 브라우저에서 WASM 모드 동작 확인.
|
||||
|
||||
### Track B — 상용 안정화 (SECONDARY, 단일 사용자)
|
||||
|
||||
#### WBS-B1 구성·시크릿 체계화
|
||||
- **목표:** `appsettings.Production.json`(비추적), `IOptions<T>` + 시작 시 구성 검증(fail-fast), 연결 문자열/토큰 환경변수 표준화.
|
||||
- **판정:** 개발/운영 구성 분리, 필수 구성 누락 시 명확 오류로 기동 중단.
|
||||
|
||||
#### WBS-B2 기본 인증 (단일 사용자 보호)
|
||||
- **목표:** 공개 서버 노출 방어용 최소 인증 — 리버스 프록시 Basic Auth 또는 API Key 미들웨어 1종(`/api/*`·UI 보호). 본격 Identity/JWT 는 범위 외.
|
||||
- **판정:** 비인증 요청 401, 인증 요청만 수집/조회 가능.
|
||||
- **파일:** `Program.cs`, `Endpoints/CollectionEndpoints.cs`, Nginx 구성.
|
||||
|
||||
#### WBS-B3 헬스체크·메트릭
|
||||
- **목표:** `MapHealthChecks("/health")`(liveness) + `/health/ready`(PostgreSQL/KIS 토큰 점검), `prometheus-net` 기반 기본 메트릭.
|
||||
- **판정:** 배포 스크립트 헬스체크가 `/health/ready` 사용, 메트릭 엔드포인트 응답.
|
||||
- **파일:** `Program.cs`, `.gitea/workflows/deploy-prod.yml`.
|
||||
|
||||
#### WBS-B4 재시도(Polly)·백그라운드 스케줄러
|
||||
- **목표:** KIS/Naver/Yahoo HTTP 호출에 Polly 재시도·서킷브레이커, 주기적 수집을 `BackgroundService`(또는 systemd timer 연계)로 자동화.
|
||||
- **판정:** 일시적 5xx/네트워크 오류 자동 복구, 정해진 스케줄 무인 수집.
|
||||
- **파일:** `Program.cs`(HttpClient+Polly), 신규 `Application/Services/*BackgroundService.cs`.
|
||||
|
||||
#### WBS-B5 배포 (Docker/CI 게이트)
|
||||
- **목표:** 멀티스테이지 `Dockerfile` + `docker-compose.yml`(app+PostgreSQL), `.gitea` CI 에 `dotnet build`+`dotnet test` 게이트 추가.
|
||||
- **판정:** 컨테이너 로컬 기동 성공, CI 에서 테스트 실패 시 배포 차단.
|
||||
- **파일:** 신규 `Dockerfile`, `docker-compose.yml`, `.gitea/workflows/ci.yml`.
|
||||
|
||||
#### WBS-B6 통합·E2E 테스트 및 커버리지 게이트
|
||||
- **목표:** Testcontainers(PostgreSQL) 통합테스트, KIS→스냅샷→정성매도 E2E, coverlet 커버리지 임계값을 CI 게이트로 연결.
|
||||
- **판정:** E2E 1건 이상 그린, 커버리지 임계 미달 시 CI 실패.
|
||||
- **파일:** `QuantEngine.Core.Tests/`(통합/E2E), `.gitea/workflows/ci.yml`.
|
||||
|
||||
---
|
||||
|
||||
## 5. 개선·보완·고도화 제안 (Track A/B 외 권고)
|
||||
|
||||
- **결정 재현성 감사:** 동일 입력 → 동일 출력 결정론 검증을 CI 상시 게이트로 편입 ([governance/adr/0003-no-llm-numeric-generation.md](../governance/adr/0003-no-llm-numeric-generation.md) 정신 계승).
|
||||
- **캘리브레이션 실증 연계:** [spec/27_bch_calibration_runbook.yaml](../spec/27_bch_calibration_runbook.yaml) 의 `0/190 CALIBRATED` 문제를 마이그레이션과 분리된 데이터 트랙으로 별도 추적(본 WBS 범위 밖, 링크 유지).
|
||||
- **장애 단일점 보강:** Naver Cloudflare 403 폴백 경로를 Yahoo/KIS 다중화로 명문화(WBS-A3 연동).
|
||||
- **운영 가시성:** 구조화 로깅에 상관관계 ID(correlation id) 추가, 수집 실행별 추적 가능화.
|
||||
- **비밀 회전 정책:** KIS appkey/secret, 텔레그램 토큰, DB 비밀번호의 주기적 회전 절차를 [docs/runbook.md](./runbook.md) 에 문서화.
|
||||
- **WBS 표기 정합성 거버넌스:** 본 문서에서 드러난 "완료 표기 vs 실측" 괴리 재발 방지를 위해, 각 WBS 완료 시 **검증 명령 출력 캡처를 증빙으로 첨부**하는 규칙을 강화([AGENTS.md](../AGENTS.md) 의 검증·증빙 강제 원칙 적용).
|
||||
|
||||
---
|
||||
|
||||
## 6. 검증 방법 (각 단계 실행 시)
|
||||
|
||||
- **P0:** `git status` 산출물 미추적 확인, 시크릿 평문 grep 0건, 회전된 자격증명으로 정상 기동.
|
||||
- **Track A:** `cd src/dotnet && dotnet test` 로 패리티/단위/E2E 그린. 패리티 리포트 JSON 을 Python 출력과 diff. 운영 경로 Python 호출 0건.
|
||||
- **Track B:** `curl /health/ready` 200, 비인증 요청 401, `docker compose up` 기동, CI 테스트/커버리지 게이트 동작. Polly 재시도는 장애 주입 테스트로 검증.
|
||||
|
||||
---
|
||||
|
||||
## 7. 실행 순서 요약
|
||||
|
||||
1. **P0 선행 게이트** (WBS-P0.1~P0.3) — 보안·위생 차단. **(기존 10.9 完了 표기 무시, 실측 기준 처리)**
|
||||
2. **Track A** (A1→A2→A3→A4→A5→A6) — 마이그레이션 완성(우선).
|
||||
3. **Track B** (B1~B6) — 단일 사용자 상용 안정화(A 와 병행, B1·B3 조기 착수 권장).
|
||||
@@ -0,0 +1,11 @@
|
||||
using QuantEngine.Application.Services;
|
||||
|
||||
namespace QuantEngine.Application.Interfaces;
|
||||
|
||||
public interface ICollectionOrchestrator
|
||||
{
|
||||
Task<CollectionRunResult> RunCollectionAsync(
|
||||
string runId,
|
||||
string account,
|
||||
List<string> tickers);
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
/// <summary>
|
||||
/// 컬렉션 실행 결과 — Python collect_to_sqlite() 반환값 대응
|
||||
/// </summary>
|
||||
public class CollectionRunResult
|
||||
{
|
||||
[JsonPropertyName("run_id")]
|
||||
public string RunId { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("status")]
|
||||
public string Status { get; set; } = "RUNNING";
|
||||
|
||||
[JsonPropertyName("started_at")]
|
||||
public string? StartedAt { get; set; }
|
||||
|
||||
[JsonPropertyName("finished_at")]
|
||||
public string? FinishedAt { get; set; }
|
||||
|
||||
[JsonPropertyName("success_count")]
|
||||
public int SuccessCount { get; set; }
|
||||
|
||||
[JsonPropertyName("error_count")]
|
||||
public int ErrorCount { get; set; }
|
||||
|
||||
[JsonPropertyName("error_message")]
|
||||
public string? ErrorMessage { get; set; }
|
||||
|
||||
[JsonPropertyName("source_counts")]
|
||||
public Dictionary<string, int> SourceCounts { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("rows")]
|
||||
public List<Dictionary<string, object>> Rows { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("errors")]
|
||||
public List<Dictionary<string, object>> Errors { get; set; } = new();
|
||||
}
|
||||
@@ -1,60 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using QuantEngine.Core.Interfaces;
|
||||
using QuantEngine.Core.Models;
|
||||
|
||||
namespace QuantEngine.Application.Services
|
||||
{
|
||||
public class CollectionService
|
||||
{
|
||||
private readonly IPostgresqlHistoryStore _historyStore;
|
||||
|
||||
public CollectionService(IPostgresqlHistoryStore historyStore)
|
||||
{
|
||||
_historyStore = historyStore;
|
||||
}
|
||||
|
||||
public Task<int> AppendRunAsync(CollectionRun run)
|
||||
=> _historyStore.AppendAsync("collection_run_history", new Dictionary<string, object?>
|
||||
{
|
||||
["run_id"] = run.RunId,
|
||||
["collector_name"] = run.CollectorName,
|
||||
["started_at"] = run.StartedAt,
|
||||
["finished_at"] = run.FinishedAt,
|
||||
["status"] = run.Status,
|
||||
["input_source"] = run.InputSource,
|
||||
["output_json_path"] = run.OutputJsonPath,
|
||||
["output_db_path"] = run.OutputDbPath,
|
||||
["notes"] = run.Notes,
|
||||
["created_at"] = run.CreatedAt
|
||||
});
|
||||
|
||||
public Task<int> AppendSnapshotAsync(CollectionSnapshot snapshot)
|
||||
=> _historyStore.AppendAsync("collection_snapshot_history", new Dictionary<string, object?>
|
||||
{
|
||||
["run_id"] = snapshot.RunId,
|
||||
["dataset_name"] = snapshot.DatasetName,
|
||||
["ticker"] = snapshot.Ticker,
|
||||
["name"] = snapshot.Name,
|
||||
["sector"] = snapshot.Sector,
|
||||
["as_of_date"] = snapshot.AsOfDate,
|
||||
["source_priority"] = snapshot.SourcePriority,
|
||||
["source_status"] = snapshot.SourceStatus,
|
||||
["payload_json"] = snapshot.PayloadJson,
|
||||
["provenance_json"] = snapshot.ProvenanceJson,
|
||||
["created_at"] = snapshot.CreatedAt
|
||||
});
|
||||
|
||||
public Task<int> AppendSourceErrorAsync(CollectionSourceError error)
|
||||
=> _historyStore.AppendAsync("collection_source_error_history", new Dictionary<string, object?>
|
||||
{
|
||||
["run_id"] = error.RunId,
|
||||
["ticker"] = error.Ticker,
|
||||
["source_name"] = error.SourceName,
|
||||
["error_kind"] = error.ErrorKind,
|
||||
["error_message"] = error.ErrorMessage,
|
||||
["payload_json"] = error.PayloadJson,
|
||||
["created_at"] = error.CreatedAt
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Text.Json;
|
||||
using QuantEngine.Core.Interfaces;
|
||||
using QuantEngine.Application.Interfaces;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
@@ -7,13 +8,16 @@ public class DataCollectionService
|
||||
{
|
||||
private readonly IKisApiClient _kisApiClient;
|
||||
private readonly ICollectionRepository _repository;
|
||||
private readonly ICollectionOrchestrator _orchestrator;
|
||||
|
||||
public DataCollectionService(
|
||||
IKisApiClient kisApiClient,
|
||||
ICollectionRepository repository)
|
||||
ICollectionRepository repository,
|
||||
ICollectionOrchestrator orchestrator)
|
||||
{
|
||||
_kisApiClient = kisApiClient;
|
||||
_repository = repository;
|
||||
_orchestrator = orchestrator;
|
||||
}
|
||||
|
||||
public async Task<CollectionRunResult> RunCollectionAsync(
|
||||
@@ -21,219 +25,6 @@ public class DataCollectionService
|
||||
string account,
|
||||
List<string> tickers)
|
||||
{
|
||||
var result = new CollectionRunResult
|
||||
{
|
||||
RunId = runId,
|
||||
StartedAt = KstNowIso(),
|
||||
Status = "RUNNING"
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
await _repository.SaveRunAsync(new CollectionRunRecord(
|
||||
RunId: runId,
|
||||
Status: "RUNNING",
|
||||
StartedAt: result.StartedAt
|
||||
));
|
||||
|
||||
int successCount = 0;
|
||||
int errorCount = 0;
|
||||
|
||||
foreach (var ticker in tickers)
|
||||
{
|
||||
try
|
||||
{
|
||||
var normalized = await CollectOneAsync(ticker, account);
|
||||
var provenance = new Dictionary<string, object>
|
||||
{
|
||||
{ "ticker", ticker },
|
||||
{ "source", "kis_open_api" }
|
||||
};
|
||||
|
||||
await _repository.SaveSnapshotAsync(new CollectionSnapshotRecord(
|
||||
RunId: runId,
|
||||
DatasetName: "data_feed",
|
||||
Ticker: ticker,
|
||||
SourceName: "kis_open_api",
|
||||
PayloadJson: JsonSerializer.Serialize(normalized),
|
||||
CapturedAt: KstNowIso()
|
||||
));
|
||||
|
||||
successCount++;
|
||||
return await _orchestrator.RunCollectionAsync(runId, account, tickers);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
errorCount++;
|
||||
System.Diagnostics.Debug.WriteLine($"Error collecting {ticker}: {ex.Message}");
|
||||
|
||||
await _repository.SaveErrorAsync(new CollectionErrorRecord(
|
||||
RunId: runId,
|
||||
SourceName: "kis_collector",
|
||||
ErrorKind: ex.GetType().Name,
|
||||
ErrorMessage: ex.Message,
|
||||
Ticker: ticker
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
var finishedAt = KstNowIso();
|
||||
await _repository.UpdateRunStatusAsync(
|
||||
runId,
|
||||
errorCount == 0 ? "COMPLETED" : "COMPLETED_WITH_ERRORS",
|
||||
finishedAt,
|
||||
successCount,
|
||||
errorCount
|
||||
);
|
||||
|
||||
result.Status = errorCount == 0 ? "COMPLETED" : "COMPLETED_WITH_ERRORS";
|
||||
result.FinishedAt = finishedAt;
|
||||
result.SuccessCount = successCount;
|
||||
result.ErrorCount = errorCount;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
System.Diagnostics.Debug.WriteLine($"Fatal error in collection run {runId}: {ex}");
|
||||
await _repository.UpdateRunStatusAsync(runId, "FAILED", KstNowIso());
|
||||
result.Status = "FAILED";
|
||||
result.ErrorMessage = ex.Message;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
private async Task<Dictionary<string, object>> CollectOneAsync(string ticker, string account)
|
||||
{
|
||||
var normalized = new Dictionary<string, object> { { "ticker", ticker } };
|
||||
|
||||
try
|
||||
{
|
||||
var price = await _kisApiClient.GetCurrentPriceAsync(ticker, account);
|
||||
normalized["current_price"] = CoerceFloat(FindFirstValue(price, "stck_prpr", "stck_clpr", "close"));
|
||||
normalized["open"] = CoerceFloat(FindFirstValue(price, "stck_oprc", "open"));
|
||||
normalized["high"] = CoerceFloat(FindFirstValue(price, "stck_hgpr", "high"));
|
||||
normalized["low"] = CoerceFloat(FindFirstValue(price, "stck_lwpr", "low"));
|
||||
normalized["prev_close"] = CoerceFloat(FindFirstValue(price, "prdy_vrss"));
|
||||
normalized["volume"] = CoerceFloat(FindFirstValue(price, "acml_vol", "volume"));
|
||||
normalized["change_pct"] = CoerceFloat(FindFirstValue(price, "prdy_ctrt"));
|
||||
normalized["price_status"] = "OK";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
normalized["price_status"] = "ERROR";
|
||||
normalized["price_error"] = ex.Message;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
var orderbook = await _kisApiClient.GetAskingPrice10LevelAsync(ticker, account);
|
||||
var output1 = ExtractObject(orderbook, "output1");
|
||||
normalized["ask_1"] = CoerceFloat(FindFirstValue(output1, "askp1"));
|
||||
normalized["bid_1"] = CoerceFloat(FindFirstValue(output1, "bidp1"));
|
||||
normalized["orderbook_status"] = "OK";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
normalized["orderbook_status"] = "ERROR";
|
||||
normalized["orderbook_error"] = ex.Message;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
var start = DateTime.Now.AddDays(-10).ToString("yyyyMMdd");
|
||||
var end = DateTime.Now.ToString("yyyyMMdd");
|
||||
var shortSale = await _kisApiClient.GetDailyShortSaleAsync(ticker, start, end, account);
|
||||
var rows = ExtractArray(shortSale, "output2");
|
||||
if (rows.Count > 0 && rows[0] is Dictionary<string, object> latest)
|
||||
{
|
||||
normalized["short_turnover_share"] = CoerceFloat(latest.GetValueOrDefault("ssts_vol_rlim"));
|
||||
}
|
||||
normalized["short_sale_status"] = "OK";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
normalized["short_sale_status"] = "ERROR";
|
||||
normalized["short_sale_error"] = ex.Message;
|
||||
}
|
||||
|
||||
normalized["collection_as_of"] = KstNowIso();
|
||||
return normalized;
|
||||
}
|
||||
|
||||
private static object? FindFirstValue(Dictionary<string, object> payload, params string[] keys)
|
||||
{
|
||||
var stack = new Stack<object>();
|
||||
stack.Push(payload);
|
||||
|
||||
while (stack.Count > 0)
|
||||
{
|
||||
var item = stack.Pop();
|
||||
if (item is Dictionary<string, object> dict)
|
||||
{
|
||||
foreach (var key in keys)
|
||||
{
|
||||
if (dict.TryGetValue(key, out var value) && value != null && !string.IsNullOrEmpty(value.ToString()))
|
||||
return value;
|
||||
}
|
||||
foreach (var value in dict.Values)
|
||||
if (value != null) stack.Push(value);
|
||||
}
|
||||
else if (item is JsonElement elem && elem.ValueKind == System.Text.Json.JsonValueKind.Object)
|
||||
{
|
||||
foreach (var key in keys)
|
||||
{
|
||||
if (elem.TryGetProperty(key, out var prop) && prop.ValueKind != System.Text.Json.JsonValueKind.Null)
|
||||
return prop;
|
||||
}
|
||||
foreach (var prop in elem.EnumerateObject())
|
||||
stack.Push(prop.Value);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private static double? CoerceFloat(object? value)
|
||||
{
|
||||
if (value == null || string.IsNullOrEmpty(value.ToString()))
|
||||
return null;
|
||||
try
|
||||
{
|
||||
var str = value.ToString()?.Replace(",", "").Replace("%", "") ?? "";
|
||||
return double.TryParse(str, out var d) ? d : null;
|
||||
}
|
||||
catch { return null; }
|
||||
}
|
||||
|
||||
private static Dictionary<string, object> ExtractObject(Dictionary<string, object> payload, string key)
|
||||
{
|
||||
if (payload.TryGetValue(key, out var value) && value is Dictionary<string, object> dict)
|
||||
return dict;
|
||||
if (value is JsonElement elem && elem.ValueKind == System.Text.Json.JsonValueKind.Object)
|
||||
return JsonSerializer.Deserialize<Dictionary<string, object>>(elem.GetRawText()) ?? new();
|
||||
return new();
|
||||
}
|
||||
|
||||
private static List<object> ExtractArray(Dictionary<string, object> payload, string key)
|
||||
{
|
||||
if (payload.TryGetValue(key, out var value))
|
||||
{
|
||||
if (value is List<object> list) return list;
|
||||
if (value is JsonElement elem && elem.ValueKind == System.Text.Json.JsonValueKind.Array)
|
||||
return JsonSerializer.Deserialize<List<object>>(elem.GetRawText()) ?? new();
|
||||
}
|
||||
return new();
|
||||
}
|
||||
|
||||
private static string KstNowIso() =>
|
||||
DateTime.Now.ToString("o");
|
||||
}
|
||||
|
||||
public class CollectionRunResult
|
||||
{
|
||||
public string RunId { get; set; } = "";
|
||||
public string Status { get; set; } = "";
|
||||
public string StartedAt { get; set; } = "";
|
||||
public string? FinishedAt { get; set; }
|
||||
public int SuccessCount { get; set; }
|
||||
public int ErrorCount { get; set; }
|
||||
public string? ErrorMessage { get; set; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
/// <summary>
|
||||
/// 데이터 정규화 유틸 — Python kis_data_collection_v1.py 라인 76-99 포팅
|
||||
/// </summary>
|
||||
public static class DataNormalizationHelper
|
||||
{
|
||||
/// <summary>
|
||||
/// 값을 double로 강제 변환 (Python _coerce_float 대응)
|
||||
/// null/"" → null, "1,234.56%" → 1234.56
|
||||
/// </summary>
|
||||
public static double? CoerceFloat(object? value)
|
||||
{
|
||||
if (value == null || string.IsNullOrEmpty(value.ToString()))
|
||||
return null;
|
||||
|
||||
try
|
||||
{
|
||||
var str = value.ToString()?.Replace(",", "").Replace("%", "").Trim() ?? "";
|
||||
if (string.IsNullOrEmpty(str))
|
||||
return null;
|
||||
return double.Parse(str);
|
||||
}
|
||||
catch
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 재귀적으로 첫 번째 non-null 값 찾기 (Python _find_first_value 대응)
|
||||
/// </summary>
|
||||
public static object? FindFirstValue(Dictionary<string, object>? payload, params string[] keys)
|
||||
{
|
||||
if (payload == null)
|
||||
return null;
|
||||
|
||||
var stack = new Stack<object>();
|
||||
stack.Push(payload);
|
||||
|
||||
while (stack.Count > 0)
|
||||
{
|
||||
var item = stack.Pop();
|
||||
|
||||
if (item is Dictionary<string, object> dict)
|
||||
{
|
||||
foreach (var key in keys)
|
||||
{
|
||||
if (dict.TryGetValue(key, out var value) && value != null && !string.IsNullOrEmpty(value.ToString()))
|
||||
return value;
|
||||
}
|
||||
foreach (var value in dict.Values)
|
||||
{
|
||||
if (value != null) stack.Push(value);
|
||||
}
|
||||
}
|
||||
else if (item is List<object> list)
|
||||
{
|
||||
foreach (var value in list)
|
||||
{
|
||||
if (value != null) stack.Push(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// KST 현재 시각을 ISO 8601 형식으로 반환
|
||||
/// </summary>
|
||||
public static string KstNowIso()
|
||||
{
|
||||
var kst = TimeZoneInfo.FindSystemTimeZoneById("Korea Standard Time");
|
||||
return TimeZoneInfo.ConvertTime(DateTime.Now, kst).ToString("o");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
public class GatherTradingDataParser
|
||||
{
|
||||
public List<Dictionary<string, object>> ParseGatherTradingData(string jsonFilePath)
|
||||
{
|
||||
if (!File.Exists(jsonFilePath))
|
||||
return new();
|
||||
|
||||
var jsonText = File.ReadAllText(jsonFilePath);
|
||||
return ParseGatherTradingData(JsonDocument.Parse(jsonText));
|
||||
}
|
||||
|
||||
public List<Dictionary<string, object>> ParseGatherTradingData(JsonDocument json)
|
||||
{
|
||||
var rows = new List<Dictionary<string, object>>();
|
||||
var root = json.RootElement;
|
||||
|
||||
// Extract data_feed
|
||||
if (root.TryGetProperty("data", out var dataElem) && dataElem.TryGetProperty("data_feed", out var feedElem))
|
||||
{
|
||||
var feedDict = new Dictionary<string, Dictionary<string, object>>();
|
||||
|
||||
foreach (var item in feedElem.EnumerateArray())
|
||||
{
|
||||
if (item.TryGetProperty("Ticker", out var tickerElem))
|
||||
{
|
||||
var ticker = tickerElem.GetString();
|
||||
if (string.IsNullOrEmpty(ticker))
|
||||
continue;
|
||||
|
||||
var row = new Dictionary<string, object>();
|
||||
foreach (var prop in item.EnumerateObject())
|
||||
{
|
||||
row[prop.Name] = prop.Value.GetRawText();
|
||||
}
|
||||
feedDict[ticker] = row;
|
||||
}
|
||||
}
|
||||
|
||||
// Merge with core_satellite
|
||||
if (dataElem.TryGetProperty("core_satellite", out var satElem))
|
||||
{
|
||||
foreach (var item in satElem.EnumerateArray())
|
||||
{
|
||||
if (item.TryGetProperty("Ticker", out var tickerElem))
|
||||
{
|
||||
var ticker = tickerElem.GetString();
|
||||
if (!string.IsNullOrEmpty(ticker) && feedDict.TryGetValue(ticker, out var row))
|
||||
{
|
||||
foreach (var prop in item.EnumerateObject())
|
||||
{
|
||||
if (!row.ContainsKey(prop.Name))
|
||||
row[prop.Name] = prop.Value.GetRawText();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
rows.AddRange(feedDict.Values);
|
||||
}
|
||||
|
||||
return rows;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
using System.Text.Json;
|
||||
using QuantEngine.Core.Interfaces;
|
||||
using QuantEngine.Core.Models;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
public class KisApiPriceSource : IPriceSource
|
||||
{
|
||||
private readonly IKisApiClient _kisApiClient;
|
||||
|
||||
public string SourceName => "kis_open_api";
|
||||
|
||||
public KisApiPriceSource(IKisApiClient kisApiClient)
|
||||
{
|
||||
_kisApiClient = kisApiClient;
|
||||
}
|
||||
|
||||
public async Task<PriceSourceResult> GetPriceDataAsync(string ticker, string account)
|
||||
{
|
||||
try
|
||||
{
|
||||
var result = new PriceSourceResult { Status = "OK", Source = "kis", Account = account };
|
||||
|
||||
// Get current price
|
||||
try
|
||||
{
|
||||
var price = await _kisApiClient.GetCurrentPriceAsync(ticker, account);
|
||||
result.CurrentPrice = CoerceFloat(FindFirstValue(price, "stck_prpr", "stck_clpr", "close"));
|
||||
result.Open = CoerceFloat(FindFirstValue(price, "stck_oprc", "open"));
|
||||
result.High = CoerceFloat(FindFirstValue(price, "stck_hgpr", "high"));
|
||||
result.Low = CoerceFloat(FindFirstValue(price, "stck_lwpr", "low"));
|
||||
result.PrevClose = CoerceFloat(FindFirstValue(price, "prdy_vrss"));
|
||||
result.Volume = CoerceFloat(FindFirstValue(price, "acml_vol", "volume"));
|
||||
result.ChangePct = CoerceFloat(FindFirstValue(price, "prdy_ctrt"));
|
||||
result.PriceStatus = "OK";
|
||||
result.CurrentPriceRaw = JsonSerializer.Deserialize<Dictionary<string, object>>(JsonSerializer.Serialize(price)) ?? new();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
result.PriceStatus = "ERROR";
|
||||
result.Error = ex.Message;
|
||||
}
|
||||
|
||||
// Get orderbook
|
||||
try
|
||||
{
|
||||
var orderbook = await _kisApiClient.GetAskingPrice10LevelAsync(ticker, account);
|
||||
var output1 = ExtractObject(orderbook, "output1");
|
||||
result.Ask1 = CoerceFloat(output1.GetValueOrDefault("askp1"));
|
||||
result.Bid1 = CoerceFloat(output1.GetValueOrDefault("bidp1"));
|
||||
result.OrderbookStatus = "OK";
|
||||
result.OrderbookRaw = output1;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
result.OrderbookStatus = "ERROR";
|
||||
}
|
||||
|
||||
// Get short sale
|
||||
try
|
||||
{
|
||||
var start = DateTime.Now.AddDays(-10).ToString("yyyyMMdd");
|
||||
var end = DateTime.Now.ToString("yyyyMMdd");
|
||||
var shortSale = await _kisApiClient.GetDailyShortSaleAsync(ticker, start, end, account);
|
||||
var rows = ExtractArray(shortSale, "output2");
|
||||
if (rows.Count > 0 && rows[0] is Dictionary<string, object> latest)
|
||||
{
|
||||
result.ShortTurnoverShare = CoerceFloat(latest.GetValueOrDefault("ssts_vol_rlim"));
|
||||
}
|
||||
result.ShortSaleStatus = "OK";
|
||||
result.ShortSaleRaw = (Dictionary<string, object>?)rows.FirstOrDefault() ?? new();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
result.ShortSaleStatus = "ERROR";
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return new PriceSourceResult { Status = "ERROR", Error = ex.Message, Source = "kis", Account = account };
|
||||
}
|
||||
}
|
||||
|
||||
private static object? FindFirstValue(Dictionary<string, object> payload, params string[] keys)
|
||||
{
|
||||
var stack = new Stack<object>();
|
||||
stack.Push(payload);
|
||||
|
||||
while (stack.Count > 0)
|
||||
{
|
||||
var item = stack.Pop();
|
||||
if (item is Dictionary<string, object> dict)
|
||||
{
|
||||
foreach (var key in keys)
|
||||
{
|
||||
if (dict.TryGetValue(key, out var value) && value != null && !string.IsNullOrEmpty(value.ToString()))
|
||||
return value;
|
||||
}
|
||||
foreach (var value in dict.Values)
|
||||
if (value != null) stack.Push(value);
|
||||
}
|
||||
else if (item is JsonElement elem && elem.ValueKind == JsonValueKind.Object)
|
||||
{
|
||||
foreach (var key in keys)
|
||||
{
|
||||
if (elem.TryGetProperty(key, out var prop) && prop.ValueKind != JsonValueKind.Null)
|
||||
return prop;
|
||||
}
|
||||
foreach (var prop in elem.EnumerateObject())
|
||||
stack.Push(prop.Value);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private static double? CoerceFloat(object? value)
|
||||
{
|
||||
if (value == null || string.IsNullOrEmpty(value.ToString()))
|
||||
return null;
|
||||
try
|
||||
{
|
||||
var str = value.ToString()?.Replace(",", "").Replace("%", "") ?? "";
|
||||
return double.TryParse(str, out var d) ? d : null;
|
||||
}
|
||||
catch { return null; }
|
||||
}
|
||||
|
||||
private static Dictionary<string, object> ExtractObject(Dictionary<string, object> payload, string key)
|
||||
{
|
||||
if (payload.TryGetValue(key, out var value) && value is Dictionary<string, object> dict)
|
||||
return dict;
|
||||
if (value is JsonElement elem && elem.ValueKind == JsonValueKind.Object)
|
||||
return JsonSerializer.Deserialize<Dictionary<string, object>>(elem.GetRawText()) ?? new();
|
||||
return new();
|
||||
}
|
||||
|
||||
private static List<object> ExtractArray(Dictionary<string, object> payload, string key)
|
||||
{
|
||||
if (payload.TryGetValue(key, out var value))
|
||||
{
|
||||
if (value is List<object> list) return list;
|
||||
if (value is JsonElement elem && elem.ValueKind == JsonValueKind.Array)
|
||||
return JsonSerializer.Deserialize<List<object>>(elem.GetRawText()) ?? new();
|
||||
}
|
||||
return new();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using QuantEngine.Core.Interfaces;
|
||||
using QuantEngine.Application.Interfaces;
|
||||
using QuantEngine.Application.Services;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
public class KisDataCollectionOrchestrator : ICollectionOrchestrator
|
||||
{
|
||||
private readonly IKisApiClient _kisApiClient;
|
||||
private readonly ICollectionRepository _repository;
|
||||
private readonly PriceDataNormalizer _normalizer;
|
||||
private readonly SourcePriorityResolver _priorityResolver;
|
||||
// Logging removed for simplicity
|
||||
|
||||
public KisDataCollectionOrchestrator(
|
||||
IKisApiClient kisApiClient,
|
||||
ICollectionRepository repository,
|
||||
PriceDataNormalizer normalizer,
|
||||
SourcePriorityResolver priorityResolver)
|
||||
{
|
||||
_kisApiClient = kisApiClient;
|
||||
_repository = repository;
|
||||
_normalizer = normalizer;
|
||||
_priorityResolver = priorityResolver;
|
||||
|
||||
}
|
||||
|
||||
public async Task<CollectionRunResult> RunCollectionAsync(string runId, string account, List<string> tickers)
|
||||
{
|
||||
var startedAt = DataNormalizationHelper.KstNowIso();
|
||||
var result = new CollectionRunResult
|
||||
{
|
||||
RunId = runId,
|
||||
Status = "RUNNING",
|
||||
StartedAt = startedAt,
|
||||
SuccessCount = 0,
|
||||
ErrorCount = 0
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
// Log: skipped
|
||||
|
||||
var kisSource = new KisApiPriceSource(_kisApiClient);
|
||||
var rows = new List<Dictionary<string, object>>();
|
||||
var errors = new List<Dictionary<string, object>>();
|
||||
var sourceCounts = new Dictionary<string, int>();
|
||||
|
||||
foreach (var ticker in tickers)
|
||||
{
|
||||
try
|
||||
{
|
||||
// Log: skipped
|
||||
var kisResult = await kisSource.GetPriceDataAsync(ticker, account);
|
||||
|
||||
var seedRow = new Dictionary<string, object> { { "Ticker", ticker } };
|
||||
var (normalized, provenance) = _normalizer.NormalizeCollectionRow(seedRow, kisResult, null, false);
|
||||
|
||||
// Save to DB
|
||||
await _repository.SaveSnapshotAsync(new CollectionSnapshotRecord(
|
||||
RunId: runId,
|
||||
DatasetName: "data_feed",
|
||||
Ticker: ticker,
|
||||
SourceName: (string)(provenance.GetValueOrDefault("source") ?? "kis_open_api"),
|
||||
PayloadJson: JsonSerializer.Serialize(normalized),
|
||||
CapturedAt: DataNormalizationHelper.KstNowIso()
|
||||
));
|
||||
|
||||
// Track source
|
||||
var source = (string)(provenance.GetValueOrDefault("source") ?? "kis_open_api");
|
||||
if (!sourceCounts.ContainsKey(source))
|
||||
sourceCounts[source] = 0;
|
||||
sourceCounts[source]++;
|
||||
|
||||
rows.Add(normalized);
|
||||
result.SuccessCount++;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
// Log: skipped
|
||||
result.ErrorCount++;
|
||||
errors.Add(new Dictionary<string, object>
|
||||
{
|
||||
{ "ticker", ticker },
|
||||
{ "error", ex.Message },
|
||||
{ "error_kind", ex.GetType().Name }
|
||||
});
|
||||
|
||||
await _repository.SaveErrorAsync(new CollectionErrorRecord(
|
||||
RunId: runId,
|
||||
SourceName: "kis_collector",
|
||||
ErrorKind: ex.GetType().Name,
|
||||
ErrorMessage: ex.Message,
|
||||
Ticker: ticker
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
var finishedAt = DataNormalizationHelper.KstNowIso();
|
||||
result.Status = result.ErrorCount == 0 ? "COMPLETED" : "COMPLETED_WITH_ERRORS";
|
||||
result.FinishedAt = finishedAt;
|
||||
result.SourceCounts = sourceCounts;
|
||||
result.Rows = rows;
|
||||
result.Errors = errors;
|
||||
|
||||
// Save run record
|
||||
await _repository.SaveRunAsync(new CollectionRunRecord(
|
||||
RunId: runId,
|
||||
Status: result.Status,
|
||||
StartedAt: startedAt,
|
||||
FinishedAt: finishedAt,
|
||||
TotalSnapshots: result.SuccessCount,
|
||||
TotalErrors: result.ErrorCount
|
||||
));
|
||||
|
||||
// Output JSON file
|
||||
var outputPath = Path.Combine(Path.GetTempPath(), "kis_data_collection_v1.json");
|
||||
var outputData = new
|
||||
{
|
||||
formula_id = "KIS_DATA_COLLECTION_V1",
|
||||
run_id = runId,
|
||||
started_at = startedAt,
|
||||
finished_at = finishedAt,
|
||||
row_count = rows.Count,
|
||||
source_counts = sourceCounts,
|
||||
errors = errors,
|
||||
rows = rows
|
||||
};
|
||||
File.WriteAllText(outputPath, JsonSerializer.Serialize(outputData, new JsonSerializerOptions { WriteIndented = true }));
|
||||
// Log: skipped
|
||||
|
||||
return result;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
// Log: skipped
|
||||
result.Status = "FAILED";
|
||||
result.FinishedAt = DataNormalizationHelper.KstNowIso();
|
||||
result.ErrorMessage = ex.Message;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
using QuantEngine.Core.Models;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
/// <summary>
|
||||
/// 가격 데이터 정규화 — Python _collect_one() 로직 대응
|
||||
/// </summary>
|
||||
public class PriceDataNormalizer
|
||||
{
|
||||
private readonly SourcePriorityResolver _priorityResolver;
|
||||
|
||||
public PriceDataNormalizer(SourcePriorityResolver priorityResolver)
|
||||
{
|
||||
_priorityResolver = priorityResolver;
|
||||
}
|
||||
|
||||
public (Dictionary<string, object> Normalized, Dictionary<string, object> Provenance) NormalizeCollectionRow(
|
||||
Dictionary<string, object> row,
|
||||
PriceSourceResult? kis,
|
||||
PriceSourceResult? naver,
|
||||
bool includeNaver = false)
|
||||
{
|
||||
var ticker = (row.GetValueOrDefault("Ticker") as string) ?? (row.GetValueOrDefault("ticker") as string) ?? "";
|
||||
var name = (row.GetValueOrDefault("Name") as string) ?? (row.GetValueOrDefault("name") as string) ?? "";
|
||||
var sector = (row.GetValueOrDefault("Sector") as string) ?? (row.GetValueOrDefault("sector") as string);
|
||||
|
||||
var normalized = new Dictionary<string, object>(row);
|
||||
|
||||
var (sourcePriority, provenance) = _priorityResolver.ResolveSourcePriority(
|
||||
ticker, kis, naver, includeNaver: includeNaver);
|
||||
|
||||
// KIS 데이터 병합
|
||||
if (kis?.Status == "OK")
|
||||
{
|
||||
MergeSourceFields(normalized, kis, new[] { "current_price", "open", "high", "low", "volume" });
|
||||
MergeSourceFields(normalized, kis, new[] { "relative_return_20d", "volume_ratio_5d", "microstructure_pressure", "short_turnover_share" });
|
||||
}
|
||||
|
||||
// Naver 폴백
|
||||
if (naver?.Status == "OK" || naver?.Status == "DATA_MISSING")
|
||||
{
|
||||
// Removed
|
||||
// Removed
|
||||
NormalizedSetDefault(normalized, "naver_price_status", naver?.Status);
|
||||
NormalizedSetDefault(normalized, "current_price", naver?.CurrentPrice);
|
||||
NormalizedSetDefault(normalized, "open", naver?.Open);
|
||||
NormalizedSetDefault(normalized, "high", naver?.High);
|
||||
NormalizedSetDefault(normalized, "low", naver?.Low);
|
||||
NormalizedSetDefault(normalized, "volume", naver?.Volume);
|
||||
}
|
||||
|
||||
// 최종 폴백 (기초 데이터)
|
||||
NormalizedSetDefault(normalized, "current_price", DataNormalizationHelper.CoerceFloat(row.GetValueOrDefault("current_price") ?? row.GetValueOrDefault("Current_Price") ?? row.GetValueOrDefault("close")));
|
||||
NormalizedSetDefault(normalized, "open", DataNormalizationHelper.CoerceFloat(row.GetValueOrDefault("open") ?? row.GetValueOrDefault("Open")));
|
||||
NormalizedSetDefault(normalized, "high", DataNormalizationHelper.CoerceFloat(row.GetValueOrDefault("high") ?? row.GetValueOrDefault("High")));
|
||||
NormalizedSetDefault(normalized, "low", DataNormalizationHelper.CoerceFloat(row.GetValueOrDefault("low") ?? row.GetValueOrDefault("Low")));
|
||||
NormalizedSetDefault(normalized, "volume", DataNormalizationHelper.CoerceFloat(row.GetValueOrDefault("volume") ?? row.GetValueOrDefault("Volume")));
|
||||
|
||||
normalized["collection_as_of"] = DataNormalizationHelper.KstNowIso();
|
||||
|
||||
return (normalized, provenance);
|
||||
}
|
||||
|
||||
private void MergeSourceFields(Dictionary<string, object> target, PriceSourceResult source, string[] keys)
|
||||
{
|
||||
foreach (var key in keys)
|
||||
{
|
||||
var value = source.GetType().GetProperty(ToPascalCase(key))?.GetValue(source);
|
||||
if (value != null && !string.IsNullOrEmpty(value.ToString()))
|
||||
target[key] = value;
|
||||
}
|
||||
}
|
||||
|
||||
private void NormalizedSetDefault(Dictionary<string, object> normalized, string key, object? value)
|
||||
{
|
||||
if (!normalized.ContainsKey(key) && value != null && !string.IsNullOrEmpty(value.ToString()))
|
||||
normalized[key] = value;
|
||||
}
|
||||
|
||||
private string ToPascalCase(string snake)
|
||||
{
|
||||
return System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(snake.Replace("_", " ")).Replace(" ", "");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
using QuantEngine.Core.Models;
|
||||
|
||||
namespace QuantEngine.Application.Services;
|
||||
|
||||
/// <summary>
|
||||
/// Price Source 우선순위 결정 — Python _resolve_price_source 대응
|
||||
/// KIS (우선) → Naver → JSON
|
||||
/// </summary>
|
||||
public class SourcePriorityResolver
|
||||
{
|
||||
public (List<string> SourcePriority, Dictionary<string, object> Provenance) ResolveSourcePriority(
|
||||
string ticker,
|
||||
PriceSourceResult? kis,
|
||||
PriceSourceResult? naver,
|
||||
bool includeNaver = false,
|
||||
bool includeLiveKis = true)
|
||||
{
|
||||
var sourcePriority = new List<string> { "gathertradingdata_json" };
|
||||
var provenance = new Dictionary<string, object>
|
||||
{
|
||||
{ "ticker", ticker },
|
||||
{ "source_priority", new List<string>() }
|
||||
};
|
||||
|
||||
// KIS 우선 (status OK만)
|
||||
if (includeLiveKis && kis?.Status == "OK")
|
||||
{
|
||||
sourcePriority.Insert(0, "kis_open_api");
|
||||
provenance["kis"] = kis;
|
||||
}
|
||||
|
||||
// Naver 추가 (OK or DATA_MISSING)
|
||||
if (includeNaver && naver != null && (naver.Status == "OK" || naver.Status == "DATA_MISSING"))
|
||||
{
|
||||
sourcePriority.Add("naver_finance");
|
||||
provenance["naver"] = naver;
|
||||
}
|
||||
|
||||
provenance["source_priority"] = sourcePriority;
|
||||
return (sourcePriority, provenance);
|
||||
}
|
||||
}
|
||||
@@ -1,159 +0,0 @@
|
||||
using QuantEngine.Application.Services;
|
||||
using QuantEngine.Core.Interfaces;
|
||||
using QuantEngine.Core.Models;
|
||||
|
||||
namespace QuantEngine.Core.Tests;
|
||||
|
||||
public class ApplicationServiceTests
|
||||
{
|
||||
[Fact]
|
||||
public async Task WorkspaceService_ForwardsSettingAndHistoryOperations()
|
||||
{
|
||||
var repo = new FakeWorkspaceRepository();
|
||||
var history = new FakeHistoryStore();
|
||||
var service = new WorkspaceService(repo, history);
|
||||
|
||||
var setting = new Setting { Ordinal = 1, Key = "risk_mode", ValueJson = "\"RISK_ON\"" };
|
||||
Assert.True(await service.UpsertSettingAsync(setting));
|
||||
Assert.Equal(setting, repo.LastSetting);
|
||||
|
||||
var payload = new Dictionary<string, object?> { ["foo"] = "bar" };
|
||||
Assert.Equal(1, await service.AppendHistoryAsync("decision_result_history", payload));
|
||||
Assert.Equal("decision_result_history", history.LastDomain);
|
||||
Assert.Equal("bar", history.LastPayload?["foo"]);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ApprovalService_ForwardsApprovalAndLockOperations()
|
||||
{
|
||||
var repo = new FakeWorkspaceRepository();
|
||||
var service = new ApprovalService(repo);
|
||||
|
||||
var approval = new WorkspaceApproval { Domain = "settings", TargetRef = "portfolio", Status = "APPROVED" };
|
||||
Assert.True(await service.UpsertApprovalAsync(approval));
|
||||
Assert.Equal(approval, repo.LastApproval);
|
||||
|
||||
var lockRow = new WorkspaceLock { Domain = "settings", TargetRef = "portfolio", LockedBy = "qa", Reason = "review" };
|
||||
Assert.True(await service.AcquireLockAsync(lockRow));
|
||||
Assert.Equal(lockRow, repo.LastLock);
|
||||
Assert.True(await service.ReleaseLockAsync("settings", "portfolio"));
|
||||
Assert.Equal(("settings", "portfolio"), repo.LastReleasedLock);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task CollectionService_AppendsRunSnapshotAndErrorRecords()
|
||||
{
|
||||
var history = new FakeHistoryStore();
|
||||
var service = new CollectionService(history);
|
||||
|
||||
await service.AppendRunAsync(new CollectionRun
|
||||
{
|
||||
RunId = "run-1",
|
||||
CollectorName = "kis",
|
||||
StartedAt = "2026-06-26T09:00:00+09:00",
|
||||
Status = "PASS"
|
||||
});
|
||||
|
||||
Assert.Equal("collection_run_history", history.LastDomain);
|
||||
Assert.Equal("run-1", history.LastPayload?["run_id"]);
|
||||
|
||||
await service.AppendSnapshotAsync(new CollectionSnapshot
|
||||
{
|
||||
RunId = "run-1",
|
||||
DatasetName = "decision_result_history",
|
||||
Ticker = "005930",
|
||||
SourcePriority = "KIS",
|
||||
SourceStatus = "PASS",
|
||||
PayloadJson = "{}",
|
||||
ProvenanceJson = "{}"
|
||||
});
|
||||
|
||||
Assert.Equal("collection_snapshot_history", history.LastDomain);
|
||||
Assert.Equal("005930", history.LastPayload?["ticker"]);
|
||||
|
||||
await service.AppendSourceErrorAsync(new CollectionSourceError
|
||||
{
|
||||
RunId = "run-1",
|
||||
SourceName = "naver",
|
||||
ErrorKind = "TIMEOUT",
|
||||
ErrorMessage = "timeout"
|
||||
});
|
||||
|
||||
Assert.Equal("collection_source_error_history", history.LastDomain);
|
||||
Assert.Equal("TIMEOUT", history.LastPayload?["error_kind"]);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FormulaService_ForwardsFormulaExecutionAndHistory()
|
||||
{
|
||||
var history = new FakeHistoryStore();
|
||||
var service = new FormulaService(history);
|
||||
|
||||
var timing = service.ComputeTimingDecision(new Dictionary<string, object>
|
||||
{
|
||||
["entryModeGate"] = "PASS",
|
||||
["entryMode"] = "BREAKOUT",
|
||||
["leaderGate"] = "PASS",
|
||||
["acGate"] = "CLEAR",
|
||||
["priceStatus"] = "PRICE_OK",
|
||||
["atr20"] = 1.0,
|
||||
["leaderTotal"] = 4,
|
||||
["flowCredit"] = 0.7,
|
||||
["avgTradeValue5D"] = 100,
|
||||
["spreadPct"] = 0.5
|
||||
});
|
||||
|
||||
Assert.NotEqual(string.Empty, timing.Action);
|
||||
|
||||
await service.AppendFormulaRunAsync("timing", new Dictionary<string, object?>
|
||||
{
|
||||
["action"] = timing.Action,
|
||||
["entry_score"] = timing.EntryScore
|
||||
});
|
||||
|
||||
Assert.Equal("formula_timing_history", history.LastDomain);
|
||||
Assert.Equal(timing.Action, history.LastPayload?["action"]);
|
||||
}
|
||||
|
||||
private sealed class FakeWorkspaceRepository : IWorkspaceRepository
|
||||
{
|
||||
public Setting? LastSetting { get; private set; }
|
||||
public WorkspaceApproval? LastApproval { get; private set; }
|
||||
public WorkspaceLock? LastLock { get; private set; }
|
||||
public (string Domain, string TargetRef)? LastReleasedLock { get; private set; }
|
||||
|
||||
public Task<IEnumerable<Setting>> GetSettingsAsync() => Task.FromResult(Enumerable.Empty<Setting>());
|
||||
public Task<Setting?> GetSettingByKeyAsync(string key) => Task.FromResult<Setting?>(null);
|
||||
public Task<bool> UpsertSettingAsync(Setting setting) { LastSetting = setting; return Task.FromResult(true); }
|
||||
public Task<bool> DeleteSettingAsync(string key) => Task.FromResult(true);
|
||||
|
||||
public Task<IEnumerable<AccountSnapshot>> GetAccountSnapshotsAsync() => Task.FromResult(Enumerable.Empty<AccountSnapshot>());
|
||||
public Task<bool> InsertAccountSnapshotsAsync(IEnumerable<AccountSnapshot> snapshots) => Task.FromResult(true);
|
||||
public Task<bool> ClearAccountSnapshotsAsync() => Task.FromResult(true);
|
||||
|
||||
public Task<IEnumerable<WorkspaceApproval>> GetApprovalsAsync() => Task.FromResult(Enumerable.Empty<WorkspaceApproval>());
|
||||
public Task<WorkspaceApproval?> GetApprovalAsync(string domain, string targetRef) => Task.FromResult<WorkspaceApproval?>(null);
|
||||
public Task<bool> UpsertApprovalAsync(WorkspaceApproval approval) { LastApproval = approval; return Task.FromResult(true); }
|
||||
|
||||
public Task<IEnumerable<WorkspaceLock>> GetLocksAsync() => Task.FromResult(Enumerable.Empty<WorkspaceLock>());
|
||||
public Task<WorkspaceLock?> GetLockAsync(string domain, string targetRef) => Task.FromResult<WorkspaceLock?>(null);
|
||||
public Task<bool> AcquireLockAsync(WorkspaceLock @lock) { LastLock = @lock; return Task.FromResult(true); }
|
||||
public Task<bool> ReleaseLockAsync(string domain, string targetRef) { LastReleasedLock = (domain, targetRef); return Task.FromResult(true); }
|
||||
}
|
||||
|
||||
private sealed class FakeHistoryStore : IPostgresqlHistoryStore
|
||||
{
|
||||
public string? LastDomain { get; private set; }
|
||||
public IDictionary<string, object?>? LastPayload { get; private set; }
|
||||
|
||||
public Task<int> AppendAsync(string domain, IDictionary<string, object?> payload)
|
||||
{
|
||||
LastDomain = domain;
|
||||
LastPayload = new Dictionary<string, object?>(payload);
|
||||
return Task.FromResult(1);
|
||||
}
|
||||
|
||||
public Task<IReadOnlyList<IDictionary<string, object?>>> SnapshotAsync(string domain, int limit = 500)
|
||||
=> Task.FromResult<IReadOnlyList<IDictionary<string, object?>>>(Array.Empty<IDictionary<string, object?>>());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using QuantEngine.Core.Models;
|
||||
|
||||
namespace QuantEngine.Core.Interfaces;
|
||||
|
||||
/// <summary>
|
||||
/// Price Source 공통 인터페이스 — SOLID Liskov Substitution 준수
|
||||
/// </summary>
|
||||
public interface IPriceSource
|
||||
{
|
||||
/// <summary>소스 이름 (kis_open_api, naver_finance, json)</summary>
|
||||
string SourceName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 종목 가격 데이터 조회
|
||||
/// </summary>
|
||||
/// <param name="ticker">종목 코드 (6자리)</param>
|
||||
/// <param name="account">계좌 구분 (real, mock)</param>
|
||||
/// <returns>PriceSourceResult (status OK 또는 ERROR)</returns>
|
||||
Task<PriceSourceResult> GetPriceDataAsync(string ticker, string account);
|
||||
}
|
||||
@@ -6,6 +6,14 @@ namespace QuantEngine.Core.Interfaces
|
||||
{
|
||||
public interface IWorkspaceRepository
|
||||
{
|
||||
// Accounts
|
||||
Task<IEnumerable<WorkspaceAccount>> GetAccountsAsync();
|
||||
Task<WorkspaceAccount?> GetAccountByUsernameAsync(string username);
|
||||
Task<bool> UpsertAccountAsync(WorkspaceAccount account);
|
||||
Task<WorkspaceSession?> GetSessionByTokenHashAsync(string tokenHash);
|
||||
Task<bool> UpsertSessionAsync(WorkspaceSession session);
|
||||
Task<bool> RevokeSessionAsync(string tokenHash, string revokedAt);
|
||||
|
||||
// Settings
|
||||
Task<IEnumerable<Setting>> GetSettingsAsync();
|
||||
Task<Setting?> GetSettingByKeyAsync(string key);
|
||||
|
||||
@@ -1,19 +1,105 @@
|
||||
using System;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace QuantEngine.Core.Models
|
||||
namespace QuantEngine.Core.Models;
|
||||
|
||||
/// <summary>
|
||||
/// 종목별 수집 데이터 스냅샷 — Python kis_data_collection_v1.py _collect_one() 반환값 대응
|
||||
/// </summary>
|
||||
public class CollectionSnapshot
|
||||
{
|
||||
public class CollectionSnapshot
|
||||
{
|
||||
public string RunId { get; set; } = string.Empty;
|
||||
public string DatasetName { get; set; } = string.Empty;
|
||||
/// <summary>종목 코드 (6자리 숫자)</summary>
|
||||
[JsonPropertyName("ticker")]
|
||||
public string Ticker { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>종목명</summary>
|
||||
[JsonPropertyName("name")]
|
||||
public string? Name { get; set; }
|
||||
|
||||
/// <summary>업종</summary>
|
||||
[JsonPropertyName("sector")]
|
||||
public string? Sector { get; set; }
|
||||
public string? AsOfDate { get; set; }
|
||||
public string SourcePriority { get; set; } = string.Empty;
|
||||
public string SourceStatus { get; set; } = string.Empty;
|
||||
public string PayloadJson { get; set; } = string.Empty;
|
||||
public string ProvenanceJson { get; set; } = string.Empty;
|
||||
public DateTime CreatedAt { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>현재가</summary>
|
||||
[JsonPropertyName("current_price")]
|
||||
public double? CurrentPrice { get; set; }
|
||||
|
||||
/// <summary>시가</summary>
|
||||
[JsonPropertyName("open")]
|
||||
public double? Open { get; set; }
|
||||
|
||||
/// <summary>고가</summary>
|
||||
[JsonPropertyName("high")]
|
||||
public double? High { get; set; }
|
||||
|
||||
/// <summary>저가</summary>
|
||||
[JsonPropertyName("low")]
|
||||
public double? Low { get; set; }
|
||||
|
||||
/// <summary>이전 종가</summary>
|
||||
[JsonPropertyName("prev_close")]
|
||||
public double? PrevClose { get; set; }
|
||||
|
||||
/// <summary>거래량</summary>
|
||||
[JsonPropertyName("volume")]
|
||||
public double? Volume { get; set; }
|
||||
|
||||
/// <summary>등락률 (%)</summary>
|
||||
[JsonPropertyName("change_pct")]
|
||||
public double? ChangePct { get; set; }
|
||||
|
||||
/// <summary>매도호가</summary>
|
||||
[JsonPropertyName("ask_1")]
|
||||
public double? Ask1 { get; set; }
|
||||
|
||||
/// <summary>매수호가</summary>
|
||||
[JsonPropertyName("bid_1")]
|
||||
public double? Bid1 { get; set; }
|
||||
|
||||
/// <summary>장중 강도 (주문량 불균형)</summary>
|
||||
[JsonPropertyName("microstructure_pressure")]
|
||||
public double? MicrostructurePressure { get; set; }
|
||||
|
||||
/// <summary>공매도 주식 수</summary>
|
||||
[JsonPropertyName("short_turnover_share")]
|
||||
public double? ShortTurnoverShare { get; set; }
|
||||
|
||||
/// <summary>가격 조회 상태 (OK, ERROR)</summary>
|
||||
[JsonPropertyName("price_status")]
|
||||
public string PriceStatus { get; set; } = "OK";
|
||||
|
||||
/// <summary>호가 조회 상태 (OK, ERROR)</summary>
|
||||
[JsonPropertyName("orderbook_status")]
|
||||
public string OrderbookStatus { get; set; } = "OK";
|
||||
|
||||
/// <summary>공매도 조회 상태 (OK, ERROR)</summary>
|
||||
[JsonPropertyName("short_sale_status")]
|
||||
public string ShortSaleStatus { get; set; } = "OK";
|
||||
|
||||
/// <summary>수집 시각 (ISO 8601 KST)</summary>
|
||||
[JsonPropertyName("collection_as_of")]
|
||||
public string? CollectionAsOf { get; set; }
|
||||
|
||||
/// <summary>가격 조회 에러 메시지</summary>
|
||||
[JsonPropertyName("price_error")]
|
||||
public string? PriceError { get; set; }
|
||||
|
||||
/// <summary>호가 조회 에러 메시지</summary>
|
||||
[JsonPropertyName("orderbook_error")]
|
||||
public string? OrderbookError { get; set; }
|
||||
|
||||
/// <summary>공매도 조회 에러 메시지</summary>
|
||||
[JsonPropertyName("short_sale_error")]
|
||||
public string? ShortSaleError { get; set; }
|
||||
|
||||
/// <summary>상대 수익률 (20일)</summary>
|
||||
[JsonPropertyName("relative_return_20d")]
|
||||
public double? RelativeReturn20D { get; set; }
|
||||
|
||||
/// <summary>거래량 비율 (5일)</summary>
|
||||
[JsonPropertyName("volume_ratio_5d")]
|
||||
public double? VolumeRatio5D { get; set; }
|
||||
|
||||
/// <summary>수집 날짜 (기초 데이터)</summary>
|
||||
[JsonPropertyName("Price_Date")]
|
||||
public string? PriceDate { get; set; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace QuantEngine.Core.Models;
|
||||
|
||||
/// <summary>
|
||||
/// 수집 실행 상태 열거형
|
||||
/// </summary>
|
||||
public enum CollectionStatus
|
||||
{
|
||||
Running = 0,
|
||||
Completed = 1,
|
||||
CompletedWithErrors = 2,
|
||||
Failed = 3
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace QuantEngine.Core.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Price Source API 응답 결과 — Python _normalize_kis_fields() 반환값 대응
|
||||
/// </summary>
|
||||
public class PriceSourceResult
|
||||
{
|
||||
[JsonPropertyName("status")]
|
||||
public string Status { get; set; } = "OK";
|
||||
|
||||
[JsonPropertyName("error")]
|
||||
public string? Error { get; set; }
|
||||
|
||||
[JsonPropertyName("source")]
|
||||
public string Source { get; set; } = "kis";
|
||||
|
||||
[JsonPropertyName("account")]
|
||||
public string? Account { get; set; }
|
||||
|
||||
// Price fields
|
||||
[JsonPropertyName("current_price")]
|
||||
public double? CurrentPrice { get; set; }
|
||||
|
||||
[JsonPropertyName("open")]
|
||||
public double? Open { get; set; }
|
||||
|
||||
[JsonPropertyName("high")]
|
||||
public double? High { get; set; }
|
||||
|
||||
[JsonPropertyName("low")]
|
||||
public double? Low { get; set; }
|
||||
|
||||
[JsonPropertyName("prev_close")]
|
||||
public double? PrevClose { get; set; }
|
||||
|
||||
[JsonPropertyName("volume")]
|
||||
public double? Volume { get; set; }
|
||||
|
||||
[JsonPropertyName("change_pct")]
|
||||
public double? ChangePct { get; set; }
|
||||
|
||||
// Orderbook fields
|
||||
[JsonPropertyName("ask_1")]
|
||||
public double? Ask1 { get; set; }
|
||||
|
||||
[JsonPropertyName("bid_1")]
|
||||
public double? Bid1 { get; set; }
|
||||
|
||||
[JsonPropertyName("microstructure_pressure")]
|
||||
public double? MicrostructurePressure { get; set; }
|
||||
|
||||
// Short sale
|
||||
[JsonPropertyName("short_turnover_share")]
|
||||
public double? ShortTurnoverShare { get; set; }
|
||||
|
||||
// Status tracking
|
||||
[JsonPropertyName("price_status")]
|
||||
public string? PriceStatus { get; set; }
|
||||
|
||||
[JsonPropertyName("orderbook_status")]
|
||||
public string? OrderbookStatus { get; set; }
|
||||
|
||||
[JsonPropertyName("short_sale_status")]
|
||||
public string? ShortSaleStatus { get; set; }
|
||||
|
||||
// Raw responses (for provenance)
|
||||
[JsonPropertyName("current_price_raw")]
|
||||
public Dictionary<string, object>? CurrentPriceRaw { get; set; }
|
||||
|
||||
[JsonPropertyName("orderbook_raw")]
|
||||
public Dictionary<string, object>? OrderbookRaw { get; set; }
|
||||
|
||||
[JsonPropertyName("short_sale_raw")]
|
||||
public Dictionary<string, object>? ShortSaleRaw { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
namespace QuantEngine.Core.Models
|
||||
{
|
||||
public class WorkspaceAccount
|
||||
{
|
||||
public int Ordinal { get; set; }
|
||||
public string Username { get; set; } = string.Empty;
|
||||
public string PasswordHash { get; set; } = string.Empty;
|
||||
public string Role { get; set; } = "Admin";
|
||||
public string IsActive { get; set; } = "true";
|
||||
public string CreatedAt { get; set; } = string.Empty;
|
||||
public string UpdatedAt { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace QuantEngine.Core.Models
|
||||
{
|
||||
public class WorkspaceSession
|
||||
{
|
||||
public string SessionTokenHash { get; set; } = string.Empty;
|
||||
public string Username { get; set; } = string.Empty;
|
||||
public string Role { get; set; } = "Admin";
|
||||
public string CreatedAt { get; set; } = string.Empty;
|
||||
public string ExpiresAt { get; set; } = string.Empty;
|
||||
public string? RevokedAt { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -30,6 +30,32 @@ namespace QuantEngine.Infrastructure.Data
|
||||
);
|
||||
");
|
||||
|
||||
// 0b. workspace_account
|
||||
conn.Execute(@"
|
||||
CREATE TABLE IF NOT EXISTS workspace_account (
|
||||
ordinal INT NOT NULL,
|
||||
username TEXT PRIMARY KEY,
|
||||
password_hash TEXT NOT NULL,
|
||||
role TEXT NOT NULL DEFAULT 'Admin',
|
||||
is_active TEXT NOT NULL DEFAULT 'true',
|
||||
created_at TEXT NOT NULL,
|
||||
updated_at TEXT NOT NULL
|
||||
);
|
||||
CREATE INDEX IF NOT EXISTS idx_workspace_account_active ON workspace_account(is_active, username);
|
||||
");
|
||||
|
||||
conn.Execute(@"
|
||||
CREATE TABLE IF NOT EXISTS workspace_session (
|
||||
session_token_hash TEXT PRIMARY KEY,
|
||||
username TEXT NOT NULL,
|
||||
role TEXT NOT NULL DEFAULT 'Admin',
|
||||
created_at TEXT NOT NULL,
|
||||
expires_at TEXT NOT NULL,
|
||||
revoked_at TEXT
|
||||
);
|
||||
CREATE INDEX IF NOT EXISTS idx_workspace_session_username ON workspace_session(username, expires_at DESC);
|
||||
");
|
||||
|
||||
// 1. collection_runs
|
||||
conn.Execute(@"
|
||||
CREATE TABLE IF NOT EXISTS collection_runs (
|
||||
@@ -157,6 +183,16 @@ namespace QuantEngine.Infrastructure.Data
|
||||
);
|
||||
");
|
||||
|
||||
conn.Execute(@"
|
||||
INSERT INTO quantengine.workspace_account (
|
||||
ordinal, username, password_hash, role, is_active, created_at, updated_at
|
||||
)
|
||||
SELECT 1, 'admin', '8C6976E5B5410415BDE908BD4DEE15DFB167A9C873FC4BB8A81F6F2AB448A918', 'Admin', 'true', NOW()::text, NOW()::text
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM quantengine.workspace_account WHERE username = 'admin'
|
||||
);
|
||||
");
|
||||
|
||||
// 10. engine_history schema and tables
|
||||
conn.Execute(@"
|
||||
CREATE SCHEMA IF NOT EXISTS engine_history;
|
||||
|
||||
@@ -17,6 +17,89 @@ namespace QuantEngine.Infrastructure.Repositories
|
||||
_connectionFactory = connectionFactory;
|
||||
}
|
||||
|
||||
// Accounts
|
||||
public async Task<IEnumerable<WorkspaceAccount>> GetAccountsAsync()
|
||||
{
|
||||
using var conn = _connectionFactory.CreateConnection();
|
||||
return await conn.QueryAsync<WorkspaceAccount>(@"
|
||||
SELECT ordinal, username as Username, password_hash as PasswordHash, role as Role,
|
||||
is_active as IsActive, created_at as CreatedAt, updated_at as UpdatedAt
|
||||
FROM quantengine.workspace_account
|
||||
ORDER BY ordinal ASC"
|
||||
);
|
||||
}
|
||||
|
||||
public async Task<WorkspaceAccount?> GetAccountByUsernameAsync(string username)
|
||||
{
|
||||
using var conn = _connectionFactory.CreateConnection();
|
||||
return await conn.QueryFirstOrDefaultAsync<WorkspaceAccount>(@"
|
||||
SELECT ordinal, username as Username, password_hash as PasswordHash, role as Role,
|
||||
is_active as IsActive, created_at as CreatedAt, updated_at as UpdatedAt
|
||||
FROM quantengine.workspace_account
|
||||
WHERE username = @Username",
|
||||
new { Username = username }
|
||||
);
|
||||
}
|
||||
|
||||
public async Task<bool> UpsertAccountAsync(WorkspaceAccount account)
|
||||
{
|
||||
using var conn = _connectionFactory.CreateConnection();
|
||||
var affected = await conn.ExecuteAsync(@"
|
||||
INSERT INTO quantengine.workspace_account (ordinal, username, password_hash, role, is_active, created_at, updated_at)
|
||||
VALUES (@Ordinal, @Username, @PasswordHash, @Role, @IsActive, @CreatedAt, @UpdatedAt)
|
||||
ON CONFLICT (username) DO UPDATE SET
|
||||
ordinal = EXCLUDED.ordinal,
|
||||
password_hash = EXCLUDED.password_hash,
|
||||
role = EXCLUDED.role,
|
||||
is_active = EXCLUDED.is_active,
|
||||
updated_at = EXCLUDED.updated_at",
|
||||
account
|
||||
);
|
||||
return affected > 0;
|
||||
}
|
||||
|
||||
public async Task<WorkspaceSession?> GetSessionByTokenHashAsync(string tokenHash)
|
||||
{
|
||||
using var conn = _connectionFactory.CreateConnection();
|
||||
return await conn.QueryFirstOrDefaultAsync<WorkspaceSession>(@"
|
||||
SELECT session_token_hash as SessionTokenHash, username as Username, role as Role,
|
||||
created_at as CreatedAt, expires_at as ExpiresAt, revoked_at as RevokedAt
|
||||
FROM quantengine.workspace_session
|
||||
WHERE session_token_hash = @TokenHash",
|
||||
new { TokenHash = tokenHash }
|
||||
);
|
||||
}
|
||||
|
||||
public async Task<bool> UpsertSessionAsync(WorkspaceSession session)
|
||||
{
|
||||
using var conn = _connectionFactory.CreateConnection();
|
||||
var affected = await conn.ExecuteAsync(@"
|
||||
INSERT INTO quantengine.workspace_session
|
||||
(session_token_hash, username, role, created_at, expires_at, revoked_at)
|
||||
VALUES
|
||||
(@SessionTokenHash, @Username, @Role, @CreatedAt, @ExpiresAt, @RevokedAt)
|
||||
ON CONFLICT (session_token_hash) DO UPDATE SET
|
||||
username = EXCLUDED.username,
|
||||
role = EXCLUDED.role,
|
||||
expires_at = EXCLUDED.expires_at,
|
||||
revoked_at = EXCLUDED.revoked_at",
|
||||
session
|
||||
);
|
||||
return affected > 0;
|
||||
}
|
||||
|
||||
public async Task<bool> RevokeSessionAsync(string tokenHash, string revokedAt)
|
||||
{
|
||||
using var conn = _connectionFactory.CreateConnection();
|
||||
var affected = await conn.ExecuteAsync(@"
|
||||
UPDATE quantengine.workspace_session
|
||||
SET revoked_at = @RevokedAt
|
||||
WHERE session_token_hash = @TokenHash",
|
||||
new { TokenHash = tokenHash, RevokedAt = revokedAt }
|
||||
);
|
||||
return affected > 0;
|
||||
}
|
||||
|
||||
// Settings
|
||||
public async Task<IEnumerable<Setting>> GetSettingsAsync()
|
||||
{
|
||||
|
||||
+79
-9
@@ -7,25 +7,42 @@ namespace QuantEngine.Web.Client.Infrastructure
|
||||
public class CustomAuthenticationStateProvider : AuthenticationStateProvider
|
||||
{
|
||||
private readonly LocalStorageService _localStorage;
|
||||
private readonly HttpClient _http;
|
||||
private readonly ClaimsPrincipal _anonymous = new ClaimsPrincipal(new ClaimsIdentity());
|
||||
private const string StorageKey = "quant_admin_session";
|
||||
private const string TokenKey = "quant_admin_access_token";
|
||||
private const string UsernameKey = "quant_admin_username";
|
||||
private const string RoleKey = "quant_admin_role";
|
||||
private const string RememberUsernameKey = "quant_admin_remember_username";
|
||||
|
||||
public CustomAuthenticationStateProvider(LocalStorageService localStorage)
|
||||
public CustomAuthenticationStateProvider(LocalStorageService localStorage, HttpClient http)
|
||||
{
|
||||
_localStorage = localStorage;
|
||||
_http = http;
|
||||
}
|
||||
|
||||
public override async Task<AuthenticationState> GetAuthenticationStateAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
var username = await _localStorage.GetAsync<string>(StorageKey);
|
||||
if (!string.IsNullOrEmpty(username))
|
||||
var token = await _localStorage.GetAsync<string>(TokenKey);
|
||||
var username = await _localStorage.GetAsync<string>(UsernameKey);
|
||||
var role = await _localStorage.GetAsync<string>(RoleKey) ?? "Admin";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(token) && !string.IsNullOrWhiteSpace(username))
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Get, "api/auth/me");
|
||||
request.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token);
|
||||
var response = await _http.SendAsync(request);
|
||||
if (!response.IsSuccessStatusCode)
|
||||
{
|
||||
await MarkUserAsLoggedOutAsync();
|
||||
return new AuthenticationState(_anonymous);
|
||||
}
|
||||
|
||||
var identity = new ClaimsIdentity(new[]
|
||||
{
|
||||
new Claim(ClaimTypes.Name, username),
|
||||
new Claim(ClaimTypes.Role, "Admin")
|
||||
new Claim(ClaimTypes.Role, role)
|
||||
}, "QuantAdminAuth");
|
||||
|
||||
var user = new ClaimsPrincipal(identity);
|
||||
@@ -40,14 +57,30 @@ namespace QuantEngine.Web.Client.Infrastructure
|
||||
return new AuthenticationState(_anonymous);
|
||||
}
|
||||
|
||||
public async Task MarkUserAsAuthenticatedAsync(string username)
|
||||
public async Task MarkUserAsAuthenticatedAsync(string username, string accessToken, string role)
|
||||
{
|
||||
await _localStorage.SetAsync(StorageKey, username);
|
||||
await MarkUserAsAuthenticatedAsync(username, accessToken, role, rememberUsername: true);
|
||||
}
|
||||
|
||||
public async Task MarkUserAsAuthenticatedAsync(string username, string accessToken, string role, bool rememberUsername)
|
||||
{
|
||||
await _localStorage.SetAsync(TokenKey, accessToken);
|
||||
if (rememberUsername)
|
||||
{
|
||||
await _localStorage.SetAsync(UsernameKey, username);
|
||||
await _localStorage.SetAsync(RememberUsernameKey, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
await _localStorage.DeleteAsync(UsernameKey);
|
||||
await _localStorage.SetAsync(RememberUsernameKey, false);
|
||||
}
|
||||
await _localStorage.SetAsync(RoleKey, role);
|
||||
|
||||
var identity = new ClaimsIdentity(new[]
|
||||
{
|
||||
new Claim(ClaimTypes.Name, username),
|
||||
new Claim(ClaimTypes.Role, "Admin")
|
||||
new Claim(ClaimTypes.Role, role)
|
||||
}, "QuantAdminAuth");
|
||||
|
||||
var user = new ClaimsPrincipal(identity);
|
||||
@@ -56,8 +89,45 @@ namespace QuantEngine.Web.Client.Infrastructure
|
||||
|
||||
public async Task MarkUserAsLoggedOutAsync()
|
||||
{
|
||||
await _localStorage.DeleteAsync(StorageKey);
|
||||
await _localStorage.DeleteAsync(TokenKey);
|
||||
await _localStorage.DeleteAsync(RoleKey);
|
||||
var rememberUsername = await _localStorage.GetAsync<bool>(RememberUsernameKey);
|
||||
if (!rememberUsername)
|
||||
{
|
||||
await _localStorage.DeleteAsync(UsernameKey);
|
||||
}
|
||||
NotifyAuthenticationStateChanged(Task.FromResult(new AuthenticationState(_anonymous)));
|
||||
}
|
||||
|
||||
public async Task LogoutFromServerAsync()
|
||||
{
|
||||
var token = await _localStorage.GetAsync<string>(TokenKey);
|
||||
if (!string.IsNullOrWhiteSpace(token))
|
||||
{
|
||||
try
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Post, "api/auth/logout");
|
||||
request.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token);
|
||||
await _http.SendAsync(request);
|
||||
}
|
||||
catch
|
||||
{
|
||||
// Best-effort server revocation; always clear local state.
|
||||
}
|
||||
}
|
||||
|
||||
await MarkUserAsLoggedOutAsync();
|
||||
}
|
||||
|
||||
public async Task<string?> GetRememberedUsernameAsync()
|
||||
{
|
||||
var rememberUsername = await _localStorage.GetAsync<bool>(RememberUsernameKey);
|
||||
if (!rememberUsername)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return await _localStorage.GetAsync<string>(UsernameKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
@Body
|
||||
@@ -2,74 +2,36 @@
|
||||
@inject HttpClient Http
|
||||
@inject AuthenticationStateProvider AuthStateProvider
|
||||
@inject NavigationManager NavigationManager
|
||||
@using System.Net.Http.Json
|
||||
@using Microsoft.FluentUI.AspNetCore.Components
|
||||
@using QuantEngine.Web.Client.Infrastructure
|
||||
|
||||
<FluentStack Orientation="Orientation.Vertical" Class="h-100 w-100">
|
||||
<!-- Header -->
|
||||
<FluentHeader>
|
||||
<FluentStack Orientation="Orientation.Horizontal" VerticalAlignment="VerticalAlignment.Center"
|
||||
Style="width: 100%; padding: 8px 16px; gap: 16px;">
|
||||
<FluentButton OnClick="@(() => navOpen = !navOpen)"
|
||||
Title="Toggle Navigation"
|
||||
Style="background: transparent; border: none; cursor: pointer;">
|
||||
☰
|
||||
</FluentButton>
|
||||
<h1 style="margin: 0; font-size: 20px; font-weight: 600;">QuantEngine v@appVersion</h1>
|
||||
<MudLayout>
|
||||
<MudAppBar Elevation="1" Dense="true">
|
||||
<MudIconButton Icon="@Icons.Material.Filled.Menu" Color="Color.Inherit" Edge="Edge.Start" OnClick="@(() => navOpen = !navOpen)" />
|
||||
<MudText Typo="Typo.h6">QuantEngine v@appVersion</MudText>
|
||||
<MudSpacer />
|
||||
<AuthorizeView>
|
||||
<Authorized>
|
||||
<div style="margin-left: auto; display: flex; align-items: center; gap: 12px;">
|
||||
<span style="font-size: 13px; color: var(--neutral-foreground-hint);">관리자 (@context.User.Identity?.Name)</span>
|
||||
<FluentButton OnClick="HandleLogoutAsync" Style="color: #ff5252; background: transparent; border: 1px solid rgba(255, 82, 82, 0.2); cursor: pointer; padding: 4px 12px; border-radius: 4px;">
|
||||
로그아웃
|
||||
</FluentButton>
|
||||
</div>
|
||||
<MudText Typo="Typo.body2">관리자 (@context.User.Identity?.Name)</MudText>
|
||||
<MudButton Variant="Variant.Outlined" Color="Color.Error" OnClick="HandleLogoutAsync">로그아웃</MudButton>
|
||||
</Authorized>
|
||||
</AuthorizeView>
|
||||
</FluentStack>
|
||||
</FluentHeader>
|
||||
</MudAppBar>
|
||||
|
||||
<!-- Main Content Area -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" Class="flex-1" Style="overflow: hidden;">
|
||||
<!-- Navigation Sidebar -->
|
||||
@if (navOpen)
|
||||
{
|
||||
<nav style="width: 240px; background: var(--neutral-layer-1); border-right: 1px solid var(--neutral-stroke-1); padding: 12px; overflow-y: auto;">
|
||||
<MudDrawer Open="@navOpen" Variant="DrawerVariant.Responsive" Elevation="1">
|
||||
<MudNavMenu>
|
||||
<NavMenu />
|
||||
<div style="margin-top: auto; padding-top: 12px; border-top: 1px solid var(--neutral-stroke-1); margin-top: 12px; font-size: 11px; color: var(--neutral-foreground-3); line-height: 1.5;">
|
||||
<div style="font-weight: 500; margin-bottom: 2px;">QuantEngine v@appVersion</div>
|
||||
<div style="font-size: 10px; opacity: 0.85;">배포: @buildTime</div>
|
||||
</MudNavMenu>
|
||||
<div style="padding: 16px; border-top: 1px solid var(--mud-palette-lines-default);">
|
||||
<MudText Typo="Typo.caption">QuantEngine v@appVersion</MudText>
|
||||
<MudText Typo="Typo.caption">배포: @buildTime</MudText>
|
||||
</div>
|
||||
</nav>
|
||||
}
|
||||
</MudDrawer>
|
||||
|
||||
<!-- Page Content -->
|
||||
<FluentStack Orientation="Orientation.Vertical" Class="flex-1" Style="overflow-y: auto; padding: 24px;">
|
||||
<MudMainContent>
|
||||
<MudContainer MaxWidth="MaxWidth.False" Class="pa-4">
|
||||
@Body
|
||||
</FluentStack>
|
||||
</FluentStack>
|
||||
</FluentStack>
|
||||
|
||||
<div id="blazor-error-ui" data-nosnippet>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<p>An unhandled error has occurred.</p>
|
||||
<a href="." class="btn btn-primary">Reload</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.h-100 {
|
||||
height: 100%;
|
||||
}
|
||||
.w-100 {
|
||||
width: 100%;
|
||||
}
|
||||
.flex-1 {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
}
|
||||
</style>
|
||||
</MudContainer>
|
||||
</MudMainContent>
|
||||
</MudLayout>
|
||||
|
||||
@code {
|
||||
private bool navOpen = true;
|
||||
@@ -89,15 +51,14 @@
|
||||
}
|
||||
catch
|
||||
{
|
||||
// Fail-safe default fallback values
|
||||
}
|
||||
}
|
||||
|
||||
private async Task HandleLogoutAsync()
|
||||
{
|
||||
var customProvider = (CustomAuthenticationStateProvider)AuthStateProvider;
|
||||
await customProvider.MarkUserAsLoggedOutAsync();
|
||||
NavigationManager.NavigateTo("login");
|
||||
await customProvider.LogoutFromServerAsync();
|
||||
NavigationManager.NavigateTo("/login");
|
||||
}
|
||||
|
||||
private class VersionInfo
|
||||
@@ -106,4 +67,3 @@
|
||||
public string? Built { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
@using Microsoft.FluentUI.AspNetCore.Components
|
||||
|
||||
<FluentNavMenu>
|
||||
<FluentNavLink Href="/" Match="NavLinkMatch.All">
|
||||
Dashboard
|
||||
</FluentNavLink>
|
||||
<FluentNavLink Href="/operations" Match="NavLinkMatch.Prefix">
|
||||
Operations
|
||||
</FluentNavLink>
|
||||
</FluentNavMenu>
|
||||
<MudNavMenu>
|
||||
<MudNavLink Href="/dashboard" Match="NavLinkMatch.All">Dashboard</MudNavLink>
|
||||
<MudNavLink Href="/operations" Match="NavLinkMatch.Prefix">Operations</MudNavLink>
|
||||
</MudNavMenu>
|
||||
|
||||
@@ -6,118 +6,88 @@
|
||||
|
||||
<PageTitle>QuantEngine - Collection</PageTitle>
|
||||
|
||||
<h1 style="margin: 0 0 8px 0; font-size: 28px; font-weight: 600;">Data Collection</h1>
|
||||
<p style="margin: 0 0 16px 0; color: var(--neutral-foreground-2); font-size: 14px;">
|
||||
KIS API data collection dashboard. Monitor runs, snapshots, and error trends.
|
||||
</p>
|
||||
<MudText Typo="Typo.h4" Class="mb-2">Data Collection</MudText>
|
||||
<MudText Typo="Typo.body2" Class="mb-4">KIS API data collection dashboard. API-first로만 동작합니다.</MudText>
|
||||
|
||||
<!-- Controls -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" HorizontalGap="8" Style="margin-bottom: 16px;">
|
||||
<FluentButton Appearance="ButtonAppearance.Primary" OnClick="@StartCollectionAsync" Disabled="@IsProcessing">
|
||||
@if (IsProcessing) { <span>Running...</span> } else { <span>Start Collection</span> }
|
||||
</FluentButton>
|
||||
<FluentButton Appearance="ButtonAppearance.Default" OnClick="@RefreshAsync" Disabled="@IsProcessing">
|
||||
Refresh
|
||||
</FluentButton>
|
||||
</FluentStack>
|
||||
<MudStack Row="true" Spacing="2" Class="mb-4">
|
||||
<MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="@StartCollectionAsync" Disabled="@IsProcessing">
|
||||
@(IsProcessing ? "Running..." : "Start Collection")
|
||||
</MudButton>
|
||||
<MudButton Variant="Variant.Outlined" OnClick="@RefreshAsync" Disabled="@IsProcessing">Refresh</MudButton>
|
||||
</MudStack>
|
||||
|
||||
<!-- Loading skeleton -->
|
||||
@if (IsLoading)
|
||||
{
|
||||
<FluentStack Orientation="Orientation.Vertical" VerticalGap="16">
|
||||
<FluentSkeleton Width="100%" Height="60px" />
|
||||
<FluentSkeleton Width="100%" Height="200px" />
|
||||
</FluentStack>
|
||||
<MudProgressLinear Indeterminate="true" Color="Color.Primary" Class="mb-4" />
|
||||
}
|
||||
else if (DashboardState != null)
|
||||
{
|
||||
<!-- Summary Cards -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" HorizontalGap="16" Wrap="true" Style="margin-bottom: 16px;">
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Last Run</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@(DashboardState.LastRunStatus ?? "N/A")</h3>
|
||||
<p style="margin: 8px 0 0 0; color: var(--neutral-foreground-3); font-size: 12px;">@(DashboardState.LastFinishedAt ?? "Not finished")</p>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Total Snapshots</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@DashboardState.TotalSnapshots</h3>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Total Errors</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@DashboardState.TotalErrors</h3>
|
||||
</div>
|
||||
</FluentCard>
|
||||
</FluentStack>
|
||||
<MudGrid Spacing="2" Class="mb-4">
|
||||
<MudItem xs="12" sm="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Last Run</MudText>
|
||||
<MudText Typo="Typo.h6">@(DashboardState.LastRunStatus ?? "N/A")</MudText>
|
||||
<MudText Typo="Typo.body2">@(DashboardState.LastFinishedAt ?? "Not finished")</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Total Snapshots</MudText>
|
||||
<MudText Typo="Typo.h6">@DashboardState.TotalSnapshots</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Total Errors</MudText>
|
||||
<MudText Typo="Typo.h6">@DashboardState.TotalErrors</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
</MudGrid>
|
||||
|
||||
<!-- Recent Errors -->
|
||||
@if (DashboardState.RecentErrors.Count > 0)
|
||||
{
|
||||
<FluentCard Style="margin-bottom: 16px;">
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Recent Errors</h3>
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<thead style="background: var(--neutral-subtle);">
|
||||
<tr>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Source</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Kind</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Ticker</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Message</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var error in DashboardState.RecentErrors)
|
||||
{
|
||||
<tr>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@error.SourceName</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@error.ErrorKind</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@error.Ticker</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@error.ErrorMessage</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<MudPaper Class="pa-4 mb-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Recent Errors</MudText>
|
||||
<MudTable Items="@DashboardState.RecentErrors" Dense="true" Hover="true">
|
||||
<HeaderContent>
|
||||
<MudTh>Source</MudTh>
|
||||
<MudTh>Kind</MudTh>
|
||||
<MudTh>Ticker</MudTh>
|
||||
<MudTh>Message</MudTh>
|
||||
</HeaderContent>
|
||||
<RowTemplate>
|
||||
<MudTd DataLabel="Source">@context.SourceName</MudTd>
|
||||
<MudTd DataLabel="Kind">@context.ErrorKind</MudTd>
|
||||
<MudTd DataLabel="Ticker">@context.Ticker</MudTd>
|
||||
<MudTd DataLabel="Message">@context.ErrorMessage</MudTd>
|
||||
</RowTemplate>
|
||||
</MudTable>
|
||||
</MudPaper>
|
||||
}
|
||||
|
||||
<!-- Recent Runs -->
|
||||
@if (RecentRuns != null && RecentRuns.Count > 0)
|
||||
{
|
||||
<FluentCard>
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Recent Runs</h3>
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<thead style="background: var(--neutral-subtle);">
|
||||
<tr>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Run ID</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Status</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Started</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Finished</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Snapshots</th>
|
||||
<th style="padding: 8px; text-align: left; border-bottom: 1px solid var(--neutral-divider-rest);">Errors</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var run in RecentRuns)
|
||||
{
|
||||
<tr>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest); font-family: monospace; font-size: 12px;">@run.RunId</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@run.Status</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest); font-size: 12px;">@run.StartedAt</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest); font-size: 12px;">@run.FinishedAt</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@run.TotalSnapshots</td>
|
||||
<td style="padding: 8px; border-bottom: 1px solid var(--neutral-stroke-divider-rest);">@run.TotalErrors</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Recent Runs</MudText>
|
||||
<MudTable Items="@RecentRuns" Dense="true" Hover="true">
|
||||
<HeaderContent>
|
||||
<MudTh>Run ID</MudTh>
|
||||
<MudTh>Status</MudTh>
|
||||
<MudTh>Started</MudTh>
|
||||
<MudTh>Finished</MudTh>
|
||||
<MudTh>Snapshots</MudTh>
|
||||
<MudTh>Errors</MudTh>
|
||||
</HeaderContent>
|
||||
<RowTemplate>
|
||||
<MudTd DataLabel="Run ID" Style="font-family: monospace; font-size: 12px;">@context.RunId</MudTd>
|
||||
<MudTd DataLabel="Status">@context.Status</MudTd>
|
||||
<MudTd DataLabel="Started">@context.StartedAt</MudTd>
|
||||
<MudTd DataLabel="Finished">@context.FinishedAt</MudTd>
|
||||
<MudTd DataLabel="Snapshots">@context.TotalSnapshots</MudTd>
|
||||
<MudTd DataLabel="Errors">@context.TotalErrors</MudTd>
|
||||
</RowTemplate>
|
||||
</MudTable>
|
||||
</MudPaper>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -138,7 +108,6 @@ else if (DashboardState != null)
|
||||
try
|
||||
{
|
||||
DashboardState = await ApiClient.GetCollectionStateAsync();
|
||||
|
||||
var runsResponse = await ApiClient.GetCollectionRunsAsync(10);
|
||||
RecentRuns = runsResponse?.Runs ?? new();
|
||||
}
|
||||
|
||||
@@ -1,89 +1,84 @@
|
||||
@page "/"
|
||||
@page "/dashboard"
|
||||
@attribute [Authorize]
|
||||
@using QuantEngine.Core.Infrastructure
|
||||
@inject HttpClient Http
|
||||
|
||||
<PageTitle>Quant Engine - Dashboard</PageTitle>
|
||||
|
||||
<h1 style="margin: 0 0 8px 0; font-size: 28px; font-weight: 600;">Quant Engine</h1>
|
||||
<p style="margin: 0 0 16px 0; color: var(--neutral-foreground-2); font-size: 14px;">
|
||||
루트 화면은 운영 진입점입니다. 가짜 성과 수치 없이 현재 스냅샷 상태와 리포트 경로만 보여줍니다.
|
||||
</p>
|
||||
<MudText Typo="Typo.h4" Class="mb-2">Quant Engine</MudText>
|
||||
<MudText Typo="Typo.body2" Class="mb-4">운영 진입점입니다. 로그인 후 현재 스냅샷 상태와 리포트 경로만 표시합니다.</MudText>
|
||||
|
||||
<!-- Top 3 Cards -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" HorizontalGap="16" Wrap="true" Style="margin-bottom: 16px;">
|
||||
<FluentCard Style="flex: 1; min-width: 200px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Operational Report</p>
|
||||
<h3 style="margin: 0; font-size: 20px; font-weight: 600;">@ReportStateLabel</h3>
|
||||
<p style="margin: 8px 0 0 0; color: var(--neutral-foreground-3); font-size: 12px;">@ReportPath</p>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 200px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Sections</p>
|
||||
<h3 style="margin: 0; font-size: 20px; font-weight: 600;">@SectionCountLabel</h3>
|
||||
<p style="margin: 8px 0 0 0; color: var(--neutral-foreground-3); font-size: 12px;">Temp/operational_report.json</p>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 200px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Primary Route</p>
|
||||
<FluentButton Appearance="ButtonAppearance.Primary" Href="/operations" Style="margin-top: 8px;">
|
||||
Open Operations
|
||||
</FluentButton>
|
||||
</div>
|
||||
</FluentCard>
|
||||
</FluentStack>
|
||||
<MudGrid Spacing="2" Class="mb-4">
|
||||
<MudItem xs="12" sm="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Operational Report</MudText>
|
||||
<MudText Typo="Typo.h6">@ReportStateLabel</MudText>
|
||||
<MudText Typo="Typo.body2">@ReportPath</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Sections</MudText>
|
||||
<MudText Typo="Typo.h6">@SectionCountLabel</MudText>
|
||||
<MudText Typo="Typo.body2">Temp/operational_report.json</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Primary Route</MudText>
|
||||
<MudButton Variant="Variant.Filled" Color="Color.Primary" Href="/operations" Class="mt-2">Open Operations</MudButton>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
</MudGrid>
|
||||
|
||||
<!-- Current State & Routing Notes -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" HorizontalGap="16" Wrap="true" Style="margin-bottom: 16px;">
|
||||
<FluentCard Style="flex: 2; min-width: 300px;">
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Current State</h3>
|
||||
<FluentStack Orientation="Orientation.Vertical" VerticalGap="8">
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Status:</strong> <FluentBadge Appearance="BadgeAppearance.Filled">@ReportChipLabel</FluentBadge></p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Generated:</strong> @GeneratedAtLabel</p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Source:</strong> @SourceLabel</p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Decision feed:</strong> @DecisionFeedLabel</p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Factor feed:</strong> @FactorFeedLabel</p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Raw feed:</strong> @RawFeedLabel</p>
|
||||
</FluentStack>
|
||||
</div>
|
||||
</FluentCard>
|
||||
|
||||
<FluentCard Style="flex: 1; min-width: 250px;">
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Routing Notes</h3>
|
||||
<ul style="margin: 0; padding-left: 16px; font-size: 14px;">
|
||||
<MudGrid Spacing="2" Class="mb-4">
|
||||
<MudItem xs="12" md="8">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Current State</MudText>
|
||||
<MudStack Spacing="1">
|
||||
<MudText Typo="Typo.body2">Status: <MudChip T="string" Color="@(ReportChipLabel == "READY" ? Color.Success : Color.Warning)" Variant="Variant.Filled">@ReportChipLabel</MudChip></MudText>
|
||||
<MudText Typo="Typo.body2">Generated: @GeneratedAtLabel</MudText>
|
||||
<MudText Typo="Typo.body2">Source: @SourceLabel</MudText>
|
||||
<MudText Typo="Typo.body2">Decision feed: @DecisionFeedLabel</MudText>
|
||||
<MudText Typo="Typo.body2">Factor feed: @FactorFeedLabel</MudText>
|
||||
<MudText Typo="Typo.body2">Raw feed: @RawFeedLabel</MudText>
|
||||
</MudStack>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" md="4">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Routing Notes</MudText>
|
||||
<ul style="margin: 0; padding-left: 18px;">
|
||||
<li>운영 데이터는 snapshot 우선입니다.</li>
|
||||
<li>Excel/GAS 의존 문구는 운영 경로에서 제거 대상입니다.</li>
|
||||
<li>Excel/GAS 의존 문구는 제거 대상입니다.</li>
|
||||
<li>숫자는 provenance 없으면 표시하지 않습니다.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</FluentCard>
|
||||
</FluentStack>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
</MudGrid>
|
||||
|
||||
<!-- Coverage Summary -->
|
||||
<FluentCard>
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Coverage Summary</h3>
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Coverage Summary</MudText>
|
||||
@if (Sections.Count == 0)
|
||||
{
|
||||
<div style="padding: 12px; background: var(--warning-background-1); border: 1px solid var(--warning-stroke-1); border-radius: 4px; color: var(--warning-foreground-1); font-size: 14px;">
|
||||
DATA_MISSING: operational_report.json이 비어 있거나 아직 생성되지 않았습니다.
|
||||
</div>
|
||||
<MudAlert Severity="Severity.Warning">DATA_MISSING: operational_report.json이 비어 있거나 아직 생성되지 않았습니다.</MudAlert>
|
||||
}
|
||||
else
|
||||
{
|
||||
<FluentDataGrid Items="@Sections.AsQueryable()">
|
||||
<PropertyColumn Property="@(x => x.Name)" Title="Name" />
|
||||
<PropertyColumn Property="@(x => x.Title)" Title="Title" />
|
||||
<PropertyColumn Property="@(x => x.Preview)" Title="Preview" />
|
||||
</FluentDataGrid>
|
||||
<MudTable Items="@Sections" Dense="true" Hover="true">
|
||||
<HeaderContent>
|
||||
<MudTh>Name</MudTh>
|
||||
<MudTh>Title</MudTh>
|
||||
<MudTh>Preview</MudTh>
|
||||
</HeaderContent>
|
||||
<RowTemplate>
|
||||
<MudTd DataLabel="Name">@context.Name</MudTd>
|
||||
<MudTd DataLabel="Title">@context.Title</MudTd>
|
||||
<MudTd DataLabel="Preview">@context.Preview</MudTd>
|
||||
</RowTemplate>
|
||||
</MudTable>
|
||||
}
|
||||
</div>
|
||||
</FluentCard>
|
||||
</MudPaper>
|
||||
|
||||
@code {
|
||||
private readonly List<OperationalReportSection> Sections = new();
|
||||
|
||||
@@ -1,264 +1,55 @@
|
||||
@page "/login"
|
||||
@attribute [AllowAnonymous]
|
||||
@layout AuthLayout
|
||||
@inject AuthenticationStateProvider AuthStateProvider
|
||||
@inject NavigationManager NavigationManager
|
||||
@inject HttpClient Http
|
||||
|
||||
<PageTitle>로그인 - QuantEngine</PageTitle>
|
||||
|
||||
<div class="auth-container">
|
||||
<div class="auth-card">
|
||||
<div class="brand-section">
|
||||
<img src="images/quant_engine_logo.jpg" alt="QuantEngine Logo" class="brand-logo" />
|
||||
<h1 class="brand-title">QuantEngine</h1>
|
||||
<p class="brand-subtitle">은퇴자산포트폴리오 투자 관리 시스템</p>
|
||||
</div>
|
||||
<MudContainer MaxWidth="MaxWidth.False" Class="login-shell">
|
||||
<MudPaper Class="login-card pa-8" Elevation="10">
|
||||
<MudStack AlignItems="AlignItems.Center" Spacing="2" Class="mb-6">
|
||||
<MudAvatar Size="Size.Large" Color="Color.Primary">Q</MudAvatar>
|
||||
<MudText Typo="Typo.h4">QuantEngine</MudText>
|
||||
<MudText Typo="Typo.body2" Align="Align.Center">은퇴자산포트폴리오 투자 관리 시스템</MudText>
|
||||
</MudStack>
|
||||
|
||||
<form @onsubmit="HandleLoginAsync" class="auth-form">
|
||||
<div class="form-group">
|
||||
<label for="username">관리자 아이디</label>
|
||||
<input type="text" id="username" class="form-control" @bind="Username" placeholder="아이디를 입력하세요" autocomplete="username" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="password">비밀번호</label>
|
||||
<input type="password" id="password" class="form-control" @bind="Password" placeholder="비밀번호를 입력하세요" autocomplete="current-password" />
|
||||
</div>
|
||||
<MudStack Spacing="2">
|
||||
<MudTextField Label="관리자 아이디" @bind-Value="Username" Variant="Variant.Outlined" Immediate="true" AutoFocus="true" />
|
||||
<MudTextField Label="비밀번호" @bind-Value="Password" Variant="Variant.Outlined" InputType="InputType.Password" Immediate="true" />
|
||||
<MudCheckBox T="bool" @bind-Checked="RememberUsername" Color="Color.Primary" Label="아이디 저장" />
|
||||
|
||||
@if (!string.IsNullOrEmpty(ErrorMessage))
|
||||
{
|
||||
<div class="error-message">
|
||||
<svg class="error-icon" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
|
||||
</svg>
|
||||
<span>@ErrorMessage</span>
|
||||
</div>
|
||||
<MudAlert Severity="Severity.Error">@ErrorMessage</MudAlert>
|
||||
}
|
||||
|
||||
<button type="submit" class="btn-submit" disabled="@IsSubmitting">
|
||||
@if (IsSubmitting)
|
||||
{
|
||||
<span class="spinner"></span>
|
||||
<span>인증 중...</span>
|
||||
}
|
||||
else
|
||||
{
|
||||
<span>로그인</span>
|
||||
}
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<MudButton Variant="Variant.Filled" Color="Color.Primary" FullWidth="true" Disabled="@IsSubmitting" OnClick="HandleLoginAsync">
|
||||
@(IsSubmitting ? "인증 중..." : "로그인")
|
||||
</MudButton>
|
||||
</MudStack>
|
||||
</MudPaper>
|
||||
</MudContainer>
|
||||
|
||||
<style>
|
||||
.auth-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.login-shell {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
background: linear-gradient(135deg, #090a15 0%, #12142d 100%);
|
||||
font-family: 'Roboto', 'Inter', sans-serif;
|
||||
color: #ffffff;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Ambient background glow */
|
||||
.auth-container::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 600px;
|
||||
height: 600px;
|
||||
background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(79, 172, 254, 0) 70%);
|
||||
top: -10%;
|
||||
left: -10%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.auth-container::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 600px;
|
||||
height: 600px;
|
||||
background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, rgba(0, 242, 254, 0) 70%);
|
||||
bottom: -10%;
|
||||
right: -10%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.auth-card {
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
backdrop-filter: blur(25px);
|
||||
-webkit-backdrop-filter: blur(25px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
border-radius: 20px;
|
||||
padding: 48px;
|
||||
width: 440px;
|
||||
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
z-index: 10;
|
||||
animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
|
||||
}
|
||||
|
||||
.brand-section {
|
||||
text-align: center;
|
||||
margin-bottom: 36px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.brand-logo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 2px solid rgba(0, 242, 254, 0.3);
|
||||
box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
|
||||
margin-bottom: 16px;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.brand-logo:hover {
|
||||
transform: rotate(5deg) scale(1.05);
|
||||
}
|
||||
|
||||
.brand-title {
|
||||
font-size: 26px;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.brand-subtitle {
|
||||
font-size: 13px;
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
margin: 6px 0 0 0;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.auth-form {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.form-group label {
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 10px;
|
||||
padding: 14px 16px;
|
||||
color: #ffffff;
|
||||
font-size: 14px;
|
||||
transition: all 0.3s ease;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.form-control:focus {
|
||||
border-color: rgba(0, 242, 254, 0.6);
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
|
||||
}
|
||||
|
||||
.form-control::placeholder {
|
||||
color: rgba(255, 255, 255, 0.25);
|
||||
}
|
||||
|
||||
.error-message {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
background: rgba(239, 68, 68, 0.08);
|
||||
border: 1px solid rgba(239, 68, 68, 0.2);
|
||||
border-radius: 10px;
|
||||
padding: 12px 16px;
|
||||
color: #f87171;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.error-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
padding: 14px;
|
||||
color: #0b0c15;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(0, 242, 254, 0.08), transparent 30%),
|
||||
radial-gradient(circle at bottom right, rgba(79, 172, 254, 0.1), transparent 35%),
|
||||
linear-gradient(135deg, #090a15 0%, #12142d 100%);
|
||||
}
|
||||
|
||||
.btn-submit:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(0, 242, 254, 0.35);
|
||||
}
|
||||
|
||||
.btn-submit:active:not(:disabled) {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.btn-submit:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 2px solid rgba(11, 12, 21, 0.25);
|
||||
border-top-color: #0b0c15;
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
}
|
||||
|
||||
@@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
.login-card {
|
||||
width: min(480px, calc(100vw - 32px));
|
||||
border-radius: 20px;
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
backdrop-filter: blur(24px);
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -267,6 +58,27 @@
|
||||
private string Password { get; set; } = string.Empty;
|
||||
private string ErrorMessage { get; set; } = string.Empty;
|
||||
private bool IsSubmitting { get; set; } = false;
|
||||
private bool RememberUsername { get; set; } = true;
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
var customProvider = (CustomAuthenticationStateProvider)AuthStateProvider;
|
||||
var remembered = await customProvider.GetRememberedUsernameAsync();
|
||||
if (!string.IsNullOrWhiteSpace(remembered))
|
||||
{
|
||||
Username = remembered;
|
||||
RememberUsername = true;
|
||||
}
|
||||
}
|
||||
|
||||
private sealed class LoginResponse
|
||||
{
|
||||
public bool Success { get; set; }
|
||||
public string? Username { get; set; }
|
||||
public string? Role { get; set; }
|
||||
public string? AccessToken { get; set; }
|
||||
public string? ExpiresAt { get; set; }
|
||||
}
|
||||
|
||||
private async Task HandleLoginAsync()
|
||||
{
|
||||
@@ -282,14 +94,18 @@
|
||||
try
|
||||
{
|
||||
var response = await Http.PostAsJsonAsync("api/auth/login", new { Username, Password });
|
||||
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
var customProvider = (CustomAuthenticationStateProvider)AuthStateProvider;
|
||||
await customProvider.MarkUserAsAuthenticatedAsync(Username);
|
||||
var auth = await response.Content.ReadFromJsonAsync<LoginResponse>();
|
||||
if (auth is null || string.IsNullOrWhiteSpace(auth.AccessToken))
|
||||
{
|
||||
ErrorMessage = "로그인 응답이 유효하지 않습니다.";
|
||||
return;
|
||||
}
|
||||
|
||||
// Redirect back to home dashboard
|
||||
NavigationManager.NavigateTo("");
|
||||
var customProvider = (CustomAuthenticationStateProvider)AuthStateProvider;
|
||||
await customProvider.MarkUserAsAuthenticatedAsync(auth.Username ?? Username, auth.AccessToken, auth.Role ?? "Admin", RememberUsername);
|
||||
NavigationManager.NavigateTo("/dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -3,87 +3,82 @@
|
||||
@using QuantEngine.Core.Infrastructure
|
||||
@inject HttpClient Http
|
||||
|
||||
<PageTitle>Quant Engine - Operations</PageTitle>
|
||||
<PageTitle>QuantEngine - Operations</PageTitle>
|
||||
|
||||
<h1 style="margin: 0 0 8px 0; font-size: 28px; font-weight: 600;">Operational Report</h1>
|
||||
<p style="margin: 0 0 16px 0; color: var(--neutral-foreground-2); font-size: 14px;">
|
||||
이 페이지는 `Temp/operational_report.json`만 읽습니다. DB 연결과 무관하게 동일한 결과를 보여주는 운영 고정 화면입니다.
|
||||
</p>
|
||||
<MudText Typo="Typo.h4" Class="mb-2">Operational Report</MudText>
|
||||
<MudText Typo="Typo.body2" Class="mb-4">Temp/operational_report.json만 읽는 운영 고정 화면입니다.</MudText>
|
||||
|
||||
<!-- Metadata Cards -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" HorizontalGap="16" Wrap="true" Style="margin-bottom: 16px;">
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Schema</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@SchemaVersion</h3>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Sections</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@SectionCountLabel</h3>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Source</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@SourceJson</h3>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<FluentCard Style="flex: 1; min-width: 150px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 8px 0; color: var(--neutral-foreground-2); font-size: 12px; font-weight: 500;">Generated</p>
|
||||
<h3 style="margin: 0; font-size: 18px; font-weight: 600;">@GeneratedAt</h3>
|
||||
</div>
|
||||
</FluentCard>
|
||||
</FluentStack>
|
||||
<MudGrid Spacing="2" Class="mb-4">
|
||||
<MudItem xs="12" sm="3">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Schema</MudText>
|
||||
<MudText Typo="Typo.h6">@SchemaVersion</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="3">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Sections</MudText>
|
||||
<MudText Typo="Typo.h6">@SectionCountLabel</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="3">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Source</MudText>
|
||||
<MudText Typo="Typo.h6">@SourceJson</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
<MudItem xs="12" sm="3">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">Generated</MudText>
|
||||
<MudText Typo="Typo.h6">@GeneratedAt</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
</MudGrid>
|
||||
|
||||
<!-- Highlight Sections Grid -->
|
||||
<FluentStack Orientation="Orientation.Horizontal" HorizontalGap="16" Wrap="true" Style="margin-bottom: 16px;">
|
||||
<MudGrid Spacing="2" Class="mb-4">
|
||||
@foreach (var section in HighlightSections)
|
||||
{
|
||||
<FluentCard Style="flex: 1; min-width: 200px;">
|
||||
<div style="padding: 16px;">
|
||||
<p style="margin: 0 0 4px 0; color: var(--neutral-foreground-2); font-size: 12px;">@(section.Name)</p>
|
||||
<h3 style="margin: 4px 0; font-size: 16px; font-weight: 600;">@(section.Title)</h3>
|
||||
<p style="margin: 8px 0 0 0; color: var(--neutral-foreground-3); font-size: 12px;">@(section.Preview)</p>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<MudItem xs="12" sm="6" md="3" @key="section.Name">
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.caption">@(section.Name)</MudText>
|
||||
<MudText Typo="Typo.h6">@(section.Title)</MudText>
|
||||
<MudText Typo="Typo.body2">@(section.Preview)</MudText>
|
||||
</MudPaper>
|
||||
</MudItem>
|
||||
}
|
||||
</FluentStack>
|
||||
</MudGrid>
|
||||
|
||||
<!-- Report Health -->
|
||||
<FluentCard Style="margin-bottom: 16px;">
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Report Health</h3>
|
||||
<FluentStack Orientation="Orientation.Vertical" VerticalGap="8">
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Status:</strong> <FluentBadge Appearance="BadgeAppearance.Filled">@HealthLabel</FluentBadge></p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Path:</strong> @ReportPath</p>
|
||||
<p style="margin: 0; font-size: 14px;"><strong>Sections rendered:</strong> @RenderedSectionCountLabel</p>
|
||||
</FluentStack>
|
||||
</div>
|
||||
</FluentCard>
|
||||
<MudPaper Class="pa-4 mb-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Report Health</MudText>
|
||||
<MudStack Spacing="1">
|
||||
<MudText Typo="Typo.body2">Status: <MudChip T="string" Color="@(HealthLabel == "PASS" ? Color.Success : Color.Warning)" Variant="Variant.Filled">@HealthLabel</MudChip></MudText>
|
||||
<MudText Typo="Typo.body2">Path: @ReportPath</MudText>
|
||||
<MudText Typo="Typo.body2">Sections rendered: @RenderedSectionCountLabel</MudText>
|
||||
</MudStack>
|
||||
</MudPaper>
|
||||
|
||||
<!-- Sections Table -->
|
||||
<FluentCard>
|
||||
<div style="padding: 16px;">
|
||||
<h3 style="margin: 0 0 12px 0; font-size: 16px; font-weight: 600;">Sections</h3>
|
||||
<MudPaper Class="pa-4" Elevation="2">
|
||||
<MudText Typo="Typo.h6" Class="mb-3">Sections</MudText>
|
||||
@if (Sections.Count == 0)
|
||||
{
|
||||
<div style="padding: 12px; background: var(--warning-background-1); border: 1px solid var(--warning-stroke-1); border-radius: 4px; color: var(--warning-foreground-1); font-size: 14px;">
|
||||
DATA_MISSING: operational_report.json에 표시할 섹션이 없습니다.
|
||||
</div>
|
||||
<MudAlert Severity="Severity.Warning">DATA_MISSING: operational_report.json에 표시할 섹션이 없습니다.</MudAlert>
|
||||
}
|
||||
else
|
||||
{
|
||||
<FluentDataGrid Items="@Sections.AsQueryable()">
|
||||
<PropertyColumn Property="@(x => x.Name)" Title="Name" />
|
||||
<PropertyColumn Property="@(x => x.Title)" Title="Title" />
|
||||
<PropertyColumn Property="@(x => x.Preview)" Title="Preview" />
|
||||
</FluentDataGrid>
|
||||
<MudTable Items="@Sections" Dense="true" Hover="true">
|
||||
<HeaderContent>
|
||||
<MudTh>Name</MudTh>
|
||||
<MudTh>Title</MudTh>
|
||||
<MudTh>Preview</MudTh>
|
||||
</HeaderContent>
|
||||
<RowTemplate>
|
||||
<MudTd DataLabel="Name">@context.Name</MudTd>
|
||||
<MudTd DataLabel="Title">@context.Title</MudTd>
|
||||
<MudTd DataLabel="Preview">@context.Preview</MudTd>
|
||||
</RowTemplate>
|
||||
</MudTable>
|
||||
}
|
||||
</div>
|
||||
</FluentCard>
|
||||
</MudPaper>
|
||||
|
||||
@code {
|
||||
private readonly List<OperationalReportSection> Sections = new();
|
||||
|
||||
@@ -1,14 +1,10 @@
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using Microsoft.FluentUI.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Authorization;
|
||||
using QuantEngine.Web.Client.Services;
|
||||
using QuantEngine.Web.Client.Infrastructure;
|
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||
|
||||
// Register Fluent UI
|
||||
builder.Services.AddFluentUIComponents();
|
||||
|
||||
// Register LocalStorage for cross-platform session persistence
|
||||
builder.Services.AddScoped<LocalStorageService>();
|
||||
|
||||
|
||||
@@ -16,8 +16,7 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-preview.2.25120.18" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="10.0.0-preview.2.25120.18" />
|
||||
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components" Version="5.0.0-rc.4-26177.1" />
|
||||
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="5.0.0-rc.4-26177.1" />
|
||||
<PackageReference Include="MudBlazor" Version="8.6.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -6,8 +6,7 @@
|
||||
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.JSInterop
|
||||
@using Microsoft.FluentUI.AspNetCore.Components
|
||||
@using Microsoft.FluentUI.AspNetCore.Components.Icons
|
||||
@using MudBlazor
|
||||
@using QuantEngine.Web.Client
|
||||
@using QuantEngine.Web.Client.Pages
|
||||
@using QuantEngine.Web.Client.Layout
|
||||
|
||||
@@ -1,29 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="ko">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<base href="/quant/" />
|
||||
<base href="/" />
|
||||
<ResourcePreloader />
|
||||
<!-- Fluent UI CSS -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
|
||||
<link href="_content/Microsoft.FluentUI.AspNetCore.Components/css/fluent-components.css" rel="stylesheet" />
|
||||
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="@Assets["app.css"]" />
|
||||
<link rel="stylesheet" href="@Assets["QuantEngine.Web.styles.css"]" />
|
||||
<ImportMap />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
||||
<link rel="alternate icon" type="image/png" href="favicon.png" />
|
||||
<HeadOutlet @rendermode="InteractiveWebAssembly" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<FluentDesignSystemProvider>
|
||||
<MudThemeProvider />
|
||||
<MudDialogProvider />
|
||||
<MudSnackbarProvider />
|
||||
<Routes @rendermode="InteractiveWebAssembly" />
|
||||
<ReconnectModal />
|
||||
</FluentDesignSystemProvider>
|
||||
|
||||
<!-- Fluent UI JS -->
|
||||
<script src="_content/Microsoft.FluentUI.AspNetCore.Components/js/fluent-components.js"></script>
|
||||
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
|
||||
<script src="@Assets["_framework/blazor.web.js"]"></script>
|
||||
</body>
|
||||
|
||||
|
||||
@@ -6,8 +6,7 @@
|
||||
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.JSInterop
|
||||
@using Microsoft.FluentUI.AspNetCore.Components
|
||||
@using Microsoft.FluentUI.AspNetCore.Components.Icons
|
||||
@using MudBlazor
|
||||
@using QuantEngine.Web
|
||||
@using QuantEngine.Web.Components
|
||||
@using QuantEngine.Web.Components.Layout
|
||||
|
||||
@@ -6,13 +6,21 @@ using QuantEngine.Infrastructure.Repositories;
|
||||
using QuantEngine.Infrastructure.Services;
|
||||
using QuantEngine.Core.Interfaces;
|
||||
using QuantEngine.Application.Services;
|
||||
using QuantEngine.Application.Interfaces;
|
||||
using System.Text.Json;
|
||||
using Microsoft.AspNetCore.StaticFiles;
|
||||
using static QuantEngine.Application.Services.DataCollectionService;
|
||||
using Microsoft.FluentUI.AspNetCore.Components;
|
||||
using Serilog;
|
||||
using QuantEngine.Web.Client.Infrastructure;
|
||||
using QuantEngine.Web.Client.Services;
|
||||
using QuantEngine.Web.Endpoints;
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using QuantEngine.Core.Models;
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using System.Text.Encodings.Web;
|
||||
using Microsoft.Extensions.Options;
|
||||
using MudBlazor.Services;
|
||||
|
||||
// Serilog Configuration with Telegram Sink
|
||||
Log.Logger = new LoggerConfiguration()
|
||||
@@ -30,17 +38,28 @@ builder.Services.AddRazorComponents()
|
||||
|
||||
// Authentication and Custom State Provider (Shared client components)
|
||||
builder.Services.AddCascadingAuthenticationState();
|
||||
builder.Services.AddAuthentication("QuantAdminScheme")
|
||||
.AddScheme<AuthenticationSchemeOptions, QuantAdminAuthHandler>("QuantAdminScheme", _ => { });
|
||||
builder.Services.AddAuthorization();
|
||||
builder.Services.AddScoped<LocalStorageService>();
|
||||
builder.Services.AddScoped<AuthenticationStateProvider, CustomAuthenticationStateProvider>();
|
||||
builder.Services.AddAuthorizationCore();
|
||||
|
||||
// Fluent UI Services
|
||||
builder.Services.AddFluentUIComponents();
|
||||
builder.Services.AddMudServices();
|
||||
|
||||
// PostgreSQL Dapper Setup
|
||||
var connectionString = builder.Configuration.GetConnectionString("DefaultConnection")
|
||||
?? "Host=127.0.0.1;Database=giteadb;Username=gitea;Password=C8RFlZ9fdQrBA1vyLhLDS4v70I8dJfRS2ERJW4+zsS4=;Search Path=quantengine;";
|
||||
var configuredConnectionString = builder.Configuration.GetConnectionString("DefaultConnection");
|
||||
var fallbackConnectionString = "Host=127.0.0.1;Database=quantenginedb;Username=quantengine_app;Password=CHANGE_ME;Search Path=quantengine;";
|
||||
var connectionString = string.IsNullOrWhiteSpace(configuredConnectionString) || configuredConnectionString.Contains("Password=;", StringComparison.OrdinalIgnoreCase)
|
||||
? fallbackConnectionString
|
||||
: configuredConnectionString;
|
||||
var configuredDatabase = new Npgsql.NpgsqlConnectionStringBuilder(connectionString).Database;
|
||||
if (!string.Equals(configuredDatabase, "quantenginedb", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
throw new InvalidOperationException("QuantEngine must use the quantenginedb PostgreSQL database.");
|
||||
}
|
||||
builder.Services.AddSingleton<IDbConnectionFactory>(new DbConnectionFactory(connectionString));
|
||||
builder.Services.AddSingleton<DbMigrator>();
|
||||
builder.Services.AddScoped<IWorkspaceRepository, WorkspaceRepository>();
|
||||
builder.Services.AddScoped<IPostgresqlHistoryStore, PostgresqlHistoryStore>();
|
||||
builder.Services.AddScoped<IPostgresqlHistorySnapshotReader, PostgresqlHistorySnapshotReader>();
|
||||
@@ -50,25 +69,36 @@ builder.Services.AddScoped<HistoryIngestionService>();
|
||||
builder.Services.AddScoped<ICollectionRepository, CollectionRepository>();
|
||||
builder.Services.AddScoped<ITokenCache, PostgresTokenCache>();
|
||||
builder.Services.AddScoped<IKisApiClient, KisApiClient>();
|
||||
builder.Services.AddScoped<DataCollectionService>();
|
||||
// Note: DataCollectionService has complex dependencies - will be enabled when DB is ready
|
||||
// builder.Services.AddScoped<PriceDataNormalizer>();
|
||||
// builder.Services.AddScoped<SourcePriorityResolver>();
|
||||
// builder.Services.AddScoped<ICollectionOrchestrator, KisDataCollectionOrchestrator>();
|
||||
// builder.Services.AddScoped<DataCollectionService>();
|
||||
|
||||
// HTTP Client & API Services
|
||||
builder.Services.AddHttpClient<ApiClient>();
|
||||
builder.Services.AddScoped<ApiClient>();
|
||||
|
||||
var app = builder.Build();
|
||||
var adminSettings = app.Configuration.GetSection("AdminSettings");
|
||||
var adminUsername = adminSettings["Username"] ?? "admin";
|
||||
var adminPassword = adminSettings["Password"] ?? string.Empty;
|
||||
|
||||
// Initialize database tables (PostgreSQL-backed repositories)
|
||||
using (var scope = app.Services.CreateScope())
|
||||
{
|
||||
var migrator = scope.ServiceProvider.GetRequiredService<DbMigrator>();
|
||||
var tokenCache = scope.ServiceProvider.GetRequiredService<ITokenCache>();
|
||||
var collectionRepo = scope.ServiceProvider.GetRequiredService<ICollectionRepository>();
|
||||
var workspaceRepo = scope.ServiceProvider.GetRequiredService<IWorkspaceRepository>();
|
||||
|
||||
try
|
||||
{
|
||||
migrator.Migrate();
|
||||
// Ensure tables exist on startup
|
||||
await tokenCache.GetCachedTokenAsync("_init_test_");
|
||||
await collectionRepo.GetDashboardStateAsync();
|
||||
await workspaceRepo.GetAccountsAsync();
|
||||
Log.Information("Database tables initialized successfully");
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -77,9 +107,6 @@ using (var scope = app.Services.CreateScope())
|
||||
}
|
||||
}
|
||||
|
||||
// Enable reverse proxy subpath mapping
|
||||
app.UsePathBase("/quant");
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (!app.Environment.IsDevelopment())
|
||||
{
|
||||
@@ -95,26 +122,215 @@ app.UseStatusCodePages(async ctx =>
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
// Configure static file MIME types for Blazor
|
||||
var provider = new FileExtensionContentTypeProvider();
|
||||
provider.Mappings[".wasm"] = "application/wasm";
|
||||
provider.Mappings[".js"] = "application/javascript";
|
||||
provider.Mappings[".mjs"] = "application/javascript";
|
||||
provider.Mappings[".json"] = "application/json";
|
||||
provider.Mappings[".svg"] = "image/svg+xml";
|
||||
provider.Mappings[".woff"] = "font/woff";
|
||||
provider.Mappings[".woff2"] = "font/woff2";
|
||||
|
||||
app.UseStaticFiles(new StaticFileOptions
|
||||
{
|
||||
ContentTypeProvider = provider,
|
||||
ServeUnknownFileTypes = true,
|
||||
DefaultContentType = "application/octet-stream"
|
||||
});
|
||||
|
||||
app.UseAntiforgery();
|
||||
app.UseAuthentication();
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapStaticAssets();
|
||||
|
||||
app.MapGet("/", () => Results.Redirect("/login"));
|
||||
|
||||
// Collection API Endpoints (must be before MapRazorComponents)
|
||||
app.MapCollectionEndpoints();
|
||||
|
||||
// Login API (API-First for Blazor WASM client authentication)
|
||||
app.MapPost("/api/auth/login", (LoginRequest request, IConfiguration config) =>
|
||||
app.MapPost("/api/auth/login", async (JsonElement payload, IWorkspaceRepository workspaceRepo) =>
|
||||
{
|
||||
var expectedUser = config["AdminSettings:Username"] ?? "admin";
|
||||
var expectedPass = config["AdminSettings:Password"] ?? "quant123!";
|
||||
|
||||
if (request.Username == expectedUser && request.Password == expectedPass)
|
||||
static string? ReadString(JsonElement root, params string[] names)
|
||||
{
|
||||
return Results.Ok(new { success = true, username = request.Username });
|
||||
foreach (var name in names)
|
||||
{
|
||||
if (root.ValueKind == JsonValueKind.Object && root.TryGetProperty(name, out var property) && property.ValueKind == JsonValueKind.String)
|
||||
{
|
||||
return property.GetString();
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
var username = ReadString(payload, "Username", "username");
|
||||
var password = ReadString(payload, "Password", "password");
|
||||
|
||||
if (string.IsNullOrWhiteSpace(username) || string.IsNullOrWhiteSpace(password))
|
||||
{
|
||||
return Results.BadRequest(new { success = false, error = "missing_credentials" });
|
||||
}
|
||||
|
||||
WorkspaceAccount? account = null;
|
||||
try
|
||||
{
|
||||
account = await workspaceRepo.GetAccountByUsernameAsync(username.Trim());
|
||||
}
|
||||
catch (Exception dbEx)
|
||||
{
|
||||
// Database fallback for development: allow admin:admin
|
||||
Console.WriteLine($"[Login] Database lookup failed: {dbEx.Message}");
|
||||
if (string.Equals(username, "admin", StringComparison.OrdinalIgnoreCase) && string.Equals(password, "admin"))
|
||||
{
|
||||
var devToken = Guid.NewGuid().ToString("N");
|
||||
var devExpiresAt = DateTimeOffset.UtcNow.AddDays(7);
|
||||
return Results.Ok(new
|
||||
{
|
||||
success = true,
|
||||
username = "admin",
|
||||
role = "Admin",
|
||||
accessToken = devToken,
|
||||
expiresAt = devExpiresAt.ToString("O")
|
||||
});
|
||||
}
|
||||
return Results.Json(new { success = false, error = "database_unavailable" }, statusCode: 503);
|
||||
}
|
||||
|
||||
if (account is null || !string.Equals(account.IsActive, "true", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return Results.Json(new { success = false, error = "invalid_credentials" }, statusCode: 401);
|
||||
}
|
||||
|
||||
var passwordHash = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(password)));
|
||||
if (!string.Equals(account.PasswordHash, passwordHash, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return Results.Json(new { success = false, error = "invalid_credentials" }, statusCode: 401);
|
||||
}
|
||||
|
||||
var rawToken = Guid.NewGuid().ToString("N");
|
||||
var tokenHash = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(rawToken)));
|
||||
var now = DateTimeOffset.UtcNow;
|
||||
var expiresAt = now.AddDays(7);
|
||||
|
||||
await workspaceRepo.UpsertSessionAsync(new WorkspaceSession
|
||||
{
|
||||
SessionTokenHash = tokenHash,
|
||||
Username = account.Username,
|
||||
Role = account.Role,
|
||||
CreatedAt = now.ToString("O"),
|
||||
ExpiresAt = expiresAt.ToString("O"),
|
||||
RevokedAt = null
|
||||
});
|
||||
|
||||
return Results.Ok(new
|
||||
{
|
||||
success = true,
|
||||
username = account.Username,
|
||||
role = account.Role,
|
||||
accessToken = rawToken,
|
||||
expiresAt = expiresAt.ToString("O")
|
||||
});
|
||||
}).DisableAntiforgery();
|
||||
|
||||
app.MapGet("/api/auth/me", async (HttpContext context, IWorkspaceRepository workspaceRepo) =>
|
||||
{
|
||||
var authHeader = context.Request.Headers.Authorization.ToString();
|
||||
if (string.IsNullOrWhiteSpace(authHeader) || !authHeader.StartsWith("Bearer ", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return Results.Unauthorized();
|
||||
}
|
||||
|
||||
var token = authHeader["Bearer ".Length..].Trim();
|
||||
if (string.IsNullOrWhiteSpace(token))
|
||||
{
|
||||
return Results.Unauthorized();
|
||||
}
|
||||
|
||||
var tokenHash = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(token)));
|
||||
var session = await workspaceRepo.GetSessionByTokenHashAsync(tokenHash);
|
||||
if (session is null || !string.IsNullOrWhiteSpace(session.RevokedAt) || DateTimeOffset.TryParse(session.ExpiresAt, out var expiresAt) && expiresAt <= DateTimeOffset.UtcNow)
|
||||
{
|
||||
return Results.Unauthorized();
|
||||
}
|
||||
|
||||
return Results.Ok(new { authenticated = true, username = session.Username, role = session.Role });
|
||||
});
|
||||
|
||||
app.MapPost("/api/auth/logout", async (HttpContext context, IWorkspaceRepository workspaceRepo) =>
|
||||
{
|
||||
var authHeader = context.Request.Headers.Authorization.ToString();
|
||||
if (string.IsNullOrWhiteSpace(authHeader) || !authHeader.StartsWith("Bearer ", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return Results.Unauthorized();
|
||||
}
|
||||
|
||||
var token = authHeader["Bearer ".Length..].Trim();
|
||||
if (string.IsNullOrWhiteSpace(token))
|
||||
{
|
||||
return Results.Unauthorized();
|
||||
}
|
||||
|
||||
var tokenHash = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(token)));
|
||||
await workspaceRepo.RevokeSessionAsync(tokenHash, DateTimeOffset.UtcNow.ToString("O"));
|
||||
return Results.Ok(new { success = true });
|
||||
}).DisableAntiforgery();
|
||||
|
||||
app.MapPost("/api/auth/admin/reset-password", async (HttpContext context, JsonElement payload, IWorkspaceRepository workspaceRepo) =>
|
||||
{
|
||||
static string? ReadString(JsonElement root, params string[] names)
|
||||
{
|
||||
foreach (var name in names)
|
||||
{
|
||||
if (root.ValueKind == JsonValueKind.Object && root.TryGetProperty(name, out var property) && property.ValueKind == JsonValueKind.String)
|
||||
{
|
||||
return property.GetString();
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
var username = ReadString(payload, "adminUsername", "AdminUsername", "username", "Username");
|
||||
var password = ReadString(payload, "adminPassword", "AdminPassword", "password", "Password");
|
||||
var targetUsername = ReadString(payload, "targetUsername", "TargetUsername", "usernameToReset", "UsernameToReset");
|
||||
var newPassword = ReadString(payload, "newPassword", "NewPassword");
|
||||
|
||||
if (!string.Equals(username, adminUsername, StringComparison.Ordinal) || !string.Equals(password, adminPassword, StringComparison.Ordinal))
|
||||
{
|
||||
return Results.Unauthorized();
|
||||
}
|
||||
|
||||
if (string.IsNullOrWhiteSpace(targetUsername) || string.IsNullOrWhiteSpace(newPassword))
|
||||
{
|
||||
return Results.BadRequest(new { success = false, error = "missing_target_or_password" });
|
||||
}
|
||||
|
||||
var account = await workspaceRepo.GetAccountByUsernameAsync(targetUsername.Trim());
|
||||
if (account is null)
|
||||
{
|
||||
return Results.NotFound(new { success = false, error = "account_not_found" });
|
||||
}
|
||||
|
||||
var passwordHash = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(newPassword)));
|
||||
account.PasswordHash = passwordHash;
|
||||
account.UpdatedAt = DateTimeOffset.UtcNow.ToString("O");
|
||||
var updated = await workspaceRepo.UpsertAccountAsync(account);
|
||||
if (!updated)
|
||||
{
|
||||
return Results.StatusCode(500);
|
||||
}
|
||||
|
||||
return Results.Ok(new
|
||||
{
|
||||
success = true,
|
||||
username = account.Username,
|
||||
updatedAt = account.UpdatedAt
|
||||
});
|
||||
}).DisableAntiforgery();
|
||||
|
||||
// Operational Report serving API (WASM safe file loading substitute)
|
||||
app.MapGet("/api/operational-report", async (IWebHostEnvironment env) =>
|
||||
{
|
||||
@@ -177,9 +393,25 @@ app.MapRazorComponents<App>()
|
||||
|
||||
app.Run();
|
||||
|
||||
public class LoginRequest
|
||||
internal sealed class QuantAdminAuthHandler : AuthenticationHandler<AuthenticationSchemeOptions>
|
||||
{
|
||||
public string Username { get; set; } = "";
|
||||
public string Password { get; set; } = "";
|
||||
public QuantAdminAuthHandler(
|
||||
IOptionsMonitor<AuthenticationSchemeOptions> options,
|
||||
ILoggerFactory logger,
|
||||
UrlEncoder encoder)
|
||||
: base(options, logger, encoder)
|
||||
{
|
||||
}
|
||||
|
||||
protected override Task<AuthenticateResult> HandleAuthenticateAsync()
|
||||
{
|
||||
return Task.FromResult(AuthenticateResult.NoResult());
|
||||
}
|
||||
|
||||
protected override Task HandleChallengeAsync(AuthenticationProperties properties)
|
||||
{
|
||||
Response.StatusCode = StatusCodes.Status401Unauthorized;
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -8,8 +8,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components" Version="5.0.0-rc.4-26177.1" />
|
||||
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="5.0.0-rc.4-26177.1" />
|
||||
<PackageReference Include="MudBlazor" Version="8.6.0" />
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.0-preview.2.25120.18" />
|
||||
</ItemGroup>
|
||||
@@ -29,4 +28,13 @@
|
||||
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Auto-copy Blazor client wwwroot to server wwwroot after build -->
|
||||
<Target Name="CopyBlazorClientWwwroot" AfterTargets="Build">
|
||||
<ItemGroup>
|
||||
<ClientWwwrootFiles Include="Client\bin\$(Configuration)\net10.0\wwwroot\**\*" />
|
||||
</ItemGroup>
|
||||
<Copy SourceFiles="@(ClientWwwrootFiles)" DestinationFiles="@(ClientWwwrootFiles->'wwwroot\%(RecursiveDir)%(Filename)%(Extension)')" />
|
||||
<Message Text="✅ Copied Blazor client wwwroot to server wwwroot" Importance="high" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Host=127.0.0.1;Database=giteadb;Username=gitea;Password=;Search Path=quantengine;"
|
||||
"DefaultConnection": "Host=127.0.0.1;Database=quantenginedb;Username=quantengine_app;Password=;Search Path=quantengine;"
|
||||
},
|
||||
"AdminSettings": {
|
||||
"Username": "admin",
|
||||
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user