-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
49 lines (40 loc) · 1.43 KB
/
middleware.ts
File metadata and controls
49 lines (40 loc) · 1.43 KB
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
import { NextResponse } from 'next/server'
import type { NextRequest } from 'next/server'
import { unsealData } from 'iron-session'
import type { SessionData } from '@/lib/session'
import { sessionOptions } from '@/lib/session'
export async function middleware(request: NextRequest) {
const { pathname } = request.nextUrl
const isAdminPage = pathname.startsWith('/admin') && pathname !== '/admin/login'
const isAdminApi = pathname.startsWith('/api/admin')
if (!isAdminPage && !isAdminApi) {
return NextResponse.next()
}
const cookieValue = request.cookies.get(sessionOptions.cookieName)?.value
if (!cookieValue) {
if (isAdminApi) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
return NextResponse.redirect(new URL('/admin/login', request.url))
}
try {
const session = await unsealData<SessionData>(cookieValue, {
password: sessionOptions.password as string,
})
if (!session.userId) {
if (isAdminApi) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
return NextResponse.redirect(new URL('/admin/login', request.url))
}
} catch {
if (isAdminApi) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
return NextResponse.redirect(new URL('/admin/login', request.url))
}
return NextResponse.next()
}
export const config = {
matcher: ['/admin/:path*', '/api/admin/:path*'],
}