-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy.ts
More file actions
87 lines (81 loc) · 2.63 KB
/
Copy pathproxy.ts
File metadata and controls
87 lines (81 loc) · 2.63 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { NextRequest, NextResponse } from 'next/server';
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' }
]
}
]
};
/**
* Default content security policy
*
* @see https://nextjs.org/docs/app/guides/content-security-policy
*/
export function proxy(request: NextRequest) {
/**
* Must be inside an <iframe>
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Sec-Fetch-Dest
*/
if (request.headers.get('sec-fetch-dest') !== 'iframe') {
return new NextResponse(null, { status: 401 });
}
/**
* Must be framed by approved host
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy/frame-ancestors
*
* @see https://csplite.com/csp/test355/?rld=1779667554555#bug_Chrome_path_frame-ancestors
* ### Known bug in Chrome
* Oddly, it allows the page to load on the host, but then following any
* link in the iframe (even one started by the path) leads to an error
*/
const isDev = process.env.NODE_ENV === 'development';
/*const [_, audience] =
new URL(request.url).pathname.match(/^\/audience\/([^/]+)/) || [];*/
const cspHeader =
`
default-src 'self';
script-src 'self' 'unsafe-inline'${isDev ? " 'unsafe-eval'" : ''};
style-src 'self' 'unsafe-inline';
img-src 'self' blob: data: https://*.veracross.com https://res.cloudinary.com/veracross/image/upload/v1590100679/default.png;
media-src 'self' blob: data: https://*.amazonaws.com/data.namedrop.io/otu/audio/;
font-src 'self';
object-src 'none';
base-uri 'self';
form-action 'self';
frame-ancestors https://portals.veracross.com` +
/* `/${audience}/` */ ` https://composer.veracross.com;
upgrade-insecure-requests;
`;
// Replace newline characters and spaces
const contentSecurityPolicyHeaderValue = cspHeader
.replace(/\s{2,}/g, ' ')
.trim();
const requestHeaders = new Headers(request.headers);
requestHeaders.set(
'Content-Security-Policy',
contentSecurityPolicyHeaderValue
);
const response = NextResponse.next({
request: {
headers: requestHeaders
}
});
response.headers.set(
'Content-Security-Policy',
contentSecurityPolicyHeaderValue
);
return response;
}