Built motion from commit 57474b6.|0.0.99
[motion.git] / server / api / report_chat_session / report_chat_session.controller.js
index 7d61812..c2e4741 100644 (file)
@@ -1,113 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var ReportChatSession = require('../../models').ReportChatSession;
-
-// Get list of report_chat_sessions
-exports.index = function(req, res) {
-  ReportChatSession
-    .findAll()
-    .then(function(report_chat_sessions) {
-      return res.status(200).send(report_chat_sessions);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get list of fields
-exports.describe = function(req, res) {
-  ReportChatSession
-    .describe()
-    .then(function(fields) {
-      return res.status(200).send(fields);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single report_chat_session
-exports.show = function(req, res) {
-  ReportChatSession
-    .findById(req.params.id)
-    .then(function(report_chat_session) {
-      if (!report_chat_session) {
-        return res.sendStatus(404);
-      }
-      return res.send(report_chat_session);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new report_chat_session in the DB.
-exports.create = function(req, res) {
-  ReportChatSession
-    .create(req.body)
-    .then(function(report_chat_session) {
-      return res.status(201).send(report_chat_session);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing report_chat_session in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  ReportChatSession
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(report_chat_session) {
-      if (!report_chat_session) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(report_chat_session, req.body);
-      updated.save()
-        .then(function() {
-          return res.status(200).send(report_chat_session);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a report_chat_session from the DB.
-exports.destroy = function(req, res) {
-  ReportChatSession
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(report_chat_session) {
-      if (!report_chat_session) {
-        return res.sendStatus(404);
-      }
-      report_chat_session.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 _0x46c5=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x52\x65\x70\x6F\x72\x74\x43\x68\x61\x74\x53\x65\x73\x73\x69\x6F\x6E","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x55\x73\x65\x72","\x52\x65\x70\x6F\x72\x74\x43\x68\x61\x74\x53\x65\x73\x73\x69\x6F\x6E\x48\x69\x73\x74\x6F\x72\x79","\x68\x69\x73\x74\x6F\x72\x79","\x62\x6C\x75\x65\x62\x69\x72\x64","\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","\x64\x65\x73\x63\x72\x69\x62\x65","\x69\x64","\x6D\x61\x70","\x75\x6E\x69\x6F\x6E","\x66\x6F\x72\x45\x61\x63\x68","\x72\x6F\x77\x73","\x67\x65\x74\x43\x68\x61\x74\x51\x75\x65\x75\x65\x73\x49\x64\x42\x79\x55\x73\x65\x72","\x66\x69\x6E\x64\x42\x79\x49\x64","\x75\x73\x65\x72","\x67\x65\x74\x43\x68\x61\x74\x51\x75\x65\x75\x65\x73","\x61\x67\x65\x6E\x74","\x72\x6F\x6C\x65","\x77\x61\x69\x74\x69\x6E\x67\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x73","\x6C\x6F\x67","\x6D\x65\x72\x67\x65","\x66\x69\x6E\x64\x41\x6C\x6C","\x61\x6C\x6C"];_0x46c5[0];var _=require(_0x46c5[1]);var ReportChatSession=require(_0x46c5[3])[_0x46c5[2]];var User=require(_0x46c5[3])[_0x46c5[4]];var ReportChatSessionHistory=require(_0x46c5[3])[_0x46c5[6]][_0x46c5[5]];var Promise=require(_0x46c5[7]);var Util=require(_0x46c5[8]);exports[_0x46c5[9]]=function(_0x6066x7,_0x6066x8,_0x6066x9){return ReportChatSession[_0x46c5[16]](Util[_0x46c5[15]](_0x6066x7[_0x46c5[14]]))[_0x46c5[13]](function(_0x6066xb){_0x6066x8[_0x46c5[12]](200)[_0x46c5[11]](_0x6066xb)})[_0x46c5[10]](function(_0x6066xa){return handleError(_0x6066x8,_0x6066xa)})};exports[_0x46c5[17]]=function(_0x6066x7,_0x6066x8){return ReportChatSessionHistory[_0x46c5[17]]()[_0x46c5[13]](function(_0x6066xc){return _0x6066x8[_0x46c5[12]](200)[_0x46c5[11]](_0x6066xc)})[_0x46c5[10]](function(_0x6066xa){return handleError(_0x6066x8,_0x6066xa)})};function getChatQueues(_0x6066xe){return function(){switch(_0x6066xe[_0x46c5[28]]){case _0x46c5[25]:return User[_0x46c5[24]](_0x6066xe[_0x46c5[18]],{attributes:[_0x46c5[18]]})[_0x46c5[13]](Util[_0x46c5[23]]({},{attributes:[_0x46c5[18]],include:[{raw:true,model:User,attributes:[_0x46c5[18]]}]}))[_0x46c5[13]](function(_0x6066xf){var _0x6066x10=[];_0x6066xf[_0x46c5[22]][_0x46c5[21]](function(_0x6066x11){_0x6066x10=_[_0x46c5[20]](_0x6066x10,_[_0x46c5[19]](_0x6066x11.Users,_0x46c5[18]))});return {$or:{queueid:_[_0x46c5[19]](_0x6066xf[_0x46c5[22]],_0x46c5[18]),memberid:_0x6066x10}}});case _0x46c5[27]:return User[_0x46c5[24]](_0x6066xe[_0x46c5[18]],{attributes:[_0x46c5[18]]})[_0x46c5[13]](function(_0x6066x12){return _0x6066x12[_0x46c5[26]]({attributes:[_0x46c5[18]]})})[_0x46c5[13]](function(_0x6066xf){return {$or:{queueid:_[_0x46c5[19]](_0x6066xf,_0x46c5[18]),memberid:_0x6066xe[_0x46c5[18]]}}});default:return {}}}}exports[_0x46c5[29]]=function(_0x6066x7,_0x6066x8){return Promise[_0x46c5[33]]([])[_0x46c5[13]](getChatQueues(_0x6066x7[_0x46c5[25]]))[_0x46c5[13]](function(_0x6066x14){return ReportChatSession[_0x46c5[32]](Util[_0x46c5[15]](_0x6066x7[_0x46c5[14]],_[_0x46c5[31]]({leaveAt:null},_0x6066x14)))})[_0x46c5[13]](function(_0x6066x13){return _0x6066x8[_0x46c5[12]](200)[_0x46c5[11]]({rows:_0x6066x13})})[_0x46c5[10]](function(_0x6066xa){console[_0x46c5[30]](_0x6066xa);return handleError(_0x6066x8,_0x6066xa)})};function handleError(_0x6066x8,_0x6066xa){return _0x6066x8[_0x46c5[12]](500)[_0x46c5[11]](_0x6066xa)}
\ No newline at end of file