-
Notifications
You must be signed in to change notification settings - Fork 28.2k
/
Copy pathresolve-routes.ts
838 lines (730 loc) · 27 KB
/
resolve-routes.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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
import type { FsOutput } from './filesystem'
import type { IncomingMessage, ServerResponse } from 'http'
import type { NextConfigComplete } from '../../config-shared'
import type { RenderServer, initialize } from '../router-server'
import type { PatchMatcher } from '../../../shared/lib/router/utils/path-match'
import type { Redirect } from '../../../types'
import type { Header, Rewrite } from '../../../lib/load-custom-routes'
import type { UnwrapPromise } from '../../../lib/coalesced-function'
import type { NextUrlWithParsedQuery } from '../../request-meta'
import url from 'url'
import path from 'node:path'
import setupDebug from 'next/dist/compiled/debug'
import { getCloneableBody } from '../../body-streams'
import { filterReqHeaders, ipcForbiddenHeaders } from '../server-ipc/utils'
import { stringifyQuery } from '../../server-route-utils'
import { formatHostname } from '../format-hostname'
import { toNodeOutgoingHttpHeaders } from '../../web/utils'
import { isAbortError } from '../../pipe-readable'
import { getHostname } from '../../../shared/lib/get-hostname'
import { getRedirectStatus } from '../../../lib/redirect-status'
import { normalizeRepeatedSlashes } from '../../../shared/lib/utils'
import { getRelativeURL } from '../../../shared/lib/router/utils/relativize-url'
import { addPathPrefix } from '../../../shared/lib/router/utils/add-path-prefix'
import { pathHasPrefix } from '../../../shared/lib/router/utils/path-has-prefix'
import { detectDomainLocale } from '../../../shared/lib/i18n/detect-domain-locale'
import { normalizeLocalePath } from '../../../shared/lib/i18n/normalize-locale-path'
import { removePathPrefix } from '../../../shared/lib/router/utils/remove-path-prefix'
import { NextDataPathnameNormalizer } from '../../normalizers/request/next-data'
import { BasePathPathnameNormalizer } from '../../normalizers/request/base-path'
import { addRequestMeta } from '../../request-meta'
import {
compileNonPath,
matchHas,
parseDestination,
prepareDestination,
} from '../../../shared/lib/router/utils/prepare-destination'
import type { TLSSocket } from 'tls'
import {
NEXT_REWRITTEN_PATH_HEADER,
NEXT_REWRITTEN_QUERY_HEADER,
NEXT_ROUTER_STATE_TREE_HEADER,
RSC_HEADER,
} from '../../../client/components/app-router-headers'
import { getSelectedParams } from '../../../client/components/router-reducer/compute-changed-path'
import { isInterceptionRouteRewrite } from '../../../lib/generate-interception-routes-rewrites'
import { parseAndValidateFlightRouterState } from '../../app-render/parse-and-validate-flight-router-state'
const debug = setupDebug('next:router-server:resolve-routes')
export function getResolveRoutes(
fsChecker: UnwrapPromise<
ReturnType<typeof import('./filesystem').setupFsCheck>
>,
config: NextConfigComplete,
opts: Parameters<typeof initialize>[0],
renderServer: RenderServer,
renderServerOpts: Parameters<RenderServer['initialize']>[0],
ensureMiddleware?: (url?: string) => Promise<void>
) {
type Route = {
/**
* The path matcher to check if this route applies to this request.
*/
match: PatchMatcher
check?: boolean
name?: string
} & Partial<Header> &
Partial<Redirect>
const routes: Route[] = [
// _next/data with middleware handling
{ match: () => ({}), name: 'middleware_next_data' },
...(opts.minimalMode ? [] : fsChecker.headers),
...(opts.minimalMode ? [] : fsChecker.redirects),
// check middleware (using matchers)
{ match: () => ({}), name: 'middleware' },
...(opts.minimalMode ? [] : fsChecker.rewrites.beforeFiles),
// check middleware (using matchers)
{ match: () => ({}), name: 'before_files_end' },
// we check exact matches on fs before continuing to
// after files rewrites
{ match: () => ({}), name: 'check_fs' },
...(opts.minimalMode ? [] : fsChecker.rewrites.afterFiles),
// we always do the check: true handling before continuing to
// fallback rewrites
{
check: true,
match: () => ({}),
name: 'after files check: true',
},
...(opts.minimalMode ? [] : fsChecker.rewrites.fallback),
]
async function resolveRoutes({
req,
res,
isUpgradeReq,
invokedOutputs,
}: {
req: IncomingMessage
res: ServerResponse
isUpgradeReq: boolean
signal: AbortSignal
invokedOutputs?: Set<string>
}): Promise<{
finished: boolean
statusCode?: number
bodyStream?: ReadableStream | null
resHeaders: Record<string, string | string[]>
parsedUrl: NextUrlWithParsedQuery
matchedOutput?: FsOutput | null
}> {
let finished = false
let resHeaders: Record<string, string | string[]> = {}
let matchedOutput: FsOutput | null = null
let parsedUrl = url.parse(req.url || '', true) as NextUrlWithParsedQuery
let didRewrite = false
const urlParts = (req.url || '').split('?', 1)
const urlNoQuery = urlParts[0]
// this normalizes repeated slashes in the path e.g. hello//world ->
// hello/world or backslashes to forward slashes, this does not
// handle trailing slash as that is handled the same as a next.config.js
// redirect
if (urlNoQuery?.match(/(\\|\/\/)/)) {
parsedUrl = url.parse(normalizeRepeatedSlashes(req.url!), true)
return {
parsedUrl,
resHeaders,
finished: true,
statusCode: 308,
}
}
// TODO: inherit this from higher up
const protocol =
(req?.socket as TLSSocket)?.encrypted ||
req.headers['x-forwarded-proto']?.includes('https')
? 'https'
: 'http'
// When there are hostname and port we build an absolute URL
const initUrl = (config.experimental as any).trustHostHeader
? `https://${req.headers.host || 'localhost'}${req.url}`
: opts.port
? `${protocol}://${formatHostname(opts.hostname || 'localhost')}:${
opts.port
}${req.url}`
: req.url || ''
addRequestMeta(req, 'initURL', initUrl)
addRequestMeta(req, 'initQuery', { ...parsedUrl.query })
addRequestMeta(req, 'initProtocol', protocol)
if (!isUpgradeReq) {
addRequestMeta(req, 'clonableBody', getCloneableBody(req))
}
const maybeAddTrailingSlash = (pathname: string) => {
if (
config.trailingSlash &&
!config.skipMiddlewareUrlNormalize &&
!pathname.endsWith('/')
) {
return `${pathname}/`
}
return pathname
}
let domainLocale: ReturnType<typeof detectDomainLocale> | undefined
let defaultLocale: string | undefined
let initialLocaleResult:
| ReturnType<typeof normalizeLocalePath>
| undefined = undefined
if (config.i18n) {
const hadTrailingSlash = parsedUrl.pathname?.endsWith('/')
const hadBasePath = pathHasPrefix(
parsedUrl.pathname || '',
config.basePath
)
initialLocaleResult = normalizeLocalePath(
removePathPrefix(parsedUrl.pathname || '/', config.basePath),
config.i18n.locales
)
domainLocale = detectDomainLocale(
config.i18n.domains,
getHostname(parsedUrl, req.headers)
)
defaultLocale = domainLocale?.defaultLocale || config.i18n.defaultLocale
addRequestMeta(req, 'defaultLocale', defaultLocale)
addRequestMeta(
req,
'locale',
initialLocaleResult.detectedLocale || defaultLocale
)
// ensure locale is present for resolving routes
if (
!initialLocaleResult.detectedLocale &&
!initialLocaleResult.pathname.startsWith('/_next/')
) {
parsedUrl.pathname = addPathPrefix(
initialLocaleResult.pathname === '/'
? `/${defaultLocale}`
: addPathPrefix(
initialLocaleResult.pathname || '',
`/${defaultLocale}`
),
hadBasePath ? config.basePath : ''
)
if (hadTrailingSlash) {
parsedUrl.pathname = maybeAddTrailingSlash(parsedUrl.pathname)
}
}
}
const checkLocaleApi = (pathname: string) => {
if (
config.i18n &&
pathname === urlNoQuery &&
initialLocaleResult?.detectedLocale &&
pathHasPrefix(initialLocaleResult.pathname, '/api')
) {
return true
}
}
async function checkTrue() {
const pathname = parsedUrl.pathname || ''
if (checkLocaleApi(pathname)) {
return
}
if (!invokedOutputs?.has(pathname)) {
const output = await fsChecker.getItem(pathname)
if (output) {
if (
config.useFileSystemPublicRoutes ||
didRewrite ||
(output.type !== 'appFile' && output.type !== 'pageFile')
) {
return output
}
}
}
const dynamicRoutes = fsChecker.getDynamicRoutes()
let curPathname = parsedUrl.pathname
if (config.basePath) {
if (!pathHasPrefix(curPathname || '', config.basePath)) {
return
}
curPathname = curPathname?.substring(config.basePath.length) || '/'
}
const localeResult = fsChecker.handleLocale(curPathname || '')
for (const route of dynamicRoutes) {
// when resolving fallback: false the
// render worker may return a no-fallback response
// which signals we need to continue resolving.
// TODO: optimize this to collect static paths
// to use at the routing layer
if (invokedOutputs?.has(route.page)) {
continue
}
const params = route.match(localeResult.pathname)
if (params) {
const pageOutput = await fsChecker.getItem(
addPathPrefix(route.page, config.basePath || '')
)
// i18n locales aren't matched for app dir
if (
pageOutput?.type === 'appFile' &&
initialLocaleResult?.detectedLocale
) {
continue
}
if (pageOutput && curPathname?.startsWith('/_next/data')) {
addRequestMeta(req, 'isNextDataReq', true)
}
if (config.useFileSystemPublicRoutes || didRewrite) {
return pageOutput
}
}
}
}
const normalizers = {
basePath:
config.basePath && config.basePath !== '/'
? new BasePathPathnameNormalizer(config.basePath)
: undefined,
data: new NextDataPathnameNormalizer(fsChecker.buildId),
}
async function handleRoute(
route: (typeof routes)[0]
): Promise<UnwrapPromise<ReturnType<typeof resolveRoutes>> | void> {
let curPathname = parsedUrl.pathname || '/'
if (config.i18n && route.internal) {
const hadTrailingSlash = curPathname.endsWith('/')
if (config.basePath) {
curPathname = removePathPrefix(curPathname, config.basePath)
}
const hadBasePath = curPathname !== parsedUrl.pathname
const localeResult = normalizeLocalePath(
curPathname,
config.i18n.locales
)
const isDefaultLocale = localeResult.detectedLocale === defaultLocale
if (isDefaultLocale) {
curPathname =
localeResult.pathname === '/' && hadBasePath
? config.basePath
: addPathPrefix(
localeResult.pathname,
hadBasePath ? config.basePath : ''
)
} else if (hadBasePath) {
curPathname =
curPathname === '/'
? config.basePath
: addPathPrefix(curPathname, config.basePath)
}
if ((isDefaultLocale || hadBasePath) && hadTrailingSlash) {
curPathname = maybeAddTrailingSlash(curPathname)
}
}
let params = route.match(curPathname)
if ((route.has || route.missing) && params) {
const hasParams = matchHas(
req,
parsedUrl.query,
route.has,
route.missing
)
if (hasParams) {
Object.assign(params, hasParams)
} else {
params = false
}
}
if (params) {
if (
fsChecker.exportPathMapRoutes &&
route.name === 'before_files_end'
) {
for (const exportPathMapRoute of fsChecker.exportPathMapRoutes) {
const result = await handleRoute(exportPathMapRoute)
if (result) {
return result
}
}
}
if (route.name === 'middleware_next_data' && parsedUrl.pathname) {
if (fsChecker.getMiddlewareMatchers()?.length) {
let normalized = parsedUrl.pathname
// Remove the base path if it exists.
const hadBasePath = normalizers.basePath?.match(parsedUrl.pathname)
if (hadBasePath && normalizers.basePath) {
normalized = normalizers.basePath.normalize(normalized, true)
}
let updated = false
if (normalizers.data.match(normalized)) {
updated = true
addRequestMeta(req, 'isNextDataReq', true)
normalized = normalizers.data.normalize(normalized, true)
}
if (config.i18n) {
const curLocaleResult = normalizeLocalePath(
normalized,
config.i18n.locales
)
if (curLocaleResult.detectedLocale) {
addRequestMeta(req, 'locale', curLocaleResult.detectedLocale)
}
}
// If we updated the pathname, and it had a base path, re-add the
// base path.
if (updated) {
if (hadBasePath) {
normalized = path.posix.join(config.basePath, normalized)
}
// Re-add the trailing slash (if required).
normalized = maybeAddTrailingSlash(normalized)
parsedUrl.pathname = normalized
}
}
}
if (route.name === 'check_fs') {
const pathname = parsedUrl.pathname || ''
if (invokedOutputs?.has(pathname) || checkLocaleApi(pathname)) {
return
}
const output = await fsChecker.getItem(pathname)
if (
output &&
!(
config.i18n &&
initialLocaleResult?.detectedLocale &&
pathHasPrefix(pathname, '/api')
)
) {
if (
config.useFileSystemPublicRoutes ||
didRewrite ||
(output.type !== 'appFile' && output.type !== 'pageFile')
) {
matchedOutput = output
if (output.locale) {
addRequestMeta(req, 'locale', output.locale)
}
return {
parsedUrl,
resHeaders,
finished: true,
matchedOutput,
}
}
}
}
if (!opts.minimalMode && route.name === 'middleware') {
const match = fsChecker.getMiddlewareMatchers()
let maybeDecodedPathname = parsedUrl.pathname || '/'
try {
maybeDecodedPathname = decodeURIComponent(maybeDecodedPathname)
} catch {
/* non-fatal we can't decode so can't match it */
}
if (
// @ts-expect-error BaseNextRequest stuff
match?.(parsedUrl.pathname, req, parsedUrl.query) ||
match?.(
maybeDecodedPathname,
// @ts-expect-error BaseNextRequest stuff
req,
parsedUrl.query
)
) {
if (ensureMiddleware) {
await ensureMiddleware(req.url)
}
const serverResult =
await renderServer?.initialize(renderServerOpts)
if (!serverResult) {
throw new Error(`Failed to initialize render server "middleware"`)
}
addRequestMeta(req, 'invokePath', '')
addRequestMeta(req, 'invokeOutput', '')
addRequestMeta(req, 'invokeQuery', {})
addRequestMeta(req, 'middlewareInvoke', true)
debug('invoking middleware', req.url, req.headers)
let middlewareRes: Response | undefined = undefined
let bodyStream: ReadableStream | undefined = undefined
try {
try {
await serverResult.requestHandler(req, res, parsedUrl)
} catch (err: any) {
if (!('result' in err) || !('response' in err.result)) {
throw err
}
middlewareRes = err.result.response as Response
res.statusCode = middlewareRes.status
if (middlewareRes.body) {
bodyStream = middlewareRes.body
} else if (middlewareRes.status) {
bodyStream = new ReadableStream({
start(controller) {
controller.enqueue('')
controller.close()
},
})
}
}
} catch (e) {
// If the client aborts before we can receive a response object
// (when the headers are flushed), then we can early exit without
// further processing.
if (isAbortError(e)) {
return {
parsedUrl,
resHeaders,
finished: true,
}
}
throw e
}
if (res.closed || res.finished || !middlewareRes) {
return {
parsedUrl,
resHeaders,
finished: true,
}
}
const middlewareHeaders = toNodeOutgoingHttpHeaders(
middlewareRes.headers
) as Record<string, string | string[] | undefined>
debug('middleware res', middlewareRes.status, middlewareHeaders)
if (middlewareHeaders['x-middleware-override-headers']) {
const overriddenHeaders: Set<string> = new Set()
let overrideHeaders: string | string[] =
middlewareHeaders['x-middleware-override-headers']
if (typeof overrideHeaders === 'string') {
overrideHeaders = overrideHeaders.split(',')
}
for (const key of overrideHeaders) {
overriddenHeaders.add(key.trim())
}
delete middlewareHeaders['x-middleware-override-headers']
// Delete headers.
for (const key of Object.keys(req.headers)) {
if (!overriddenHeaders.has(key)) {
delete req.headers[key]
}
}
// Update or add headers.
for (const key of overriddenHeaders.keys()) {
const valueKey = 'x-middleware-request-' + key
const newValue = middlewareHeaders[valueKey]
const oldValue = req.headers[key]
if (oldValue !== newValue) {
req.headers[key] = newValue === null ? undefined : newValue
}
delete middlewareHeaders[valueKey]
}
}
if (
!middlewareHeaders['x-middleware-rewrite'] &&
!middlewareHeaders['x-middleware-next'] &&
!middlewareHeaders['location']
) {
middlewareHeaders['x-middleware-refresh'] = '1'
}
delete middlewareHeaders['x-middleware-next']
for (const [key, value] of Object.entries({
...filterReqHeaders(middlewareHeaders, ipcForbiddenHeaders),
})) {
if (
[
'content-length',
'x-middleware-rewrite',
'x-middleware-redirect',
'x-middleware-refresh',
].includes(key)
) {
continue
}
// for set-cookie, the header shouldn't be added to the response
// as it's only needed for the request to the middleware function.
if (key === 'x-middleware-set-cookie') {
req.headers[key] = value
continue
}
if (value) {
resHeaders[key] = value
req.headers[key] = value
}
}
if (middlewareHeaders['x-middleware-rewrite']) {
const value = middlewareHeaders['x-middleware-rewrite'] as string
const destination = getRelativeURL(value, initUrl)
resHeaders['x-middleware-rewrite'] = destination
parsedUrl = url.parse(destination, true)
if (parsedUrl.protocol) {
return {
parsedUrl,
resHeaders,
finished: true,
}
}
if (config.i18n) {
const curLocaleResult = normalizeLocalePath(
parsedUrl.pathname || '',
config.i18n.locales
)
if (curLocaleResult.detectedLocale) {
addRequestMeta(req, 'locale', curLocaleResult.detectedLocale)
}
}
}
if (middlewareHeaders['location']) {
const value = middlewareHeaders['location'] as string
const rel = getRelativeURL(value, initUrl)
resHeaders['location'] = rel
parsedUrl = url.parse(rel, true)
return {
parsedUrl,
resHeaders,
finished: true,
statusCode: middlewareRes.status,
}
}
if (middlewareHeaders['x-middleware-refresh']) {
return {
parsedUrl,
resHeaders,
finished: true,
bodyStream,
statusCode: middlewareRes.status,
}
}
}
}
// handle redirect
if (
('statusCode' in route || 'permanent' in route) &&
route.destination
) {
const { parsedDestination } = prepareDestination({
appendParamsToQuery: false,
destination: route.destination,
params: params,
query: parsedUrl.query,
})
const { query } = parsedDestination
delete (parsedDestination as any).query
parsedDestination.search = stringifyQuery(req as any, query)
parsedDestination.pathname = normalizeRepeatedSlashes(
parsedDestination.pathname
)
return {
finished: true,
// @ts-expect-error custom ParsedUrl
parsedUrl: parsedDestination,
statusCode: getRedirectStatus(route),
}
}
// handle headers
if (route.headers) {
const hasParams = Object.keys(params).length > 0
for (const header of route.headers) {
let { key, value } = header
if (hasParams) {
key = compileNonPath(key, params)
value = compileNonPath(value, params)
}
if (key.toLowerCase() === 'set-cookie') {
if (!Array.isArray(resHeaders[key])) {
const val = resHeaders[key]
resHeaders[key] = typeof val === 'string' ? [val] : []
}
;(resHeaders[key] as string[]).push(value)
} else {
resHeaders[key] = value
}
}
}
// handle rewrite
if (route.destination) {
let rewriteParams = params
try {
// An interception rewrite might reference a dynamic param for a route the user
// is currently on, which wouldn't be extractable from the matched route params.
// This attempts to extract the dynamic params from the provided router state.
if (isInterceptionRouteRewrite(route as Rewrite)) {
const stateHeader =
req.headers[NEXT_ROUTER_STATE_TREE_HEADER.toLowerCase()]
if (stateHeader) {
rewriteParams = {
...getSelectedParams(
parseAndValidateFlightRouterState(stateHeader)
),
...params,
}
}
}
} catch (err) {
// this is a no-op -- we couldn't extract dynamic params from the provided router state,
// so we'll just use the params from the route matcher
}
// We extract the search params of the destination so we can set it on
// the response headers. We don't want to use the following
// `parsedDestination` as the query object is mutated.
const { search: destinationSearch, pathname: destinationPathname } =
parseDestination({
destination: route.destination,
params: rewriteParams,
query: parsedUrl.query,
})
const { parsedDestination } = prepareDestination({
appendParamsToQuery: true,
destination: route.destination,
params: rewriteParams,
query: parsedUrl.query,
})
if (parsedDestination.protocol) {
return {
// @ts-expect-error custom ParsedUrl
parsedUrl: parsedDestination,
finished: true,
}
}
// Set the rewrite headers only if this is a RSC request.
if (req.headers[RSC_HEADER.toLowerCase()] === '1') {
// We set the rewritten path and query headers on the response now
// that we know that the it's not an external rewrite.
if (parsedUrl.pathname !== destinationPathname) {
res.setHeader(NEXT_REWRITTEN_PATH_HEADER, destinationPathname)
}
if (destinationSearch) {
res.setHeader(
NEXT_REWRITTEN_QUERY_HEADER,
// remove the leading ? from the search
destinationSearch.slice(1)
)
}
}
if (config.i18n) {
const curLocaleResult = normalizeLocalePath(
removePathPrefix(parsedDestination.pathname, config.basePath),
config.i18n.locales
)
if (curLocaleResult.detectedLocale) {
addRequestMeta(req, 'locale', curLocaleResult.detectedLocale)
}
}
didRewrite = true
parsedUrl.pathname = parsedDestination.pathname
Object.assign(parsedUrl.query, parsedDestination.query)
}
// handle check: true
if (route.check) {
const output = await checkTrue()
if (output) {
return {
parsedUrl,
resHeaders,
finished: true,
matchedOutput: output,
}
}
}
}
}
for (const route of routes) {
const result = await handleRoute(route)
if (result) {
return result
}
}
return {
finished,
parsedUrl,
resHeaders,
matchedOutput,
}
}
return resolveRoutes
}