ibm-cloud-sdk-core
Version:
Core functionality to support SDKs generated with IBM's OpenAPI SDK Generator.
87 lines (86 loc) • 3.65 kB
JavaScript
/**
* (C) Copyright IBM Corp. 2019, 2024.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with 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 extend from 'extend';
import { validateInput } from '../utils/helpers';
import { buildUserAgent } from '../../lib/build-user-agent';
import { JwtTokenManager } from './jwt-token-manager';
import logger from '../../lib/logger';
/**
* Token Manager of CloudPak for data.
*
* The Token Manager performs basic auth with a username and password
* to acquire CP4D tokens.
*/
export class Cp4dTokenManager extends JwtTokenManager {
/**
* Create a new Cp4dTokenManager instance.
*
* @param options - Configuration options
* This should be an object containing these fields:
* - url: (required) the endpoint URL for the CloudPakForData token service
* - username: (required) the username used to obtain a bearer token
* - password: (optional) the password used to obtain a bearer token (required if apikey is not specified)
* - apikey: (optional) the API key used to obtain a bearer token (required if password is not specified)
* - disableSslVerification: (optional) a flag that indicates whether verification of the token server's SSL certificate
* should be disabled or not
* - headers: (optional) a set of HTTP headers to be sent with each request to the token service
*
* @throws Error: the configuration options were invalid.
*/
constructor(options) {
super(options);
this.requiredOptions = ['username', 'url'];
this.tokenName = 'token';
if ((!options.password && !options.apikey) || (options.password && options.apikey)) {
throw new Error('Exactly one of `apikey` or `password` must be specified.');
}
validateInput(options, this.requiredOptions);
const tokenApiPath = '/v1/authorize';
// do not append the path if user already has
if (this.url && !this.url.endsWith(tokenApiPath)) {
this.url += tokenApiPath;
}
this.username = options.username;
this.password = options.password;
this.apikey = options.apikey;
this.userAgent = buildUserAgent('cp4d-authenticator');
}
requestToken() {
// these cannot be overwritten
const requiredHeaders = {
'Content-Type': 'application/json',
'User-Agent': this.userAgent,
};
const parameters = {
options: {
url: this.url,
body: {
username: this.username,
password: this.password,
api_key: this.apikey,
},
method: 'POST',
headers: extend(true, {}, this.headers, requiredHeaders),
rejectUnauthorized: !this.disableSslVerification,
},
};
logger.debug(`Invoking CP4D token service operation: ${parameters.options.url}`);
return this.requestWrapperInstance.sendRequest(parameters).then((response) => {
logger.debug('Returned from CP4D token service operation');
return response;
});
}
}