Built motion from commit 79c4046.|0.0.100
[motion.git] / server / api / chat_room / chat_room.controller.js
index 2b76e17..cea863f 100644 (file)
@@ -1,462 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var md5 = require('md5');
-var moment = require('moment');
-
-var User = require('../../models').User;
-var ChatRoom = require('../../models').ChatRoom;
-var ChatMessage = require('../../models').ChatMessage;
-var ChatVisitor = require('../../models').ChatVisitor;
-var UserHasChatRoom = require('../../models').UserHasChatRoom;
-
-
-// Get list of chat_rooms
-exports.index = function (req, res) {
-  return ChatRoom
-    .findAll({
-      include: [{
-        model: User,
-        attributes: ['id', 'name', 'fullname', 'email', 'role', 'internal']
-      }, {
-        model: ChatMessage
-      }, {
-        model: ChatVisitor
-      }]
-    })
-    .then(function (chat_rooms) {
-      return res.status(200).send(chat_rooms);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get list of my chat_rooms
-exports.me = function (req, res) {
-  return User
-    .findById(req.user.id)
-    .then(function (user) {
-      return user
-        .getChatRooms({
-          include: [{
-            model: ChatVisitor,
-            attributes: ['id', 'fullname', 'email']
-          }, {
-            model: User,
-            attributes: ['id', 'name', 'fullname', 'email', 'role', 'internal']
-          }]
-        });
-    })
-    .then(function (chatRooms) {
-      if (!chatRooms) {
-        return res.sendStatus(404);
-      }
-      return res.send(chatRooms);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single chatRoom
-exports.show = function (req, res) {
-  return ChatRoom
-    .findById(req.params.id, {
-      include: [{
-        model: ChatMessage,
-        include: [{
-          model: ChatVisitor,
-          attributes: ['id', 'email', 'fullname']
-        }, {
-          model: User,
-          attributes: ['id', 'email', 'name', 'fullname']
-        }]
-      }, {
-        model: User,
-        attributes: ['id', 'email', 'name', 'fullname']
-      }]
-    })
-    .then(function (chatRoom) {
-      if (!chatRoom) {
-        return res.sendStatus(404);
-      }
-      return res.send(chatRoom);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single chatRoom by users
-exports.getRoomByUsers = function (req, res, next) {
-
-  var _chatRoom;
-
-  return ChatRoom
-    .findOrCreate({
-      where: {
-        token: md5(JSON.stringify(req.query.users.sort())).toString('base64')
-      },
-      defaults: {
-        type: 'internal',
-        token: md5(JSON.stringify(req.query.users.sort())).toString('base64'),
-        status: 'open'
-      },
-      include: [{
-        model: ChatMessage,
-        include: [{
-          model: ChatVisitor,
-          attributes: ['id', 'email', 'fullname']
-        }, {
-          model: User,
-          attributes: ['id', 'name', 'fullname', 'email', 'role', 'internal']
-        }]
-      }, {
-        model: User,
-        attributes: ['id', 'name', 'fullname', 'email', 'role', 'internal']
-      }]
-    })
-    .spread(function (chatRoom, created) {
-      _chatRoom = chatRoom;
-      // _chatRoom.dataValues.ChatMessages = [];
-      if (created) {
-        return _chatRoom
-          .setUsers(req.query.users);
-      } else {
-        return;
-      }
-    })
-    .then(function () {
-      return _chatRoom
-        .getUsers();
-    })
-    .then(function (users) {
-      return res.status(200).send(_.merge(_chatRoom.dataValues, {
-        Users: users
-      }));
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single chatRoom
-exports.getRoomByType = function (req, res) {
-  User
-    .findById(req.user.id)
-    .then(function (user) {
-      user
-        .getChatRooms({
-          where: {
-            type: req.params.type
-          },
-          include: [{
-            model: ChatVisitor,
-            attributes: ['id', 'fullname', 'email']
-          }]
-        })
-        .then(function (chatRooms) {
-          if (!chatRooms) {
-            return res.sendStatus(404);
-          }
-          return res.send(chatRooms);
-        })
-        .catch(function (err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single chatRoom
-exports.getRoomGroups = function (req, res) {
-  User
-    .findById(req.user.id)
-    .then(function (user) {
-      user
-        .getChatRooms({
-          include: [{
-            model: ChatVisitor,
-            attributes: ['id', 'fullname', 'email']
-          }, {
-            model: User,
-            attributes: ['id', 'name', 'fullname', 'email', 'role', 'internal']
-          }]
-        })
-        .then(function (chatRooms) {
-          if (!chatRooms) {
-            return res.sendStatus(404);
-          }
-          return res.send(chatRooms);
-        })
-        .catch(function (err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new chatRoom in the DB.
-exports.create = function (req, res) {
-  // if (req.body.to) {
-  //
-  //   var token;
-  //   var participants = {
-  //     users: {
-  //       ids: []
-  //     },
-  //     visitor: {}
-  //   };
-  //
-  //   switch (req.body.type) {
-  //     case 'internal':
-  //
-  //       if (!req.body.to.isArray) {
-  //         req.body.to = [parseInt(req.body.to, 10)];
-  //       }
-  //
-  //       participants.users.ids = req.body.to;
-  //
-  //       if (!_.contains(req.body.to, req.user.id)) {
-  //         participants.users.ids.push(req.user.id);
-  //       }
-  //
-  //       participants.users.ids.sort();
-  //
-  //       token = md5(JSON.stringify(participants)).toString(
-  //         'base64');
-  //
-  //       participants.users.fullnames = [];
-  //
-  //       User
-  //         .findAll({
-  //           where: {
-  //             id: {
-  //               $in: req.body.to
-  //             }
-  //           },
-  //           attributes: ['id', 'fullname']
-  //         })
-  //         .then(function(users) {
-  //
-  //           _.sortBy(users, 'id').forEach(function(item, index) {
-  //             participants.users.fullnames.push(item.fullname);
-  //           });
-  //
-  //           ChatRoom
-  //             .findOrCreate({
-  //               where: {
-  //                 token: token
-  //               },
-  //               defaults: _.merge({
-  //                 token: token,
-  //                 participants: JSON.stringify(participants)
-  //               }, req.body),
-  //               include: [{
-  //                 model: ChatMessage
-  //               }]
-  //             })
-  //             .spread(function(chatRoom, created) {
-  //
-  //               if (created) {
-  //                 chatRoom
-  //                   .setUsers(participants.users.ids)
-  //                   .then(function() {
-  //                     return res.status(201).send(chatRoom);
-  //                   })
-  //                   .catch(function(err) {
-  //                     return handleError(res, err);
-  //                   });
-  //               } else {
-  //                 return res.status(201).send(chatRoom);
-  //               }
-  //
-  //             })
-  //             .catch(function(err) {
-  //               return handleError(res, err);
-  //             });
-  //         })
-  //         .catch(function(err) {
-  //           return handleError(res, err);
-  //         });
-  //
-  //       break;
-  //     case 'external':
-  //
-  //       participants.visitor.id = req.body.to;
-  //       participants.users.ids.push(req.user.id);
-  //       participants.users.ids.sort();
-  //
-  //       token = md5(JSON.stringify(participants)).toString('base64');
-  //
-  //       participants.users.fullnames = [req.user.fullname];
-  //
-  //       ChatVisitor
-  //         .findById(req.body.to, {
-  //           attributes: ['id', 'fullname', 'email', 'referer']
-  //         })
-  //         .then(function(chatVisitor) {
-  //           participants.visitor.fullname = chatVisitor.fullname;
-  //           participants.visitor.referer = chatVisitor.referer;
-  //           participants.visitor.email = chatVisitor.email;
-  //
-  //           ChatRoom
-  //             .findOrCreate({
-  //               where: {
-  //                 token: token
-  //               },
-  //               defaults: _.merge({
-  //                 token: token,
-  //                 participants: JSON.stringify(participants)
-  //               }, req.body),
-  //               include: [{
-  //                 model: ChatMessage
-  //               }, {
-  //                 model: ChatVisitor
-  //               }, {
-  //                 model: User,
-  //               }]
-  //             })
-  //             .spread(function(chatRoom, created) {
-  //               if (created) {
-  //
-  //                 chatRoom
-  //                   .setUsers(participants.users.ids, {
-  //                     individualHooks: true
-  //                   })
-  //                   .then(function() {
-  //                     chatRoom
-  //                       .setChatVisitor(participants.visitor.id)
-  //                       .then(function() {
-  //                         return res.status(201).send(chatRoom);
-  //                       })
-  //                       .catch(function(err) {
-  //                         return handleError(res, err);
-  //                       });
-  //                   })
-  //                   .catch(function(err) {
-  //                     return handleError(res, err);
-  //                   });
-  //               } else {
-  //                 return res.status(201).send(chatRoom);
-  //               }
-  //
-  //             })
-  //             .catch(function(err) {
-  //               return handleError(res, err);
-  //             });
-  //         })
-  //         .catch(function(err) {
-  //           return handleError(res, err);
-  //         });
-  //
-  //       break;
-  //     default:
-  //   }
-  // } else {
-  //   return handleError(res, new Error('field "to" omitted'));
-  // }
-};
-
-// Updates an existing chatRoom in the DB.
-exports.update = function (req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-
-  ChatRoom
-    .findById(req.params.id)
-    .then(function (chatRoom) {
-      if (!chatRoom) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(chatRoom, req.body);
-      updated
-        .save()
-        .then(function () {
-          return res.status(200).send(chatRoom);
-        })
-        .catch(function (err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing chatRoom in the DB.
-exports.updateUsers = function (req, res) {
-  var _chatRoom;
-
-  if (req.body.id) {
-    delete req.body.id;
-  }
-
-  return ChatRoom
-    .findById(req.params.id)
-    .then(function (chatRoom) {
-      if (!chatRoom || !req.body.users) {
-        return res.sendStatus(404);
-      }
-      return chatRoom;
-    })
-    .then(function (chatRoom) {
-      return chatRoom
-        .update({
-          token: md5(JSON.stringify(req.body.users.sort())).toString('base64')
-        });
-    })
-    .then(function (chatRoom) {
-      _chatRoom = chatRoom;
-      return chatRoom
-        .setUsers(req.body.users.sort(), {
-          individualHooks: true
-        });
-    })
-    .then(function () {
-      return _chatRoom
-        .getUsers();
-    })
-    .then(function (users) {
-      return res.status(200).send(_.merge(_chatRoom.dataValues, {
-        Users: users,
-        ChatMessages: []
-      }));
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a chatRoom from the DB.
-exports.destroy = function (req, res) {
-  ChatRoom
-    .findById(req.params.id)
-    .then(function (chatRoom) {
-      if (!chatRoom) {
-        return res.sendStatus(404);
-      }
-
-      chatRoom
-        .destroy()
-        .then(function () {
-          return res.sendStatus(204);
-        })
-        .catch(function (err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0x8fbe=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x6D\x64\x35","\x6D\x6F\x6D\x65\x6E\x74","\x74\x6F\x2D\x63\x73\x76","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x55\x73\x65\x72","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x43\x68\x61\x74\x52\x6F\x6F\x6D","\x43\x68\x61\x74\x4D\x65\x73\x73\x61\x67\x65","\x43\x68\x61\x74\x57\x65\x62\x73\x69\x74\x65","\x43\x68\x61\x74\x56\x69\x73\x69\x74\x6F\x72","\x55\x73\x65\x72\x48\x61\x73\x43\x68\x61\x74\x52\x6F\x6F\x6D","\x69\x6E\x64\x65\x78","\x6C\x6F\x67","\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","\x69\x64","\x6E\x61\x6D\x65","\x66\x75\x6C\x6C\x6E\x61\x6D\x65","\x65\x6D\x61\x69\x6C","\x72\x6F\x6C\x65","\x69\x6E\x74\x65\x72\x6E\x61\x6C","\x6D\x65\x72\x67\x65","\x66\x69\x6E\x64\x41\x6E\x64\x43\x6F\x75\x6E\x74\x41\x6C\x6C","\x74\x61\x67\x73","\x24\x61\x6E\x64","\x69\x73\x41\x72\x72\x61\x79","\x6C\x65\x6E\x67\x74\x68","\x25","\x3B\x25","\x70\x75\x73\x68","\x67\x65\x74\x41\x67\x65\x6E\x74\x73","\x75\x73\x65\x72","\x67\x65\x74\x41\x67\x65\x6E\x74\x73\x49\x64\x42\x79\x55\x73\x65\x72","\x66\x69\x6E\x64\x42\x79\x49\x64","\x61\x6C\x6C","\x73\x63\x6F\x70\x65","\x67\x65\x74\x47\x72\x6F\x75\x70\x73","\x67\x72\x6F\x75\x70","\x61\x67\x65\x6E\x74","\x6D\x61\x70","\x75\x73\x65\x72\x70\x69\x63","\x66\x69\x6E\x64\x41\x6C\x6C","\x67\x65\x74\x45\x78\x74\x65\x72\x6E\x61\x6C\x73","\x65\x78\x74\x65\x72\x6E\x61\x6C","\x69\x6E\x63\x6C\x75\x64\x65","\x67\x65\x74\x41\x67\x65\x6E\x74","\x70\x61\x72\x61\x6D\x73","\x67\x65\x74\x4F\x6E\x6C\x69\x6E\x65\x52\x6F\x6F\x6D","\x6F\x6E\x6C\x69\x6E\x65","\x6D\x65","\x65\x72\x72\x6F\x72","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x67\x65\x74\x43\x68\x61\x74\x52\x6F\x6F\x6D\x73","\x73\x68\x6F\x77","\x61\x64\x64\x72\x65\x73\x73","\x67\x65\x74\x52\x6F\x6F\x6D\x42\x79\x55\x73\x65\x72\x73","\x64\x61\x74\x61\x56\x61\x6C\x75\x65\x73","\x67\x65\x74\x55\x73\x65\x72\x73","\x75\x73\x65\x72\x73","\x73\x65\x74\x55\x73\x65\x72\x73","\x73\x70\x72\x65\x61\x64","\x62\x61\x73\x65\x36\x34","\x73\x6F\x72\x74","\x73\x74\x72\x69\x6E\x67\x69\x66\x79","\x4F\x50\x45\x4E","\x66\x69\x6E\x64\x4F\x72\x43\x72\x65\x61\x74\x65","\x63\x72\x65\x61\x74\x65\x4D\x65\x73\x73\x61\x67\x65","\x62\x6F\x64\x79","\x74\x79\x70\x65","\x63\x72\x65\x61\x74\x65","\x65\x78\x70\x6F\x72\x74","\x20","\x72\x65\x70\x6C\x61\x63\x65","\x63\x72\x65\x61\x74\x65\x64\x41\x74","\x66\x6F\x72\x45\x61\x63\x68","\x43\x68\x61\x74\x4D\x65\x73\x73\x61\x67\x65\x73","\x74\x65\x78\x74\x2F\x63\x73\x76","\x67\x65\x74\x52\x6F\x6F\x6D\x42\x79\x54\x79\x70\x65","\x67\x65\x74\x52\x6F\x6F\x6D\x47\x72\x6F\x75\x70\x73","\x75\x70\x64\x61\x74\x65","\x75\x70\x64\x61\x74\x65\x55\x73\x65\x72\x73","\x64\x65\x73\x74\x72\x6F\x79"];_0x8fbe[0];var _=require(_0x8fbe[1]);var md5=require(_0x8fbe[2]);var moment=require(_0x8fbe[3]);var csv=require(_0x8fbe[4]);var Util=require(_0x8fbe[5]);var User=require(_0x8fbe[7])[_0x8fbe[6]];var Agent=require(_0x8fbe[7])[_0x8fbe[6]];var ChatRoom=require(_0x8fbe[7])[_0x8fbe[8]];var ChatMessage=require(_0x8fbe[7])[_0x8fbe[9]];var ChatWebsite=require(_0x8fbe[7])[_0x8fbe[10]];var ChatVisitor=require(_0x8fbe[7])[_0x8fbe[11]];var UserHasChatRoom=require(_0x8fbe[7])[_0x8fbe[12]];exports[_0x8fbe[13]]=function(_0x2828xd,_0x2828xe,_0x2828xf){return ChatRoom[_0x8fbe[28]](_[_0x8fbe[27]](Util[_0x8fbe[20]](_0x2828xd[_0x8fbe[19]]),{include:[{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[24],_0x8fbe[25],_0x8fbe[26]]},{model:ChatMessage},{model:ChatVisitor}]}))[_0x8fbe[18]](function(_0x2828x11){_0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x11)})[_0x8fbe[15]](function(_0x2828x10){console[_0x8fbe[14]](_0x2828x10);return handleError(_0x2828xe,_0x2828x10)})};function checkTags(_0x2828x13){if(_0x2828x13){if(_0x2828x13[_0x8fbe[29]]){_0x2828x13[_0x8fbe[30]]=[];if(_[_0x8fbe[31]](_0x2828x13[_0x8fbe[29]])){for(var _0x2828x14=0;_0x2828x14<_0x2828x13[_0x8fbe[29]][_0x8fbe[32]];_0x2828x14++){_0x2828x13[_0x8fbe[30]][_0x8fbe[35]]({tags:{$like:_0x8fbe[33]+_0x2828x13[_0x8fbe[29]][_0x2828x14]+_0x8fbe[34]}})}}else {_0x2828x13[_0x8fbe[30]][_0x8fbe[35]]({tags:{$like:_0x8fbe[33]+_0x2828x13[_0x8fbe[29]]+_0x8fbe[34]}})};delete _0x2828x13[_0x8fbe[29]]}}}exports[_0x8fbe[36]]=function(_0x2828xd,_0x2828xe,_0x2828xf){switch(_0x2828xd[_0x8fbe[37]][_0x8fbe[25]]){case _0x8fbe[37]:return User[_0x8fbe[39]](_0x2828xd[_0x8fbe[37]][_0x8fbe[21]],{attributes:[_0x8fbe[21]],where:{id:{$ne:_0x2828xd[_0x8fbe[37]][_0x8fbe[21]]},online:true}})[_0x8fbe[18]](Util[_0x8fbe[38]](_[_0x8fbe[27]](_0x2828xd[_0x8fbe[19]],{id:{$ne:_0x2828xd[_0x8fbe[37]][_0x8fbe[21]]}})))[_0x8fbe[18]](function(_0x2828x11){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x11)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)});default:return User[_0x8fbe[41]](_0x8fbe[40])[_0x8fbe[28]](_[_0x8fbe[27]](Util[_0x8fbe[20]](_0x2828xd[_0x8fbe[19]]),{where:{id:{$ne:_0x2828xd[_0x8fbe[37]][_0x8fbe[21]]},online:true}}))[_0x8fbe[18]](function(_0x2828x11){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x11)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})}};exports[_0x8fbe[42]]=function(_0x2828xd,_0x2828xe,_0x2828xf){checkTags(_0x2828xd[_0x8fbe[19]]);var _0x2828x15={where:_[_0x8fbe[27]]({type:_0x8fbe[43]},_0x2828xd[_0x8fbe[19]])};switch(_0x2828xd[_0x8fbe[37]][_0x8fbe[25]]){case _0x8fbe[44]:_[_0x8fbe[27]](_0x2828x15,{include:[{model:User,attributes:[_0x8fbe[21]],where:{id:_0x2828xd[_0x8fbe[37]][_0x8fbe[21]]}}]});break;default:};return ChatRoom[_0x8fbe[47]](_0x2828x15)[_0x8fbe[18]](function(_0x2828x16){return ChatRoom[_0x8fbe[47]]({where:{id:{$in:_[_0x8fbe[45]](_0x2828x16,_0x8fbe[21])}},include:[{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[25],_0x8fbe[46]]},{model:ChatVisitor}]})})[_0x8fbe[18]](function(_0x2828x16){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]]({rows:_0x2828x16,count:_0x2828x16[_0x8fbe[32]]})})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[48]]=function(_0x2828xd,_0x2828xe,_0x2828xf){checkTags(_0x2828xd[_0x8fbe[19]]);var _0x2828x15={where:_[_0x8fbe[27]]({type:_0x8fbe[49]},_0x2828xd[_0x8fbe[19]]),include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[23]]}]};switch(_0x2828xd[_0x8fbe[37]][_0x8fbe[25]]){case _0x8fbe[44]:_0x2828x15[_0x8fbe[50]][_0x8fbe[35]]({model:User,attributes:[_0x8fbe[21]],where:{id:_0x2828xd[_0x8fbe[37]][_0x8fbe[21]]}});break;default:};return ChatRoom[_0x8fbe[47]](_0x2828x15)[_0x8fbe[18]](function(_0x2828x16){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]]({rows:_0x2828x16,count:_0x2828x16[_0x8fbe[32]]})})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[51]]=function(_0x2828xd,_0x2828xe,_0x2828xf){return User[_0x8fbe[41]](_0x8fbe[40])[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x11){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x11)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[53]]=function(_0x2828xd,_0x2828xe,_0x2828xf){return ChatRoom[_0x8fbe[41]](_0x8fbe[54])[_0x8fbe[28]](_[_0x8fbe[27]](Util[_0x8fbe[20]](_0x2828xd[_0x8fbe[19]]),{include:[{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[24],_0x8fbe[25],_0x8fbe[26]]},{model:ChatMessage},{model:ChatVisitor}]}))[_0x8fbe[18]](function(_0x2828x11){_0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x11)})[_0x8fbe[15]](function(_0x2828x10){console[_0x8fbe[14]](_0x2828x10);return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[55]]=function(_0x2828xd,_0x2828xe){return User[_0x8fbe[39]](_0x2828xd[_0x8fbe[37]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x17){return _0x2828x17[_0x8fbe[58]]({include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[23],_0x8fbe[24]]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[24],_0x8fbe[25],_0x8fbe[26]]}]})})[_0x8fbe[18]](function(_0x2828x16){if(!_0x2828x16){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828xe[_0x8fbe[16]](_0x2828x16)})[_0x8fbe[15]](function(_0x2828x10){console[_0x8fbe[56]](_0x2828x10);return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[59]]=function(_0x2828xd,_0x2828xe){return ChatRoom[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]],{include:[{model:ChatMessage,include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[24],_0x8fbe[23]]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[24],_0x8fbe[22],_0x8fbe[23],_0x8fbe[46],_0x8fbe[25],_0x8fbe[26]]}]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[24],_0x8fbe[22],_0x8fbe[23],_0x8fbe[46],_0x8fbe[25],_0x8fbe[26]]},{model:ChatVisitor},{model:ChatWebsite,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[60]]}]})[_0x8fbe[18]](function(_0x2828x18){if(!_0x2828x18){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828xe[_0x8fbe[16]](_0x2828x18)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[61]]=function(_0x2828xd,_0x2828xe,_0x2828xf){var _0x2828x19;return ChatRoom[_0x8fbe[71]]({where:{token:md5(JSON[_0x8fbe[69]](_0x2828xd[_0x8fbe[19]][_0x8fbe[64]][_0x8fbe[68]]())).toString(_0x8fbe[67])},defaults:{type:_0x8fbe[26],token:md5(JSON[_0x8fbe[69]](_0x2828xd[_0x8fbe[19]][_0x8fbe[64]][_0x8fbe[68]]())).toString(_0x8fbe[67]),status:_0x8fbe[70]},include:[{model:ChatMessage,include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[24],_0x8fbe[23]]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[24],_0x8fbe[25],_0x8fbe[26]]}]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[24],_0x8fbe[25],_0x8fbe[26]]}]})[_0x8fbe[66]](function(_0x2828x18,_0x2828x1b){_0x2828x19=_0x2828x18;if(_0x2828x1b){return _0x2828x19[_0x8fbe[65]](_0x2828xd[_0x8fbe[19]][_0x8fbe[64]])}})[_0x8fbe[18]](function(){return _0x2828x19[_0x8fbe[63]]()})[_0x8fbe[18]](function(_0x2828x1a){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_[_0x8fbe[27]](_0x2828x19[_0x8fbe[62]],{Users:_0x2828x1a}))})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[72]]=function(_0x2828xd,_0x2828xe,_0x2828xf){var _0x2828x19;return ChatRoom[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x18){_0x2828x19=_0x2828x18;if(!_0x2828x19){return _0x2828xe[_0x8fbe[57]](404)}})[_0x8fbe[18]](function(){return ChatMessage[_0x8fbe[75]](_[_0x8fbe[27]](_0x2828xd[_0x8fbe[73]],{type:_0x2828x19[_0x8fbe[74]],ChatRoomId:_0x2828xd[_0x8fbe[52]][_0x8fbe[21]],UserId:_0x2828xd[_0x8fbe[37]][_0x8fbe[21]]}))})[_0x8fbe[18]](function(_0x2828x1c){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x1c)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[76]]=function(_0x2828xd,_0x2828xe,_0x2828xf){return ChatRoom[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]],{include:[{model:ChatMessage,include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[23]]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[23]]}]}]})[_0x8fbe[18]](function(_0x2828x18){var _0x2828x1d=[];_0x2828x18[_0x8fbe[81]][_0x8fbe[80]](function(_0x2828x1c){_0x2828x1d[_0x8fbe[35]]({name:_0x2828x1c[_0x8fbe[6]]?_0x2828x1c[_0x8fbe[6]][_0x8fbe[23]]:_0x2828x1c[_0x8fbe[11]][_0x8fbe[23]],text:_0x2828x1c[_0x8fbe[73]][_0x8fbe[78]](/(\r\n|\n|\r)/gm,_0x8fbe[77]),date:_0x2828x1c[_0x8fbe[79]]})});return _0x2828xe[_0x8fbe[74]](_0x8fbe[82])[_0x8fbe[17]](200)[_0x8fbe[16]](csv(_0x2828x1d))})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[83]]=function(_0x2828xd,_0x2828xe){return User[_0x8fbe[39]](_0x2828xd[_0x8fbe[37]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x17){return _0x2828x17[_0x8fbe[58]]({where:{type:_0x2828xd[_0x8fbe[52]][_0x8fbe[74]]},include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[23],_0x8fbe[24]]}]})})[_0x8fbe[18]](function(_0x2828x16){if(!_0x2828x16){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828xe[_0x8fbe[16]](_0x2828x16)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[84]]=function(_0x2828xd,_0x2828xe){return User[_0x8fbe[39]](_0x2828xd[_0x8fbe[37]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x17){return _0x2828x17[_0x8fbe[58]]({include:[{model:ChatVisitor,attributes:[_0x8fbe[21],_0x8fbe[23],_0x8fbe[24]]},{model:User,attributes:[_0x8fbe[21],_0x8fbe[22],_0x8fbe[23],_0x8fbe[24],_0x8fbe[25],_0x8fbe[26]]}]})})[_0x8fbe[18]](function(_0x2828x16){if(!_0x2828x16){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828xe[_0x8fbe[16]](_0x2828x16)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[75]]=function(_0x2828xd,_0x2828xe){};exports[_0x8fbe[85]]=function(_0x2828xd,_0x2828xe){if(_0x2828xd[_0x8fbe[73]][_0x8fbe[21]]){delete _0x2828xd[_0x8fbe[73]][_0x8fbe[21]]};return ChatRoom[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x18){if(!_0x2828x18){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828x18[_0x8fbe[85]](_0x2828xd[_0x8fbe[73]])})[_0x8fbe[18]](function(_0x2828x18){return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x18)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[86]]=function(_0x2828xd,_0x2828xe){var _0x2828x19;if(_0x2828xd[_0x8fbe[73]][_0x8fbe[21]]){delete _0x2828xd[_0x8fbe[73]][_0x8fbe[21]]};return ChatRoom[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x18){if(!_0x2828x18||!_0x2828xd[_0x8fbe[73]][_0x8fbe[64]]){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828x18})[_0x8fbe[18]](function(_0x2828x18){return _0x2828x18[_0x8fbe[85]]({type:_0x8fbe[43],token:md5(JSON[_0x8fbe[69]](_0x2828xd[_0x8fbe[73]][_0x8fbe[64]][_0x8fbe[68]]())).toString(_0x8fbe[67])})})[_0x8fbe[18]](function(_0x2828x18){_0x2828x19=_0x2828x18;return _0x2828x18[_0x8fbe[65]](_0x2828xd[_0x8fbe[73]][_0x8fbe[64]][_0x8fbe[68]](),{individualHooks:true})})[_0x8fbe[18]](function(){return _0x2828x19[_0x8fbe[63]]()})[_0x8fbe[18]](function(_0x2828x1a){_[_0x8fbe[27]](_0x2828x19[_0x8fbe[62]],{Users:_0x2828x1a});return _0x2828xe[_0x8fbe[17]](200)[_0x8fbe[16]](_0x2828x19)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};exports[_0x8fbe[87]]=function(_0x2828xd,_0x2828xe){return ChatRoom[_0x8fbe[39]](_0x2828xd[_0x8fbe[52]][_0x8fbe[21]])[_0x8fbe[18]](function(_0x2828x18){if(!_0x2828x18){return _0x2828xe[_0x8fbe[57]](404)};return _0x2828x18[_0x8fbe[87]]()})[_0x8fbe[18]](function(){return _0x2828xe[_0x8fbe[57]](204)})[_0x8fbe[15]](function(_0x2828x10){return handleError(_0x2828xe,_0x2828x10)})};function handleError(_0x2828xe,_0x2828x10){return _0x2828xe[_0x8fbe[17]](500)[_0x8fbe[16]](_0x2828x10)}
\ No newline at end of file