intercom-client
Version:
Official Node bindings to the Intercom API
25 lines (24 loc) • 889 B
JavaScript
import { base64Decode, base64Encode } from "../base64.mjs";
const BASIC_AUTH_HEADER_PREFIX = /^Basic /i;
export const BasicAuth = {
toAuthorizationHeader: (basicAuth) => {
if (basicAuth == null) {
return undefined;
}
const token = base64Encode(`${basicAuth.username}:${basicAuth.password}`);
return `Basic ${token}`;
},
fromAuthorizationHeader: (header) => {
const credentials = header.replace(BASIC_AUTH_HEADER_PREFIX, "");
const decoded = 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,
};
},
};