-
Notifications
You must be signed in to change notification settings - Fork 31.1k
Expand file tree
/
Copy pathwith-request-store.ts
More file actions
204 lines (180 loc) · 6.09 KB
/
with-request-store.ts
File metadata and controls
204 lines (180 loc) · 6.09 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
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
import type { BaseNextRequest, BaseNextResponse } from '../base-http'
import type { IncomingHttpHeaders } from 'http'
import type { AsyncLocalStorage } from 'async_hooks'
import type {
RequestStore,
WorkUnitStore,
} from '../app-render/work-unit-async-storage.external'
import type { RenderOpts } from '../app-render/types'
import type { WithStore } from './with-store'
import type { NextRequest } from '../web/spec-extension/request'
import type { __ApiPreviewProps } from '../api-utils'
import { FLIGHT_HEADERS } from '../../client/components/app-router-headers'
import {
HeadersAdapter,
type ReadonlyHeaders,
} from '../web/spec-extension/adapters/headers'
import {
MutableRequestCookiesAdapter,
RequestCookiesAdapter,
type ReadonlyRequestCookies,
} from '../web/spec-extension/adapters/request-cookies'
import { ResponseCookies, RequestCookies } from '../web/spec-extension/cookies'
import { DraftModeProvider } from './draft-mode-provider'
import { splitCookiesString } from '../web/utils'
import type { ServerComponentsHmrCache } from '../response-cache'
function getHeaders(headers: Headers | IncomingHttpHeaders): ReadonlyHeaders {
const cleaned = HeadersAdapter.from(headers)
for (const header of FLIGHT_HEADERS) {
cleaned.delete(header.toLowerCase())
}
return HeadersAdapter.seal(cleaned)
}
function getMutableCookies(
headers: Headers | IncomingHttpHeaders,
onUpdateCookies?: (cookies: string[]) => void
): ResponseCookies {
const cookies = new RequestCookies(HeadersAdapter.from(headers))
return MutableRequestCookiesAdapter.wrap(cookies, onUpdateCookies)
}
export type WrapperRenderOpts = Partial<Pick<RenderOpts, 'onUpdateCookies'>> & {
previewProps?: __ApiPreviewProps
}
export type RequestContext = RequestResponsePair & {
/**
* The URL of the request. This only specifies the pathname and the search
* part of the URL. This is only undefined when generating static paths (ie,
* there is no request in progress, nor do we know one).
*/
url: {
/**
* The pathname of the requested URL.
*/
pathname: string
/**
* The search part of the requested URL. If the request did not provide a
* search part, this will be an empty string.
*/
search?: string
}
phase: RequestStore['phase']
renderOpts?: WrapperRenderOpts
isHmrRefresh?: boolean
serverComponentsHmrCache?: ServerComponentsHmrCache
implicitTags?: string[] | undefined
}
type RequestResponsePair =
| { req: BaseNextRequest; res: BaseNextResponse } // for an app page
| { req: NextRequest; res: undefined } // in an api route or middleware
/**
* If middleware set cookies in this request (indicated by `x-middleware-set-cookie`),
* then merge those into the existing cookie object, so that when `cookies()` is accessed
* it's able to read the newly set cookies.
*/
function mergeMiddlewareCookies(
req: RequestContext['req'],
existingCookies: RequestCookies | ResponseCookies
) {
if (
'x-middleware-set-cookie' in req.headers &&
typeof req.headers['x-middleware-set-cookie'] === 'string'
) {
const setCookieValue = req.headers['x-middleware-set-cookie']
const responseHeaders = new Headers()
for (const cookie of splitCookiesString(setCookieValue)) {
responseHeaders.append('set-cookie', cookie)
}
const responseCookies = new ResponseCookies(responseHeaders)
// Transfer cookies from ResponseCookies to RequestCookies
for (const cookie of responseCookies.getAll()) {
existingCookies.set(cookie)
}
}
}
export const withRequestStore: WithStore<WorkUnitStore, RequestContext> = <
Result,
>(
storage: AsyncLocalStorage<WorkUnitStore>,
{
req,
url,
res,
phase,
renderOpts,
isHmrRefresh,
serverComponentsHmrCache,
implicitTags,
}: RequestContext,
callback: (store: RequestStore) => Result
): Result => {
function defaultOnUpdateCookies(cookies: string[]) {
if (res) {
res.setHeader('Set-Cookie', cookies)
}
}
const cache: {
headers?: ReadonlyHeaders
cookies?: ReadonlyRequestCookies
mutableCookies?: ResponseCookies
draftMode?: DraftModeProvider
} = {}
const store: RequestStore = {
type: 'request',
phase,
implicitTags: implicitTags ?? [],
// Rather than just using the whole `url` here, we pull the parts we want
// to ensure we don't use parts of the URL that we shouldn't. This also
// lets us avoid requiring an empty string for `search` in the type.
url: { pathname: url.pathname, search: url.search ?? '' },
get headers() {
if (!cache.headers) {
// Seal the headers object that'll freeze out any methods that could
// mutate the underlying data.
cache.headers = getHeaders(req.headers)
}
return cache.headers
},
get cookies() {
if (!cache.cookies) {
// if middleware is setting cookie(s), then include those in
// the initial cached cookies so they can be read in render
const requestCookies = new RequestCookies(
HeadersAdapter.from(req.headers)
)
mergeMiddlewareCookies(req, requestCookies)
// Seal the cookies object that'll freeze out any methods that could
// mutate the underlying data.
cache.cookies = RequestCookiesAdapter.seal(requestCookies)
}
return cache.cookies
},
get mutableCookies() {
if (!cache.mutableCookies) {
const mutableCookies = getMutableCookies(
req.headers,
renderOpts?.onUpdateCookies ||
(res ? defaultOnUpdateCookies : undefined)
)
mergeMiddlewareCookies(req, mutableCookies)
cache.mutableCookies = mutableCookies
}
return cache.mutableCookies
},
get draftMode() {
if (!cache.draftMode) {
cache.draftMode = new DraftModeProvider(
renderOpts?.previewProps,
req,
this.cookies,
this.mutableCookies
)
}
return cache.draftMode
},
isHmrRefresh,
serverComponentsHmrCache:
serverComponentsHmrCache ||
(globalThis as any).__serverComponentsHmrCache,
}
return storage.run(store, callback, store)
}