Files
ef_front/middleware.ts
2025-10-15 10:31:03 +00:00

65 lines
1.7 KiB
TypeScript

// src/middleware.ts
import { auth } from "@/auth";
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
export default auth(async (req) => {
// 경로 추출
const { pathname } = req.nextUrl;
console.log("request host:", req.headers.get('host'));
// 로컬 접속 확인 (특정 경로만 우회)
const isLocal = req.headers.get('host')?.includes('localhost') ||
req.headers.get('host')?.includes('127.0.0.1');
if (isLocal && pathname.startsWith("/api/contents")) {
return NextResponse.next();
}
// 세션 가져오기
const session = req.auth;
if (pathname.startsWith("/admin")) {
const email = session?.user?.email;
if (email !== "wsx204@naver.com") {
return NextResponse.redirect(new URL("/", req.url));
}
}
if (pathname.startsWith("/api/admin")) {
const email = session?.user?.email;
if (email !== "wsx204@naver.com") {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
}
}
// 이미 로그인된 경우 루트 경로로 접근 시 대시보드로 리다이렉트
if (session) {
if (pathname === "/") {
return NextResponse.redirect(new URL("/usr/1_dashboard", req.url));
}
return NextResponse.next();
}
// 예외: 루트(/), 로그인(/login), api/auth 경로는 리다이렉트 안 함
if (
pathname === "/" ||
pathname.startsWith("/login") ||
pathname.startsWith("/api/auth")
) {
return NextResponse.next();
}
// 그 외 로그인 안 된 요청은 / 로 리다이렉트
return NextResponse.redirect(new URL("/", req.url));
});
// 모든 경로에 적용
export const config = {
matcher: ["/((?!_next|.*\\..*).*)"], // _next/static, 이미지, 파일 등 제외
};