/home/ivoiecob/email.hirewise-va.com/static/js/MailLoginFormWebclient.app.83837a7e6ba201f91cd1.js
"use strict";
(self["webpackChunkafterlogic_aurora_platform"] = self["webpackChunkafterlogic_aurora_platform"] || []).push([[20],{

/***/ "0W9D":
/*!****************************************************!*\
  !*** ./modules/MailLoginFormWebclient/js/enums.js ***!
  \****************************************************/
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {



var _ = __webpack_require__(/*! underscore */ "C3HO"),
  Enums = {};

/**
 * @enum {number}
 */
Enums.LoginSignMeType = {
  'DefaultOff': 0,
  'DefaultOn': 1,
  'Unuse': 2
};
if (typeof window.Enums === 'undefined') {
  window.Enums = {};
}
_.extendOwn(window.Enums, Enums);

/***/ }),

/***/ "Cp5u":
/*!******************************************************!*\
  !*** ./modules/MailLoginFormWebclient/js/manager.js ***!
  \******************************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {



module.exports = function (oAppData) {
  __webpack_require__(/*! modules/MailLoginFormWebclient/js/enums.js */ "0W9D");
  __webpack_require__(/*! modules/CoreWebclient/js/vendors/jquery.cookie.js */ "GUFh");
  var Types = __webpack_require__(/*! modules/CoreWebclient/js/utils/Types.js */ "ERH9"),
    App = __webpack_require__(/*! modules/CoreWebclient/js/App.js */ "yU9o"),
    Settings = __webpack_require__(/*! modules/MailLoginFormWebclient/js/Settings.js */ "gsSE"),
    bAnonimUser = App.getUserRole() === window.Enums.UserRole.Anonymous;
  Settings.init(oAppData);
  if (!App.isPublic() && bAnonimUser) {
    if (App.isMobile()) {
      return {
        /**
         * Returns login view screen as is.
         */
        getLoginScreenView: function getLoginScreenView() {
          return __webpack_require__(/*! modules/MailLoginFormWebclient/js/views/LoginView.js */ "XXoq");
        },
        getHashModuleName: function getHashModuleName() {
          return Settings.HashModuleName;
        },
        /**
         * Redirect to custom login url if specified.
         */
        beforeAppRunning: function beforeAppRunning() {
          if (Types.isNonEmptyString(Settings.CustomLoginUrl)) {
            window.location.href = Settings.CustomLoginUrl;
          }
        }
      };
    } else {
      return {
        /**
         * Returns login view screen.
         */
        getScreens: function getScreens() {
          var oScreens = {};
          if (!Types.isNonEmptyString(Settings.CustomLoginUrl)) {
            oScreens[Settings.HashModuleName] = function () {
              return __webpack_require__(/*! modules/MailLoginFormWebclient/js/views/LoginView.js */ "XXoq");
            };
          }
          return oScreens;
        },
        /**
         * Redirect to custom login url if specified.
         */
        beforeAppRunning: function beforeAppRunning() {
          if (Types.isNonEmptyString(Settings.CustomLoginUrl)) {
            window.location.href = Settings.CustomLoginUrl;
          }
        }
      };
    }
  }
  return null;
};

/***/ }),

/***/ "XXoq":
/*!**************************************************************!*\
  !*** ./modules/MailLoginFormWebclient/js/views/LoginView.js ***!
  \**************************************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {



var _ = __webpack_require__(/*! underscore */ "C3HO"),
  $ = __webpack_require__(/*! jquery */ "M4cL"),
  ko = __webpack_require__(/*! knockout */ "p09A"),
  TextUtils = __webpack_require__(/*! modules/CoreWebclient/js/utils/Text.js */ "LKDt"),
  UrlUtils = __webpack_require__(/*! modules/CoreWebclient/js/utils/Url.js */ "3cxN"),
  Utils = __webpack_require__(/*! modules/CoreWebclient/js/utils/Common.js */ "uQaC"),
  Ajax = __webpack_require__(/*! modules/CoreWebclient/js/Ajax.js */ "8QQh"),
  Api = __webpack_require__(/*! modules/CoreWebclient/js/Api.js */ "Z9uT"),
  App = __webpack_require__(/*! modules/CoreWebclient/js/App.js */ "yU9o"),
  Browser = __webpack_require__(/*! modules/CoreWebclient/js/Browser.js */ "/Odb"),
  CAbstractScreenView = __webpack_require__(/*! modules/CoreWebclient/js/views/CAbstractScreenView.js */ "db2p"),
  UserSettings = __webpack_require__(/*! modules/CoreWebclient/js/Settings.js */ "KIwC"),
  Settings = __webpack_require__(/*! modules/MailLoginFormWebclient/js/Settings.js */ "gsSE"),
  $html = $('html');

/**
 * @constructor
 */
