| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // Licensed under the MIT License. See License.txt in the project root for license information.
- import { HttpHeaders } from "../httpHeaders";
- import * as base64 from "../util/base64";
- import { Constants } from "../util/constants";
- var HeaderConstants = Constants.HeaderConstants;
- var DEFAULT_AUTHORIZATION_SCHEME = "Basic";
- var BasicAuthenticationCredentials = /** @class */ (function () {
- /**
- * Creates a new BasicAuthenticationCredentials object.
- *
- * @constructor
- * @param {string} userName User name.
- * @param {string} password Password.
- * @param {string} [authorizationScheme] The authorization scheme.
- */
- function BasicAuthenticationCredentials(userName, password, authorizationScheme) {
- if (authorizationScheme === void 0) { authorizationScheme = DEFAULT_AUTHORIZATION_SCHEME; }
- this.authorizationScheme = DEFAULT_AUTHORIZATION_SCHEME;
- if (userName === null || userName === undefined || typeof userName.valueOf() !== "string") {
- throw new Error("userName cannot be null or undefined and must be of type string.");
- }
- if (password === null || password === undefined || typeof password.valueOf() !== "string") {
- throw new Error("password cannot be null or undefined and must be of type string.");
- }
- this.userName = userName;
- this.password = password;
- this.authorizationScheme = authorizationScheme;
- }
- /**
- * Signs a request with the Authentication header.
- *
- * @param {WebResource} webResource The WebResource to be signed.
- * @returns {Promise<WebResource>} The signed request object.
- */
- BasicAuthenticationCredentials.prototype.signRequest = function (webResource) {
- var credentials = this.userName + ":" + this.password;
- var encodedCredentials = this.authorizationScheme + " " + base64.encodeString(credentials);
- if (!webResource.headers)
- webResource.headers = new HttpHeaders();
- webResource.headers.set(HeaderConstants.AUTHORIZATION, encodedCredentials);
- return Promise.resolve(webResource);
- };
- return BasicAuthenticationCredentials;
- }());
- export { BasicAuthenticationCredentials };
- //# sourceMappingURL=basicAuthenticationCredentials.js.map
|