@typespec/ts-http-runtime
Version:
Isomorphic client library for making HTTP requests in node.js and browser.
30 lines • 1.28 kB
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { ensureSecureConnection } from "./checkInsecureConnection.js";
/**
* Name of the OAuth2 Authentication Policy
*/
export const oauth2AuthenticationPolicyName = "oauth2AuthenticationPolicy";
/**
* Gets a pipeline policy that adds authorization header from OAuth2 schemes
*/
export function oauth2AuthenticationPolicy(options) {
return {
name: oauth2AuthenticationPolicyName,
async sendRequest(request, next) {
// Ensure allowInsecureConnection is explicitly set when sending request to non-https URLs
ensureSecureConnection(request, options);
const scheme = (request.authSchemes ?? options.authSchemes)?.find((x) => x.kind === "oauth2");
// Skip adding authentication header if no OAuth2 authentication scheme is found
if (!scheme) {
return next(request);
}
const token = await options.credential.getOAuth2Token(scheme.flows, {
abortSignal: request.abortSignal,
});
request.headers.set("Authorization", `Bearer ${token}`);
return next(request);
},
};
}
//# sourceMappingURL=oauth2AuthenticationPolicy.js.map