Skip to content

Commit

Permalink
[edge] serialize custom config to middleware-manifest
Browse files Browse the repository at this point in the history
Co-authored-by: Gal Schlezinger <gal@spitfire.co.il>
  • Loading branch information
ijjk and Schniz committed Oct 27, 2022
1 parent 980095d commit e7208a1
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 2 deletions.
11 changes: 10 additions & 1 deletion packages/next/build/analysis/get-page-static-info.ts
Expand Up @@ -18,6 +18,7 @@ import { RSC_MODULE_TYPES } from '../../shared/lib/constants'
export interface MiddlewareConfig {
matchers: MiddlewareMatcher[]
unstable_allowDynamicGlobs: string[]
regions: string[] | string
}

export interface MiddlewareMatcher {
Expand Down Expand Up @@ -184,6 +185,14 @@ function getMiddlewareConfig(
result.matchers = getMiddlewareMatchers(config.matcher, nextConfig)
}

if (typeof config.regions === 'string' || Array.isArray(config.regions)) {
result.regions = config.regions
} else if (typeof config.regions !== 'undefined') {
Log.warn(
`The \`regions\` config was ignored: config must be empty, a string or an array of strings. (${pageFilePath})`
)
}

if (config.unstable_allowDynamic) {
result.unstable_allowDynamicGlobs = Array.isArray(
config.unstable_allowDynamic
Expand Down Expand Up @@ -256,7 +265,7 @@ export async function getPageStaticInfo(params: {

const fileContent = (await tryToReadFile(pageFilePath, !isDev)) || ''
if (
/runtime|getStaticProps|getServerSideProps|matcher|unstable_allowDynamic/.test(
/runtime|getStaticProps|getServerSideProps|matcher|unstable_allowDynamic|export const config/.test(
fileContent
)
) {
Expand Down
7 changes: 7 additions & 0 deletions packages/next/build/webpack/plugins/middleware-plugin.ts
Expand Up @@ -35,6 +35,7 @@ export interface EdgeFunctionDefinition {
matchers: MiddlewareMatcher[]
wasm?: AssetBinding[]
assets?: AssetBinding[]
regions?: string[] | string
}

export interface MiddlewareManifest {
Expand All @@ -51,6 +52,7 @@ interface EntryMetadata {
env: Set<string>
wasmBindings: Map<string, string>
assetBindings: Map<string, string>
regions?: string[] | string
}

const NAME = 'MiddlewarePlugin'
Expand Down Expand Up @@ -173,6 +175,7 @@ function getCreateAssets(params: {
name,
filePath,
})),
...(metadata.regions && { regions: metadata.regions }),
}

if (metadata.edgeApiFunction || metadata.edgeSSR) {
Expand Down Expand Up @@ -732,6 +735,10 @@ function getExtractMetadata(params: {
}
}

if (edgeFunctionConfig?.config?.regions) {
entryMetadata.regions = edgeFunctionConfig.config.regions
}

/**
* The entry module has to be either a page or a middleware and hold
* the corresponding metadata.
Expand Down
2 changes: 2 additions & 0 deletions test/e2e/middleware-general/app/middleware.js
Expand Up @@ -2,6 +2,8 @@
import { NextRequest, NextResponse, URLPattern } from 'next/server'
import magicValue from 'shared-package'

export const config = { regions: 'auto' }

const PATTERNS = [
[
new URLPattern({ pathname: '/:locale/:id' }),
Expand Down
@@ -1,6 +1,6 @@
import { NextResponse } from 'next/server'

export const config = { runtime: 'experimental-edge' }
export const config = { runtime: 'experimental-edge', regions: 'default' }

/**
* @param {import('next/server').NextRequest}
Expand Down
12 changes: 12 additions & 0 deletions test/e2e/middleware-general/test/index.test.ts
Expand Up @@ -125,10 +125,22 @@ describe('Middleware Runtime', () => {
matchers: [{ regexp: '^/.*$' }],
wasm: [],
assets: [],
regions: 'auto',
},
})
})

it('should have the custom config in the manifest', async () => {
const manifest = await fs.readJSON(
join(next.testDir, '.next/server/middleware-manifest.json')
)

expect(manifest.functions['/api/edge-search-params']).toHaveProperty(
'regions',
'default'
)
})

it('should have correct files in manifest', async () => {
const manifest = await fs.readJSON(
join(next.testDir, '.next/server/middleware-manifest.json')
Expand Down

0 comments on commit e7208a1

Please sign in to comment.