-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmiddleware.js
67 lines (56 loc) · 2.06 KB
/
middleware.js
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
import { NextResponse } from 'next/server'
const PUBLIC_FILE = /\.(.*)$/
export async function middleware(req) {
if (
req.nextUrl.pathname.startsWith('/_next') ||
req.nextUrl.pathname.startsWith('/api/') ||
PUBLIC_FILE.test(req.nextUrl.pathname) ||
req.nextUrl.pathname.includes('/manifest.json')
) {
return
}
const cookieLocale = req.cookies.get('NEXT_LOCALE')?.value
//if someone has an old link with old locale that was removed.
const removedLocales = ['ca', 'da', 'nn', 'my', 'hr']
const currentLocales = ['en', 'ko', 'ru', 'de', 'es', 'id', 'ja', 'fr']
const reactLocale = req.nextUrl.locale
//default option
let viewLocale = 'en'
if (currentLocales.includes(reactLocale)) {
// exlude 'default' locale
viewLocale = reactLocale
}
// if the cookie locale is set and is one of the currently supported locales - then it's a priority
if (cookieLocale && currentLocales.includes(cookieLocale)) {
viewLocale = cookieLocale
}
//redirect old page to github
if (req.nextUrl.pathname.startsWith(`/paperwallet`)) {
return NextResponse.redirect(new URL('https://bithomp.github.io/xrp-paper-wallet/'))
}
//if locale is one of the deleted ones
for (const locale of removedLocales) {
if (req.nextUrl.pathname.startsWith(`/${locale}/`)) {
return NextResponse.redirect(
new URL(`${req.nextUrl.pathname.replace(`/${locale}/`, `/${viewLocale}/`)}${req.nextUrl.search}`, req.url)
)
}
if (req.nextUrl.pathname === `/${locale}` && locale !== viewLocale) {
return NextResponse.redirect(
new URL(`${req.nextUrl.pathname.replace(`/${locale}`, `/${viewLocale}`)}${req.nextUrl.search}`, req.url)
)
}
}
//import to have this case: reactLocale === 'default'
if (reactLocale !== viewLocale) {
// do not add "/" after locale if it's the root
return NextResponse.redirect(
new URL(
`/${viewLocale}${req.nextUrl.pathname !== '/' ? req.nextUrl.pathname : req.nextUrl.search ? '/' : ''}${
req.nextUrl.search
}`,
req.url
)
)
}
}