function CLoginView() {
  CAbstractScreenView.call(this, 'MailLoginFormWebclient');
  this.sCustomLogoUrl = Settings.CustomLogoUrl;
  this.sInfoText = Settings.InfoText;
  this.sBottomInfoHtmlText = Settings.BottomInfoHtmlText;
  this.username = ko.observable('');
  this.password = ko.observable('');
  this.usernameDom = ko.observable(null);
  this.passwordDom = ko.observable(null);
  this.usernameFocus = ko.observable(false);
  this.passwordFocus = ko.observable(false);
  this.loading = ko.observable(false);
  this.bUseSignMe = Settings.LoginSignMeType === Enums.LoginSignMeType.Unuse;
  this.signMe = ko.observable(Enums.LoginSignMeType.DefaultOn === Settings.LoginSignMeType);
  this.signMeFocused = ko.observable(false);
  this.canBeLogin = ko.computed(function () {
    return !this.loading();
  }, this);
  this.signInButtonText = ko.computed(function () {
    return this.loading() ? TextUtils.i18n('COREWEBCLIENT/ACTION_SIGN_IN_IN_PROGRESS') : TextUtils.i18n('COREWEBCLIENT/ACTION_SIGN_IN');
  }, this);
  this.loginCommand = Utils.createCommand(this, this.signIn, this.canBeLogin);
  this.username(Settings.DemoLogin || '');
  this.password(Settings.DemoPassword || '');
  this.shake = ko.observable(false).extend({
    'autoResetToFalse': 800
  });
  this.bRtl = UserSettings.IsRTL;
  this.aLanguages = UserSettings.LanguageList;
  this.currentLanguage = ko.observable(UserSettings.Language);
  this.bAllowChangeLanguage = Settings.AllowChangeLanguage && !App.isMobile();
  this.bUseDropdownLanguagesView = Settings.UseDropdownLanguagesView;
  this.headingSelectLanguage = ko.computed(function () {
    var sSiteName = UserSettings.SiteName;
    if (_.isEmpty(sSiteName)) {
      sSiteName = TextUtils.i18n('MAILLOGINFORMWEBCLIENT/HEADING_DEFAULT_SITENAME');
    }
    return TextUtils.i18n('MAILLOGINFORMWEBCLIENT/HEADING_SELECT_LANGUAGE', {
      'SITENAME': sSiteName
    });
  }, this);
  this.domains = ko.observableArray([]);
  this.selectedDomain = ko.observable('');
  this.firstDomain = ko.computed(function () {
    return this.domains().length > 0 ? this.domains()[0] : '';
  }, this);
  this.selectedServer = ko.observable('');
  this.beforeButtonsControllers = ko.observableArray([]);
  App.broadcastEvent('AnonymousUserForm::PopulateBeforeButtonsControllers', {
    ModuleName: 'MailLoginFormWebclient',
    RegisterBeforeButtonsController: this.registerBeforeButtonsController.bind(this)
  });
  App.broadcastEvent('MailLoginFormWebclient::ConstructView::after', {
    'Name': this.ViewConstructorName,
    'View': this
  });
}
_.extendOwn(CLoginView.prototype, CAbstractScreenView.prototype);
CLoginView.prototype.ViewTemplate = 'MailLoginFormWebclient_LoginView';
CLoginView.prototype.ViewConstructorName = 'CLoginView';
CLoginView.prototype.onBind = function () {
  $html.addClass('non-adjustable-valign');
};

/**
 * Focuses username input after view showing.
 */
CLoginView.prototype.onShow = function () {
  _.delay(_.bind(function () {
    if (this.username() === '') {
      this.usernameFocus(true);
    }
  }, this), 1);
  Ajax.send('MailLoginFormWebclient', 'GetMailDomains', {}, function (oResponse, oRequest) {
    if (_.isArray(oResponse.Result)) {
      this.domains(oResponse.Result);
    }
  }, this);
};

/**
 * Checks username input value and sends sign-in request to server.
 */
CLoginView.prototype.signIn = function () {
  // sometimes nockoutjs conflicts with saved passwords in FF
  this.username($(this.usernameDom()).val());
  this.password($(this.passwordDom()).val());
  if (!this.loading()) {
    var sDomain = '',
      sLogin = '',
      sPassword = $.trim(this.password()),
      koForFocus = null;
    sLogin = $.trim(this.username());
    if (sLogin.length === 0) {
      koForFocus = this.usernameFocus;
    } else {
      sDomain = this.domains().length > 1 ? this.selectedDomain() : this.firstDomain();
    }
    if (sLogin.length > 0 && sPassword.length > 0) {
      var oParameters = {
        'Domain': sDomain,
        'Login': sLogin,
        'Password': sPassword,
        'Language': $.cookie('aurora-selected-lang') || '',
        'SignMe': this.signMe()
      };
      App.broadcastEvent('AnonymousUserForm::PopulateFormSubmitParameters', {
        Module: 'MailLoginFormWebclient',
        Parameters: oParameters
      });
      this.loading(true);
      Ajax.send('MailLoginFormWebclient', 'Login', oParameters, this.onSystemLoginResponse, this);
    } else {
      if (koForFocus) {
        koForFocus(true);
      } else if (sPassword.length === 0) {
        this.passwordFocus(true);
      }
      this.shake(true);
    }
  }
};

