TASK-020 버그 수정:
- BUG-1: adminFetch Authorization 헤더 우선순위 수정 (JWT > API Key)
하네스 저장 실패 에러 핸들링 개선 (401/non-ok 명시적 처리)
- BUG-2: /admin/logs useEffect 초기 로드 추가 (마운트 시 자동 조회)
- BUG-3: costs/record python3 → node/python3/jq fallback 체인
TASK-021 JWT BE:
- User 모델 추가 (Prisma schema)
- AuthService: register(초대코드 검증+bcrypt) / login / refresh / getMe
- JwtStrategy (passport-jwt), JwtGuard, CompositeGuard (JWT+API Key)
- AuthController: /api/auth/{register,login,refresh,me}
- ThrottlerModule: 로그인 5회/분 Rate limiting
- CompositeGuard로 AdminController, CostsController Guard 전환
- EventsGateway: Socket.IO handshake JWT 검증 추가
- 테스트 26/26 pass
TASK-022 FE:
- AuthContext (AuthProvider + useAuth)
- AppShell (AuthProvider + AuthGate 라우트 보호)
- /login 페이지 (터미널 UI)
- /register 페이지 (초대 코드 필드)
- Sidebar: 로그인 사용자명 + 로그아웃 버튼
- FE 16 routes build 성공
27 lines
838 B
TypeScript
27 lines
838 B
TypeScript
/**
|
|
* 관리자 API 호출 유틸.
|
|
* - CSR: 상대경로 /api/... → Next.js rewrites → BE
|
|
* - JWT access token (우선) 또는 API Key fallback으로 Authorization 헤더 설정
|
|
*/
|
|
export function getAdminToken(): string {
|
|
if (typeof window === 'undefined') return '';
|
|
return (
|
|
localStorage.getItem('hanarang_access_token') ??
|
|
localStorage.getItem('hanarang_admin_key') ??
|
|
''
|
|
);
|
|
}
|
|
|
|
export function adminFetch(path: string, options?: RequestInit) {
|
|
const token = getAdminToken();
|
|
|
|
// Authorization: options?.headers보다 우선 (덮어쓰기 방지)
|
|
const headers: Record<string, string> = {
|
|
'Content-Type': 'application/json',
|
|
...(options?.headers as Record<string, string> ?? {}),
|
|
...(token ? { Authorization: `Bearer ${token}` } : {}),
|
|
};
|
|
|
|
return fetch(path, { ...options, headers });
|
|
}
|