UNPKG

@codesmith-99/ionic-appauth-test

Version:

Intergration for OpenId/AppAuth-JS into Ionic V3/4/5

26 lines (25 loc) 988 B
import { __awaiter } from "tslib"; import { BasicQueryStringUtils } from "@openid/appauth"; export class IonicEndSessionHandler { constructor(browser, utils = new BasicQueryStringUtils()) { this.browser = browser; this.utils = utils; } performEndSessionRequest(configuration, request) { return __awaiter(this, void 0, void 0, function* () { let url = this.buildRequestUrl(configuration, request); return this.browser.showWindow(url, request.postLogoutRedirectURI); }); } buildRequestUrl(configuration, request) { let requestMap = { 'id_token_hint': request.idTokenHint, 'post_logout_redirect_uri': request.postLogoutRedirectURI, 'state': request.state, }; let query = this.utils.stringify(requestMap); let baseUrl = configuration.endSessionEndpoint; let url = `${baseUrl}?${query}`; return url; } }