Built motion from commit 48095ee.|0.0.102
[motion.git] / server / api / chat_website / chat_website.controller.js
index b9339a4..493a67e 100644 (file)
@@ -1,269 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var util = require('util');
-var async = require('async');
-var Mustache = require('mustache');
-
-var sequelize = require('../../models').sequelize;
-var ChatWebsite = require('../../models').ChatWebsite;
-var ChatApplication = require('../../models').ChatApplication;
-var snippet = require('../../components/xchatty').snippet;
-
-// Get list of chat_websites
-exports.index = function (req, res, next) {
-
-  var attributes = ['name', 'address', 'description', 'remote'];
-  var per_page = req.query.per_page ? parseInt(req.query.per_page, 10) : 100;
-  var page = req.query.page ? parseInt(req.query.page, 10) : 0;
-
-  var query = {
-    where: {},
-    limit: per_page,
-    offset: page * per_page
-  };
-
-  _.forIn(req.query, function (value, key) {
-    switch (key) {
-    case 'per_page':
-    case 'page':
-      break;
-    case 'sort_by':
-      query.order = util.format('%s %s', req.query.sort_by, req.query.sort_order || 'ASC') || null;
-      break;
-    case 'sort_order':
-      break;
-    case '$':
-      query.where.$or = [];
-      attributes.forEach(function (attribute) {
-        var tmp = {};
-        tmp[attribute] = {
-          $like: '%' + value + '%'
-        };
-
-        query.where.$or.push(tmp);
-      });
-      break;
-    default:
-      query.where[key] = {
-        $like: {}
-      };
-      query.where[key].$like = '%' + value + '%';
-    }
-  });
-
-  ChatWebsite
-    .findAndCountAll(query)
-    .then(function (result) {
-
-      var total_pages = Math.ceil(result.count / per_page);
-      var next_page = total_pages > (query.offset + 1) ? util.format('%s://%s%s?page=%d', req.protocol, req.headers.host, req.baseUrl, page + 1) : null;
-      var previous_page = page > 0 ? util.format('%s://%s%s?page=%d', req.protocol, req.headers.host, req.baseUrl, page - 1) : null;
-
-      res.status(200).send({
-        count: result.count,
-        rows: result.rows,
-        next_page: next_page,
-        previous_page: previous_page,
-        total_pages: total_pages
-      });
-
-    })
-    .catch(function (err) {
-      res.status(500).send({
-        error: 'Something blew up!'
-      });
-    });
-};
-
-// Get a single chat_website
-exports.show = function (req, res) {
-  ChatWebsite
-    .findById(req.params.id)
-    .then(function (chat_website) {
-      if (!chat_website) {
-        return res.sendStatus(404);
-      }
-      return res.send(chat_website);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a snippet for chat_website
-exports.getSnippetCode = function (req, res) {
-  ChatWebsite
-    .findById(req.params.id)
-    .then(function (chat_website) {
-      var configSnippet = {
-        remote: chat_website.remote,
-        websiteId: req.params.id
-      };
-      var html = Mustache.render(snippet, configSnippet);
-      return res.send(html);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new chat_website in the DB.
-exports.create = function (req, res) {
-  ChatWebsite
-    .create(req.body)
-    .then(function (chat_website) {
-      return res.status(201).send(chat_website);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing chat_website in the DB.
-exports.update = function (req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-
-  return ChatWebsite
-    .findById(req.params.id)
-    .then(function (chat_website) {
-      if (!chat_website) {
-        return res.sendStatus(404);
-      }
-
-      return chat_website
-        .update(req.body)
-        .then(function (chat_website) {
-          return res.status(200).send(chat_website);
-        })
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a chat_website from the DB.
-exports.destroy = function (req, res) {
-  ChatWebsite
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function (chat_website) {
-      if (!chat_website) {
-        return res.sendStatus(404);
-      }
-      chat_website.destroy()
-        .then(function () {
-          return res.sendStatus(204);
-        })
-        .catch(function (err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Sort Mail Applications
-exports.sortApplications = function (req, res, next) {
-
-  ChatApplication
-    .findAll({
-      where: {
-        id: req.body.applications
-      }
-    })
-    .then(function (chatApplications) {
-      var tmpChatApplications = chatApplications;
-
-      async.waterfall([
-        function (callback) {
-          ChatApplication
-            .destroy({
-              where: {
-                id: req.body.applications
-              }
-            }).then(function () {
-              callback();
-            })
-            .catch(function (err) {
-              callback(err);
-            });
-        },
-        function (callback) {
-          var sortedApplications = [];
-          for (var i = 0; i < req.body.applications.length; i++) {
-            var tmpChatApplication = _.find(tmpChatApplications, {
-              'id': req.body.applications[i]
-            });
-            if (tmpChatApplication) {
-              tmpChatApplication.priority = i + 1;
-              sortedApplications.push(tmpChatApplication.dataValues);
-            }
-          }
-
-          ChatApplication
-            .bulkCreate(sortedApplications)
-            .then(function () {
-              callback();
-            })
-            .catch(function (err) {
-              callback(err);
-            });
-        },
-        function (callback) {
-          ChatApplication
-            .findAll({
-              where: {
-                id: req.body.applications
-              },
-              order: 'priority',
-              include: [{
-                all: true
-              }]
-            })
-            .then(function (chatApplications) {
-              callback(null, chatApplications);
-            })
-            .catch(function (err) {
-              callback(err);
-            });
-        }
-      ], function (err, result) {
-        if (err) {
-          return handleError(res, err);
-        } else {
-          return res.status(201).send(result);
-        }
-      });
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a agent from the DB.
-exports.bulkDestroy = function (req, res) {
-  ChatWebsite
-    .destroy({
-      where: {
-        id: req.query.id
-      },
-      individualHooks: true
-    })
-    .then(function () {
-      return res.sendStatus(204);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0xf497=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x75\x74\x69\x6C","\x61\x73\x79\x6E\x63","\x6D\x75\x73\x74\x61\x63\x68\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x73\x65\x71\x75\x65\x6C\x69\x7A\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x43\x68\x61\x74\x57\x65\x62\x73\x69\x74\x65","\x43\x68\x61\x74\x51\x75\x65\x75\x65","\x55\x73\x65\x72","\x43\x68\x61\x74\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x43\x68\x61\x74\x57\x65\x62\x73\x69\x74\x65\x73\x46\x69\x65\x6C\x64","\x43\x68\x61\x74\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E","\x43\x68\x61\x74\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x73\x6E\x69\x70\x70\x65\x74","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6D\x70\x6F\x6E\x65\x6E\x74\x73\x2F\x78\x63\x68\x61\x74\x74\x79","\x69\x6E\x64\x65\x78","\x63\x61\x74\x63\x68","\x73\x65\x6E\x64","\x73\x74\x61\x74\x75\x73","\x74\x68\x65\x6E","\x71\x75\x65\x72\x79","\x67\x65\x74\x51\x75\x65\x72\x79","\x66\x69\x6E\x64\x41\x6E\x64\x43\x6F\x75\x6E\x74\x41\x6C\x6C","\x73\x68\x6F\x77","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x69\x64","\x70\x61\x72\x61\x6D\x73","\x66\x69\x6E\x64\x42\x79\x49\x64","\x67\x65\x74\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E\x73","\x6C\x65\x6E\x67\x74\x68","\x67\x65\x74\x43\x68\x61\x74\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E\x73","\x63\x72\x65\x61\x74\x65\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x43\x68\x61\x74\x57\x65\x62\x73\x69\x74\x65\x49\x64","\x62\x6F\x64\x79","\x63\x72\x65\x61\x74\x65","\x75\x70\x64\x61\x74\x65\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x69\x73\x70\x49\x64","\x64\x65\x73\x74\x72\x6F\x79\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E","\x64\x65\x73\x74\x72\x6F\x79","\x73\x68\x6F\x77\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x6C\x6F\x67","\x6E\x61\x6D\x65","\x67\x65\x74\x43\x68\x61\x74\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x73\x68\x6F\x77\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E\x73","\x67\x65\x74\x43\x68\x61\x74\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E\x73","\x67\x65\x74\x53\x6E\x69\x70\x70\x65\x74\x43\x6F\x64\x65","\x72\x65\x6D\x6F\x74\x65","\x72\x65\x6E\x64\x65\x72","\x75\x70\x64\x61\x74\x65","\x75\x70\x64\x61\x74\x65\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x63\x72\x65\x61\x74\x65\x64\x41\x74","\x75\x70\x64\x61\x74\x65\x64\x41\x74","\x70\x72\x69\x6F\x72\x69\x74\x79","\x66\x6F\x72\x45\x61\x63\x68","\x62\x75\x6C\x6B\x43\x72\x65\x61\x74\x65","\x74\x72\x61\x6E\x73\x61\x63\x74\x69\x6F\x6E","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79","\x77\x65\x62\x73\x69\x74\x65\x73","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x69\x64\x73","\x64\x65\x73\x74\x72\x6F\x79\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x61\x70\x70\x49\x64","\x67\x65\x74\x46\x6F\x72\x6D\x73","\x6A\x73\x6F\x6E","\x66\x69\x6E\x64\x41\x6C\x6C","\x74\x79\x70\x65","\x73\x63\x6F\x70\x65","\x75\x70\x64\x61\x74\x65\x46\x6F\x72\x6D\x73","\x6F\x6E\x6C\x69\x6E\x65","\x4F\x6E\x6C\x69\x6E\x65\x49\x64","\x6F\x66\x66\x6C\x69\x6E\x65","\x4F\x66\x66\x6C\x69\x6E\x65\x49\x64","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E\x73","\x64\x65\x73\x74\x72\x6F\x79\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E","\x70\x61\x63\x74\x69\x6F\x6E\x49\x64","\x63\x72\x65\x61\x74\x65\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E","\x75\x70\x64\x61\x74\x65\x50\x72\x6F\x61\x63\x74\x69\x76\x65\x41\x63\x74\x69\x6F\x6E"];_0xf497[0];var _=require(_0xf497[1]);var util=require(_0xf497[2]);var async=require(_0xf497[3]);var Mustache=require(_0xf497[4]);var Util=require(_0xf497[5]);var sequelize=require(_0xf497[7])[_0xf497[6]];var ChatWebsite=require(_0xf497[7])[_0xf497[8]];var ChatQueue=require(_0xf497[7])[_0xf497[9]];var User=require(_0xf497[7])[_0xf497[10]];var ChatApplication=require(_0xf497[7])[_0xf497[11]];var ChatWebsitesField=require(_0xf497[7])[_0xf497[12]];var ChatProactiveAction=require(_0xf497[7])[_0xf497[13]];var ChatDisposition=require(_0xf497[7])[_0xf497[14]];var snippet=require(_0xf497[16])[_0xf497[15]];exports[_0xf497[17]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatWebsite[_0xf497[24]](Util[_0xf497[23]](_0xb070xf[_0xf497[22]]))[_0xf497[21]](function(_0xb070x13){_0xb070x10[_0xf497[20]](200)[_0xf497[19]](_0xb070x13)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[25]]=function(_0xb070xf,_0xb070x10){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x14){if(!_0xb070x14){return _0xb070x10[_0xf497[26]](404)};return _0xb070x10[_0xf497[19]](_0xb070x14)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[30]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x14){if(!_0xb070x14){return _0xb070x10[_0xf497[26]](404)};return _0xb070x14[_0xf497[32]]()})[_0xf497[21]](function(_0xb070x15){return _0xb070x10[_0xf497[20]](200)[_0xf497[19]]({rows:_0xb070x15,count:_0xb070x15[_0xf497[31]]})})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[33]]=function(_0xb070xf,_0xb070x10,_0xb070x11){_0xb070xf[_0xf497[35]][_0xf497[34]]=_0xb070xf[_0xf497[28]][_0xf497[27]];return ChatDisposition[_0xf497[36]](_0xb070xf[_0xf497[35]])[_0xf497[21]](function(_0xb070x16){return _0xb070x10[_0xf497[20]](201)[_0xf497[19]](_0xb070x16)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[37]]=function(_0xb070xf,_0xb070x10){if(_0xb070xf[_0xf497[35]][_0xf497[27]]){delete _0xb070xf[_0xf497[35]][_0xf497[27]]};return ChatDisposition[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[40]])[_0xf497[21]](function(_0xb070x16){if(!_0xb070x16){return _0xb070x10[_0xf497[26]](404)};var _0xb070x17=_[_0xf497[38]](_0xb070x16,_0xb070xf[_0xf497[35]]);return _0xb070x17[_0xf497[39]]()})[_0xf497[21]](function(_0xb070x14){return _0xb070x10[_0xf497[20]](200)[_0xf497[19]](_0xb070x14)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[41]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatDisposition[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[40]])[_0xf497[21]](function(_0xb070x18){if(!_0xb070x18){return _0xb070x10[_0xf497[26]](404)};return _0xb070x18[_0xf497[42]]()})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[43]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x1a){if(!_0xb070x1a){return _0xb070x10[_0xf497[26]](404)};return _0xb070x1a[_0xf497[46]](_[_0xf497[38]](Util[_0xf497[23]](_0xb070xf[_0xf497[22]]),{include:[{model:ChatQueue,attributes:[_0xf497[27],_0xf497[45]]},{model:User,attributes:[_0xf497[27],_0xf497[45]]}]}))})[_0xf497[21]](function(_0xb070x19){return _0xb070x10[_0xf497[19]]({count:_0xb070x19[_0xf497[31]],rows:_0xb070x19})})[_0xf497[18]](function(_0xb070x12){console[_0xf497[44]](_0xb070x12);return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[47]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x1a){if(!_0xb070x1a){return _0xb070x10[_0xf497[26]](404)};return _0xb070x1a[_0xf497[48]](Util[_0xf497[23]](_0xb070xf[_0xf497[22]]))})[_0xf497[21]](function(_0xb070x1b){return _0xb070x10[_0xf497[19]]({count:_0xb070x1b[_0xf497[31]],rows:_0xb070x1b})})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[49]]=function(_0xb070xf,_0xb070x10){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x14){var _0xb070x1c={remote:_0xb070x14[_0xf497[50]],websiteId:_0xb070xf[_0xf497[28]][_0xf497[27]]};var _0xb070x1d=Mustache[_0xf497[51]](snippet,_0xb070x1c);return _0xb070x10[_0xf497[20]](200)[_0xf497[19]]({html:_0xb070x1d})})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[36]]=function(_0xb070xf,_0xb070x10){return ChatWebsite[_0xf497[36]](_0xb070xf[_0xf497[35]])[_0xf497[21]](function(_0xb070x14){return _0xb070x10[_0xf497[20]](201)[_0xf497[19]](_0xb070x14)})[_0xf497[18]](function(_0xb070x12){console[_0xf497[44]](_0xb070x12);return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[52]]=function(_0xb070xf,_0xb070x10){if(_0xb070xf[_0xf497[35]][_0xf497[27]]){delete _0xb070xf[_0xf497[35]][_0xf497[27]]};return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x14){if(!_0xb070x14){return _0xb070x10[_0xf497[26]](404)};return _0xb070x14[_0xf497[52]](_0xb070xf[_0xf497[35]])})[_0xf497[21]](function(_0xb070x14){return _0xb070x10[_0xf497[20]](200)[_0xf497[19]](_0xb070x14)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[53]]=function(_0xb070xf,_0xb070x10){var _0xb070x1e=0;var _0xb070x1f=_0xb070xf[_0xf497[35]];_0xb070x1f[_0xf497[57]](function(_0xb070x20){delete _0xb070x20[_0xf497[27]];delete _0xb070x20[_0xf497[54]];delete _0xb070x20[_0xf497[55]];_0xb070x20[_0xf497[56]]= ++_0xb070x1e});return sequelize[_0xf497[59]](function(_0xb070x21){return ChatApplication[_0xf497[42]]({where:{ChatWebsiteId:_0xb070xf[_0xf497[28]][_0xf497[27]]},individualHooks:true,transaction:_0xb070x21})[_0xf497[21]](function(){return ChatApplication[_0xf497[58]](_0xb070x1f,{individualHooks:true,transaction:_0xb070x21})})})[_0xf497[21]](function(_0xb070x19){return _0xb070x10[_0xf497[20]](200)[_0xf497[19]]({count:_0xb070x19[_0xf497[31]],rows:_0xb070x19})})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[42]]=function(_0xb070xf,_0xb070x10){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x14){if(!_0xb070x14){return _0xb070x10[_0xf497[26]](404)};return _0xb070x14[_0xf497[42]]()})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[60]]=function(_0xb070xf,_0xb070x10){return ChatWebsite[_0xf497[42]]({where:{id:_0xb070xf[_0xf497[22]][_0xf497[61]]},individualHooks:true})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[62]]=function(_0xb070xf,_0xb070x10){return ChatApplication[_0xf497[42]]({where:{id:_0xb070xf[_0xf497[22]][_0xf497[63]]},individualHooks:true})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[64]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatApplication[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[65]])[_0xf497[21]](function(_0xb070x22){if(!_0xb070x22){return _0xb070x10[_0xf497[26]](404)};return _0xb070x22[_0xf497[42]]()})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[66]]=function(_0xb070xf,_0xb070x10){return ChatWebsitesField[_0xf497[70]]({method:[_0xb070xf[_0xf497[28]][_0xf497[69]],_0xb070xf[_0xf497[28]][_0xf497[27]]]})[_0xf497[68]]()[_0xf497[21]](function(_0xb070x23){return _0xb070x10[_0xf497[20]](200)[_0xf497[67]](_0xb070x23)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[71]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatWebsitesField[_0xf497[42]]({where:_0xb070xf[_0xf497[28]][_0xf497[69]]===_0xf497[72]?{OnlineId:_0xb070xf[_0xf497[28]][_0xf497[27]]}:{OfflineId:_0xb070xf[_0xf497[28]][_0xf497[27]]}})[_0xf497[21]](function(){_[_0xf497[57]](_0xb070xf[_0xf497[35]],function(_0xb070x25){if(_0xb070xf[_0xf497[28]][_0xf497[69]]===_0xf497[72]){_0xb070x25[_0xf497[73]]=_0xb070xf[_0xf497[28]][_0xf497[27]]}else {if(_0xb070xf[_0xf497[28]][_0xf497[69]]===_0xf497[74]){_0xb070x25[_0xf497[75]]=_0xb070xf[_0xf497[28]][_0xf497[27]]}}});return ChatWebsitesField[_0xf497[58]](_0xb070xf[_0xf497[35]])})[_0xf497[21]](function(_0xb070x24){_0xb070x10[_0xf497[20]](201)[_0xf497[67]](_0xb070x24)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[76]]=function(_0xb070xf,_0xb070x10){return ChatProactiveAction[_0xf497[42]]({where:{id:_0xb070xf[_0xf497[22]][_0xf497[63]]},individualHooks:true})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[77]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatProactiveAction[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[78]])[_0xf497[21]](function(_0xb070x26){if(!_0xb070x26){return _0xb070x10[_0xf497[26]](404)};return _0xb070x26[_0xf497[42]]()})[_0xf497[21]](function(){return _0xb070x10[_0xf497[26]](204)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[79]]=function(_0xb070xf,_0xb070x10,_0xb070x11){return ChatWebsite[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[27]])[_0xf497[21]](function(_0xb070x1a){if(!_0xb070x1a){return _0xb070x10[_0xf497[26]](404)};_0xb070xf[_0xf497[35]][_0xf497[34]]=_0xb070x1a[_0xf497[27]];return ChatProactiveAction[_0xf497[36]](_0xb070xf[_0xf497[35]])})[_0xf497[21]](function(_0xb070x26){return _0xb070x10[_0xf497[20]](201)[_0xf497[19]](_0xb070x26)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};exports[_0xf497[80]]=function(_0xb070xf,_0xb070x10){if(_0xb070xf[_0xf497[35]][_0xf497[27]]){delete _0xb070xf[_0xf497[35]][_0xf497[27]]};return ChatProactiveAction[_0xf497[29]](_0xb070xf[_0xf497[28]][_0xf497[78]])[_0xf497[21]](function(_0xb070x26){if(!_0xb070x26){return _0xb070x10[_0xf497[26]](404)};return _0xb070x26[_0xf497[52]](_0xb070xf[_0xf497[35]])})[_0xf497[21]](function(_0xb070x26){console[_0xf497[44]](_0xb070x26);return _0xb070x10[_0xf497[20]](200)[_0xf497[19]](_0xb070x26)})[_0xf497[18]](function(_0xb070x12){return handleError(_0xb070x10,_0xb070x12)})};function handleError(_0xb070x10,_0xb070x12){return _0xb070x10[_0xf497[20]](500)[_0xf497[19]](_0xb070x12)}
\ No newline at end of file