@typespec/ts-http-runtime
Version:
Isomorphic client library for making HTTP requests in node.js and browser.
35 lines • 1.62 kB
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.bearerAuthenticationPolicyName = void 0;
exports.bearerAuthenticationPolicy = bearerAuthenticationPolicy;
const checkInsecureConnection_js_1 = require("./checkInsecureConnection.js");
/**
* Name of the Bearer Authentication Policy
*/
exports.bearerAuthenticationPolicyName = "bearerAuthenticationPolicy";
/**
* Gets a pipeline policy that adds bearer token authentication to requests
*/
function bearerAuthenticationPolicy(options) {
return {
name: exports.bearerAuthenticationPolicyName,
async sendRequest(request, next) {
var _a, _b;
// Ensure allowInsecureConnection is explicitly set when sending request to non-https URLs
(0, checkInsecureConnection_js_1.ensureSecureConnection)(request, options);
const scheme = (_b = ((_a = request.authSchemes) !== null && _a !== void 0 ? _a : options.authSchemes)) === null || _b === void 0 ? void 0 : _b.find((x) => x.kind === "http" && x.scheme === "bearer");
// Skip adding authentication header if no bearer authentication scheme is found
if (!scheme) {
return next(request);
}
const token = await options.credential.getBearerToken({
abortSignal: request.abortSignal,
});
request.headers.set("Authorization", `Bearer ${token}`);
return next(request);
},
};
}
//# sourceMappingURL=bearerAuthenticationPolicy.js.map