@okta-dfuhriman/okta-auth-js
Version:
The Okta Auth SDK
110 lines (93 loc) • 4.04 kB
text/typescript
/*!
* 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.
*/
import { AuthSdkError } from '../../errors';
import { CustomUrls, OAuthParams, OAuthResponse, OktaAuthOAuthInterface, RefreshToken, TokenParams } from '../types';
import { removeNils, toQueryString } from '../../util';
import { httpRequest, OktaAuthHttpInterface } from '../../http';
// eslint-disable-next-line complexity
function validateOptions(sdk: OktaAuthOAuthInterface, options: TokenParams) {
// Quick validation
if (!options.clientId) {
throw new AuthSdkError('A clientId must be specified in the OktaAuth constructor to get a token');
}
if (!sdk.options?.pushAuthorizationRequest && !options.codeVerifier) {
throw new AuthSdkError('The "codeVerifier" (generated and saved by your app) must be passed to /token');
}
if (sdk.options?.pushAuthorizationRequest && !options?.clientAssertion) {
throw new AuthSdkError('The `client_assertion` provided by the PAR endpoint must be present');
}
if (!options.redirectUri) {
throw new AuthSdkError('The redirectUri passed to /authorize must also be passed to /token');
}
if (!options.authorizationCode && !options.interactionCode) {
throw new AuthSdkError('An authorization code (returned from /authorize) must be passed to /token');
}
}
function getPostData(sdk: OktaAuthOAuthInterface, options: TokenParams): string {
// Convert Token params to OAuth params, sent to the /token endpoint
let params: OAuthParams = removeNils({
'client_id': options.clientId,
'redirect_uri': options.redirectUri,
'grant_type': options.interactionCode ? 'interaction_code' : 'authorization_code',
'code_verifier': options.codeVerifier
});
if (options.interactionCode) {
params['interaction_code'] = options.interactionCode;
} else if (options.authorizationCode) {
params.code = options.authorizationCode;
}
const { clientSecret } = sdk.options;
if (options?.clientAssertion) {
params['client_assertion'] = options.clientAssertion;
params['client_assertion_type'] = 'urn:ietf:params:oauth:client-assertion-type:jwt-bearer';
} else if (clientSecret) {
params['client_secret'] = clientSecret;
}
// Encode as URL string
return toQueryString(params).slice(1);
}
// exchange authorization code for an access token
export function postToTokenEndpoint(sdk, options: TokenParams, urls: CustomUrls): Promise<OAuthResponse> {
validateOptions(sdk, options);
let data = getPostData(sdk, options);
const headers = {
'Content-Type': 'application/x-www-form-urlencoded'
};
return httpRequest(sdk, {
url: urls.tokenUrl,
method: 'POST',
args: data,
headers
});
}
export function postRefreshToken(
sdk: OktaAuthHttpInterface,
options: TokenParams,
refreshToken: RefreshToken
): Promise<OAuthResponse> {
return httpRequest(sdk, {
url: refreshToken.tokenUrl,
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
args: Object.entries({
client_id: options.clientId, // eslint-disable-line camelcase
grant_type: 'refresh_token', // eslint-disable-line camelcase
scope: refreshToken.scopes.join(' '),
refresh_token: refreshToken.refreshToken, // eslint-disable-line camelcase
}).map(function ([name, value]) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
return name + '=' + encodeURIComponent(value!);
}).join('&'),
});
}