next-server.ts 37.6 KB
Newer Older
1
import compression from 'compression'
J
Joe Haddad 已提交
2
import fs from 'fs'
J
Joe Haddad 已提交
3
import { IncomingMessage, ServerResponse } from 'http'
J
Joe Haddad 已提交
4 5
import Proxy from 'http-proxy'
import nanoid from 'next/dist/compiled/nanoid/index.js'
J
Joe Haddad 已提交
6
import { join, resolve, sep } from 'path'
7
import { parse as parseQs, ParsedUrlQuery } from 'querystring'
8
import { format as formatUrl, parse as parseUrl, UrlWithParsedQuery } from 'url'
9
import { PrerenderManifest } from '../../build'
J
Joe Haddad 已提交
10 11 12 13 14 15 16
import {
  getRedirectStatus,
  Header,
  Redirect,
  Rewrite,
  RouteType,
} from '../../lib/check-custom-routes'
J
JJ Kasper 已提交
17
import { withCoalescedInvoke } from '../../lib/coalesced-function'
J
Joe Haddad 已提交
18 19
import {
  BUILD_ID_FILE,
20
  CLIENT_PUBLIC_FILES_PATH,
J
Joe Haddad 已提交
21 22
  CLIENT_STATIC_FILES_PATH,
  CLIENT_STATIC_FILES_RUNTIME,
23
  PAGES_MANIFEST,
J
Joe Haddad 已提交
24
  PHASE_PRODUCTION_SERVER,
J
Joe Haddad 已提交
25
  PRERENDER_MANIFEST,
26
  ROUTES_MANIFEST,
27
  SERVERLESS_DIRECTORY,
J
Joe Haddad 已提交
28
  SERVER_DIRECTORY,
T
Tim Neutkens 已提交
29
} from '../lib/constants'
J
Joe Haddad 已提交
30 31 32 33
import {
  getRouteMatcher,
  getRouteRegex,
  getSortedRoutes,
34
  isDynamicRoute,
J
Joe Haddad 已提交
35
} from '../lib/router/utils'
36
import * as envConfig from '../lib/runtime-config'
J
Joe Haddad 已提交
37
import { isResSent, NextApiRequest, NextApiResponse } from '../lib/utils'
J
Joe Haddad 已提交
38
import { apiResolver, tryGetPreviewData, __ApiPreviewProps } from './api-utils'
39
import loadConfig, { isTargetLikeServerless } from './config'
40
import pathMatch from './lib/path-match'
J
Joe Haddad 已提交
41
import { recursiveReadDirSync } from './lib/recursive-readdir-sync'
42
import { loadComponents, LoadComponentsReturnType } from './load-components'
J
Joe Haddad 已提交
43
import { normalizePagePath } from './normalize-page-path'
44
import { RenderOpts, RenderOptsPartial, renderToHTML } from './render'
J
Joe Haddad 已提交
45
import { getPagePath } from './require'
46 47 48
import Router, {
  DynamicRoutes,
  PageChecker,
J
Joe Haddad 已提交
49
  Params,
50
  prepareDestination,
J
Joe Haddad 已提交
51 52
  route,
  Route,
53
} from './router'
J
Joe Haddad 已提交
54 55
import { sendHTML } from './send-html'
import { serveStatic } from './serve-static'
56
import {
J
Joe Haddad 已提交
57
  getFallback,
58 59 60 61
  getSprCache,
  initializeSprCache,
  setSprCache,
} from './spr-cache'
62
import { isBlockedPage } from './utils'
J
JJ Kasper 已提交
63 64

const getCustomRouteMatcher = pathMatch(true)
65 66 67

type NextConfig = any

68 69 70 71 72 73
type Middleware = (
  req: IncomingMessage,
  res: ServerResponse,
  next: (err?: Error) => void
) => void

74 75 76 77 78
type FindComponentsResult = {
  components: LoadComponentsReturnType
  query: ParsedUrlQuery
}

T
Tim Neutkens 已提交
79
export type ServerConstructor = {
80 81 82
  /**
   * Where the Next project is located - @default '.'
   */
J
Joe Haddad 已提交
83 84
  dir?: string
  staticMarkup?: boolean
85 86 87
  /**
   * Hide error messages containing server information - @default false
   */
J
Joe Haddad 已提交
88
  quiet?: boolean
89 90 91
  /**
   * Object what you would use in next.config.js - @default {}
   */
92
  conf?: NextConfig
J
JJ Kasper 已提交
93
  dev?: boolean
94
}
95

