blob: cb8099a45e77aaddd12a9837437e70da9653e7f7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
export let authCallback = null;
/**
* Fetches the most up-to-date auth header string from the auth callback
* and updates the config object with the new value.
* @param {Object} config Configuration object to be updated.
* @param {Function} authCallback Callback used to fetch the newest header.
* @returns {void}
*/
export function updateAuthHeader(config) {
if (authCallback) {
try {
config.authHeader = authCallback();
} catch (e) {
// We should emit the error, but otherwise continue as this could be a temporary issue
// due to network connectivity or some logic inside the authCallback which is the user's
// responsibility.
console.error(`Error encountered while setting the auth header: ${e}`);
}
}
}
/**
* Registers the provided callback to be used when updating the auth header.
* @param {Function} callback Callback used to fetch the newest header. Should return a string.
* @returns {boolean} Whether the operation succeeded.
*/
export function registerAuthCallback(callback) {
try {
verifyCallback(callback);
authCallback = callback;
return true;
} catch (e) {
return false;
}
}
/**
* Verify that the provided callback is a function which returns a string
* @param {Function} callback Callback used to fetch the newest header. Should return a string.
* @throws {Error} If the callback is not a function or does not return a string.
* @returns {void}
*/
export function verifyCallback(callback) {
if (typeof callback !== "function") {
throw new Error("Userale auth callback must be a function");
}
const result = callback();
if (typeof result !== "string") {
throw new Error("Userale auth callback must return a string");
}
}
/**
* Resets the authCallback to null. Used for primarily for testing, but could be used
* to remove the callback in production.
* @returns {void}
*/
export function resetAuthCallback() {
authCallback = null;
}