/home/ivoiecob/email.hirewise-va.com/static/js/Facebook.app.fe5ecaf3bdaea99a5517.js
"use strict";
(self["webpackChunkafterlogic_aurora_platform"] = self["webpackChunkafterlogic_aurora_platform"] || []).push([[9],{

/***/ "7VnC":
/*!*****************************************!*\
  !*** ./modules/Facebook/js/Settings.js ***!
  \*****************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {



var _ = __webpack_require__(/*! underscore */ "C3HO"),
  ko = __webpack_require__(/*! knockout */ "p09A"),
  Types = __webpack_require__(/*! modules/CoreWebclient/js/utils/Types.js */ "ERH9");
module.exports = {
  ServerModuleName: 'Facebook',
  HashModuleName: 'facebook',
  Connected: false,
  EnableModule: false,
  Id: '',
  Secret: '',
  Scopes: [],
  /**
   * Initializes settings from AppData object sections.
   * 
   * @param {Object} oAppData Object contained modules settings.
   */
  init: function init(oAppData) {
    var oAppDataSection = oAppData['Facebook'];
    if (!_.isEmpty(oAppDataSection)) {
      this.Connected = Types.pBool(oAppDataSection.Connected, this.Connected);
      this.EnableModule = Types.pBool(oAppDataSection.EnableModule, this.EnableModule);
      this.Id = Types.pString(oAppDataSection.Id, this.Id);
      this.Secret = Types.pString(oAppDataSection.Secret, this.Secret);
      this.Scopes = Types.pArray(oAppDataSection.Scopes, this.Scopes);
    }
  },
  /**
   * Returns copy of Scopes with observable Value parameter.
   * 
   * @returns {Array}
   */
  getScopesCopy: function getScopesCopy() {
    var aScopesCopy = [];
    _.each(this.Scopes, function (oScope) {
      aScopesCopy.push({
        Description: oScope.Description,
        Name: oScope.Name,
        Value: ko.observable(oScope.Value)
      });
    });
    return aScopesCopy;
  },
  /**
   * Updates Connected and Scopes parameters.
   * 
   * @param {boolean} bConnected New value of Connected parameter.
   * @param {array} aScopes New value of Scopes parameter.
   */
  updateScopes: function updateScopes(bConnected, aScopes) {
    var aNewScopes = [];
    _.each(aScopes, function (oScope) {
      aNewScopes.push({
        Description: oScope.Description,
        Name: oScope.Name,
        Value: oScope.Value()
      });
    });
    this.Connected = bConnected;
    this.Scopes = aNewScopes;
  },
  /**
   * Updates settings that is edited by administrator.
   * 
   * @param {boolean} bEnableModule New value of EnableModule parameter.
   * @param {string} sId New value of Id parameter.
   * @param {string} sSecret New value of Secret parameter.
   * @param {array} aScopes New value of Scopes parameter.
   */
  updateAdmin: function updateAdmin(bEnableModule, sId, sSecret, aScopes) {
    this.EnableModule = bEnableModule;
    this.Id = sId;
    this.Secret = sSecret;
    this.Scopes = aScopes;
  }
};

/***/ }),

/***/ "dtbP":
/*!***************************************************************!*\
  !*** ./modules/Facebook/js/views/FacebookSettingsFormView.js ***!
  \***************************************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {



var _ = __webpack_require__(/*! underscore */ "C3HO"),
  $ = __webpack_require__(/*! jquery */ "M4cL"),
  ko = __webpack_require__(/*! knockout */ "p09A"),
  Types = __webpack_require__(/*! modules/CoreWebclient/js/utils/Types.js */ "ERH9"),
  UrlUtils = __webpack_require__(/*! modules/CoreWebclient/js/utils/Url.js */ "3cxN"),
  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"),
  ModulesManager = __webpack_require__(/*! modules/CoreWebclient/js/ModulesManager.js */ "5D2l"),
  WindowOpener = __webpack_require__(/*! modules/CoreWebclient/js/WindowOpener.js */ "zVyH"),
  CAbstractSettingsFormView = ModulesManager.run('SettingsWebclient', 'getAbstractSettingsFormViewClass'),
  Settings = __webpack_require__(/*! modules/Facebook/js/Settings.js */ "7VnC");

/**
* @constructor
*/
function CFacebookSettingsFormView() {
  CAbstractSettingsFormView.call(this, Settings.ServerModuleName);
  this.connected = ko.observable(Settings.Connected);
  this.scopes = ko.observable(Settings.getScopesCopy());
  this.bRunCallback = false;
  window.facebookConnectCallback = _.bind(function (bResult, sErrorCode, sModule) {
    this.bRunCallback = true;
    if (!bResult) {
      Api.showErrorByCode({
        'ErrorCode': Types.pInt(sErrorCode),
        'Module': sModule
      }, '', true);
    } else {
      this.connected(true);
      this.updateSavedState();
      Settings.updateScopes(this.connected(), this.scopes());
    }
  }, this);
}
_.extendOwn(CFacebookSettingsFormView.prototype, CAbstractSettingsFormView.prototype);
CFacebookSettingsFormView.prototype.ViewTemplate = 'Facebook_FacebookSettingsFormView';

