-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: adjust middleware json data rewrite to work with recent next@canary #2734
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -14,6 +14,8 @@ import { | |||||
normalizeLocalePath, | ||||||
normalizeTrailingSlash, | ||||||
relativizeURL, | ||||||
removeBasePath, | ||||||
rewriteDataPath, | ||||||
} from './util.ts' | ||||||
|
||||||
export interface FetchEventResult { | ||||||
|
@@ -180,14 +182,16 @@ export const buildResponse = async ({ | |||||
} | ||||||
|
||||||
if (isDataReq) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I can tell - this will only be truthy for pages router json requests opennextjs-netlify/edge-runtime/lib/response.ts Lines 126 to 127 in a1d859d
App router RSC requests don't seem to have that header set so this should be safe to do There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I might be wrong, but it looks like next uses There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was my initial attempt - f5bb340 but to make it work, something in middleware handling (edge function) would need to signal to origin (lambda) that this meta data should be set - in that commit I just made the previous query param work again (if it was present I was setting that meta data), but this felt wrong given that Next.js explicitly removed support for that. I'm not exactly sure how it works on Vercel - I'm clearly missing something here, but I don't think attempting to set those meta tags directly is the right way to go - maybe figuring out how that meta data is meant to be set would be the best solution here - I'll try to look if I can figure that out There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, so the part of code that is setting the meta data on requests (~https://github.com/vercel/next.js/blob/canary/packages/next/src/server/lib/router-utils/resolve-routes.ts) ... but it only happens when it is So current fix (at least in terms of the approach of using data url instead of trying to add the internal meta data on request ourselves) seems like generally correct approach to me, because we now hit the code path that is setting that internal meta data and added e2e test show it working for all Next.js versions that we test There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for looking into it even more deeply! |
||||||
// The rewrite target is a data request, but a middleware rewrite target is always for the page route, | ||||||
// so we need to tell the server this is a data request. Setting the `x-nextjs-data` header is not enough. 🤷 | ||||||
rewriteUrl.searchParams.set('__nextDataReq', '1') | ||||||
rewriteUrl.pathname = rewriteDataPath({ | ||||||
dataUrl: new URL(request.url).pathname, | ||||||
newRoute: removeBasePath(rewriteUrl.pathname, nextConfig?.basePath), | ||||||
basePath: nextConfig?.basePath, | ||||||
}) | ||||||
} else { | ||||||
// respect trailing slash rules to prevent 308s | ||||||
rewriteUrl.pathname = normalizeTrailingSlash(rewriteUrl.pathname, nextConfig?.trailingSlash) | ||||||
} | ||||||
|
||||||
// respect trailing slash rules to prevent 308s | ||||||
rewriteUrl.pathname = normalizeTrailingSlash(rewriteUrl.pathname, nextConfig?.trailingSlash) | ||||||
|
||||||
const target = normalizeLocalizedTarget({ target: rewriteUrl.toString(), request, nextConfig }) | ||||||
if (target === request.url) { | ||||||
logger.withFields({ rewrite_url: rewrite }).debug('Rewrite url is same as original url') | ||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -52,3 +52,20 @@ test('it should render OpenGraph image meta tag correctly', async ({ page, middl | |||||||||||||||||||||||
const size = await getImageSize(Buffer.from(imageBuffer), 'png') | ||||||||||||||||||||||||
expect([size.width, size.height]).toEqual([1200, 630]) | ||||||||||||||||||||||||
}) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
test('json data rewrite works', async ({ middlewarePages }) => { | ||||||||||||||||||||||||
const response = await fetch(`${middlewarePages.url}/_next/data/build-id/sha.json`, { | ||||||||||||||||||||||||
headers: { | ||||||||||||||||||||||||
'x-nextjs-data': '1', | ||||||||||||||||||||||||
}, | ||||||||||||||||||||||||
}) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
expect(response.ok).toBe(true) | ||||||||||||||||||||||||
const body = await response.text() | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
expect(body).toMatch(/^{"pageProps":/) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
const data = JSON.parse(body) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
expect(data.pageProps.message).toBeDefined() | ||||||||||||||||||||||||
}) | ||||||||||||||||||||||||
Comment on lines
+56
to
+71
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using already existing setup in one of our fixtures opennextjs-netlify/tests/fixtures/middleware-pages/middleware.js Lines 37 to 40 in c3e328c
and opennextjs-netlify/tests/fixtures/middleware-pages/pages/shallow.js Lines 37 to 43 in c3e328c
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fun fact - we had
rewriteDataPath
function already but we never used it