Skip to content

Commit e23a06b

Browse files
committed
Fix typing and tests
1 parent a4994ef commit e23a06b

File tree

3 files changed

+33
-15
lines changed

3 files changed

+33
-15
lines changed

src/domain/navigation/URLRouter.ts

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ export interface IURLRouter<T> {
3232
urlForPath(path: Path<T>): string;
3333
openRoomActionUrl(roomId: string): string;
3434
createSSOCallbackURL(): string;
35+
createOIDCRedirectURL(): string;
36+
absoluteAppUrl(): string;
37+
absoluteUrlForAsset(asset: string): string;
3538
normalizeUrl(): void;
3639
}
3740

src/domain/navigation/index.ts

+26-12
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,16 @@ export type SegmentType = {
3333
"details": true;
3434
"members": true;
3535
"member": string;
36-
"oidc-callback": (string | null)[];
37-
"oidc-error": (string | null)[];
36+
"oidc": {
37+
state: string,
38+
} &
39+
({
40+
code: string,
41+
} | {
42+
error: string,
43+
errorDescription: string | null,
44+
errorUri: string | null ,
45+
});
3846
};
3947

4048
export function createNavigation(): Navigation<SegmentType> {
@@ -131,18 +139,21 @@ export function parseUrlPath(urlPath: string, currentNavPath: Path<SegmentType>,
131139
// Special case for OIDC callback
132140
if (urlPath.includes("state")) {
133141
const params = new URLSearchParams(urlPath);
134-
if (params.has("state")) {
142+
const state = params.get("state");
143+
const code = params.get("code");
144+
const error = params.get("error");
145+
if (state) {
135146
// This is a proper OIDC callback
136-
if (params.has("code")) {
147+
if (code) {
137148
segments.push(new Segment("oidc", {
138-
state: params.get("state"),
139-
code: params.get("code"),
149+
state,
150+
code,
140151
}));
141152
return segments;
142-
} else if (params.has("error")) {
153+
} else if (error) {
143154
segments.push(new Segment("oidc", {
144-
state: params.get("state"),
145-
error: params.get("error"),
155+
state,
156+
error,
146157
errorDescription: params.get("error_description"),
147158
errorUri: params.get("error_uri"),
148159
}));
@@ -514,19 +525,22 @@ export function tests() {
514525
assert.equal(newPath?.segments[1].value, "b");
515526
},
516527
"Parse OIDC callback": assert => {
517-
const segments = parseUrlPath("state=tc9CnLU7&code=cnmUnwIYtY7V8RrWUyhJa4yvX72jJ5Yx");
528+
const path = createEmptyPath();
529+
const segments = parseUrlPath("state=tc9CnLU7&code=cnmUnwIYtY7V8RrWUyhJa4yvX72jJ5Yx", path);
518530
assert.equal(segments.length, 1);
519531
assert.equal(segments[0].type, "oidc");
520532
assert.deepEqual(segments[0].value, {state: "tc9CnLU7", code: "cnmUnwIYtY7V8RrWUyhJa4yvX72jJ5Yx"});
521533
},
522534
"Parse OIDC error": assert => {
523-
const segments = parseUrlPath("state=tc9CnLU7&error=invalid_request");
535+
const path = createEmptyPath();
536+
const segments = parseUrlPath("state=tc9CnLU7&error=invalid_request", path);
524537
assert.equal(segments.length, 1);
525538
assert.equal(segments[0].type, "oidc");
526539
assert.deepEqual(segments[0].value, {state: "tc9CnLU7", error: "invalid_request", errorUri: null, errorDescription: null});
527540
},
528541
"Parse OIDC error with description": assert => {
529-
const segments = parseUrlPath("state=tc9CnLU7&error=invalid_request&error_description=Unsupported%20response_type%20value");
542+
const path = createEmptyPath();
543+
const segments = parseUrlPath("state=tc9CnLU7&error=invalid_request&error_description=Unsupported%20response_type%20value", path);
530544
assert.equal(segments.length, 1);
531545
assert.equal(segments[0].type, "oidc");
532546
assert.deepEqual(segments[0].value, {state: "tc9CnLU7", error: "invalid_request", errorDescription: "Unsupported response_type value", errorUri: null});

src/matrix/net/OidcApi.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ limitations under the License.
1515
*/
1616

1717
import type {RequestFunction} from "../../platform/types/types";
18-
import type {URLRouter} from "../../domain/navigation/URLRouter.js";
18+
import type {IURLRouter} from "../../domain/navigation/URLRouter.js";
19+
import type {SegmentType} from "../../domain/navigation";
1920

2021
const WELL_KNOWN = ".well-known/openid-configuration";
2122

@@ -69,12 +70,12 @@ const clientIds: Record<IssuerUri, ClientConfig> = {
6970
},
7071
};
7172

72-
export class OidcApi {
73+
export class OidcApi<N extends object = SegmentType> {
7374
_issuer: string;
7475
_requestFn: RequestFunction;
7576
_encoding: any;
7677
_crypto: any;
77-
_urlCreator: URLRouter;
78+
_urlCreator: IURLRouter<N>;
7879
_metadataPromise: Promise<any>;
7980
_registrationPromise: Promise<any>;
8081

0 commit comments

Comments
 (0)