-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.ts
62 lines (55 loc) · 1.92 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
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
const notification_server = process.env.NOTIFICATION_SERVER;
const static_image_src = process.env.STATIC_IMAGE_SRC;
const isProduction = process.env.NODE_ENV === "production";
export function middleware(request: NextRequest) {
const nonce = Buffer.from(crypto.randomUUID()).toString("base64");
const sriptSrc = isProduction
? `'self' 'nonce-${nonce}' 'strict-dynamic'`
: `'self' 'unsafe-eval'`;
const styleSrc = `'self' 'unsafe-inline'`;
const cspHeader = `
default-src 'self';
script-src ${sriptSrc};
style-src ${styleSrc};
img-src 'self' blob: data: ${static_image_src} lh3.googleusercontent.com github.com avatars.githubusercontent.com;
connect-src 'self' ws: ${notification_server!.split("://")[1]};
font-src 'self';
object-src 'none';
base-uri 'self';
form-action 'self';
frame-ancestors 'none';
block-all-mixed-content;
upgrade-insecure-requests;`;
// Replace newline characters and spaces
const contentSecurityPolicyHeaderValue = cspHeader.replace(/\s{2,}/g, " ").trim();
const requestHeaders = new Headers(request.headers);
requestHeaders.set("x-nonce", nonce);
requestHeaders.set("Content-Security-Policy", contentSecurityPolicyHeaderValue);
const response = NextResponse.next({
request: {
headers: requestHeaders,
},
});
response.headers.set("Content-Security-Policy", contentSecurityPolicyHeaderValue);
return response;
}
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).*)",
missing: [
{ type: "header", key: "next-router-prefetch" },
{ type: "header", key: "purpose", value: "prefetch" },
],
},
],
};