Co-authored-by: Jacob Fletcher <jacobsfletch@gmail.com> Co-authored-by: Alessio Gravili <alessio@gravili.de> Co-authored-by: PatrikKozak <patrik@trbl.design> Co-authored-by: Lucas Blancas <lablancas@gmail.com> Co-authored-by: Stef Gootzen <37367280+stefgootzen@users.noreply.github.com> Co-authored-by: Jarrod Flesch <30633324+JarrodMFlesch@users.noreply.github.com> Co-authored-by: Jessica Chowdhury <67977755+JessChowdhury@users.noreply.github.com> Co-authored-by: PatrikKozak <35232443+PatrikKozak@users.noreply.github.com> Co-authored-by: Greg Willard <Wickett06@gmail.com> Co-authored-by: James Mikrut <james@payloadcms.com> Co-authored-by: Dan Ribbens <dan.ribbens@gmail.com> Co-authored-by: Elliot DeNolf <denolfe@gmail.com> fix: WhereBuilder component does not accept all valid Where queries (#3087) fix: passes in height to resizeOptions upload option to allow height resize (#3171)
35 lines
1.6 KiB
TypeScript
35 lines
1.6 KiB
TypeScript
import { revalidatePath, revalidateTag } from 'next/cache'
|
|
import type { NextRequest } from 'next/server'
|
|
import { NextResponse } from 'next/server'
|
|
|
|
// this endpoint will revalidate a page by tag or path
|
|
// this is to achieve on-demand revalidation of pages that use this data
|
|
// send either `collection` and `slug` or `revalidatePath` as query params
|
|
export async function GET(request: NextRequest): Promise<unknown> {
|
|
const collection = request.nextUrl.searchParams.get('collection')
|
|
const slug = request.nextUrl.searchParams.get('slug')
|
|
const path = request.nextUrl.searchParams.get('path')
|
|
const secret = request.nextUrl.searchParams.get('secret')
|
|
|
|
if (secret !== process.env.NEXT_PRIVATE_REVALIDATION_KEY) {
|
|
return NextResponse.json({ revalidated: false, now: Date.now() })
|
|
}
|
|
|
|
if (typeof collection === 'string' && typeof slug === 'string') {
|
|
revalidateTag(`${collection}_${slug}`)
|
|
return NextResponse.json({ revalidated: true, now: Date.now() })
|
|
}
|
|
|
|
// there is a known limitation with `revalidatePath` where it will not revalidate exact paths of dynamic routes
|
|
// instead, Next.js expects us to revalidate entire directories, i.e. `revalidatePath('/[slug]')` instead of `/example-page`
|
|
// for this reason, it is preferred to use `revalidateTag` instead of `revalidatePath`
|
|
// - https://github.com/vercel/next.js/issues/49387
|
|
// - https://github.com/vercel/next.js/issues/49778#issuecomment-1547028830
|
|
if (typeof path === 'string') {
|
|
revalidatePath(path)
|
|
return NextResponse.json({ revalidated: true, now: Date.now() })
|
|
}
|
|
|
|
return NextResponse.json({ revalidated: false, now: Date.now() })
|
|
}
|