1
- import { cp , mkdir , readFile , rm , writeFile } from 'node:fs/promises'
2
- import { dirname , join } from 'node:path'
1
+ import { cp , mkdir , readdir , readFile , rm , writeFile } from 'node:fs/promises'
2
+ import { dirname , join , parse as parsePath } from 'node:path'
3
3
4
4
import type { Manifest , ManifestFunction } from '@netlify/edge-functions'
5
5
import { glob } from 'fast-glob'
@@ -8,9 +8,21 @@ import { pathToRegexp } from 'path-to-regexp'
8
8
9
9
import { EDGE_HANDLER_NAME , PluginContext } from '../plugin-context.js'
10
10
11
+ type ManifestFunctionWithGenerator = ManifestFunction & { generator ?: string }
12
+
13
+ const getEdgeManifestPath = ( ctx : PluginContext ) => join ( ctx . edgeFunctionsDir , 'manifest.json' )
14
+
11
15
const writeEdgeManifest = async ( ctx : PluginContext , manifest : Manifest ) => {
12
16
await mkdir ( ctx . edgeFunctionsDir , { recursive : true } )
13
- await writeFile ( join ( ctx . edgeFunctionsDir , 'manifest.json' ) , JSON . stringify ( manifest , null , 2 ) )
17
+ await writeFile ( getEdgeManifestPath ( ctx ) , JSON . stringify ( manifest , null , 2 ) )
18
+ }
19
+
20
+ const readEdgeManifest = async ( ctx : PluginContext ) => {
21
+ try {
22
+ return JSON . parse ( await readFile ( getEdgeManifestPath ( ctx ) , 'utf-8' ) ) as Manifest
23
+ } catch {
24
+ return null
25
+ }
14
26
}
15
27
16
28
const copyRuntime = async ( ctx : PluginContext , handlerDirectory : string ) : Promise < void > => {
@@ -145,7 +157,7 @@ const getHandlerName = ({ name }: Pick<NextDefinition, 'name'>): string =>
145
157
const buildHandlerDefinition = (
146
158
ctx : PluginContext ,
147
159
{ name, matchers, page } : NextDefinition ,
148
- ) : Array < ManifestFunction > => {
160
+ ) : Array < ManifestFunctionWithGenerator > => {
149
161
const fun = getHandlerName ( { name } )
150
162
const funName = name . endsWith ( 'middleware' )
151
163
? 'Next.js Middleware Handler'
@@ -162,8 +174,39 @@ const buildHandlerDefinition = (
162
174
} ) )
163
175
}
164
176
177
+ const clearStaleEdgeHandlers = async ( ctx : PluginContext ) => {
178
+ const previousManifest = await readEdgeManifest ( ctx )
179
+ if ( ! previousManifest ) {
180
+ return [ ]
181
+ }
182
+
183
+ const uniqueNextRuntimeFunctions = new Set < string > ( )
184
+ const nonNextRuntimeFunctions : ManifestFunctionWithGenerator [ ] = [ ]
185
+
186
+ for ( const fn of previousManifest . functions as ManifestFunctionWithGenerator [ ] ) {
187
+ if ( fn ?. generator ?. startsWith ( ctx . pluginName ) ) {
188
+ uniqueNextRuntimeFunctions . add ( fn . function )
189
+ } else {
190
+ nonNextRuntimeFunctions . push ( fn )
191
+ }
192
+ }
193
+
194
+ if ( uniqueNextRuntimeFunctions . size === 0 ) {
195
+ return nonNextRuntimeFunctions
196
+ }
197
+
198
+ for ( const fileOrDir of await readdir ( ctx . edgeFunctionsDir , { withFileTypes : true } ) ) {
199
+ const nameWithoutExtension = parsePath ( fileOrDir . name ) . name
200
+
201
+ if ( uniqueNextRuntimeFunctions . has ( nameWithoutExtension ) ) {
202
+ await rm ( join ( ctx . edgeFunctionsDir , fileOrDir . name ) , { recursive : true , force : true } )
203
+ }
204
+ }
205
+ return nonNextRuntimeFunctions
206
+ }
207
+
165
208
export const createEdgeHandlers = async ( ctx : PluginContext ) => {
166
- await rm ( ctx . edgeFunctionsDir , { recursive : true , force : true } )
209
+ const nonNextRuntimeFunctions = await clearStaleEdgeHandlers ( ctx )
167
210
168
211
const nextManifest = await ctx . getMiddlewareManifest ( )
169
212
const nextDefinitions = [
@@ -175,7 +218,7 @@ export const createEdgeHandlers = async (ctx: PluginContext) => {
175
218
const netlifyDefinitions = nextDefinitions . flatMap ( ( def ) => buildHandlerDefinition ( ctx , def ) )
176
219
const netlifyManifest : Manifest = {
177
220
version : 1 ,
178
- functions : netlifyDefinitions ,
221
+ functions : [ ... nonNextRuntimeFunctions , ... netlifyDefinitions ] ,
179
222
}
180
223
await writeEdgeManifest ( ctx , netlifyManifest )
181
224
}
0 commit comments