@azure/msal-browser
Version:
Microsoft Authentication Library for js
56 lines (53 loc) • 2.82 kB
JavaScript
/*! @azure/msal-browser v4.18.0 2025-07-30 */
'use strict';
import { CustomAuthAccountData } from '../../../get_account/auth_flow/CustomAuthAccountData.mjs';
import { SignInSubmitPasswordResult } from '../result/SignInSubmitPasswordResult.mjs';
import { SignInCompletedState } from './SignInCompletedState.mjs';
import { SignInState } from './SignInState.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/*
* Sign-in password required state.
*/
class SignInPasswordRequiredState extends SignInState {
/**
* Once user configures email with password as a authentication method in Microsoft Entra, user submits a password to continue sign-in flow.
* @param {string} password - The password to submit.
* @returns {Promise<SignInSubmitPasswordResult>} The result of the operation.
*/
async submitPassword(password) {
try {
this.ensurePasswordIsNotEmpty(password);
const submitPasswordParams = {
clientId: this.stateParameters.config.auth.clientId,
correlationId: this.stateParameters.correlationId,
challengeType: this.stateParameters.config.customAuth.challengeTypes ?? [],
scopes: this.stateParameters.scopes ?? [],
continuationToken: this.stateParameters.continuationToken ?? "",
password: password,
username: this.stateParameters.username,
claims: this.stateParameters.claims,
};
this.stateParameters.logger.verbose("Submitting password for sign-in.", this.stateParameters.correlationId);
const completedResult = await this.stateParameters.signInClient.submitPassword(submitPasswordParams);
this.stateParameters.logger.verbose("Password submitted for sign-in.", this.stateParameters.correlationId);
const accountInfo = new CustomAuthAccountData(completedResult.authenticationResult.account, this.stateParameters.config, this.stateParameters.cacheClient, this.stateParameters.logger, this.stateParameters.correlationId);
return new SignInSubmitPasswordResult(new SignInCompletedState(), accountInfo);
}
catch (error) {
this.stateParameters.logger.errorPii(`Failed to sign in after submitting password. Error: ${error}.`, this.stateParameters.correlationId);
return SignInSubmitPasswordResult.createWithError(error);
}
}
/**
* Gets the scopes to request.
* @returns {string[] | undefined} The scopes to request.
*/
getScopes() {
return this.stateParameters.scopes;
}
}
export { SignInPasswordRequiredState };
//# sourceMappingURL=SignInPasswordRequiredState.mjs.map