Built motion from commit e155ad4.|0.0.101
[motion.git] / server / api / report_agent / report_agent.controller.js
index ffc7705..b3b487f 100644 (file)
@@ -1,105 +1 @@
-'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);
-}
+var _0xea1b=["\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","\x52\x65\x70\x6F\x72\x74\x41\x67\x65\x6E\x74\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","\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"];_0xea1b[0];var _=require(_0xea1b[1]);var ReportAgent=require(_0xea1b[3])[_0xea1b[2]];var ReportAgentHistory=require(_0xea1b[3])[_0xea1b[5]][_0xea1b[4]];var Util=require(_0xea1b[6]);exports[_0xea1b[7]]=function(_0xf013x5,_0xf013x6,_0xf013x7){return ReportAgent[_0xea1b[14]](Util[_0xea1b[13]](_0xf013x5[_0xea1b[12]]))[_0xea1b[11]](function(_0xf013x9){return _0xf013x6[_0xea1b[10]](200)[_0xea1b[9]](_0xf013x9)})[_0xea1b[8]](function(_0xf013x8){return handleError(_0xf013x6,_0xf013x8)})};exports[_0xea1b[15]]=function(_0xf013x5,_0xf013x6){return ReportAgentHistory[_0xea1b[15]]()[_0xea1b[11]](function(_0xf013xa){return _0xf013x6[_0xea1b[10]](200)[_0xea1b[9]](_0xf013xa)})[_0xea1b[8]](function(_0xf013x8){return handleError(_0xf013x6,_0xf013x8)})};function handleError(_0xf013x6,_0xf013x8){return _0xf013x6[_0xea1b[10]](500)[_0xea1b[9]](_0xf013x8)}
\ No newline at end of file