@azure/msal-browser
Version:
Microsoft Authentication Library for js
72 lines (69 loc) • 3.18 kB
JavaScript
/*! @azure/msal-browser v2.28.1 2022-08-01 */
;
import { EventType } from './EventType.js';
import { InteractionType, InteractionStatus } from '../utils/BrowserConstants.js';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
var EventMessageUtils = /** @class */ (function () {
function EventMessageUtils() {
}
/**
* Gets interaction status from event message
* @param message
* @param currentStatus
*/
EventMessageUtils.getInteractionStatusFromEvent = function (message, currentStatus) {
switch (message.eventType) {
case EventType.LOGIN_START:
return InteractionStatus.Login;
case EventType.SSO_SILENT_START:
return InteractionStatus.SsoSilent;
case EventType.ACQUIRE_TOKEN_START:
if (message.interactionType === InteractionType.Redirect || message.interactionType === InteractionType.Popup) {
return InteractionStatus.AcquireToken;
}
break;
case EventType.HANDLE_REDIRECT_START:
return InteractionStatus.HandleRedirect;
case EventType.LOGOUT_START:
return InteractionStatus.Logout;
case EventType.SSO_SILENT_SUCCESS:
case EventType.SSO_SILENT_FAILURE:
if (currentStatus && currentStatus !== InteractionStatus.SsoSilent) {
// Prevent this event from clearing any status other than ssoSilent
break;
}
return InteractionStatus.None;
case EventType.LOGOUT_END:
if (currentStatus && currentStatus !== InteractionStatus.Logout) {
// Prevent this event from clearing any status other than logout
break;
}
return InteractionStatus.None;
case EventType.HANDLE_REDIRECT_END:
if (currentStatus && currentStatus !== InteractionStatus.HandleRedirect) {
// Prevent this event from clearing any status other than handleRedirect
break;
}
return InteractionStatus.None;
case EventType.LOGIN_SUCCESS:
case EventType.LOGIN_FAILURE:
case EventType.ACQUIRE_TOKEN_SUCCESS:
case EventType.ACQUIRE_TOKEN_FAILURE:
if (message.interactionType === InteractionType.Redirect || message.interactionType === InteractionType.Popup) {
if (currentStatus && currentStatus !== InteractionStatus.Login && currentStatus !== InteractionStatus.AcquireToken) {
// Prevent this event from clearing any status other than login or acquireToken
break;
}
return InteractionStatus.None;
}
break;
}
return null;
};
return EventMessageUtils;
}());
export { EventMessageUtils };
//# sourceMappingURL=EventMessage.js.map