Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / report_mail / report_mail.controller.js
index 3283d4a..ccc28b5 100644 (file)
@@ -1 +1,93 @@
-var _0x80b8=["\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","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x69\x6E\x64\x65\x78","\x63\x61\x74\x63\x68","\x73\x65\x6E\x64","\x73\x74\x61\x74\x75\x73","\x74\x68\x65\x6E","\x66\x69\x6E\x64\x41\x6C\x6C","\x73\x68\x6F\x77","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x69\x64","\x70\x61\x72\x61\x6D\x73","\x66\x69\x6E\x64\x42\x79\x49\x64","\x63\x72\x65\x61\x74\x65","\x62\x6F\x64\x79","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79"];_0x80b8[0];var _=require(_0x80b8[1]);var ReportMail=require(_0x80b8[3])[_0x80b8[2]];exports[_0x80b8[4]]=function(_0xd434x3,_0xd434x4){ReportMail[_0x80b8[9]]()[_0x80b8[8]](function(_0xd434x6){return _0xd434x4[_0x80b8[7]](200)[_0x80b8[6]](_0xd434x6)})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)})};exports[_0x80b8[10]]=function(_0xd434x3,_0xd434x4){ReportMail[_0x80b8[14]](_0xd434x3[_0x80b8[13]][_0x80b8[12]])[_0x80b8[8]](function(_0xd434x7){if(!_0xd434x7){return _0xd434x4[_0x80b8[11]](404)};return _0xd434x4[_0x80b8[6]](_0xd434x7);})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)})};exports[_0x80b8[15]]=function(_0xd434x3,_0xd434x4){ReportMail[_0x80b8[15]](_0xd434x3[_0x80b8[16]])[_0x80b8[8]](function(_0xd434x7){return _0xd434x4[_0x80b8[7]](201)[_0x80b8[6]](_0xd434x7)})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)})};exports[_0x80b8[17]]=function(_0xd434x3,_0xd434x4){if(_0xd434x3[_0x80b8[16]][_0x80b8[12]]){delete _0xd434x3[_0x80b8[16]][_0x80b8[12]]};ReportMail[_0x80b8[14]](_0xd434x3[_0x80b8[13]][_0x80b8[12]])[_0x80b8[8]](function(_0xd434x7){if(!_0xd434x7){return _0xd434x4[_0x80b8[11]](404)};var _0xd434x8=_[_0x80b8[18]](_0xd434x7,_0xd434x3[_0x80b8[16]]);_0xd434x8[_0x80b8[19]]()[_0x80b8[8]](function(){return _0xd434x4[_0x80b8[7]](200)[_0x80b8[6]](_0xd434x7)})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)});})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)});};exports[_0x80b8[20]]=function(_0xd434x3,_0xd434x4){ReportMail[_0x80b8[14]](_0xd434x3[_0x80b8[13]][_0x80b8[12]])[_0x80b8[8]](function(_0xd434x7){if(!_0xd434x7){return _0xd434x4[_0x80b8[11]](404)};_0xd434x7[_0x80b8[20]]()[_0x80b8[8]](function(){return _0xd434x4[_0x80b8[11]](204)})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)});})[_0x80b8[5]](function(_0xd434x5){return handleError(_0xd434x4,_0xd434x5)})};function handleError(_0xd434x4,_0xd434x5){return _0xd434x4[_0x80b8[7]](500)[_0x80b8[6]](_0xd434x5)}
\ No newline at end of file
+'use strict';
+
+var _ = require('lodash');
+var ReportMail = require('../../models').ReportMail;
+
+// Get list of report_mails
+exports.index = function(req, res) {
+  ReportMail
+    .findAll()
+    .then(function(report_mails) {
+      return res.status(200).send(report_mails);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Get a single reportMail
+exports.show = function(req, res) {
+  ReportMail
+    .findById(req.params.id)
+    .then(function(reportMail) {
+      if (!reportMail) {
+        return res.sendStatus(404);
+      }
+      return res.send(reportMail);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Creates a new reportMail in the DB.
+exports.create = function(req, res) {
+  ReportMail
+    .create(req.body)
+    .then(function(reportMail) {
+      return res.status(201).send(reportMail);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Updates an existing reportMail in the DB.
+exports.update = function(req, res) {
+  if (req.body.id) {
+    delete req.body.id;
+  }
+  ReportMail
+    .findById(req.params.id)
+    .then(function(reportMail) {
+      if (!reportMail) {
+        return res.sendStatus(404);
+      }
+      var updated = _.merge(reportMail, req.body);
+      updated.save()
+        .then(function() {
+          return res.status(200).send(reportMail);
+        })
+        .catch(function(err) {
+          return handleError(res, err);
+        });
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Deletes a reportMail from the DB.
+exports.destroy = function(req, res) {
+  ReportMail
+    .findById(req.params.id)
+    .then(function(reportMail) {
+      if (!reportMail) {
+        return res.sendStatus(404);
+      }
+      reportMail.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);
+}