Skip to content

Commit c2b9827

Browse files
authored
fix(backend): Preserve url protocol when joining paths (clerk#2745)
1 parent e883533 commit c2b9827

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.changeset/yellow-walls-worry.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/backend': patch
3+
---
4+
5+
Preserve url protocol when joining paths.

packages/backend/src/util/__tests__/path.test.ts

+14
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,18 @@ export default (QUnit: QUnit) => {
1010
test('joins the provides paths safely', assert => {
1111
assert.equal(joinPaths('foo', '/bar', '/qux//'), 'foo/bar/qux/');
1212
});
13+
14+
test('does not affect url scheme', assert => {
15+
assert.equal(
16+
joinPaths('https://api.clerk.com', 'v1', '/organizations/org_xxxxxxxxxxxxxxxxx'),
17+
'https://api.clerk.com/v1/organizations/org_xxxxxxxxxxxxxxxxx',
18+
);
19+
});
20+
21+
test('does not affect url scheme and removes duplicate separators', assert => {
22+
assert.equal(
23+
joinPaths('https://api.clerk.com//', '/v1/', '//organizations/org_xxxxxxxxxxxxxxxxx//'),
24+
'https://api.clerk.com/v1/organizations/org_xxxxxxxxxxxxxxxxx/',
25+
);
26+
});
1327
};

packages/backend/src/util/path.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const SEPARATOR = '/';
2-
const MULTIPLE_SEPARATOR_REGEX = new RegExp(SEPARATOR + '{1,}', 'g');
2+
const MULTIPLE_SEPARATOR_REGEX = new RegExp('(?<!:)' + SEPARATOR + '{1,}', 'g');
33

44
type PathString = string | null | undefined;
55

0 commit comments

Comments
 (0)