N
nkzawa 已提交
96
export default class Server {
97 98 99 100
  dir: string
  quiet: boolean
  nextConfig: NextConfig
  distDir: string
101
  pagesDir?: string
102
  publicDir: string
103
  hasStaticDir: boolean
104 105
  serverBuildDir: string
  pagesManifest?: { [name: string]: string }
106 107
  buildId: string
  renderOpts: {
T
Tim Neutkens 已提交
108
    poweredByHeader: boolean
J
Joe Haddad 已提交
109 110 111 112
    staticMarkup: boolean
    buildId: string
    generateEtags: boolean
    runtimeConfig?: { [key: string]: any }
113 114
    assetPrefix?: string
    canonicalBase: string
115
    documentMiddlewareEnabled: boolean
J
Joe Haddad 已提交
116
    hasCssMode: boolean
117
    dev?: boolean
118
    previewProps: __ApiPreviewProps
119
  }
120
  private compression?: Middleware
J
JJ Kasper 已提交
121
  private onErrorMiddleware?: ({ err }: { err: Error }) => Promise<void>
122
  router: Router
123
  protected dynamicRoutes?: DynamicRoutes
J
JJ Kasper 已提交
124 125 126
  protected customRoutes?: {
    rewrites: Rewrite[]
    redirects: Redirect[]
127
    headers: Header[]
J
JJ Kasper 已提交
128
  }
129 130 131
  protected staticPathsWorker?: import('jest-worker').default & {
    loadStaticPaths: typeof import('../../server/static-paths-worker').loadStaticPaths
  }
132

J
Joe Haddad 已提交
133 134 135 136 137
  public constructor({
    dir = '.',
    staticMarkup = false,
    quiet = false,
    conf = null,
J
JJ Kasper 已提交
138
    dev = false,
J
Joe Haddad 已提交
139
  }: ServerConstructor = {}) {
N
nkzawa 已提交
140
    this.dir = resolve(dir)
N
Naoyuki Kanezawa 已提交
141
    this.quiet = quiet
T
Tim Neutkens 已提交
142
    const phase = this.currentPhase()
143
    this.nextConfig = loadConfig(phase, this.dir, conf)
144
    this.distDir = join(this.dir, this.nextConfig.distDir)
145
    this.publicDir = join(this.dir, CLIENT_PUBLIC_FILES_PATH)
146
    this.hasStaticDir = fs.existsSync(join(this.dir, 'static'))
T
Tim Neutkens 已提交
147

148 149
    // Only serverRuntimeConfig needs the default
    // publicRuntimeConfig gets it's default in client/index.js
J
Joe Haddad 已提交
150 151 152 153 154
    const {
      serverRuntimeConfig = {},
      publicRuntimeConfig,
      assetPrefix,
      generateEtags,
155
      compress,
J
Joe Haddad 已提交
156
    } = this.nextConfig
157

T
Tim Neutkens 已提交
158
    this.buildId = this.readBuildId()
159

160
    this.renderOpts = {
T
Tim Neutkens 已提交
161
      poweredByHeader: this.nextConfig.poweredByHeader,
162
      canonicalBase: this.nextConfig.amp.canonicalBase,
163 164
      documentMiddlewareEnabled: this.nextConfig.experimental
        .documentMiddleware,
J
Joe Haddad 已提交
165
      hasCssMode: this.nextConfig.experimental.css,
166
      staticMarkup,
167
      buildId: this.buildId,
168
      generateEtags,
169
      previewProps: this.getPreviewProps(),
170
    }
N
Naoyuki Kanezawa 已提交
171

172 173
    // Only the `publicRuntimeConfig` key is exposed to the client side
    // It'll be rendered as part of __NEXT_DATA__ on the client side
174
    if (Object.keys(publicRuntimeConfig).length > 0) {
175
      this.renderOpts.runtimeConfig = publicRuntimeConfig
176 177
    }

178
    if (compress && this.nextConfig.target === 'server') {
179 180 181
      this.compression = compression() as Middleware
    }

182
    // Initialize next/config with the environment configuration
183 184 185 186
    envConfig.setConfig({
      serverRuntimeConfig,
      publicRuntimeConfig,
    })
187

188 189 190 191 192 193 194 195 196 197
    this.serverBuildDir = join(
      this.distDir,
      this._isLikeServerless ? SERVERLESS_DIRECTORY : SERVER_DIRECTORY
    )
    const pagesManifestPath = join(this.serverBuildDir, PAGES_MANIFEST)

    if (!dev) {
      this.pagesManifest = require(pagesManifestPath)
    }

J
JJ Kasper 已提交
198
    this.router = new Router(this.generateRoutes())
199
    this.setAssetPrefix(assetPrefix)
J
JJ Kasper 已提交
200

201 202 203
    // call init-server middleware, this is also handled
    // individually in serverless bundles when deployed
    if (!dev && this.nextConfig.experimental.plugins) {
204 205
      const initServer = require(join(this.serverBuildDir, 'init-server.js'))
        .default
206
      this.onErrorMiddleware = require(join(
207
        this.serverBuildDir,
208 209 210 211 212
        'on-error-server.js'
      )).default
      initServer()
    }

J
JJ Kasper 已提交
213 214 215 216 217 218 219 220 221 222 223 224
    initializeSprCache({
      dev,
      distDir: this.distDir,
      pagesDir: join(
        this.distDir,
        this._isLikeServerless
          ? SERVERLESS_DIRECTORY
          : `${SERVER_DIRECTORY}/static/${this.buildId}`,
        'pages'
      ),
      flushToDisk: this.nextConfig.experimental.sprFlushToDisk,
    })
N
Naoyuki Kanezawa 已提交
225
  }
N
nkzawa 已提交
226

227
  protected currentPhase(): string {
228
    return PHASE_PRODUCTION_SERVER
229 230
  }

231 232 233 234
  private logError(err: Error): void {
    if (this.onErrorMiddleware) {
      this.onErrorMiddleware({ err })
    }
235 236
    if (this.quiet) return
    // tslint:disable-next-line
237
    console.error(err)
238 239
  }

240
  private async handleRequest(
J
Joe Haddad 已提交
241 242
    req: IncomingMessage,
    res: ServerResponse,
243
    parsedUrl?: UrlWithParsedQuery
J
Joe Haddad 已提交
244
  ): Promise<void> {
245
    // Parse url if parsedUrl not provided
246
    if (!parsedUrl || typeof parsedUrl !== 'object') {
247 248
      const url: any = req.url
      parsedUrl = parseUrl(url, true)
249
    }
250

251 252 253
    // Parse the querystring ourselves if the user doesn't handle querystring parsing
    if (typeof parsedUrl.query === 'string') {
      parsedUrl.query = parseQs(parsedUrl.query)
N
Naoyuki Kanezawa 已提交
254
    }
255

T
Tim Neutkens 已提交
256 257 258 259 260 261 262 263 264 265
    if (parsedUrl.pathname!.startsWith(this.nextConfig.experimental.basePath)) {
      // If replace ends up replacing the full url it'll be `undefined`, meaning we have to default it to `/`
      parsedUrl.pathname =
        parsedUrl.pathname!.replace(
          this.nextConfig.experimental.basePath,
          ''
        ) || '/'
      req.url = req.url!.replace(this.nextConfig.experimental.basePath, '')
    }

266
    res.statusCode = 200
267 268 269
    try {
      return await this.run(req, res, parsedUrl)
    } catch (err) {
J
Joe Haddad 已提交
270 271 272
      this.logError(err)
      res.statusCode = 500
      res.end('Internal Server Error')
273
    }
274 275
  }

276
  public getRequestHandler() {
277
    return this.handleRequest.bind(this)
N
nkzawa 已提交
278 279
  }

280
  public setAssetPrefix(prefix?: string) {
281
    this.renderOpts.assetPrefix = prefix ? prefix.replace(/\/$/, '') : ''
282 283
  }

284
  // Backwards compatibility
285
  public async prepare(): Promise<void> {}
N
nkzawa 已提交
286

T
Tim Neutkens 已提交
287
  // Backwards compatibility
288
  protected async close(): Promise<void> {}
T
Tim Neutkens 已提交
289

290
  protected setImmutableAssetCacheControl(res: ServerResponse) {
T
Tim Neutkens 已提交
291
    res.setHeader('Cache-Control', 'public, max-age=31536000, immutable')
N
nkzawa 已提交
292 293
  }

J
JJ Kasper 已提交
294 295 296 297
  protected getCustomRoutes() {
    return require(join(this.distDir, ROUTES_MANIFEST))
  }

298 299 300 301
  private _cachedPreviewManifest: PrerenderManifest | undefined
  protected getPrerenderManifest(): PrerenderManifest {
    if (this._cachedPreviewManifest) {
      return this._cachedPreviewManifest
J
Joe Haddad 已提交
302
    }
303 304 305 306 307 308
    const manifest = require(join(this.distDir, PRERENDER_MANIFEST))
    return (this._cachedPreviewManifest = manifest)
  }

