Skip to content

Commit 3a26e45

Browse files
fix: correctly handle pathname for dynamic routing in rewrite (#13113)
1 parent c33eccb commit 3a26e45

File tree

10 files changed

+99
-2
lines changed

10 files changed

+99
-2
lines changed

.changeset/brave-cats-retire.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

packages/astro/src/core/routing/rewrite.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ export function findRouteToRewrite({
5353
pathname = pathname.slice(base.length);
5454
}
5555

56+
const decodedPathname = decodeURI(pathname);
5657
let foundRoute;
5758
for (const route of routes) {
58-
if (route.pattern.test(decodeURI(pathname))) {
59+
if (route.pattern.test(decodedPathname)) {
5960
foundRoute = route;
6061
break;
6162
}
@@ -65,7 +66,7 @@ export function findRouteToRewrite({
6566
return {
6667
routeData: foundRoute,
6768
newUrl,
68-
pathname,
69+
pathname: decodedPathname,
6970
};
7071
} else {
7172
const custom404 = routes.find((route) => route.route === '/404');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import {defineConfig} from 'astro/config';
2+
3+
// https://astro.build/config
4+
export default defineConfig({
5+
site: "https://example.com"
6+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "@test/rewrite-dynamic-routing",
3+
"version": "0.0.0",
4+
"private": true,
5+
"dependencies": {
6+
"astro": "workspace:*"
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
export function getStaticPaths() {
3+
return [{ params: { id: 'ABC abc 123' } },
4+
{ params: { id: 'test' } }]
5+
}
6+
7+
const { id } = Astro.params
8+
---
9+
<html>
10+
<head>
11+
<title>Index</title>
12+
</head>
13+
<body>
14+
<h1>Index</h1>
15+
<p>{id}</p>
16+
</body>
17+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
return Astro.rewrite('/ABC abc 123')
3+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
return Astro.rewrite('/has space/test')
3+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
export function getStaticPaths() {
3+
return [{ params: { id: 'ABC abc 123' } },
4+
{ params: { id: 'test' } }]
5+
}
6+
7+
const { id } = Astro.params
8+
---
9+
<html>
10+
<head>
11+
<title>Index</title>
12+
</head>
13+
<body>
14+
<h1>Index</h1>
15+
<p>{id}</p>
16+
</body>
17+
</html>

packages/astro/test/rewrite.test.js

+31
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,37 @@ describe('Dev rewrite, trailing slash -> never, with base', () => {
111111
});
112112
});
113113

114+
describe('Dev rewrite, dynamic routing', () => {
115+
/** @type {import('./test-utils').Fixture} */
116+
let fixture;
117+
let devServer;
118+
119+
before(async () => {
120+
fixture = await loadFixture({
121+
root: './fixtures/rewrite-dynamic-routing/',
122+
});
123+
devServer = await fixture.startDevServer();
124+
});
125+
126+
after(async () => {
127+
await devServer.stop();
128+
});
129+
130+
it('should decode the escaped characters in the URL', async () => {
131+
const html = await fixture.fetch('/foo').then((res) => res.text());
132+
const $ = cheerioLoad(html);
133+
134+
assert.equal($('h1').text(), 'Index');
135+
});
136+
137+
it('should decode the escaped characters in the params', async () => {
138+
const html = await fixture.fetch('/bar').then((res) => res.text());
139+
const $ = cheerioLoad(html);
140+
141+
assert.equal($('h1').text(), 'Index');
142+
});
143+
});
144+
114145
describe('Dev rewrite, hybrid/server', () => {
115146
/** @type {import('./test-utils').Fixture} */
116147
let fixture;

pnpm-lock.yaml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)