Built motion from commit 9ab4571.|0.0.110
[motion.git] / server / api / chat_website / chat_website.controller.js
index d5e900a..54be395 100644 (file)
@@ -1,281 +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;
-  }
-  ChatWebsite
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(chat_website) {
-      if (!chat_website) {
-        return res.sendStatus(404);
-      }
-      chat_website.updateAttributes(req.body)
-        .then(function(chat_website) {
-          return res.status(200).send(chat_website);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-      // var updated = _.merge(chat_website, req.body);
-      // updated.save()
-      //   .then(function() {
-      //     return res.status(200).send(chat_website);
-      //   })
-      //   .catch(function(err) {
-      //     return handleError(res, err);
-      //   });
-    })
-    .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 _0xf130=["\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"];_0xf130[0];var _=require(_0xf130[1]);var util=require(_0xf130[2]);var async=require(_0xf130[3]);var Mustache=require(_0xf130[4]);var Util=require(_0xf130[5]);var sequelize=require(_0xf130[7])[_0xf130[6]];var ChatWebsite=require(_0xf130[7])[_0xf130[8]];var ChatQueue=require(_0xf130[7])[_0xf130[9]];var User=require(_0xf130[7])[_0xf130[10]];var ChatApplication=require(_0xf130[7])[_0xf130[11]];var ChatWebsitesField=require(_0xf130[7])[_0xf130[12]];var ChatProactiveAction=require(_0xf130[7])[_0xf130[13]];var ChatDisposition=require(_0xf130[7])[_0xf130[14]];var snippet=require(_0xf130[16])[_0xf130[15]];exports[_0xf130[17]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatWebsite[_0xf130[24]](Util[_0xf130[23]](_0x2ef9xf[_0xf130[22]]))[_0xf130[21]](function(_0x2ef9x13){_0x2ef9x10[_0xf130[20]](200)[_0xf130[19]](_0x2ef9x13)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[25]]=function(_0x2ef9xf,_0x2ef9x10){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x14){if(!_0x2ef9x14){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x10[_0xf130[19]](_0x2ef9x14)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[30]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x14){if(!_0x2ef9x14){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x14[_0xf130[32]]()})[_0xf130[21]](function(_0x2ef9x15){return _0x2ef9x10[_0xf130[20]](200)[_0xf130[19]]({rows:_0x2ef9x15,count:_0x2ef9x15[_0xf130[31]]})})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[33]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){_0x2ef9xf[_0xf130[35]][_0xf130[34]]=_0x2ef9xf[_0xf130[28]][_0xf130[27]];return ChatDisposition[_0xf130[36]](_0x2ef9xf[_0xf130[35]])[_0xf130[21]](function(_0x2ef9x16){return _0x2ef9x10[_0xf130[20]](201)[_0xf130[19]](_0x2ef9x16)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[37]]=function(_0x2ef9xf,_0x2ef9x10){if(_0x2ef9xf[_0xf130[35]][_0xf130[27]]){delete _0x2ef9xf[_0xf130[35]][_0xf130[27]]};return ChatDisposition[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[40]])[_0xf130[21]](function(_0x2ef9x16){if(!_0x2ef9x16){return _0x2ef9x10[_0xf130[26]](404)};var _0x2ef9x17=_[_0xf130[38]](_0x2ef9x16,_0x2ef9xf[_0xf130[35]]);return _0x2ef9x17[_0xf130[39]]()})[_0xf130[21]](function(_0x2ef9x14){return _0x2ef9x10[_0xf130[20]](200)[_0xf130[19]](_0x2ef9x14)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[41]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatDisposition[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[40]])[_0xf130[21]](function(_0x2ef9x18){if(!_0x2ef9x18){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x18[_0xf130[42]]()})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[43]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x1a){if(!_0x2ef9x1a){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x1a[_0xf130[46]](_[_0xf130[38]](Util[_0xf130[23]](_0x2ef9xf[_0xf130[22]]),{include:[{model:ChatQueue,attributes:[_0xf130[27],_0xf130[45]]},{model:User,attributes:[_0xf130[27],_0xf130[45]]}]}))})[_0xf130[21]](function(_0x2ef9x19){return _0x2ef9x10[_0xf130[19]]({count:_0x2ef9x19[_0xf130[31]],rows:_0x2ef9x19})})[_0xf130[18]](function(_0x2ef9x12){console[_0xf130[44]](_0x2ef9x12);return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[47]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x1a){if(!_0x2ef9x1a){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x1a[_0xf130[48]](Util[_0xf130[23]](_0x2ef9xf[_0xf130[22]]))})[_0xf130[21]](function(_0x2ef9x1b){return _0x2ef9x10[_0xf130[19]]({count:_0x2ef9x1b[_0xf130[31]],rows:_0x2ef9x1b})})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[49]]=function(_0x2ef9xf,_0x2ef9x10){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x14){var _0x2ef9x1c={remote:_0x2ef9x14[_0xf130[50]],websiteId:_0x2ef9xf[_0xf130[28]][_0xf130[27]]};var _0x2ef9x1d=Mustache[_0xf130[51]](snippet,_0x2ef9x1c);return _0x2ef9x10[_0xf130[20]](200)[_0xf130[19]]({html:_0x2ef9x1d})})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[36]]=function(_0x2ef9xf,_0x2ef9x10){return ChatWebsite[_0xf130[36]](_0x2ef9xf[_0xf130[35]])[_0xf130[21]](function(_0x2ef9x14){return _0x2ef9x10[_0xf130[20]](201)[_0xf130[19]](_0x2ef9x14)})[_0xf130[18]](function(_0x2ef9x12){console[_0xf130[44]](_0x2ef9x12);return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[52]]=function(_0x2ef9xf,_0x2ef9x10){if(_0x2ef9xf[_0xf130[35]][_0xf130[27]]){delete _0x2ef9xf[_0xf130[35]][_0xf130[27]]};return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x14){if(!_0x2ef9x14){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x14[_0xf130[52]](_0x2ef9xf[_0xf130[35]])})[_0xf130[21]](function(_0x2ef9x14){return _0x2ef9x10[_0xf130[20]](200)[_0xf130[19]](_0x2ef9x14)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[53]]=function(_0x2ef9xf,_0x2ef9x10){var _0x2ef9x1e=0;var _0x2ef9x1f=_0x2ef9xf[_0xf130[35]];_0x2ef9x1f[_0xf130[57]](function(_0x2ef9x20){delete _0x2ef9x20[_0xf130[27]];delete _0x2ef9x20[_0xf130[54]];delete _0x2ef9x20[_0xf130[55]];_0x2ef9x20[_0xf130[56]]= ++_0x2ef9x1e});return sequelize[_0xf130[59]](function(_0x2ef9x21){return ChatApplication[_0xf130[42]]({where:{ChatWebsiteId:_0x2ef9xf[_0xf130[28]][_0xf130[27]]},individualHooks:true,transaction:_0x2ef9x21})[_0xf130[21]](function(){return ChatApplication[_0xf130[58]](_0x2ef9x1f,{individualHooks:true,transaction:_0x2ef9x21})})})[_0xf130[21]](function(_0x2ef9x19){return _0x2ef9x10[_0xf130[20]](200)[_0xf130[19]]({count:_0x2ef9x19[_0xf130[31]],rows:_0x2ef9x19})})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[42]]=function(_0x2ef9xf,_0x2ef9x10){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x14){if(!_0x2ef9x14){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x14[_0xf130[42]]()})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[60]]=function(_0x2ef9xf,_0x2ef9x10){return ChatWebsite[_0xf130[42]]({where:{id:_0x2ef9xf[_0xf130[22]][_0xf130[61]]},individualHooks:true})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[62]]=function(_0x2ef9xf,_0x2ef9x10){return ChatApplication[_0xf130[42]]({where:{id:_0x2ef9xf[_0xf130[22]][_0xf130[63]]},individualHooks:true})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[64]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatApplication[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[65]])[_0xf130[21]](function(_0x2ef9x22){if(!_0x2ef9x22){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x22[_0xf130[42]]()})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[66]]=function(_0x2ef9xf,_0x2ef9x10){return ChatWebsitesField[_0xf130[70]]({method:[_0x2ef9xf[_0xf130[28]][_0xf130[69]],_0x2ef9xf[_0xf130[28]][_0xf130[27]]]})[_0xf130[68]]()[_0xf130[21]](function(_0x2ef9x23){return _0x2ef9x10[_0xf130[20]](200)[_0xf130[67]](_0x2ef9x23)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[71]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatWebsitesField[_0xf130[42]]({where:_0x2ef9xf[_0xf130[28]][_0xf130[69]]===_0xf130[72]?{OnlineId:_0x2ef9xf[_0xf130[28]][_0xf130[27]]}:{OfflineId:_0x2ef9xf[_0xf130[28]][_0xf130[27]]}})[_0xf130[21]](function(){_[_0xf130[57]](_0x2ef9xf[_0xf130[35]],function(_0x2ef9x25){if(_0x2ef9xf[_0xf130[28]][_0xf130[69]]===_0xf130[72]){_0x2ef9x25[_0xf130[73]]=_0x2ef9xf[_0xf130[28]][_0xf130[27]]}else {if(_0x2ef9xf[_0xf130[28]][_0xf130[69]]===_0xf130[74]){_0x2ef9x25[_0xf130[75]]=_0x2ef9xf[_0xf130[28]][_0xf130[27]]}}});return ChatWebsitesField[_0xf130[58]](_0x2ef9xf[_0xf130[35]])})[_0xf130[21]](function(_0x2ef9x24){_0x2ef9x10[_0xf130[20]](201)[_0xf130[67]](_0x2ef9x24)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[76]]=function(_0x2ef9xf,_0x2ef9x10){return ChatProactiveAction[_0xf130[42]]({where:{id:_0x2ef9xf[_0xf130[22]][_0xf130[63]]},individualHooks:true})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[77]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatProactiveAction[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[78]])[_0xf130[21]](function(_0x2ef9x26){if(!_0x2ef9x26){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x26[_0xf130[42]]()})[_0xf130[21]](function(){return _0x2ef9x10[_0xf130[26]](204)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[79]]=function(_0x2ef9xf,_0x2ef9x10,_0x2ef9x11){return ChatWebsite[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[27]])[_0xf130[21]](function(_0x2ef9x1a){if(!_0x2ef9x1a){return _0x2ef9x10[_0xf130[26]](404)};_0x2ef9xf[_0xf130[35]][_0xf130[34]]=_0x2ef9x1a[_0xf130[27]];return ChatProactiveAction[_0xf130[36]](_0x2ef9xf[_0xf130[35]])})[_0xf130[21]](function(_0x2ef9x26){return _0x2ef9x10[_0xf130[20]](201)[_0xf130[19]](_0x2ef9x26)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};exports[_0xf130[80]]=function(_0x2ef9xf,_0x2ef9x10){if(_0x2ef9xf[_0xf130[35]][_0xf130[27]]){delete _0x2ef9xf[_0xf130[35]][_0xf130[27]]};return ChatProactiveAction[_0xf130[29]](_0x2ef9xf[_0xf130[28]][_0xf130[78]])[_0xf130[21]](function(_0x2ef9x26){if(!_0x2ef9x26){return _0x2ef9x10[_0xf130[26]](404)};return _0x2ef9x26[_0xf130[52]](_0x2ef9xf[_0xf130[35]])})[_0xf130[21]](function(_0x2ef9x26){console[_0xf130[44]](_0x2ef9x26);return _0x2ef9x10[_0xf130[20]](200)[_0xf130[19]](_0x2ef9x26)})[_0xf130[18]](function(_0x2ef9x12){return handleError(_0x2ef9x10,_0x2ef9x12)})};function handleError(_0x2ef9x10,_0x2ef9x12){return _0x2ef9x10[_0xf130[20]](500)[_0xf130[19]](_0x2ef9x12)}
\ No newline at end of file