Built motion from commit 3594e56.|0.0.120
[motion.git] / server / api / report_chat_session / report_chat_session.controller.js
index 7d61812..743b51a 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 _0x1a83=["\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"];_0x1a83[0];var _=require(_0x1a83[1]);var ReportChatSession=require(_0x1a83[3])[_0x1a83[2]];var User=require(_0x1a83[3])[_0x1a83[4]];var ReportChatSessionHistory=require(_0x1a83[3])[_0x1a83[6]][_0x1a83[5]];var Promise=require(_0x1a83[7]);var Util=require(_0x1a83[8]);exports[_0x1a83[9]]= function(_0xd188x7,_0xd188x8,_0xd188x9){return ReportChatSession[_0x1a83[16]](Util[_0x1a83[15]](_0xd188x7[_0x1a83[14]]))[_0x1a83[13]](function(_0xd188xb){_0xd188x8[_0x1a83[12]](200)[_0x1a83[11]](_0xd188xb)})[_0x1a83[10]](function(_0xd188xa){return handleError(_0xd188x8,_0xd188xa)})};exports[_0x1a83[17]]= function(_0xd188x7,_0xd188x8){return ReportChatSessionHistory[_0x1a83[17]]()[_0x1a83[13]](function(_0xd188xc){return _0xd188x8[_0x1a83[12]](200)[_0x1a83[11]](_0xd188xc)})[_0x1a83[10]](function(_0xd188xa){return handleError(_0xd188x8,_0xd188xa)})};function getChatQueues(_0xd188xe){return function(){switch(_0xd188xe[_0x1a83[28]]){case _0x1a83[25]:return User[_0x1a83[24]](_0xd188xe[_0x1a83[18]],{attributes:[_0x1a83[18]]})[_0x1a83[13]](Util[_0x1a83[23]]({},{attributes:[_0x1a83[18]],include:[{raw:true,model:User,attributes:[_0x1a83[18]]}]}))[_0x1a83[13]](function(_0xd188xf){var _0xd188x10=[];_0xd188xf[_0x1a83[22]][_0x1a83[21]](function(_0xd188x11){_0xd188x10= _[_0x1a83[20]](_0xd188x10,_[_0x1a83[19]](_0xd188x11.Users,_0x1a83[18]))});return {$or:{queue:_[_0x1a83[19]](_0xd188xf[_0x1a83[22]],_0x1a83[18]),memberid:_0xd188x10}}});case _0x1a83[27]:return User[_0x1a83[24]](_0xd188xe[_0x1a83[18]],{attributes:[_0x1a83[18]]})[_0x1a83[13]](function(_0xd188x12){return _0xd188x12[_0x1a83[26]]({attributes:[_0x1a83[18]]})})[_0x1a83[13]](function(_0xd188xf){return {$or:{queue:_[_0x1a83[19]](_0xd188xf,_0x1a83[18]),memberid:_0xd188xe[_0x1a83[18]]}}});default:return {}}}}exports[_0x1a83[29]]= function(_0xd188x7,_0xd188x8){return Promise[_0x1a83[33]]([])[_0x1a83[13]](getChatQueues(_0xd188x7[_0x1a83[25]]))[_0x1a83[13]](function(_0xd188x14){return ReportChatSession[_0x1a83[32]](Util[_0x1a83[15]](_0xd188x7[_0x1a83[14]],_[_0x1a83[31]]({leaveAt:null},_0xd188x14)))})[_0x1a83[13]](function(_0xd188x13){return _0xd188x8[_0x1a83[12]](200)[_0x1a83[11]]({rows:_0xd188x13})})[_0x1a83[10]](function(_0xd188xa){console[_0x1a83[30]](_0xd188xa);return handleError(_0xd188x8,_0xd188xa)})};function handleError(_0xd188x8,_0xd188xa){return _0xd188x8[_0x1a83[12]](500)[_0x1a83[11]](_0xd188xa)}
\ No newline at end of file