-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiddleware.ts
72 lines (60 loc) · 2.09 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
import acceptLanguage from "accept-language"
import { NextRequest, NextResponse } from "next/server"
import { cookieName, fallbackLng, languages } from "@/app/i18n/settings"
acceptLanguage.languages(languages)
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - api (API routes)
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
*/
{
source: "/((?!api|_next/static|_next/image|favicon.ico).*)",
},
// 排除 assets路径
{
source: "/((?!assets/).*)",
},
// 排除特定文件
"/((?!sw\\.js).*)",
"/((?!site\\.webmanifest).*)",
// 排除以特定字符串开头的路径
"/((?!icon/).*)",
"/((?!chrome/).*)",
],
}
export function middleware(req: NextRequest): NextResponse {
// static file /public/xxx.svg
if (
req.nextUrl.pathname.endsWith(".svg") ||
req.nextUrl.pathname.endsWith(".png") ||
req.nextUrl.pathname.endsWith(".ico")
) {
return NextResponse.next()
}
if (req.nextUrl.pathname.indexOf("icon") > -1 || req.nextUrl.pathname.indexOf("chrome") > -1)
return NextResponse.next()
let lng: string | undefined | null
if (req.cookies.has(cookieName)) lng = acceptLanguage.get(req.cookies.get(cookieName)?.value)
if (!lng) lng = acceptLanguage.get(req.headers.get("Accept-Language"))
if (!lng) lng = fallbackLng
// Redirect if lng in path is not supported
if (
!languages.some((loc) => req.nextUrl.pathname.startsWith(`/${loc}`)) &&
!req.nextUrl.pathname.startsWith("/_next")
) {
const newUrl = new URL(`/${lng}${req.nextUrl.pathname}${req.nextUrl.search}`, req.url)
return NextResponse.redirect(newUrl)
}
if (req.headers.has("referer")) {
const refererUrl = new URL(req.headers.get("referer") || "")
const lngInReferer = languages.find((l) => refererUrl.pathname.startsWith(`/${l}`))
const response = NextResponse.next()
if (lngInReferer) response.cookies.set(cookieName, lngInReferer)
return response
}
return NextResponse.next()
}