@@ -33,8 +33,16 @@ export type SegmentType = {
33
33
"details" : true ;
34
34
"members" : true ;
35
35
"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
+ } ) ;
38
46
} ;
39
47
40
48
export function createNavigation ( ) : Navigation < SegmentType > {
@@ -131,18 +139,21 @@ export function parseUrlPath(urlPath: string, currentNavPath: Path<SegmentType>,
131
139
// Special case for OIDC callback
132
140
if ( urlPath . includes ( "state" ) ) {
133
141
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 ) {
135
146
// This is a proper OIDC callback
136
- if ( params . has ( " code" ) ) {
147
+ if ( code ) {
137
148
segments . push ( new Segment ( "oidc" , {
138
- state : params . get ( "state" ) ,
139
- code : params . get ( "code" ) ,
149
+ state,
150
+ code,
140
151
} ) ) ;
141
152
return segments ;
142
- } else if ( params . has ( " error" ) ) {
153
+ } else if ( error ) {
143
154
segments . push ( new Segment ( "oidc" , {
144
- state : params . get ( "state" ) ,
145
- error : params . get ( "error" ) ,
155
+ state,
156
+ error,
146
157
errorDescription : params . get ( "error_description" ) ,
147
158
errorUri : params . get ( "error_uri" ) ,
148
159
} ) ) ;
@@ -514,19 +525,22 @@ export function tests() {
514
525
assert . equal ( newPath ?. segments [ 1 ] . value , "b" ) ;
515
526
} ,
516
527
"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 ) ;
518
530
assert . equal ( segments . length , 1 ) ;
519
531
assert . equal ( segments [ 0 ] . type , "oidc" ) ;
520
532
assert . deepEqual ( segments [ 0 ] . value , { state : "tc9CnLU7" , code : "cnmUnwIYtY7V8RrWUyhJa4yvX72jJ5Yx" } ) ;
521
533
} ,
522
534
"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 ) ;
524
537
assert . equal ( segments . length , 1 ) ;
525
538
assert . equal ( segments [ 0 ] . type , "oidc" ) ;
526
539
assert . deepEqual ( segments [ 0 ] . value , { state : "tc9CnLU7" , error : "invalid_request" , errorUri : null , errorDescription : null } ) ;
527
540
} ,
528
541
"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 ) ;
530
544
assert . equal ( segments . length , 1 ) ;
531
545
assert . equal ( segments [ 0 ] . type , "oidc" ) ;
532
546
assert . deepEqual ( segments [ 0 ] . value , { state : "tc9CnLU7" , error : "invalid_request" , errorDescription : "Unsupported response_type value" , errorUri : null } ) ;
0 commit comments