Built motion from commit c56b56e.|0.0.125
[motion.git] / server / api / report_chat / report_chat.controller.js
index d727f82..795c00f 100644 (file)
@@ -1,96 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var ReportChat = require('../../models').ReportChat;
-var sequelize = require('../../models').sequelize;
-
-// Get list of report_chats
-exports.index = function (req, res) {
-  ReportChat
-    .findAll()
-    .then(function (report_chats) {
-      return res.status(200).send(report_chats);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single reportChat
-exports.show = function (req, res) {
-  ReportChat
-    .findById(req.params.id)
-    .then(function (reportChat) {
-      if (!reportChat) {
-        return res.sendStatus(404);
-      }
-      return res.send(reportChat);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new reportChat in the DB.
-exports.create = function (req, res) {
-  ReportChat
-    .create(req.body)
-    .then(function (reportChat) {
-      return res.status(201).send(reportChat);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing reportChat in the DB.
-exports.update = function (req, res, next) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-
-  return ReportChat
-    .findById(req.params.id)
-    .then(function (reportChat) {
-      if (!reportChat) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(reportChat, req.body);
-      return updated
-        .save()
-        .then(function () {
-          return res.status(200).send(reportChat);
-        });
-    })
-    .catch(sequelize.ValidationError, function (err) {
-      return handleError(res, err);
-    })
-    .catch(function (err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a reportChat from the DB.
-exports.destroy = function (req, res) {
-  ReportChat
-    .findById(req.params.id)
-    .then(function (reportChat) {
-      if (!reportChat) {
-        return res.sendStatus(404);
-      }
-      reportChat.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 _0x2991=["\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","\x52\x65\x70\x6F\x72\x74\x43\x68\x61\x74","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x43\x68\x61\x74\x52\x6F\x6F\x6D","\x43\x68\x61\x74\x56\x69\x73\x69\x74\x6F\x72","\x55\x73\x65\x72","\x73\x65\x71\x75\x65\x6C\x69\x7A\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\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","\x61\x63\x63\x65\x70\x74","\x2E","\x73\x70\x6C\x69\x74","\x75\x6E\x69\x71\x75\x65\x69\x64","\x70\x61\x72\x61\x6D\x73","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x61\x63\x63\x65\x70\x74\x65\x64","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x66\x69\x6E\x64\x42\x79\x49\x64","\x62\x61\x73\x65\x36\x34","\x69\x64","\x75\x73\x65\x72","\x73\x74\x72\x69\x6E\x67\x69\x66\x79","\x4F\x50\x45\x4E","\x75\x70\x64\x61\x74\x65","\x61\x64\x64\x55\x73\x65\x72","\x63\x72\x65\x61\x74\x65","\x62\x6F\x64\x79","\x64\x65\x73\x74\x72\x6F\x79","\x72\x65\x6A\x65\x63\x74","\x59\x59\x59\x59\x2D\x4D\x4D\x2D\x44\x44\x20\x48\x48\x3A\x6D\x6D\x3A\x73\x73","\x66\x6F\x72\x6D\x61\x74"];_0x2991[0];var _=require(_0x2991[1]);var md5=require(_0x2991[2]);var moment=require(_0x2991[3]);var ReportChat=require(_0x2991[5])[_0x2991[4]];var ChatRoom=require(_0x2991[5])[_0x2991[6]];var ChatVisitor=require(_0x2991[5])[_0x2991[7]];var Agent=require(_0x2991[5])[_0x2991[8]];var sequelize=require(_0x2991[5])[_0x2991[9]];var Util=require(_0x2991[10]);exports[_0x2991[11]]= function(_0x9837xa,_0x9837xb,_0x9837xc){return ReportChat[_0x2991[18]](Util[_0x2991[17]](_0x9837xa[_0x2991[16]]))[_0x2991[15]](function(_0x9837xe){_0x9837xb[_0x2991[14]](200)[_0x2991[13]](_0x9837xe)})[_0x2991[12]](function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})};exports[_0x2991[19]]= function(_0x9837xa,_0x9837xb){var _0x9837xf=_0x9837xa[_0x2991[23]][_0x2991[22]][_0x2991[21]](_0x2991[20])[1];var _0x9837x10;return ReportChat[_0x2991[28]](_0x9837xa[_0x2991[23]][_0x2991[30]])[_0x2991[15]](function(_0x9837x14){if(!_0x9837x14){return _0x9837xb[_0x2991[24]](404)};var _0x9837x12=_[_0x2991[26]](_0x9837x14,{connectid:_0x9837xa[_0x2991[23]][_0x2991[22]]});return _0x9837x12[_0x2991[27]]()})[_0x2991[15]](function(){return ChatRoom[_0x2991[28]](_0x9837xf)})[_0x2991[15]](function(_0x9837x13){_0x9837x10= _0x9837x13;return _0x9837x10[_0x2991[35]](_0x9837xa[_0x2991[31]][_0x2991[30]],{individualHooks:true})})[_0x2991[15]](function(){return _0x9837x10[_0x2991[34]]({token:md5(JSON[_0x2991[32]]([_0x9837xa[_0x2991[31]][_0x2991[30]]])).toString(_0x2991[29]),status:_0x2991[33]})})[_0x2991[15]](function(){return ChatVisitor[_0x2991[28]](_0x9837x10.ChatVisitorId)})[_0x2991[15]](function(_0x9837x11){if(!_0x9837x11){return _0x9837xb[_0x2991[24]](404)};var _0x9837x12=_[_0x2991[26]](_0x9837x11,{status:_0x2991[25]});return _0x9837x12[_0x2991[27]]()})[_0x2991[15]](function(){return _0x9837xb[_0x2991[24]](200)})[_0x2991[12]](sequelize.UniqueConstraintError,function(_0x9837xd){return _0x9837xb[_0x2991[24]](504)})[_0x2991[12]](function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})};exports[_0x2991[36]]= function(_0x9837xa,_0x9837xb){return ReportChat[_0x2991[36]](_0x9837xa[_0x2991[37]])[_0x2991[15]](function(_0x9837x14){return _0x9837xb[_0x2991[14]](201)[_0x2991[13]](_0x9837x14)})[_0x2991[12]](function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})};exports[_0x2991[34]]= function(_0x9837xa,_0x9837xb,_0x9837xc){if(_0x9837xa[_0x2991[37]][_0x2991[30]]){delete _0x9837xa[_0x2991[37]][_0x2991[30]]};return ReportChat[_0x2991[28]](_0x9837xa[_0x2991[23]][_0x2991[30]])[_0x2991[15]](function(_0x9837x14){if(!_0x9837x14){return _0x9837xb[_0x2991[24]](404)};var _0x9837x12=_[_0x2991[26]](_0x9837x14,_0x9837xa[_0x2991[37]]);return _0x9837x12[_0x2991[27]]()})[_0x2991[15]](function(_0x9837x14){return _0x9837xb[_0x2991[14]](200)[_0x2991[13]](_0x9837x14)})[_0x2991[12]](sequelize.ValidationError,function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})[_0x2991[12]](function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})};exports[_0x2991[38]]= function(_0x9837xa,_0x9837xb){return ReportChat[_0x2991[28]](_0x9837xa[_0x2991[23]][_0x2991[30]])[_0x2991[15]](function(_0x9837x14){if(!_0x9837x14){return _0x9837xb[_0x2991[24]](404)};return _0x9837x14[_0x2991[38]]()})[_0x2991[15]](function(){return _0x9837xb[_0x2991[24]](204)})[_0x2991[12]](function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})};exports[_0x2991[39]]= function(_0x9837xa,_0x9837xb){return ReportChat[_0x2991[28]](_0x9837xa[_0x2991[23]][_0x2991[30]])[_0x2991[15]](function(_0x9837x14){if(!_0x9837x14){return _0x9837xb[_0x2991[24]](404)};var _0x9837x12=_[_0x2991[26]](_0x9837x14,{rejectedAt:moment()[_0x2991[41]](_0x2991[40])});return _0x9837x12[_0x2991[27]]()})[_0x2991[15]](function(){return _0x9837xb[_0x2991[24]](200)})[_0x2991[12]](function(_0x9837xd){return handleError(_0x9837xb,_0x9837xd)})};function handleError(_0x9837xb,_0x9837xd){return _0x9837xb[_0x2991[14]](500)[_0x2991[13]](_0x9837xd)}
\ No newline at end of file