-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmiddleware.ts
84 lines (74 loc) · 2.53 KB
/
middleware.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { NextResponse } from 'next/server';
import { withAuth, NextRequestWithAuth } from 'next-auth/middleware';
export default withAuth(
async function middleware(request: NextRequestWithAuth) {
const pathname = request.nextUrl.pathname;
// manifest.json, 아이콘 이미지 및 public 폴더 내 파일 예외 처리
if (
pathname === '/manifest.json' ||
pathname.startsWith('/Icon/') ||
pathname.startsWith('/Screenshots/') || // 스크린샷 폴더도 예외 처리
pathname.startsWith('/Splash/') || // 스플래시 폴더도 예외 처리
pathname === '/favicon.ico' // 파비콘 예외 처리
) {
return NextResponse.next();
}
console.log('middleware 실행', {
path: request.nextUrl.pathname,
token: request.nextauth.token,
});
// 토큰이 없거나 만료된 경우
if (!request.nextauth.token) {
return NextResponse.json(
{ error: '인증되지 않은 요청입니다.' },
{ status: 401 }
);
}
// 토큰의 만료 시간 확인
const tokenExpires = request.nextauth.token.accessTokenExpires as number;
if (tokenExpires && Date.now() > tokenExpires) {
return NextResponse.json(
{ error: '토큰이 만료되었습니다.' },
{ status: 401 }
);
}
// userId와 nickname을 토큰에서 추출
const userId = request.nextauth.token.userId as string;
const nickname = request.nextauth.token.nickname as string;
if (!userId || !nickname) {
return NextResponse.json(
{ error: '유저 정보를 찾을 수 없습니다.' },
{ status: 401 }
);
}
// 로그인된 경우 /home으로 리다이렉션
if (
request.nextUrl.pathname === '/login' ||
(request.nextUrl.pathname === '/' && request.nextauth.token)
) {
return NextResponse.redirect(new URL('/home', request.url));
}
// userId와 인코딩된 nickname을 헤더에 추가
const response = NextResponse.next();
response.headers.set('User-Id', userId);
response.headers.set('Nickname', encodeURIComponent(nickname));
return response;
},
{
callbacks: {
authorized: ({ token }) => !!token,
},
pages: {
signIn: '/login',
},
}
);
// 미들웨어를 적용할 경로 설정
export const config = {
matcher: [
// API 경로에 대해서만 적용
'/api/:path*',
// auth 관련 경로 및 정적 파일 제외
'/((?!api/auth|_next/static|_next/image|favicon.ico|manifest.json|Icon/|Screenshots/|login|$).*)',
],
};