-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for OIDC session management error status #613
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,6 @@ node_modules/ | |
.vscode/ | ||
temp/ | ||
.history/ | ||
|
||
.idea | ||
*.iml |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,7 @@ export class SessionMonitor { | |
// doesn't trigger load event. | ||
if (user) { | ||
void this._start(user); | ||
} | ||
else if (this._userManager.settings.monitorAnonymousSession) { | ||
} else if (this._userManager.settings.monitorAnonymousSession) { | ||
const session = await this._userManager.querySessionStatus(); | ||
if (session) { | ||
const tmpUser = { | ||
|
@@ -69,8 +68,7 @@ export class SessionMonitor { | |
this._sub = user.profile.sub; | ||
this._sid = user.profile.sid; | ||
logger.debug("session_state", session_state, ", sub", this._sub); | ||
} | ||
else { | ||
} else { | ||
this._sub = undefined; | ||
this._sid = undefined; | ||
logger.debug("session_state", session_state, ", anonymous user"); | ||
|
@@ -90,21 +88,27 @@ export class SessionMonitor { | |
const intervalInSeconds = this._userManager.settings.checkSessionIntervalInSeconds; | ||
const stopOnError = this._userManager.settings.stopCheckSessionOnError; | ||
|
||
const checkSessionIFrame = new CheckSessionIFrame(this._callback, client_id, url, intervalInSeconds, stopOnError); | ||
const checkSessionIFrame = new CheckSessionIFrame(this._callback, client_id, url, intervalInSeconds, stopOnError, this.doUserSessionErrorPropagation(), this.raiseUserSessionError.bind(this)); | ||
await checkSessionIFrame.load(); | ||
this._checkSessionIFrame = checkSessionIFrame; | ||
checkSessionIFrame.start(session_state); | ||
} | ||
else { | ||
} else { | ||
logger.warn("no check session iframe found in the metadata"); | ||
} | ||
} | ||
catch (err) { | ||
} catch (err) { | ||
// catch to suppress errors since we're in non-promise callback | ||
logger.error("Error from getCheckSessionIframe:", err instanceof Error ? err.message : err); | ||
} | ||
}; | ||
|
||
private doUserSessionErrorPropagation(): boolean { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a matter of preference, but yes, I will introduce a variable. |
||
return this._userManager.settings.propagateUserSessionError; | ||
} | ||
|
||
private raiseUserSessionError(): void { | ||
this._userManager.events._raiseUserSessionError.bind(this); | ||
} | ||
|
||
protected _stop = (): void => { | ||
const logger = this._logger.create("_stop"); | ||
this._sub = undefined; | ||
|
@@ -133,8 +137,7 @@ export class SessionMonitor { | |
}; | ||
void this._start(tmpUser); | ||
} | ||
} | ||
catch (err) { | ||
} catch (err) { | ||
// catch to suppress errors since we're in a callback | ||
logger.error("error from querySessionStatus", err instanceof Error ? err.message : err); | ||
} | ||
|
@@ -155,32 +158,27 @@ export class SessionMonitor { | |
|
||
if (session.sid === this._sid) { | ||
logger.debug("same sub still logged in at OP, restarting check session iframe; session_state", session.session_state); | ||
} | ||
else { | ||
} else { | ||
logger.debug("same sub still logged in at OP, session state has changed, restarting check session iframe; session_state", session.session_state); | ||
this._userManager.events._raiseUserSessionChanged(); | ||
} | ||
} | ||
else { | ||
} else { | ||
logger.debug("different subject signed into OP", session.sub); | ||
} | ||
} | ||
else { | ||
} else { | ||
logger.debug("subject no longer signed into OP"); | ||
} | ||
|
||
if (raiseEvent) { | ||
if (this._sub) { | ||
this._userManager.events._raiseUserSignedOut(); | ||
} | ||
else { | ||
} else { | ||
this._userManager.events._raiseUserSignedIn(); | ||
} | ||
} else { | ||
logger.debug("no change in session detected, no event to raise"); | ||
} | ||
} | ||
catch (err) { | ||
} catch (err) { | ||
if (this._sub) { | ||
logger.debug("Error calling queryCurrentSigninSession; raising signed out event", err); | ||
this._userManager.events._raiseUserSignedOut(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we could combine
propagateUserSessionError
anduserSessionErrorCallback
: MakeuserSessionErrorCallback
optional, if defined call it if not not. ThenpropagateUserSessionError
is not needed inside this class...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually the way I implemented it is the same pattern as the
_callback
is called after thechanged
status is triggered. By using thepropagateUserSessionError
flag it is made optional. If you'd rather like that the existence of theuserSessionErrorCallback
is checked to trigger that callback I would have to allow for a function to be defined in the settings object which, of course, would be possible but would break with the way that a client can attach to e.g. thechanged
status.