Rocky_Mountain_Vending/.pnpm-store/v10/files/a4/9509a623d5e27be1d570cc89c741e11b2c164ef6be6153e720bf31a8623b4504caaa10b1adffd81c1d4151a5f0eea55183e96016c5c705bb935e8cbb906081
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

39 lines
No EOL
1.5 KiB
Text

import { flightRouterStateSchema } from './types';
import { assert } from 'next/dist/compiled/superstruct';
export function parseAndValidateFlightRouterState(stateHeader) {
if (typeof stateHeader === 'undefined') {
return undefined;
}
if (Array.isArray(stateHeader)) {
throw Object.defineProperty(new Error('Multiple router state headers were sent. This is not allowed.'), "__NEXT_ERROR_CODE", {
value: "E418",
enumerable: false,
configurable: true
});
}
// We limit the size of the router state header to ~40kb. This is to prevent
// a malicious user from sending a very large header and slowing down the
// resolving of the router state.
// This is around 2,000 nested or parallel route segment states:
// '{"children":["",{}]}'.length === 20.
if (stateHeader.length > 20 * 2000) {
throw Object.defineProperty(new Error('The router state header was too large.'), "__NEXT_ERROR_CODE", {
value: "E142",
enumerable: false,
configurable: true
});
}
try {
const state = JSON.parse(decodeURIComponent(stateHeader));
assert(state, flightRouterStateSchema);
return state;
} catch {
throw Object.defineProperty(new Error('The router state header was sent but could not be parsed.'), "__NEXT_ERROR_CODE", {
value: "E10",
enumerable: false,
configurable: true
});
}
}
//# sourceMappingURL=parse-and-validate-flight-router-state.js.map