Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / report_agent / report_agent.controller.js
index 5755639..ffc7705 100644 (file)
@@ -1 +1,105 @@
-var _0x71db=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x52\x65\x70\x6F\x72\x74\x41\x67\x65\x6E\x74","\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","\x64\x65\x73\x63\x72\x69\x62\x65","\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"];_0x71db[0];var _=require(_0x71db[1]);var ReportAgent=require(_0x71db[3])[_0x71db[2]];exports[_0x71db[4]]=function(_0x2fc4x3,_0x2fc4x4){ReportAgent[_0x71db[9]]()[_0x71db[8]](function(_0x2fc4x6){return _0x2fc4x4[_0x71db[7]](200)[_0x71db[6]](_0x2fc4x6)})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)})};exports[_0x71db[10]]=function(_0x2fc4x3,_0x2fc4x4){ReportAgent[_0x71db[10]]()[_0x71db[8]](function(_0x2fc4x7){return _0x2fc4x4[_0x71db[7]](200)[_0x71db[6]](_0x2fc4x7)})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)})};exports[_0x71db[11]]=function(_0x2fc4x3,_0x2fc4x4){ReportAgent[_0x71db[15]](_0x2fc4x3[_0x71db[14]][_0x71db[13]])[_0x71db[8]](function(_0x2fc4x8){if(!_0x2fc4x8){return _0x2fc4x4[_0x71db[12]](404)};return _0x2fc4x4[_0x71db[6]](_0x2fc4x8);})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)})};exports[_0x71db[16]]=function(_0x2fc4x3,_0x2fc4x4){ReportAgent[_0x71db[16]](_0x2fc4x3[_0x71db[17]])[_0x71db[8]](function(_0x2fc4x8){return _0x2fc4x4[_0x71db[7]](201)[_0x71db[6]](_0x2fc4x8)})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)})};exports[_0x71db[18]]=function(_0x2fc4x3,_0x2fc4x4){if(_0x2fc4x3[_0x71db[17]][_0x71db[13]]){delete _0x2fc4x3[_0x71db[17]][_0x71db[13]]};ReportAgent[_0x71db[15]](_0x2fc4x3[_0x71db[14]][_0x71db[13]])[_0x71db[8]](function(_0x2fc4x8){if(!_0x2fc4x8){return _0x2fc4x4[_0x71db[12]](404)};var _0x2fc4x9=_[_0x71db[19]](_0x2fc4x8,_0x2fc4x3[_0x71db[17]]);_0x2fc4x9[_0x71db[20]]()[_0x71db[8]](function(){return _0x2fc4x4[_0x71db[7]](200)[_0x71db[6]](_0x2fc4x8)})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)});})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)});};exports[_0x71db[21]]=function(_0x2fc4x3,_0x2fc4x4){ReportAgent[_0x71db[15]](_0x2fc4x3[_0x71db[14]][_0x71db[13]])[_0x71db[8]](function(_0x2fc4x8){if(!_0x2fc4x8){return _0x2fc4x4[_0x71db[12]](404)};_0x2fc4x8[_0x71db[21]]()[_0x71db[8]](function(){return _0x2fc4x4[_0x71db[12]](204)})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)});})[_0x71db[5]](function(_0x2fc4x5){return handleError(_0x2fc4x4,_0x2fc4x5)})};function handleError(_0x2fc4x4,_0x2fc4x5){return _0x2fc4x4[_0x71db[7]](500)[_0x71db[6]](_0x2fc4x5)}
\ No newline at end of file
+'use strict';
+
+var _ = require('lodash');
+var ReportAgent = require('../../models').ReportAgent;
+
+// Get list of report_agents
+exports.index = function(req, res) {
+  ReportAgent
+    .findAll()
+    .then(function(report_agents) {
+      return res.status(200).send(report_agents);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Get list of fields
+exports.describe = function(req, res) {
+  ReportAgent
+    .describe()
+    .then(function(fields) {
+      return res.status(200).send(fields);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Get a single report_agent
+exports.show = function(req, res) {
+  ReportAgent
+    .findById(req.params.id)
+    .then(function(report_agent) {
+      if (!report_agent) {
+        return res.sendStatus(404);
+      }
+      return res.send(report_agent);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Creates a new report_agent in the DB.
+exports.create = function(req, res) {
+  ReportAgent
+    .create(req.body)
+    .then(function(report_agent) {
+      return res.status(201).send(report_agent);
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Updates an existing report_agent in the DB.
+exports.update = function(req, res) {
+  if (req.body.id) {
+    delete req.body.id;
+  }
+  ReportAgent
+    .findById(req.params.id)
+    .then(function(report_agent) {
+      if (!report_agent) {
+        return res.sendStatus(404);
+      }
+      var updated = _.merge(report_agent, req.body);
+      updated.save()
+        .then(function() {
+          return res.status(200).send(report_agent);
+        })
+        .catch(function(err) {
+          return handleError(res, err);
+        });
+    })
+    .catch(function(err) {
+      return handleError(res, err);
+    });
+};
+
+// Deletes a report_agent from the DB.
+exports.destroy = function(req, res) {
+  ReportAgent
+    .findById(req.params.id)
+    .then(function(report_agent) {
+      if (!report_agent) {
+        return res.sendStatus(404);
+      }
+      report_agent.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);
+}