UNPKG

@okta/okta-auth-js

Version:
109 lines (101 loc) 3.7 kB
"use strict"; exports.getHashOrSearch = getHashOrSearch; exports.hasAuthorizationCode = hasAuthorizationCode; exports.hasErrorInUrl = hasErrorInUrl; exports.hasInteractionCode = hasInteractionCode; exports.hasResponseType = hasResponseType; exports.hasTokensInHash = hasTokensInHash; exports.isCodeFlow = isCodeFlow; exports.isInteractionRequired = isInteractionRequired; exports.isLoginRedirect = isLoginRedirect; exports.isRedirectUri = isRedirectUri; /*! * Copyright (c) 2015-present, Okta, Inc. and/or its affiliates. All rights reserved. * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.") * * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and limitations under the License. * */ /* global window */ /* eslint-disable complexity, max-statements */ function hasTokensInHash(hash) { return /[?&#](id|access)_token=/.test(hash); } // authorization_code function hasAuthorizationCode(hashOrSearch) { return /[?&#]code=/.test(hashOrSearch); } // interaction_code function hasInteractionCode(hashOrSearch) { return /[?&#]interaction_code=/.test(hashOrSearch); } function hasErrorInUrl(hashOrSearch) { return /[?&#]error=/.test(hashOrSearch) || /[?&#]error_description/.test(hashOrSearch); } function isRedirectUri(uri, sdk) { var authParams = sdk.options; if (!uri || !authParams.redirectUri) { return false; } return uri.indexOf(authParams.redirectUri) === 0; } function isCodeFlow(options) { return options.pkce || options.responseType === 'code' || options.responseMode === 'query'; } function hasResponseType(responseType, options) { let hasResponseType = false; if (Array.isArray(options.responseType) && options.responseType.length) { hasResponseType = options.responseType.indexOf(responseType) >= 0; } else { hasResponseType = options.responseType === responseType; } return hasResponseType; } function getHashOrSearch(options) { var codeFlow = isCodeFlow(options); var useQuery = codeFlow && options.responseMode !== 'fragment'; return useQuery ? window.location.search : window.location.hash; } /** * Check if tokens or a code have been passed back into the url, which happens in * the OIDC (including social auth IDP) redirect flow. */ function isLoginRedirect(sdk) { // First check, is this a redirect URI? if (!isRedirectUri(window.location.href, sdk)) { return false; } // The location contains either a code, token, or an error + error_description var codeFlow = isCodeFlow(sdk.options); var hashOrSearch = getHashOrSearch(sdk.options); if (hasErrorInUrl(hashOrSearch)) { return true; } if (codeFlow) { var hasCode = hasAuthorizationCode(hashOrSearch) || hasInteractionCode(hashOrSearch); return hasCode; } // implicit flow, will always be hash fragment return hasTokensInHash(window.location.hash); } /** * Check if error=interaction_required has been passed back in the url, which happens in * the social auth IDP redirect flow. */ function isInteractionRequired(sdk, hashOrSearch) { if (!hashOrSearch) { // web only // First check, is this a redirect URI? if (!isLoginRedirect(sdk)) { return false; } hashOrSearch = getHashOrSearch(sdk.options); } return /(error=interaction_required)/i.test(hashOrSearch); } //# sourceMappingURL=loginRedirect.js.map