@@ -7,12 +7,15 @@ import { getDeployStore, Store } from '@netlify/blobs'
7
7
import { purgeCache } from '@netlify/functions'
8
8
import { type Span } from '@opentelemetry/api'
9
9
import { NEXT_CACHE_TAGS_HEADER } from 'next/dist/lib/constants.js'
10
+
10
11
import type {
11
12
CacheHandler ,
12
13
CacheHandlerContext ,
13
- CacheHandlerValue ,
14
14
IncrementalCache ,
15
- } from 'next/dist/server/lib/incremental-cache/index.js'
15
+ NetlifyCachedRouteValue ,
16
+ NetlifyCacheHandlerValue ,
17
+ NetlifyIncrementalCacheValue ,
18
+ } from '../../shared/cache-types.cjs'
16
19
17
20
import { getRequestContext } from './request-context.cjs'
18
21
import { getTracer } from './tracer.cjs'
@@ -43,7 +46,7 @@ export class NetlifyCacheHandler implements CacheHandler {
43
46
}
44
47
45
48
private captureResponseCacheLastModified (
46
- cacheValue : CacheHandlerValue ,
49
+ cacheValue : NetlifyCacheHandlerValue ,
47
50
key : string ,
48
51
getCacheKeySpan : Span ,
49
52
) {
@@ -90,6 +93,19 @@ export class NetlifyCacheHandler implements CacheHandler {
90
93
}
91
94
}
92
95
96
+ private captureRouteRevalidateAndRemoveFromObject (
97
+ cacheValue : NetlifyCachedRouteValue ,
98
+ ) : Omit < NetlifyCachedRouteValue , 'revalidate' > {
99
+ const { revalidate, ...restOfRouteValue } = cacheValue
100
+
101
+ const requestContext = getRequestContext ( )
102
+ if ( requestContext ) {
103
+ requestContext . routeHandlerRevalidate = revalidate
104
+ }
105
+
106
+ return restOfRouteValue
107
+ }
108
+
93
109
async get ( ...args : Parameters < CacheHandler [ 'get' ] > ) : ReturnType < CacheHandler [ 'get' ] > {
94
110
return this . tracer . withActiveSpan ( 'get cache key' , async ( span ) => {
95
111
const [ key , ctx = { } ] = args
@@ -103,7 +119,7 @@ export class NetlifyCacheHandler implements CacheHandler {
103
119
return await this . blobStore . get ( blobKey , {
104
120
type : 'json' ,
105
121
} )
106
- } ) ) as CacheHandlerValue | null
122
+ } ) ) as NetlifyCacheHandlerValue | null
107
123
108
124
// if blob is null then we don't have a cache entry
109
125
if ( ! blob ) {
@@ -128,15 +144,19 @@ export class NetlifyCacheHandler implements CacheHandler {
128
144
value : blob . value ,
129
145
}
130
146
131
- case 'ROUTE' :
147
+ case 'ROUTE' : {
132
148
span . addEvent ( 'ROUTE' , { lastModified : blob . lastModified , status : blob . value . status } )
149
+
150
+ const valueWithoutRevalidate = this . captureRouteRevalidateAndRemoveFromObject ( blob . value )
151
+
133
152
return {
134
153
lastModified : blob . lastModified ,
135
154
value : {
136
- ...blob . value ,
137
- body : Buffer . from ( blob . value . body as unknown as string , 'base64' ) ,
155
+ ...valueWithoutRevalidate ,
156
+ body : Buffer . from ( valueWithoutRevalidate . body as unknown as string , 'base64' ) ,
138
157
} ,
139
158
}
159
+ }
140
160
case 'PAGE' :
141
161
span . addEvent ( 'PAGE' , { lastModified : blob . lastModified } )
142
162
return {
@@ -152,23 +172,22 @@ export class NetlifyCacheHandler implements CacheHandler {
152
172
153
173
async set ( ...args : Parameters < IncrementalCache [ 'set' ] > ) {
154
174
return this . tracer . withActiveSpan ( 'set cache key' , async ( span ) => {
155
- const [ key , data ] = args
175
+ const [ key , data , context ] = args
156
176
const blobKey = await this . encodeBlobKey ( key )
157
177
const lastModified = Date . now ( )
158
178
span . setAttributes ( { key, lastModified, blobKey } )
159
179
160
180
console . debug ( `[NetlifyCacheHandler.set]: ${ key } ` )
161
181
162
- let value = data
163
-
164
- if ( data ?. kind === 'ROUTE' ) {
165
- // don't mutate data, as it's used for the initial response - instead create a new object
166
- value = {
167
- ...data ,
168
- // @ts -expect-error gotta find a better solution for this
169
- body : data . body . toString ( 'base64' ) ,
170
- }
171
- }
182
+ const value : NetlifyIncrementalCacheValue | null =
183
+ data ?. kind === 'ROUTE'
184
+ ? // don't mutate data, as it's used for the initial response - instead create a new object
185
+ {
186
+ ...data ,
187
+ revalidate : context . revalidate ,
188
+ body : data . body . toString ( 'base64' ) ,
189
+ }
190
+ : data
172
191
173
192
await this . blobStore . setJSON ( blobKey , {
174
193
lastModified,
@@ -217,7 +236,7 @@ export class NetlifyCacheHandler implements CacheHandler {
217
236
* Checks if a cache entry is stale through on demand revalidated tags
218
237
*/
219
238
private async checkCacheEntryStaleByTags (
220
- cacheEntry : CacheHandlerValue ,
239
+ cacheEntry : NetlifyCacheHandlerValue ,
221
240
tags : string [ ] = [ ] ,
222
241
softTags : string [ ] = [ ] ,
223
242
) {
0 commit comments