Built motion from commit c2984ba.|0.0.114
[motion.git] / server / api / report_chat_session / report_chat_session.controller.js
index 1232f8c..6e24d43 100644 (file)
@@ -1,93 +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 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 _0xb94f=["\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"];_0xb94f[0];var _=require(_0xb94f[1]);var ReportChatSession=require(_0xb94f[3])[_0xb94f[2]];var User=require(_0xb94f[3])[_0xb94f[4]];var ReportChatSessionHistory=require(_0xb94f[3])[_0xb94f[6]][_0xb94f[5]];var Promise=require(_0xb94f[7]);var Util=require(_0xb94f[8]);exports[_0xb94f[9]]= function(_0x2ed4x7,_0x2ed4x8,_0x2ed4x9){return ReportChatSession[_0xb94f[16]](Util[_0xb94f[15]](_0x2ed4x7[_0xb94f[14]]))[_0xb94f[13]](function(_0x2ed4xb){_0x2ed4x8[_0xb94f[12]](200)[_0xb94f[11]](_0x2ed4xb)})[_0xb94f[10]](function(_0x2ed4xa){return handleError(_0x2ed4x8,_0x2ed4xa)})};exports[_0xb94f[17]]= function(_0x2ed4x7,_0x2ed4x8){return ReportChatSessionHistory[_0xb94f[17]]()[_0xb94f[13]](function(_0x2ed4xc){return _0x2ed4x8[_0xb94f[12]](200)[_0xb94f[11]](_0x2ed4xc)})[_0xb94f[10]](function(_0x2ed4xa){return handleError(_0x2ed4x8,_0x2ed4xa)})};function getChatQueues(_0x2ed4xe){return function(){switch(_0x2ed4xe[_0xb94f[28]]){case _0xb94f[25]:return User[_0xb94f[24]](_0x2ed4xe[_0xb94f[18]],{attributes:[_0xb94f[18]]})[_0xb94f[13]](Util[_0xb94f[23]]({},{attributes:[_0xb94f[18]],include:[{raw:true,model:User,attributes:[_0xb94f[18]]}]}))[_0xb94f[13]](function(_0x2ed4xf){var _0x2ed4x10=[];_0x2ed4xf[_0xb94f[22]][_0xb94f[21]](function(_0x2ed4x11){_0x2ed4x10= _[_0xb94f[20]](_0x2ed4x10,_[_0xb94f[19]](_0x2ed4x11.Users,_0xb94f[18]))});return {$or:{queue:_[_0xb94f[19]](_0x2ed4xf[_0xb94f[22]],_0xb94f[18]),memberid:_0x2ed4x10}}});case _0xb94f[27]:return User[_0xb94f[24]](_0x2ed4xe[_0xb94f[18]],{attributes:[_0xb94f[18]]})[_0xb94f[13]](function(_0x2ed4x12){return _0x2ed4x12[_0xb94f[26]]({attributes:[_0xb94f[18]]})})[_0xb94f[13]](function(_0x2ed4xf){return {$or:{queue:_[_0xb94f[19]](_0x2ed4xf,_0xb94f[18]),memberid:_0x2ed4xe[_0xb94f[18]]}}});default:return {}}}}exports[_0xb94f[29]]= function(_0x2ed4x7,_0x2ed4x8){return Promise[_0xb94f[33]]([])[_0xb94f[13]](getChatQueues(_0x2ed4x7[_0xb94f[25]]))[_0xb94f[13]](function(_0x2ed4x14){return ReportChatSession[_0xb94f[32]](Util[_0xb94f[15]](_0x2ed4x7[_0xb94f[14]],_[_0xb94f[31]]({leaveAt:null},_0x2ed4x14)))})[_0xb94f[13]](function(_0x2ed4x13){return _0x2ed4x8[_0xb94f[12]](200)[_0xb94f[11]]({rows:_0x2ed4x13})})[_0xb94f[10]](function(_0x2ed4xa){console[_0xb94f[30]](_0x2ed4xa);return handleError(_0x2ed4x8,_0x2ed4xa)})};function handleError(_0x2ed4x8,_0x2ed4xa){return _0x2ed4x8[_0xb94f[12]](500)[_0xb94f[11]](_0x2ed4xa)}
\ No newline at end of file