auth0
Version:
SDK for Auth0 API v2
105 lines • 3.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.grant = exports.BaseAuthAPI = exports.AuthApiError = void 0;
const errors_js_1 = require("../lib/errors.js");
const runtime_js_1 = require("../lib/runtime.js");
const client_authentication_js_1 = require("./client-authentication.js");
const telemetry_middleware_js_1 = require("../lib/middleware/telemetry-middleware.js");
class AuthApiError extends Error {
constructor(error, error_description, statusCode, body, headers) {
super(error_description || error);
this.error = error;
this.error_description = error_description;
this.statusCode = statusCode;
this.body = body;
this.headers = headers;
this.name = 'AuthApiError';
}
}
exports.AuthApiError = AuthApiError;
function parseErrorBody(body) {
const rawData = JSON.parse(body);
let data;
if (rawData.error) {
data = rawData;
}
else {
data = {
error: rawData.code,
error_description: rawData.description,
};
}
return data;
}
async function parseError(response) {
// Errors typically have a specific format:
// {
// error: 'invalid_body',
// error_description: 'Bad Request',
// }
const body = await response.text();
try {
const data = parseErrorBody(body);
return new AuthApiError(data.error, data.error_description, response.status, body, response.headers);
}
catch (_) {
return new errors_js_1.ResponseError(response.status, body, response.headers, 'Response returned an error code');
}
}
class BaseAuthAPI extends runtime_js_1.BaseAPI {
constructor(options) {
super({
...options,
baseUrl: `https://${options.domain}`,
middleware: options.telemetry !== false ? [new telemetry_middleware_js_1.TelemetryMiddleware(options)] : [],
parseError,
retry: { enabled: false, ...options.retry },
});
this.domain = options.domain;
this.clientId = options.clientId;
this.clientSecret = options.clientSecret;
this.clientAssertionSigningKey = options.clientAssertionSigningKey;
this.clientAssertionSigningAlg = options.clientAssertionSigningAlg;
this.useMTLS = options.useMTLS;
}
/**
* @private
*/
async addClientAuthentication(payload) {
return (0, client_authentication_js_1.addClientAuthentication)({
payload,
domain: this.domain,
clientId: this.clientId,
clientSecret: this.clientSecret,
clientAssertionSigningKey: this.clientAssertionSigningKey,
clientAssertionSigningAlg: this.clientAssertionSigningAlg,
useMTLS: this.useMTLS,
});
}
}
exports.BaseAuthAPI = BaseAuthAPI;
/**
* @private
* Perform an OAuth 2.0 grant.
*/
async function grant(grantType, bodyParameters, { idTokenValidateOptions, initOverrides } = {}, clientId, idTokenValidator, request) {
const response = await request({
path: '/oauth/token',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: new URLSearchParams({
client_id: clientId,
...bodyParameters,
grant_type: grantType,
}),
}, initOverrides);
const res = await runtime_js_1.JSONApiResponse.fromResponse(response);
if (res.data.id_token) {
await idTokenValidator.validate(res.data.id_token, idTokenValidateOptions);
}
return res;
}
exports.grant = grant;
//# sourceMappingURL=base-auth-api.js.map