-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiddleware.ts
45 lines (39 loc) · 1.46 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
import { auth } from '@shared/auth'
import { headers } from 'next/headers'
import { NextResponse, type NextRequest } from 'next/server'
const middleware = async (request: NextRequest) => {
const VisitorCheckingUrlList = ['/article', '/login', '/tag', '/']
const authPaths = ['/write', '/api/image/upload', '/api/admin']
const session = await auth()
const headersList = await headers()
const ip = (headersList.get('x-forwarded-for') ?? 'Unknown').split(',')[0]
const { pathname } = request.nextUrl
const visitorInfo = {
ip,
path: pathname,
}
const isAuthPath = authPaths.some((authPath) => pathname.includes(authPath))
const isAdmin = session?.user
if (isAuthPath && !isAdmin) {
return NextResponse.json({ message: 'Unauthenticated' }, { status: 401 })
}
if (!VisitorCheckingUrlList.some((url) => pathname.includes(url) && !pathname.includes('/api'))) {
return NextResponse.next()
}
try {
await fetch(`${process.env.SITE_URL}/api/visitor`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(visitorInfo),
})
console.log('Visitor info saved successfully:', visitorInfo)
} catch (error) {
console.error('Error occurred while saving visitor info:', error)
}
}
export const config = {
matcher: ['/((?!_next/static|favicon.ico).*)'],
}
export default middleware