-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathheaders.ts
321 lines (288 loc) · 10.5 KB
/
headers.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
import type { Span } from '@opentelemetry/api'
import type { NextConfigComplete } from 'next/dist/server/config-shared.js'
import { encodeBlobKey } from '../shared/blobkey.js'
import type { RequestContext } from './handlers/request-context.cjs'
import type { RuntimeTracer } from './handlers/tracer.cjs'
import { getRegionalBlobStore } from './regional-blob-store.cjs'
const ALL_VARIATIONS = Symbol.for('ALL_VARIATIONS')
interface NetlifyVaryValues {
header: string[]
language: string[]
cookie: string[]
/**
* Query variation can be without argument in which case all query combinations would create a new cache key
* This is represented by a ALL_VARIATIONS in the array.
*/
query: (string | typeof ALL_VARIATIONS)[]
country: string[]
}
const NetlifyVaryKeys = new Set(['header', 'language', 'cookie', 'query', 'country'])
const isNetlifyVaryKey = (key: string): key is keyof NetlifyVaryValues => NetlifyVaryKeys.has(key)
const generateNetlifyVaryValues = ({
header,
language,
cookie,
query,
country,
}: NetlifyVaryValues): string => {
const values: string[] = []
if (query.length !== 0) {
if (query.includes(ALL_VARIATIONS)) {
values.push(`query`)
} else {
values.push(`query=${query.join(`|`)}`)
}
}
if (header.length !== 0) {
values.push(`header=${header.join(`|`)}`)
}
if (language.length !== 0) {
values.push(`language=${language.join(`|`)}`)
}
if (cookie.length !== 0) {
values.push(`cookie=${cookie.join(`|`)}`)
}
if (country.length !== 0) {
values.push(`country=${country.join(`|`)}`)
}
return values.join(',')
}
const getHeaderValueArray = (header: string): string[] => {
return header
.split(',')
.map((value) => value.trim())
.filter(Boolean)
}
const omitHeaderValues = (header: string, values: string[]): string => {
const headerValues = getHeaderValueArray(header)
const filteredValues = headerValues.filter(
(value) => !values.some((val) => value.startsWith(val)),
)
return filteredValues.join(', ')
}
/**
* Ensure the Netlify CDN varies on things that Next.js varies on,
* e.g. i18n, preview mode, etc.
*/
export const setVaryHeaders = (
headers: Headers,
request: Request,
{ basePath, i18n }: Pick<NextConfigComplete, 'basePath' | 'i18n'>,
) => {
const netlifyVaryValues: NetlifyVaryValues = {
header: ['x-nextjs-data', 'x-next-debug-logging'],
language: [],
cookie: ['__prerender_bypass', '__next_preview_data'],
query: ['__nextDataReq'],
country: [],
}
const vary = headers.get('vary')
if (vary !== null) {
netlifyVaryValues.header.push(...getHeaderValueArray(vary))
}
const path = new URL(request.url).pathname
const locales = i18n && i18n.localeDetection !== false ? i18n.locales : []
if (locales.length > 1 && (path === '/' || path === basePath)) {
netlifyVaryValues.language.push(...locales)
netlifyVaryValues.cookie.push(`NEXT_LOCALE`)
}
const userNetlifyVary = headers.get('netlify-vary')
if (userNetlifyVary) {
// respect user's header and append them
const directives = getHeaderValueArray(userNetlifyVary)
for (const directive of directives) {
const [key, value] = directive.split('=')
if (key === 'query' && !value) {
// query can have no "assignment" and then it should vary on all possible query combinations
netlifyVaryValues.query.push(ALL_VARIATIONS)
} else if (value && isNetlifyVaryKey(key)) {
netlifyVaryValues[key].push(...value.split('|'))
}
}
}
headers.set(`netlify-vary`, generateNetlifyVaryValues(netlifyVaryValues))
}
/**
* Change the date header to be the last-modified date of the blob. This means the CDN
* will use the correct expiry time for the response. e.g. if the blob was last modified
* 5 seconds ago and is sent with a maxage of 10, the CDN will cache it for 5 seconds.
* By default, Next.js sets the date header to the current time, even if it's served
* from the cache, meaning that the CDN will cache it for 10 seconds, which is incorrect.
*/
export const adjustDateHeader = async ({
headers,
request,
span,
tracer,
requestContext,
}: {
headers: Headers
request: Request
span: Span
tracer: RuntimeTracer
requestContext: RequestContext
}) => {
const cacheState = headers.get('x-nextjs-cache')
const isServedFromCache = cacheState === 'HIT' || cacheState === 'STALE'
span.setAttributes({
'x-nextjs-cache': cacheState ?? undefined,
isServedFromCache,
})
if (!isServedFromCache) {
return
}
const key = new URL(request.url).pathname
let lastModified: number | undefined
if (requestContext.responseCacheGetLastModified) {
lastModified = requestContext.responseCacheGetLastModified
} else {
// this is fallback in case requestContext doesn't contain lastModified
// using fallback indicate problem in the setup as assumption is that for cached responses
// request context would contain lastModified value
// this is not fatal as we have fallback,
// but we want to know about it happening
span.recordException(
new Error('lastModified not found in requestContext, falling back to trying blobs'),
)
span.setAttributes({
severity: 'alert',
warning: true,
})
const blobStore = getRegionalBlobStore({ consistency: 'strong' })
const blobKey = await encodeBlobKey(key)
// TODO: use metadata for this
lastModified = await tracer.withActiveSpan(
'get cache to calculate date header',
async (getBlobForDateSpan) => {
getBlobForDateSpan.setAttributes({
key,
blobKey,
})
const blob = (await blobStore.get(blobKey, { type: 'json' })) ?? {}
getBlobForDateSpan.addEvent(blob ? 'Cache hit' : 'Cache miss')
return blob.lastModified
},
)
}
if (!lastModified) {
// this should never happen as we only execute this code path for cached responses
// and those should always have lastModified value
span.recordException(
new Error(
'lastModified not found in either requestContext or blobs, date header for cached response is not set',
),
)
span.setAttributes({
severity: 'alert',
warning: true,
})
return
}
const lastModifiedDate = new Date(lastModified)
// Show actual date of the function call in the date header
headers.set('x-nextjs-date', headers.get('date') ?? lastModifiedDate.toUTCString())
// Setting Age also would work, but we already have the lastModified time so will use that.
headers.set('date', lastModifiedDate.toUTCString())
}
/**
* Ensure stale-while-revalidate and s-maxage don't leak to the client, but
* assume the user knows what they are doing if CDN cache controls are set
*/
export const setCacheControlHeaders = (
{ headers, status }: Response,
request: Request,
requestContext: RequestContext,
) => {
if (
typeof requestContext.routeHandlerRevalidate !== 'undefined' &&
['GET', 'HEAD'].includes(request.method) &&
!headers.has('cdn-cache-control') &&
!headers.has('netlify-cdn-cache-control')
) {
// handle CDN Cache Control on Route Handler responses
const cdnCacheControl =
// if we are serving already stale response, instruct edge to not attempt to cache that response
headers.get('x-nextjs-cache') === 'STALE'
? 'public, max-age=0, must-revalidate, durable'
: `s-maxage=${requestContext.routeHandlerRevalidate === false ? 31536000 : requestContext.routeHandlerRevalidate}, stale-while-revalidate=31536000, durable`
headers.set('netlify-cdn-cache-control', cdnCacheControl)
return
}
if (status === 404 && request.url.endsWith('.php')) {
// temporary CDN Cache Control handling for bot probes on PHP files
// https://linear.app/netlify/issue/FRB-1344/prevent-excessive-ssr-invocations-due-to-404-routes
headers.set('cache-control', 'public, max-age=0, must-revalidate')
headers.set('netlify-cdn-cache-control', `max-age=31536000, durable`)
}
const cacheControl = headers.get('cache-control')
if (
cacheControl !== null &&
['GET', 'HEAD'].includes(request.method) &&
!headers.has('cdn-cache-control') &&
!headers.has('netlify-cdn-cache-control')
) {
// handle CDN Cache Control on ISR and App Router page responses
const browserCacheControl = omitHeaderValues(cacheControl, [
's-maxage',
'stale-while-revalidate',
])
const cdnCacheControl =
// if we are serving already stale response, instruct edge to not attempt to cache that response
headers.get('x-nextjs-cache') === 'STALE'
? 'public, max-age=0, must-revalidate, durable'
: [
...getHeaderValueArray(cacheControl).map((value) =>
value === 'stale-while-revalidate' ? 'stale-while-revalidate=31536000' : value,
),
'durable',
].join(', ')
headers.set('cache-control', browserCacheControl || 'public, max-age=0, must-revalidate')
headers.set('netlify-cdn-cache-control', cdnCacheControl)
return
}
if (
cacheControl === null &&
!headers.has('cdn-cache-control') &&
!headers.has('netlify-cdn-cache-control') &&
requestContext.usedFsReadForNonFallback
) {
// handle CDN Cache Control on static files
headers.set('cache-control', 'public, max-age=0, must-revalidate')
headers.set('netlify-cdn-cache-control', `max-age=31536000, durable`)
}
}
export const setCacheTagsHeaders = (headers: Headers, requestContext: RequestContext) => {
if (
requestContext.responseCacheTags &&
(headers.has('cache-control') || headers.has('netlify-cdn-cache-control'))
) {
headers.set('netlify-cache-tag', requestContext.responseCacheTags.join(','))
}
}
/**
* https://httpwg.org/specs/rfc9211.html
*
* We get HIT, MISS, STALE statuses from Next cache.
* We will ignore other statuses and will not set Cache-Status header in those cases.
*/
const NEXT_CACHE_TO_CACHE_STATUS: Record<string, string> = {
HIT: `hit`,
MISS: `fwd=miss`,
STALE: `hit; fwd=stale`,
}
/**
* x-nextjs-cache header will be confusing to users as very often it will be MISS
* even when the CDN serves cached the response. So we'll remove it and instead add
* a Cache-Status header for Next cache so users inspect that together with CDN cache status
* and not on its own.
*/
export const setCacheStatusHeader = (headers: Headers) => {
const nextCache = headers.get('x-nextjs-cache')
if (typeof nextCache === 'string') {
if (nextCache in NEXT_CACHE_TO_CACHE_STATUS) {
const cacheStatus = NEXT_CACHE_TO_CACHE_STATUS[nextCache]
headers.set('cache-status', `"Next.js"; ${cacheStatus}`)
}
headers.delete('x-nextjs-cache')
}
}