/**
 * Returns current values of changeable parameters. These values are used to compare with their previous version.
 * @returns {Array}
 */
CFacebookSettingsFormView.prototype.getCurrentValues = function () {
  var aScopesValues = _.map(this.scopes(), function (oScope) {
    return oScope.Name + oScope.Value();
  });
  return [this.connected(), aScopesValues];
};

/**
 * Reverts values of changeable parameters to default ones.
 */
CFacebookSettingsFormView.prototype.revertGlobalValues = function () {
  this.connected(Settings.Connected);
  this.scopes(Settings.getScopesCopy());
};

/**
 * Checks if connect is allowed and tries to connect in that case.
 */
CFacebookSettingsFormView.prototype.checkAndConnect = function () {
  var oParams = {
      'Scopes': [],
      'Service': 'facebook',
      'AllowConnect': true
    },
    oAuthScope = _.find(this.scopes(), function (oScope) {
      return oScope.Name === 'auth';
    }),
    bAuthOn = !!oAuthScope && !!oAuthScope.Value(),
    oAuthGlobalScope = _.find(Settings.getScopesCopy(), function (oScope) {
      return oScope.Name === 'auth';
    }),
    bGlobalAuthOn = !!oAuthGlobalScope && !!oAuthGlobalScope.Value();
  _.each(this.scopes(), function (oScope) {
    if (oScope.Value()) {
      oParams.Scopes.push(oScope.Name);
    }
  });
  App.broadcastEvent('OAuthAccountChange::before', oParams);
  if (oParams.AllowConnect && (bAuthOn || bAuthOn === bGlobalAuthOn || !bAuthOn && App.isAccountDeletingAvailable())) {
    this.connect(oParams.Scopes);
  }
};

/**
 * Tries to connect user to facebook account.
 * @param {array} aScopes
 */
CFacebookSettingsFormView.prototype.connect = function (aScopes) {
  $.removeCookie('oauth-scopes');
  $.cookie('oauth-scopes', aScopes.join('|'));
  $.cookie('oauth-redirect', 'connect');
  this.bRunCallback = false;
  var oWin = WindowOpener.open(UrlUtils.getAppPath() + '?oauth=facebook-connect', 'Facebook'),
    iIntervalId = setInterval(_.bind(function () {
      if (oWin.closed) {
        clearInterval(iIntervalId);
        if (!this.bRunCallback) {
          window.location.reload();
        } else {
          App.broadcastEvent('OAuthAccountChange::after');
          this.updateSavedState();
          Settings.updateScopes(this.connected(), this.scopes());
        }
      }
    }, this), 1000);
};

/**
 * Checks if disconnect is allowed and disconnects in that case.
 */
CFacebookSettingsFormView.prototype.checkAndDisconnect = function () {
  var oParams = {
      'Service': 'facebook',
      'AllowDisconnect': true
    },
    oAuthGlobalScope = _.find(Settings.getScopesCopy(), function (oScope) {
      return oScope.Name === 'auth';
    }),
    bGlobalAuthOn = !!oAuthGlobalScope && !!oAuthGlobalScope.Value();
  App.broadcastEvent('OAuthAccountChange::before', oParams);
  if (oParams.AllowDisconnect && (!bGlobalAuthOn || App.isAccountDeletingAvailable())) {
    this.disconnect();
  }
};

/**
 * Disconnects user from facebook account.
 */
CFacebookSettingsFormView.prototype.disconnect = function () {
  Ajax.send(Settings.ServerModuleName, 'DeleteAccount', null, function (oResponse) {
    if (oResponse.Result) {
      this.connected(false);
      _.each(this.scopes(), function (oScope) {
        oScope.Value(false);
      });
      App.broadcastEvent('OAuthAccountChange::after');
      this.updateSavedState();
      Settings.updateScopes(this.connected(), this.scopes());
    } else {
      Api.showErrorByCode(oResponse, '', true);
    }
  }, this);
};
module.exports = new CFacebookSettingsFormView();

/***/ }),

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



module.exports = function (oAppData) {
  var _ = __webpack_require__(/*! underscore */ "C3HO"),
    TextUtils = __webpack_require__(/*! modules/CoreWebclient/js/utils/Text.js */ "LKDt"),
    App = __webpack_require__(/*! modules/CoreWebclient/js/App.js */ "yU9o"),
    Settings = __webpack_require__(/*! modules/Facebook/js/Settings.js */ "7VnC");
  Settings.init(oAppData);
  if (App.isUserNormalOrTenant() && Settings.EnableModule && _.isArray(Settings.Scopes) && Settings.Scopes.length > 0) {
    return {
      start: function start(ModulesManager) {
        ModulesManager.run('SettingsWebclient', 'registerSettingsTab', [function () {
          return __webpack_require__(/*! modules/Facebook/js/views/FacebookSettingsFormView.js */ "dtbP");
        }, Settings.HashModuleName, TextUtils.i18n('FACEBOOK/LABEL_SETTINGS_TAB')]);
      }
    };
  }
  return null;
};

/***/ })

}]);