-
Notifications
You must be signed in to change notification settings - Fork 4
/
middleware.ts
56 lines (48 loc) · 1.59 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
import { NextRequest, NextResponse } from "next/server";
export function middleware(request: NextRequest) {
// no power
if (request.nextUrl.pathname.startsWith('/nopower')) {
return new NextResponse(JSON.stringify({
success: false, message: 'authentication failed',
}), {
status: 401,
headers: {
'content-type': 'application/json',
},
});
}
// set request header
const requestHeaders = new Headers(request.headers);
requestHeaders.set('x-hello-from-middleware1', 'hello');
// set cookies and headers
const res = NextResponse.next({
request: {
headers: requestHeaders,
}
});
res.cookies.set("myCookie", 'cookies from root(src) middleware', {
path: "/",
httpOnly: true,
});
res.headers.set('x-hello-from-middleware2', 'hello');
// rewrite photo
if (request.nextUrl.pathname.startsWith('/tophoto')) {
return NextResponse.rewrite(new URL('/photo', request.url));
}
if (request.nextUrl.pathname.startsWith('/optimizing/script/csp')) {
// res.headers.set('Content-Security-Policy', "script-src 'nonce-5fAifFSghuhdf'");
}
return res;
}
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)
*/
'/((?!api|_next/static|_next/image|favicon.ico).*)',
],
};