  protected getPreviewProps(): __ApiPreviewProps {
    return this.getPrerenderManifest().preview
J
Joe Haddad 已提交
309 310
  }

311
  protected generateRoutes(): {
312 313
    headers: Route[]
    rewrites: Route[]
314
    fsRoutes: Route[]
315
    redirects: Route[]
316 317
    catchAllRoute: Route
    pageChecker: PageChecker
318
    useFileSystemPublicRoutes: boolean
319 320
    dynamicRoutes: DynamicRoutes | undefined
  } {
J
JJ Kasper 已提交
321 322
    this.customRoutes = this.getCustomRoutes()

323 324 325
    const publicRoutes = fs.existsSync(this.publicDir)
      ? this.generatePublicRoutes()
      : []
J
JJ Kasper 已提交
326

327
    const staticFilesRoute = this.hasStaticDir
328 329 330 331 332 333 334
      ? [
          {
            // It's very important to keep this route's param optional.
            // (but it should support as many params as needed, separated by '/')
            // Otherwise this will lead to a pretty simple DOS attack.
            // See more: https://github.com/zeit/next.js/issues/2617
            match: route('/static/:path*'),
335
            name: 'static catchall',
336 337 338
            fn: async (req, res, params, parsedUrl) => {
              const p = join(this.dir, 'static', ...(params.path || []))
              await this.serveStatic(req, res, p, parsedUrl)
339 340 341
              return {
                finished: true,
              }
342 343 344 345
            },
          } as Route,
        ]
      : []
346

347 348 349 350
    let headers: Route[] = []
    let rewrites: Route[] = []
    let redirects: Route[] = []

351
    const fsRoutes: Route[] = [
T
Tim Neutkens 已提交
352
      {
353
        match: route('/_next/static/:path*'),
354 355
        type: 'route',
        name: '_next/static catchall',
356
        fn: async (req, res, params, parsedUrl) => {
T
Tim Neutkens 已提交
357 358 359
          // The commons folder holds commonschunk files
          // The chunks folder holds dynamic entries
          // The buildId folder holds pages and potentially other assets. As buildId changes per build it can be long-term cached.
360 361

          // make sure to 404 for /_next/static itself
362 363 364 365 366 367
          if (!params.path) {
            await this.render404(req, res, parsedUrl)
            return {
              finished: true,
            }
          }
368

J
Joe Haddad 已提交
369 370 371
          if (
            params.path[0] === CLIENT_STATIC_FILES_RUNTIME ||
            params.path[0] === 'chunks' ||
372 373
            params.path[0] === 'css' ||
            params.path[0] === 'media' ||
J
Joe Haddad 已提交
374 375
            params.path[0] === this.buildId
          ) {
T
Tim Neutkens 已提交
376
            this.setImmutableAssetCacheControl(res)
377
          }
J
Joe Haddad 已提交
378 379 380
          const p = join(
            this.distDir,
            CLIENT_STATIC_FILES_PATH,
381
            ...(params.path || [])
J
Joe Haddad 已提交
382
          )
383
          await this.serveStatic(req, res, p, parsedUrl)
384 385 386
          return {
            finished: true,
          }
387
        },
388
      },
J
JJ Kasper 已提交
389 390
      {
        match: route('/_next/data/:path*'),
391 392
        type: 'route',
        name: '_next/data catchall',
J
JJ Kasper 已提交
393
        fn: async (req, res, params, _parsedUrl) => {
J
JJ Kasper 已提交
394 395 396
          // Make sure to 404 for /_next/data/ itself and
          // we also want to 404 if the buildId isn't correct
          if (!params.path || params.path[0] !== this.buildId) {
397 398 399 400
            await this.render404(req, res, _parsedUrl)
            return {
              finished: true,
            }
J
JJ Kasper 已提交
401 402 403 404 405 406
          }
          // remove buildId from URL
          params.path.shift()

          // show 404 if it doesn't end with .json
          if (!params.path[params.path.length - 1].endsWith('.json')) {
407 408 409 410
            await this.render404(req, res, _parsedUrl)
            return {
              finished: true,
            }
J
JJ Kasper 已提交
411 412 413 414 415 416 417
          }

          // re-create page's pathname
          const pathname = `/${params.path.join('/')}`
            .replace(/\.json$/, '')
            .replace(/\/index$/, '/')

J
JJ Kasper 已提交
418 419 420 421 422 423
          req.url = pathname
          const parsedUrl = parseUrl(pathname, true)
          await this.render(
            req,
            res,
            pathname,
424
            { ..._parsedUrl.query, _nextDataReq: '1' },
J
JJ Kasper 已提交
425 426
            parsedUrl
          )
427 428 429
          return {
            finished: true,
          }
J
JJ Kasper 已提交
430 431
        },
      },
T
Tim Neutkens 已提交
432
      {
433
        match: route('/_next/:path*'),
434 435
        type: 'route',
        name: '_next catchall',
T
Tim Neutkens 已提交
436
        // This path is needed because `render()` does a check for `/_next` and the calls the routing again
437
        fn: async (req, res, _params, parsedUrl) => {
T
Tim Neutkens 已提交
438
          await this.render404(req, res, parsedUrl)
439 440 441
          return {
            finished: true,
          }
L
Lukáš Huvar 已提交
442 443
        },
      },
444 445
      ...publicRoutes,
      ...staticFilesRoute,
T
Tim Neutkens 已提交
446
    ]
447

J
JJ Kasper 已提交
448 449
    if (this.customRoutes) {
      const getCustomRoute = (
450 451
        r: Rewrite | Redirect | Header,
        type: RouteType
452 453 454 455 456 457 458 459
      ) =>
        ({
          ...r,
          type,
          match: getCustomRouteMatcher(r.source),
          name: type,
          fn: async (req, res, params, parsedUrl) => ({ finished: false }),
        } as Route & Rewrite & Header)
J
JJ Kasper 已提交
460

461
      // Headers come very first
462 463 464 465 466 467 468 469 470 471 472 473 474 475
      headers = this.customRoutes.headers.map(r => {
        const route = getCustomRoute(r, 'header')
        return {
          match: route.match,
          type: route.type,
          name: `${route.type} ${route.source} header route`,
          fn: async (_req, res, _params, _parsedUrl) => {
            for (const header of (route as Header).headers) {
              res.setHeader(header.key, header.value)
            }
            return { finished: false }
          },
        } as Route
      })
J
JJ Kasper 已提交
476

477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
      redirects = this.customRoutes.redirects.map(redirect => {
        const route = getCustomRoute(redirect, 'redirect')
        return {
          type: route.type,
          match: route.match,
          statusCode: route.statusCode,
          name: `Redirect route`,
          fn: async (_req, res, params, _parsedUrl) => {
            const { parsedDestination } = prepareDestination(
              route.destination,
              params
            )
            const updatedDestination = formatUrl(parsedDestination)

            res.setHeader('Location', updatedDestination)
            res.statusCode = getRedirectStatus(route as Redirect)

            // Since IE11 doesn't support the 308 header add backwards
            // compatibility using refresh header
            if (res.statusCode === 308) {
              res.setHeader('Refresh', `0;url=${updatedDestination}`)
            }
499

500 501 502 503 504 505 506
            res.end()
            return {
              finished: true,
            }
          },
        } as Route
      })
507

508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
      rewrites = this.customRoutes.rewrites.map(rewrite => {
        const route = getCustomRoute(rewrite, 'rewrite')
        return {
          check: true,
          type: route.type,
          name: `Rewrite route`,
          match: route.match,
          fn: async (req, res, params, _parsedUrl) => {
            const { newUrl, parsedDestination } = prepareDestination(
              route.destination,
              params
            )

            // external rewrite, proxy it
            if (parsedDestination.protocol) {
              const target = formatUrl(parsedDestination)
              const proxy = new Proxy({
                target,
                changeOrigin: true,
                ignorePath: true,
528
              })
529
              proxy.web(req, res)
530

531 532 533
              proxy.on('error', (err: Error) => {
                console.error(`Error occurred proxying ${target}`, err)
              })
534
              return {
535
                finished: true,
J
JJ Kasper 已提交
536
              }
537 538
            }
            ;(req as any)._nextDidRewrite = true
539

540 541 542 543 544 545 546 547
            return {
              finished: false,
              pathname: newUrl,
              query: parsedDestination.query,
            }
          },
        } as Route
      })
548 549 550 551 552 553 554 555 556 557 558 559
    }

    const catchAllRoute: Route = {
      match: route('/:path*'),
      type: 'route',
      name: 'Catchall render',
      fn: async (req, res, params, parsedUrl) => {
        const { pathname, query } = parsedUrl
        if (!pathname) {
          throw new Error('pathname is undefined')
        }

560
        if (params?.path?.[0] === 'api') {
561 562 563
          const handled = await this.handleApiRequest(
            req as NextApiRequest,
            res as NextApiResponse,
564 565
            pathname!,
            query
566 567 568 569 570 571 572
          )
          if (handled) {
            return { finished: true }
          }
        }

        await this.render(req, res, pathname, query, parsedUrl)
573 574 575 576
        return {
          finished: true,
        }
      },
577
    }
578

579
    const { useFileSystemPublicRoutes } = this.nextConfig
J
Joe Haddad 已提交
580

581 582
    if (useFileSystemPublicRoutes) {
      this.dynamicRoutes = this.getDynamicRoutes()
583
    }
N
nkzawa 已提交
584

585
    return {
586
      headers,
587
      fsRoutes,
588 589
      rewrites,
      redirects,
590
      catchAllRoute,
591
      useFileSystemPublicRoutes,
592 593 594
      dynamicRoutes: this.dynamicRoutes,
      pageChecker: this.hasPage.bind(this),
    }
T
Tim Neutkens 已提交
595 596
  }

597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
  private async getPagePath(pathname: string) {
    return getPagePath(
      pathname,
      this.distDir,
      this._isLikeServerless,
      this.renderOpts.dev
    )
  }

