Skip to content

Commit 89a5121

Browse files
Fix a bug where basepath nextUrl is invalid when it should be valid (#2096) (#2098)
* Fix a bug where basepath nextUrl is invalid when it should be valid * Udpate test --------- (cherry picked from commit b1148fb) Signed-off-by: Derek Ho <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 053e088 commit 89a5121

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

server/utils/next_url.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ describe('test validateNextUrl', () => {
5252
expect(validateNextUrl(url, '')).toEqual(undefined);
5353
});
5454

55+
test('allow basePath', () => {
56+
const url = '/osd';
57+
expect(validateNextUrl(url, '/osd')).toEqual(undefined);
58+
});
59+
5560
test('allow dashboard url', () => {
5661
const url =
5762
'/_plugin/opensearch-dashboards/app/opensearch-dashboards#dashbard/dashboard-id?_g=(param=a&p=b)';

server/utils/next_url.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function validateNextUrl(
5858
}
5959
const pathMinusBase = path.replace(bp, '');
6060
if (
61-
!pathMinusBase.startsWith('/') ||
61+
(pathMinusBase && !pathMinusBase.startsWith('/')) ||
6262
(pathMinusBase.length >= 2 && !/^\/[a-zA-Z_][\/a-zA-Z0-9-_]+$/.test(pathMinusBase))
6363
) {
6464
return INVALID_NEXT_URL_PARAMETER_MESSAGE;

0 commit comments

Comments
 (0)