-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { NextResponse } from 'next/server'; | ||
import type { NextRequest } from 'next/server'; | ||
|
||
const PROTECTED_PAGES = ['/start-family']; | ||
const PUBLIC_PAGES = ['/login']; | ||
|
||
export default function middleware(request: NextRequest) { | ||
const { cookies, nextUrl } = request; | ||
const path = nextUrl.pathname; | ||
const isProtectedPage = PROTECTED_PAGES.includes(path); | ||
const isPublicPage = PUBLIC_PAGES.includes(path); | ||
|
||
// 로그인 상태 확인 | ||
const hasCookie = cookies.has('accessToken'); | ||
|
||
// 쿼리 파라미터에서 token 값 확인 | ||
const hasToken = nextUrl.search.includes('token'); | ||
|
||
// /start-family 페이지로 접근하는데 token이 있을 경우 진행 | ||
// /start-family 페이지로 접근하는데 token이 없을 경우 리다이렉션 | ||
// 추후 배포됐을 때 수정. | ||
if (path === '/start-family' && hasToken) { | ||
return NextResponse.next(); | ||
} else if (path === '/start-family' && !hasToken) { | ||
return NextResponse.redirect(new URL('/login', request.nextUrl)); | ||
} | ||
|
||
// 비로그인 상태일 때 로그인이 필요한 페이지에 접근 시 리다이렉션 | ||
if (!hasCookie && isProtectedPage) { | ||
return NextResponse.redirect(new URL('/login', request.nextUrl)); | ||
} | ||
|
||
// 로그인 상태일 때 로그인 페이지에 접근 시 리다이렉션 | ||
if (hasCookie && isPublicPage) { | ||
return NextResponse.redirect(new URL('/', request.nextUrl.origin)); | ||
} | ||
|
||
return NextResponse.next(); | ||
} | ||
|
||
export const config = { | ||
matcher: ['/login', '/start-family'], | ||
}; |