  protected async hasPage(pathname: string): Promise<boolean> {
    let found = false
    try {
      found = !!(await this.getPagePath(pathname))
    } catch (_) {}

    return found
  }

615 616 617 618 619 620 621 622 623
  protected async _beforeCatchAllRender(
    _req: IncomingMessage,
    _res: ServerResponse,
    _params: Params,
    _parsedUrl: UrlWithParsedQuery
  ) {
    return false
  }

624 625 626
  // Used to build API page in development
  protected async ensureApiPage(pathname: string) {}

L
Lukáš Huvar 已提交
627 628 629 630 631 632
  /**
   * Resolves `API` request, in development builds on demand
   * @param req http request
   * @param res http response
   * @param pathname path of request
   */
J
Joe Haddad 已提交
633
  private async handleApiRequest(
634 635
    req: IncomingMessage,
    res: ServerResponse,
636 637
    pathname: string,
    query: ParsedUrlQuery
J
Joe Haddad 已提交
638
  ) {
639
    let page = pathname
L
Lukáš Huvar 已提交
640
    let params: Params | boolean = false
641
    let pageFound = await this.hasPage(page)
J
JJ Kasper 已提交
642

643
    if (!pageFound && this.dynamicRoutes) {
L
Lukáš Huvar 已提交
644 645
      for (const dynamicRoute of this.dynamicRoutes) {
        params = dynamicRoute.match(pathname)
646
        if (dynamicRoute.page.startsWith('/api') && params) {
647 648
          page = dynamicRoute.page
          pageFound = true
L
Lukáš Huvar 已提交
649 650 651 652 653
          break
        }
      }
    }

654
    if (!pageFound) {
655
      return false
J
JJ Kasper 已提交
656
    }
657 658 659 660 661 662
    // Make sure the page is built before getting the path
    // or else it won't be in the manifest yet
    await this.ensureApiPage(page)

    const builtPagePath = await this.getPagePath(page)
    const pageModule = require(builtPagePath)
663
    query = { ...query, ...params }
J
JJ Kasper 已提交
664

665
    if (!this.renderOpts.dev && this._isLikeServerless) {
666
      if (typeof pageModule.default === 'function') {
667
        prepareServerlessUrl(req, query)
668 669
        await pageModule.default(req, res)
        return true
J
JJ Kasper 已提交
670 671 672
      }
    }

J
Joe Haddad 已提交
673 674 675 676 677
    await apiResolver(
      req,
      res,
      query,
      pageModule,
678
      this.renderOpts.previewProps,
J
Joe Haddad 已提交
679 680
      this.onErrorMiddleware
    )
681
    return true
L
Lukáš Huvar 已提交
682 683
  }

684
  protected generatePublicRoutes(): Route[] {
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
    const publicFiles = new Set(
      recursiveReadDirSync(this.publicDir).map(p => p.replace(/\\/g, '/'))
    )

    return [
      {
        match: route('/:path*'),
        name: 'public folder catchall',
        fn: async (req, res, params, parsedUrl) => {
          const path = `/${(params.path || []).join('/')}`

          if (publicFiles.has(path)) {
            await this.serveStatic(
              req,
              res,
              // we need to re-encode it since send decodes it
              join(this.dir, 'public', encodeURIComponent(path)),
              parsedUrl
            )
704 705 706
            return {
              finished: true,
            }
707 708 709 710 711 712 713
          }
          return {
            finished: false,
          }
        },
      } as Route,
    ]
714 715
  }

716
  protected getDynamicRoutes() {
717 718 719
    const dynamicRoutedPages = Object.keys(this.pagesManifest!).filter(
      isDynamicRoute
    )
720 721 722 723
    return getSortedRoutes(dynamicRoutedPages).map(page => ({
      page,
      match: getRouteMatcher(getRouteRegex(page)),
    }))
J
Joe Haddad 已提交
724 725
  }

726 727 728 729 730 731
  private handleCompression(req: IncomingMessage, res: ServerResponse) {
    if (this.compression) {
      this.compression(req, res, () => {})
    }
  }

732
  protected async run(
J
Joe Haddad 已提交
733 734
    req: IncomingMessage,
    res: ServerResponse,
735
    parsedUrl: UrlWithParsedQuery
J
Joe Haddad 已提交
736
  ) {
737 738
    this.handleCompression(req, res)

739
    try {
740 741
      const matched = await this.router.execute(req, res, parsedUrl)
      if (matched) {
742 743 744 745 746 747 748 749
        return
      }
    } catch (err) {
      if (err.code === 'DECODE_FAILED') {
        res.statusCode = 400
        return this.renderError(null, req, res, '/_error', {})
      }
      throw err
750 751
    }

752
    await this.render404(req, res, parsedUrl)
N
nkzawa 已提交
753 754
  }

755
  protected async sendHTML(
J
Joe Haddad 已提交
756 757
    req: IncomingMessage,
    res: ServerResponse,
758
    html: string
J
Joe Haddad 已提交
759
  ) {
T
Tim Neutkens 已提交
760 761
    const { generateEtags, poweredByHeader } = this.renderOpts
    return sendHTML(req, res, html, { generateEtags, poweredByHeader })
762 763
  }

J
Joe Haddad 已提交
764 765 766 767 768
  public async render(
    req: IncomingMessage,
    res: ServerResponse,
    pathname: string,
    query: ParsedUrlQuery = {},
769
    parsedUrl?: UrlWithParsedQuery
J
Joe Haddad 已提交
770
  ): Promise<void> {
771
    const url: any = req.url
772 773 774 775 776

    if (
      url.match(/^\/_next\//) ||
      (this.hasStaticDir && url.match(/^\/static\//))
    ) {
777 778 779
      return this.handleRequest(req, res, parsedUrl)
    }

780
    if (isBlockedPage(pathname)) {
781
      return this.render404(req, res, parsedUrl)
782 783
    }

784
    const html = await this.renderToHTML(req, res, pathname, query)
785 786
    // Request was ended by the user
    if (html === null) {
787 788 789
      return
    }

790
    return this.sendHTML(req, res, html)
N
Naoyuki Kanezawa 已提交
791
  }
N
nkzawa 已提交
792

J
Joe Haddad 已提交
793
  private async findPageComponents(
J
Joe Haddad 已提交
794
    pathname: string,
795 796 797 798 799 800 801 802 803
    query: ParsedUrlQuery = {},
    params: Params | null = null
  ): Promise<FindComponentsResult | null> {
    const paths = [
      // try serving a static AMP version first
      query.amp ? normalizePagePath(pathname) + '.amp' : null,
      pathname,
    ].filter(Boolean)
    for (const pagePath of paths) {
J
JJ Kasper 已提交
804
      try {
805
        const components = await loadComponents(
J
Joe Haddad 已提交
806 807
          this.distDir,
          this.buildId,
808 809
          pagePath!,
          !this.renderOpts.dev && this._isLikeServerless
J
Joe Haddad 已提交
810
        )
811 812 813
        return {
          components,
          query: {
814
            ...(components.getStaticProps
815 816 817 818 819
              ? { _nextDataReq: query._nextDataReq }
              : query),
            ...(params || {}),
          },
        }
J
JJ Kasper 已提交
820 821 822 823
      } catch (err) {
        if (err.code !== 'ENOENT') throw err
      }
    }
824
    return null
J
Joe Haddad 已提交
825 826
  }

827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
  private async getStaticPaths(
    pathname: string
  ): Promise<{
    staticPaths: string[] | undefined
    hasStaticFallback: boolean
  }> {
    // we lazy load the staticPaths to prevent the user
    // from waiting on them for the page to load in dev mode
    let staticPaths: string[] | undefined
    let hasStaticFallback = false

    if (!this.renderOpts.dev) {
      // `staticPaths` is intentionally set to `undefined` as it should've
      // been caught when checking disk data.
      staticPaths = undefined

      // Read whether or not fallback should exist from the manifest.
      hasStaticFallback =
        typeof this.getPrerenderManifest().dynamicRoutes[pathname].fallback ===
        'string'
    } else {
      const __getStaticPaths = async () => {
        const paths = await this.staticPathsWorker!.loadStaticPaths(
          this.distDir,
          this.buildId,
          pathname,
          !this.renderOpts.dev && this._isLikeServerless
        )
        return paths
      }
      ;({ paths: staticPaths, fallback: hasStaticFallback } = (
        await withCoalescedInvoke(__getStaticPaths)(
          `staticPaths-${pathname}`,
          []
        )
      ).value)
    }

    return { staticPaths, hasStaticFallback }
  }

J
Joe Haddad 已提交
868 869 870 871
  private async renderToHTMLWithComponents(
    req: IncomingMessage,
    res: ServerResponse,
    pathname: string,
872
    { components, query }: FindComponentsResult,
873
    opts: RenderOptsPartial
874
  ): Promise<string | false | null> {
875
    // we need to ensure the status code if /404 is visited directly
876
    if (pathname === '/404') {
877 878 879
      res.statusCode = 404
    }

J
JJ Kasper 已提交
880
    // handle static page
881 882
    if (typeof components.Component === 'string') {
      return components.Component
J
Joe Haddad 已提交
883 884
    }

J
JJ Kasper 已提交
885 886
    // check request state
    const isLikeServerless =
887 888
      typeof components.Component === 'object' &&
      typeof (components.Component as any).renderReqToHTML === 'function'
889 890 891
    const isSSG = !!components.getStaticProps
    const isServerProps = !!components.getServerSideProps
    const hasStaticPaths = !!components.getStaticPaths
892 893

    // Toggle whether or not this is a Data request
894
    const isDataReq = !!query._nextDataReq
895 896 897 898 899 900 901 902 903 904 905 906
    delete query._nextDataReq

    // Serverless requests need its URL transformed back into the original
    // request path (to emulate lambda behavior in production)
    if (isLikeServerless && isDataReq) {
      let { pathname } = parseUrl(req.url || '', true)
      pathname = !pathname || pathname === '/' ? '/index' : pathname
      req.url = formatUrl({
        pathname: `/_next/data/${this.buildId}${pathname}.json`,
        query,
      })
    }
J
JJ Kasper 已提交
907 908

    // non-spr requests should render like normal
909
    if (!isSSG) {
J
JJ Kasper 已提交
910 911
      // handle serverless
      if (isLikeServerless) {
912
        if (isDataReq) {
913
          const renderResult = await (components.Component as any).renderReqToHTML(
914 915 916 917 918
            req,
            res,
            true
          )

919
          sendPayload(
920 921 922
            res,
            JSON.stringify(renderResult?.renderOpts?.pageData),
            'application/json',
923 924 925 926 927 928
            !this.renderOpts.dev
              ? {
                  revalidate: -1,
                  private: false, // Leave to user-land caching
                }
              : undefined
929 930 931
          )
          return null
        }
932
        prepareServerlessUrl(req, query)
933
        return (components.Component as any).renderReqToHTML(req, res)
J
JJ Kasper 已提交
934 935
      }

936 937
      if (isDataReq && isServerProps) {
        const props = await renderToHTML(req, res, pathname, query, {
938
          ...components,
939 940 941
          ...opts,
          isDataReq,
        })
942 943 944 945 946 947 948 949 950 951 952
        sendPayload(
          res,
          JSON.stringify(props),
          'application/json',
          !this.renderOpts.dev
            ? {
                revalidate: -1,
                private: false, // Leave to user-land caching
              }
            : undefined
        )
953 954 955
        return null
      }

J
JJ Kasper 已提交
956
      return renderToHTML(req, res, pathname, query, {
957
        ...components,
J
JJ Kasper 已提交
958 959 960 961
        ...opts,
      })
    }

962 963 964 965 966
    const previewData = tryGetPreviewData(
      req,
      res,
      this.renderOpts.previewProps
    )
J
Joe Haddad 已提交
967 968
    const isPreviewMode = previewData !== false

J
JJ Kasper 已提交
969
    // Compute the SPR cache key
970
    const urlPathname = parseUrl(req.url || '').pathname!
J
Joe Haddad 已提交
971 972
    const ssgCacheKey = isPreviewMode
      ? `__` + nanoid() // Preview mode uses a throw away key to not coalesce preview invokes
973
      : urlPathname
J
JJ Kasper 已提交
974 975

    // Complete the response with cached data if its present
J
Joe Haddad 已提交
976 977 978 979
    const cachedData = isPreviewMode
      ? // Preview data bypasses the cache
        undefined
      : await getSprCache(ssgCacheKey)
J
JJ Kasper 已提交
980
    if (cachedData) {
981
      const data = isDataReq
J
JJ Kasper 已提交
982 983 984
        ? JSON.stringify(cachedData.pageData)
        : cachedData.html

985
      sendPayload(
J
JJ Kasper 已提交
986 987
        res,
        data,
988
        isDataReq ? 'application/json' : 'text/html; charset=utf-8',
989
        cachedData.curRevalidate !== undefined && !this.renderOpts.dev
990 991
          ? { revalidate: cachedData.curRevalidate, private: isPreviewMode }
          : undefined
J
JJ Kasper 已提交
992 993 994 995 996 997
      )

      // Stop the request chain here if the data we sent was up-to-date
      if (!cachedData.isStale) {
        return null
      }
J
JJ Kasper 已提交
998
    }
J
Joe Haddad 已提交
999

J
JJ Kasper 已提交
1000 1001 1002 1003
    // If we're here, that means data is missing or it's stale.

    const doRender = withCoalescedInvoke(async function(): Promise<{
      html: string | null
1004
      pageData: any
J
JJ Kasper 已提交
1005 1006
      sprRevalidate: number | false
    }> {
1007
      let pageData: any
J
JJ Kasper 已提交
1008 1009 1010 1011 1012 1013
      let html: string | null
      let sprRevalidate: number | false

      let renderResult
      // handle serverless
      if (isLikeServerless) {
1014
        renderResult = await (components.Component as any).renderReqToHTML(
1015 1016 1017 1018
          req,
          res,
          true
        )
J
JJ Kasper 已提交
1019 1020

        html = renderResult.html
1021
        pageData = renderResult.renderOpts.pageData
J
JJ Kasper 已提交
1022 1023
        sprRevalidate = renderResult.renderOpts.revalidate
      } else {
1024
        const renderOpts: RenderOpts = {
1025
          ...components,
J
JJ Kasper 已提交
1026 1027 1028 1029 1030
          ...opts,
        }
        renderResult = await renderToHTML(req, res, pathname, query, renderOpts)

        html = renderResult
1031 1032 1033
        // TODO: change this to a different passing mechanism
        pageData = (renderOpts as any).pageData
        sprRevalidate = (renderOpts as any).revalidate
J
JJ Kasper 已提交
1034 1035
      }

1036
      return { html, pageData, sprRevalidate }
1037
    })
J
JJ Kasper 已提交
1038

1039
    const isProduction = !this.renderOpts.dev
J
Joe Haddad 已提交
1040
    const isDynamicPathname = isDynamicRoute(pathname)
1041
    const didRespond = isResSent(res)
1042

1043 1044 1045
    const { staticPaths, hasStaticFallback } = hasStaticPaths
      ? await this.getStaticPaths(pathname)
      : { staticPaths: undefined, hasStaticFallback: false }
1046

1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
    // const isForcedBlocking =
    //   req.headers['X-Prerender-Bypass-Mode'] !== 'Blocking'

    // When we did not respond from cache, we need to choose to block on
    // rendering or return a skeleton.
    //
    // * Data requests always block.
    //
    // * Preview mode toggles all pages to be resolved in a blocking manner.
    //
1057
    // * Non-dynamic pages should block (though this is an impossible
1058 1059
    //   case in production).
    //
1060 1061
    // * Dynamic pages should return their skeleton if not defined in
    //   getStaticPaths, then finish the data request on the client-side.
1062
    //
J
Joe Haddad 已提交
1063
    if (
1064
      !didRespond &&
J
Joe Haddad 已提交
1065
      !isDataReq &&
1066 1067
      !isPreviewMode &&
      isDynamicPathname &&
1068 1069 1070
      // Development should trigger fallback when the path is not in
      // `getStaticPaths`
      (isProduction || !staticPaths || !staticPaths.includes(urlPathname))
J
Joe Haddad 已提交
1071
    ) {
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
      if (
        // In development, fall through to render to handle missing
        // getStaticPaths.
        (isProduction || staticPaths) &&
        // When fallback isn't present, abort this render so we 404
        !hasStaticFallback
      ) {
        return false
      }

1082
      let html: string
1083

1084 1085
      // Production already emitted the fallback as static HTML.
      if (isProduction) {
1086
        html = await getFallback(pathname)
1087 1088 1089
      }
      // We need to generate the fallback on-demand for development.
      else {
1090 1091
        query.__nextFallback = 'true'
        if (isLikeServerless) {
1092
          prepareServerlessUrl(req, query)
1093
          html = await (components.Component as any).renderReqToHTML(req, res)
1094 1095
        } else {
          html = (await renderToHTML(req, res, pathname, query, {
1096
            ...components,
1097 1098 1099 1100 1101
            ...opts,
          })) as string
        }
      }

1102
      sendPayload(res, html, 'text/html; charset=utf-8')
1103 1104
    }

1105 1106 1107 1108 1109
    const {
      isOrigin,
      value: { html, pageData, sprRevalidate },
    } = await doRender(ssgCacheKey, [])
    if (!isResSent(res)) {
1110
      sendPayload(
1111 1112 1113
        res,
        isDataReq ? JSON.stringify(pageData) : html,
        isDataReq ? 'application/json' : 'text/html; charset=utf-8',
1114 1115 1116
        !this.renderOpts.dev
          ? { revalidate: sprRevalidate, private: isPreviewMode }
          : undefined
1117 1118
      )
    }
J
JJ Kasper 已提交
1119

1120 1121 1122 1123 1124
    // Update the SPR cache if the head request
    if (isOrigin) {
      // Preview mode should not be stored in cache
      if (!isPreviewMode) {
        await setSprCache(ssgCacheKey, { html: html!, pageData }, sprRevalidate)
J
JJ Kasper 已提交
1125
      }
1126 1127 1128
    }

    return null
1129 1130
  }

1131
  public async renderToHTML(
J
Joe Haddad 已提交
1132 1133 1134
    req: IncomingMessage,
    res: ServerResponse,
    pathname: string,
1135
    query: ParsedUrlQuery = {}
J
Joe Haddad 已提交
1136
  ): Promise<string | null> {
1137 1138 1139
    try {
      const result = await this.findPageComponents(pathname, query)
      if (result) {
1140
        const result2 = await this.renderToHTMLWithComponents(
1141 1142 1143 1144
          req,
          res,
          pathname,
          result,
1145
          { ...this.renderOpts }
1146
        )
1147 1148 1149
        if (result2 !== false) {
          return result2
        }
1150
      }
J
Joe Haddad 已提交
1151

1152 1153 1154 1155 1156 1157
      if (this.dynamicRoutes) {
        for (const dynamicRoute of this.dynamicRoutes) {
          const params = dynamicRoute.match(pathname)
          if (!params) {
            continue
          }
J
Joe Haddad 已提交
1158

1159 1160 1161 1162 1163 1164
          const result = await this.findPageComponents(
            dynamicRoute.page,
            query,
            params
          )
          if (result) {
1165
            const result2 = await this.renderToHTMLWithComponents(
1166 1167 1168 1169
              req,
              res,
              dynamicRoute.page,
              result,
1170
              { ...this.renderOpts, params }
J
Joe Haddad 已提交
1171
            )
1172 1173 1174
            if (result2 !== false) {
              return result2
            }
J
Joe Haddad 已提交
1175 1176
          }
        }
1177 1178 1179 1180 1181 1182 1183 1184 1185
      }
    } catch (err) {
      this.logError(err)
      res.statusCode = 500
      return await this.renderErrorToHTML(err, req, res, pathname, query)
    }

    res.statusCode = 404
    return await this.renderErrorToHTML(null, req, res, pathname, query)
N
Naoyuki Kanezawa 已提交
1186 1187
  }

J
Joe Haddad 已提交
1188 1189 1190 1191 1192
  public async renderError(
    err: Error | null,
    req: IncomingMessage,
    res: ServerResponse,
    pathname: string,
1193
    query: ParsedUrlQuery = {}
J
Joe Haddad 已提交
1194 1195 1196
  ): Promise<void> {
    res.setHeader(
      'Cache-Control',
1197
      'no-cache, no-store, max-age=0, must-revalidate'
J
Joe Haddad 已提交
1198
    )
N
Naoyuki Kanezawa 已提交
1199
    const html = await this.renderErrorToHTML(err, req, res, pathname, query)
1200
    if (html === null) {
1201 1202
      return
    }
1203
    return this.sendHTML(req, res, html)
N
nkzawa 已提交
1204 1205
  }

J
Joe Haddad 已提交
1206 1207 1208 1209 1210
  public async renderErrorToHTML(
    err: Error | null,
    req: IncomingMessage,
    res: ServerResponse,
    _pathname: string,
1211
    query: ParsedUrlQuery = {}
J
Joe Haddad 已提交
1212
  ) {
1213
    let result: null | FindComponentsResult = null
1214

1215 1216 1217
    const is404 = res.statusCode === 404
    let using404Page = false

1218
    // use static 404 page if available and is 404 response
1219
    if (is404) {
1220 1221
      result = await this.findPageComponents('/404')
      using404Page = result !== null
1222 1223 1224 1225 1226 1227
    }

    if (!result) {
      result = await this.findPageComponents('/_error', query)
    }

1228
    let html: string | null
1229
    try {
1230
      const result2 = await this.renderToHTMLWithComponents(
1231 1232
        req,
        res,
1233
        using404Page ? '/404' : '/_error',
1234
        result!,
1235 1236 1237 1238 1239
        {
          ...this.renderOpts,
          err,
        }
      )
1240 1241 1242 1243
      if (result2 === false) {
        throw new Error('invariant: failed to render error page')
      }
      html = result2
1244 1245 1246 1247 1248 1249
    } catch (err) {
      console.error(err)
      res.statusCode = 500
      html = 'Internal Server Error'
    }
    return html
N
Naoyuki Kanezawa 已提交
1250 1251
  }

J
Joe Haddad 已提交
1252 1253 1254
  public async render404(
    req: IncomingMessage,
    res: ServerResponse,
1255
    parsedUrl?: UrlWithParsedQuery
J
Joe Haddad 已提交
1256
  ): Promise<void> {
1257 1258
    const url: any = req.url
    const { pathname, query } = parsedUrl ? parsedUrl : parseUrl(url, true)
N
Naoyuki Kanezawa 已提交
1259
    res.statusCode = 404
1260
    return this.renderError(null, req, res, pathname!, query)
N
Naoyuki Kanezawa 已提交
1261
  }
N
Naoyuki Kanezawa 已提交
1262

J
Joe Haddad 已提交
1263 1264 1265 1266
  public async serveStatic(
    req: IncomingMessage,
    res: ServerResponse,
    path: string,
1267
    parsedUrl?: UrlWithParsedQuery
J
Joe Haddad 已提交
1268
  ): Promise<void> {
A
Arunoda Susiripala 已提交
1269
    if (!this.isServeableUrl(path)) {
1270
      return this.render404(req, res, parsedUrl)
A
Arunoda Susiripala 已提交
1271 1272
    }

1273 1274 1275 1276 1277 1278
    if (!(req.method === 'GET' || req.method === 'HEAD')) {
      res.statusCode = 405
      res.setHeader('Allow', ['GET', 'HEAD'])
      return this.renderError(null, req, res, path)
    }

N
Naoyuki Kanezawa 已提交
1279
    try {
1280
      await serveStatic(req, res, path)
N
Naoyuki Kanezawa 已提交
1281
    } catch (err) {
T
Tim Neutkens 已提交
1282
      if (err.code === 'ENOENT' || err.statusCode === 404) {
1283
        this.render404(req, res, parsedUrl)
1284 1285 1286
      } else if (err.statusCode === 412) {
        res.statusCode = 412
        return this.renderError(err, req, res, path)
N
Naoyuki Kanezawa 已提交
1287 1288 1289 1290 1291 1292
      } else {
        throw err
      }
    }
  }

1293
  private isServeableUrl(path: string): boolean {
A
Arunoda Susiripala 已提交
1294 1295
    const resolved = resolve(path)
    if (
1296
      resolved.indexOf(join(this.distDir) + sep) !== 0 &&
1297 1298
      resolved.indexOf(join(this.dir, 'static') + sep) !== 0 &&
      resolved.indexOf(join(this.dir, 'public') + sep) !== 0
A
Arunoda Susiripala 已提交
1299 1300 1301 1302 1303 1304 1305 1306
    ) {
      // Seems like the user is trying to traverse the filesystem.
      return false
    }

    return true
  }

1307
  protected readBuildId(): string {
1308 1309 1310 1311 1312
    const buildIdFile = join(this.distDir, BUILD_ID_FILE)
    try {
      return fs.readFileSync(buildIdFile, 'utf8').trim()
    } catch (err) {
      if (!fs.existsSync(buildIdFile)) {
J
Joe Haddad 已提交
1313
        throw new Error(
1314
          `Could not find a valid build in the '${this.distDir}' directory! Try building your app with 'next build' before starting the server.`
J
Joe Haddad 已提交
1315
        )
1316 1317 1318
      }

      throw err
1319
    }
1320
  }
1321 1322 1323 1324

  private get _isLikeServerless(): boolean {
    return isTargetLikeServerless(this.nextConfig.target)
  }
1325
}
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369

function sendPayload(
  res: ServerResponse,
  payload: any,
  type: string,
  options?: { revalidate: number | false; private: boolean }
) {
  // TODO: ETag? Cache-Control headers? Next-specific headers?
  res.setHeader('Content-Type', type)
  res.setHeader('Content-Length', Buffer.byteLength(payload))
  if (options != null) {
    if (options?.private) {
      res.setHeader(
        'Cache-Control',
        `private, no-cache, no-store, max-age=0, must-revalidate`
      )
    } else if (options?.revalidate) {
      res.setHeader(
        'Cache-Control',
        options.revalidate < 0
          ? `no-cache, no-store, must-revalidate`
          : `s-maxage=${options.revalidate}, stale-while-revalidate`
      )
    } else if (options?.revalidate === false) {
      res.setHeader(
        'Cache-Control',
        `s-maxage=31536000, stale-while-revalidate`
      )
    }
  }
  res.end(payload)
}

function prepareServerlessUrl(req: IncomingMessage, query: ParsedUrlQuery) {
  const curUrl = parseUrl(req.url!, true)
  req.url = formatUrl({
    ...curUrl,
    search: undefined,
    query: {
      ...curUrl.query,
      ...query,
    },
  })
}