/**
 * Receives data from the server. Shows error and shakes form if server has returned false-result.
 * Otherwise clears search-string if it don't contain "reset-pass", "invite-auth" and "oauth" parameters and reloads page.
 * 
 * @param {Object} oResponse Data obtained from the server.
 * @param {Object} oRequest Data has been transferred to the server.
 */
CLoginView.prototype.onSystemLoginResponseBase = function (oResponse, oRequest) {
  if (false === oResponse.Result) {
    this.loading(false);
    this.shake(true);
    Api.showErrorByCode(oResponse, TextUtils.i18n('COREWEBCLIENT/ERROR_PASS_INCORRECT'));
  } else {
    $.removeCookie('aurora-selected-lang');
    if (window.location.search !== '' && UrlUtils.getRequestParam('reset-pass') === null && UrlUtils.getRequestParam('invite-auth') === null && UrlUtils.getRequestParam('oauth') === null) {
      UrlUtils.clearAndReloadLocation(Browser.ie8AndBelow, true);
    } else {
      UrlUtils.clearAndReloadLocation(Browser.ie8AndBelow, false);
    }
  }
};

/**
 * @param {string} sLanguage
 */
CLoginView.prototype.changeLanguage = function (sLanguage) {
  if (sLanguage && this.bAllowChangeLanguage) {
    $.cookie('aurora-lang-on-login', sLanguage, {
      expires: 30
    });
    $.cookie('aurora-selected-lang', sLanguage, {
      expires: 30
    });
    window.location.reload();
  }
};

/**
 * @param {Object} oComponent
 */
CLoginView.prototype.registerBeforeButtonsController = function (oComponent) {
  this.beforeButtonsControllers.push(oComponent);
};

/**
 * @param {Object} oResponse
 * @param {Object} oRequest
 */
CLoginView.prototype.onSystemLoginResponse = function (oResponse, oRequest) {
  this.onSystemLoginResponseBase(oResponse, oRequest);
};
module.exports = new CLoginView();

/***/ }),

/***/ "gsSE":
/*!*******************************************************!*\
  !*** ./modules/MailLoginFormWebclient/js/Settings.js ***!
  \*******************************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {



var _ = __webpack_require__(/*! underscore */ "C3HO"),
  Types = __webpack_require__(/*! modules/CoreWebclient/js/utils/Types.js */ "ERH9");
module.exports = {
  ServerModuleName: 'MailLoginFormWebclient',
  HashModuleName: 'mail',
  AllowChangeLanguage: false,
  CustomLoginUrl: '',
  CustomLogoUrl: '',
  DemoLogin: '',
  DemoPassword: '',
  InfoText: '',
  BottomInfoHtmlText: '',
  LoginSignMeType: Enums.LoginSignMeType.DefaultOff,
  // 0 - off, 1 - on, 2 - don't use
  UseDropdownLanguagesView: false,
  /**
   * Initializes settings from AppData object sections.
   * 
   * @param {Object} oAppData Object contained modules settings.
   */
  init: function init(oAppData) {
    var oAppDataSection = oAppData['MailLoginFormWebclient'],
      oAppDataBrandingWebclientSection = oAppData['BrandingWebclient'];
    if (!_.isEmpty(oAppDataSection)) {
      this.ServerModuleName = Types.pString(oAppDataSection.ServerModuleName, this.ServerModuleName);
      this.HashModuleName = Types.pString(oAppDataSection.HashModuleName, this.HashModuleName);
      this.AllowChangeLanguage = Types.pBool(oAppDataSection.AllowChangeLanguage, this.AllowChangeLanguage);
      this.CustomLoginUrl = Types.pString(oAppDataSection.CustomLoginUrl, this.CustomLoginUrl);
      this.DemoLogin = Types.pString(oAppDataSection.DemoLogin, this.DemoLogin);
      this.DemoPassword = Types.pString(oAppDataSection.DemoPassword, this.DemoPassword);
      this.InfoText = Types.pString(oAppDataSection.InfoText, this.InfoText);
      this.BottomInfoHtmlText = Types.pString(oAppDataSection.BottomInfoHtmlText, this.BottomInfoHtmlText);
      this.LoginSignMeType = Types.pEnum(oAppDataSection.LoginSignMeType, Enums.LoginSignMeType, this.LoginSignMeType);
      this.UseDropdownLanguagesView = Types.pBool(oAppDataSection.UseDropdownLanguagesView, this.UseDropdownLanguagesView);
    }
    if (!_.isEmpty(oAppDataBrandingWebclientSection)) {
      this.CustomLogoUrl = Types.pString(oAppDataBrandingWebclientSection.LoginLogo, this.CustomLogoUrl);
    }
  }
};

/***/ })

}]);