auth0
Version:
Auth0 Node.js SDK for the Management API v2.
34 lines (33 loc) • 1.27 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BasicAuth = void 0;
const base64_js_1 = require("../base64.js");
const BASIC_AUTH_HEADER_PREFIX = /^Basic /i;
exports.BasicAuth = {
toAuthorizationHeader: (basicAuth) => {
var _a, _b;
if (basicAuth == null) {
return undefined;
}
const username = (_a = basicAuth.username) !== null && _a !== void 0 ? _a : "";
const password = (_b = basicAuth.password) !== null && _b !== void 0 ? _b : "";
if (username === "" && password === "") {
return undefined;
}
const token = (0, base64_js_1.base64Encode)(`${username}:${password}`);
return `Basic ${token}`;
},
fromAuthorizationHeader: (header) => {
const credentials = header.replace(BASIC_AUTH_HEADER_PREFIX, "");
const decoded = (0, base64_js_1.base64Decode)(credentials);
const [username, ...passwordParts] = decoded.split(":");
const password = passwordParts.length > 0 ? passwordParts.join(":") : undefined;
if (username == null || password == null) {
throw new Error("Invalid basic auth");
}
return {
username,
password,
};
},
};