Built motion from commit 2239aeb.|0.0.113
[motion.git] / server / api / report_mail_session / report_mail_session.controller.js
index d218fae..f7e5a7a 100644 (file)
@@ -1,93 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var ReportMailSession = require('../../models').ReportMailSession;
-
-// Get list of report_mail_sessions
-exports.index = function(req, res) {
-  ReportMailSession
-  .findAll()
-  .then(function (report_mail_sessions) {
-    return res.status(200).send(report_mail_sessions);
-  })
-  .catch(function(err) {
-    return handleError(res, err);
-  });
-};
-
-// Get a single report_mail_session
-exports.show = function(req, res) {
-  ReportMailSession
-  .findById(req.params.id)
-  .then(function (report_mail_session) {
-    if(!report_mail_session) { return res.sendStatus(404); }
-    return res.send(report_mail_session);
-  })
-  .catch(function(err){
-    return handleError(res, err);
-  });
-};
-
-// Creates a new report_mail_session in the DB.
-exports.create = function(req, res) {
-  ReportMailSession
-  .create(req.body)
-  .then(function(report_mail_session) {
-    return res.status(201).send(report_mail_session);
-  })
-  .catch(function(err) {
-    return handleError(res, err);
-  });
-};
-
-// Updates an existing report_mail_session in the DB.
-exports.update = function(req, res) {
-  if(req.body.id) { delete req.body.id; }
-  ReportMailSession
-  .find({
-    where: {
-      id: req.params.id
-    }
-  })
-  .then(function (report_mail_session) {
-    if(!report_mail_session) { return res.sendStatus(404); }
-    var updated = _.merge(report_mail_session, req.body);
-    updated.save()
-    .then(function () {
-      return res.status(200).send(report_mail_session);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-  })
-  .catch(function(err) {
-    return handleError(res, err);
-  });
-};
-
-// Deletes a report_mail_session from the DB.
-exports.destroy = function(req, res) {
-  ReportMailSession
-  .find({
-    where: {
-      id: req.params.id
-    }
-  })
-  .then(function (report_mail_session) {
-    if(!report_mail_session) { return res.sendStatus(404); }
-    report_mail_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 _0x38e2=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x52\x65\x70\x6F\x72\x74\x4D\x61\x69\x6C\x53\x65\x73\x73\x69\x6F\x6E","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x52\x65\x70\x6F\x72\x74\x4D\x61\x69\x6C\x53\x65\x73\x73\x69\x6F\x6E\x48\x69\x73\x74\x6F\x72\x79","\x68\x69\x73\x74\x6F\x72\x79","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x55\x73\x65\x72","\x62\x6C\x75\x65\x62\x69\x72\x64","\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\x4D\x61\x69\x6C\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\x4D\x61\x69\x6C\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"];_0x38e2[0];var _=require(_0x38e2[1]);var ReportMailSession=require(_0x38e2[3])[_0x38e2[2]];var ReportMailSessionHistory=require(_0x38e2[3])[_0x38e2[5]][_0x38e2[4]];var Util=require(_0x38e2[6]);var User=require(_0x38e2[3])[_0x38e2[7]];var Promise=require(_0x38e2[8]);exports[_0x38e2[9]]= function(_0x1912x7,_0x1912x8,_0x1912x9){return ReportMailSession[_0x38e2[16]](Util[_0x38e2[15]](_0x1912x7[_0x38e2[14]]))[_0x38e2[13]](function(_0x1912xb){_0x1912x8[_0x38e2[12]](200)[_0x38e2[11]](_0x1912xb)})[_0x38e2[10]](function(_0x1912xa){return handleError(_0x1912x8,_0x1912xa)})};exports[_0x38e2[17]]= function(_0x1912x7,_0x1912x8){return ReportMailSessionHistory[_0x38e2[17]]()[_0x38e2[13]](function(_0x1912xc){return _0x1912x8[_0x38e2[12]](200)[_0x38e2[11]](_0x1912xc)})[_0x38e2[10]](function(_0x1912xa){return handleError(_0x1912x8,_0x1912xa)})};function getMailQueues(_0x1912xe){return function(){switch(_0x1912xe[_0x38e2[28]]){case _0x38e2[25]:return User[_0x38e2[24]](_0x1912xe[_0x38e2[18]],{attributes:[_0x38e2[18]]})[_0x38e2[13]](Util[_0x38e2[23]]({},{attributes:[_0x38e2[18]],include:[{raw:true,model:User,attributes:[_0x38e2[18]]}]}))[_0x38e2[13]](function(_0x1912xf){var _0x1912x10=[];_0x1912xf[_0x38e2[22]][_0x38e2[21]](function(_0x1912x11){_0x1912x10= _[_0x38e2[20]](_0x1912x10,_[_0x38e2[19]](_0x1912x11.Users,_0x38e2[18]))});return {$or:{queue:_[_0x38e2[19]](_0x1912xf[_0x38e2[22]],_0x38e2[18]),memberid:_0x1912x10}}});case _0x38e2[27]:return User[_0x38e2[24]](_0x1912xe[_0x38e2[18]],{attributes:[_0x38e2[18]]})[_0x38e2[13]](function(_0x1912x12){return _0x1912x12[_0x38e2[26]]({attributes:[_0x38e2[18]]})})[_0x38e2[13]](function(_0x1912xf){return {$or:{queue:_[_0x38e2[19]](_0x1912xf,_0x38e2[18]),memberid:_0x1912xe[_0x38e2[18]]}}});default:return {}}}}exports[_0x38e2[29]]= function(_0x1912x7,_0x1912x8){return Promise[_0x38e2[33]]([])[_0x38e2[13]](getMailQueues(_0x1912x7[_0x38e2[25]]))[_0x38e2[13]](function(_0x1912x14){return ReportMailSession[_0x38e2[32]](Util[_0x38e2[15]](_0x1912x7[_0x38e2[14]],_[_0x38e2[31]]({leaveAt:null},_0x1912x14)))})[_0x38e2[13]](function(_0x1912x13){return _0x1912x8[_0x38e2[12]](200)[_0x38e2[11]]({rows:_0x1912x13})})[_0x38e2[10]](function(_0x1912xa){console[_0x38e2[30]](_0x1912xa);return handleError(_0x1912x8,_0x1912xa)})};function handleError(_0x1912x8,_0x1912xa){return _0x1912x8[_0x38e2[12]](500)[_0x38e2[11]](_0x1912xa)}
\ No newline at end of file