Built motion from commit 3594e56.|0.0.120
[motion.git] / server / api / report_agent / report_agent.controller.js
index ffc7705..f11cc4a 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 _0x87a4=["\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","\x72\x6F\x6C\x65","\x75\x73\x65\x72","\x61\x67\x65\x6E\x74","\x6D\x65\x6D\x62\x65\x72\x6E\x61\x6D\x65","\x6E\x61\x6D\x65","\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"];_0x87a4[0];var _=require(_0x87a4[1]);var ReportAgent=require(_0x87a4[3])[_0x87a4[2]];var ReportAgentHistory=require(_0x87a4[3])[_0x87a4[5]][_0x87a4[4]];var Util=require(_0x87a4[6]);exports[_0x87a4[7]]= function(_0xc9f3x5,_0xc9f3x6,_0xc9f3x7){var _0xc9f3x8={};if(_0xc9f3x5[_0x87a4[9]][_0x87a4[8]]=== _0x87a4[10]){_0xc9f3x8[_0x87a4[11]]= _0xc9f3x5[_0x87a4[9]][_0x87a4[12]]};return ReportAgent[_0x87a4[19]](Util[_0x87a4[18]](_0xc9f3x5[_0x87a4[17]],_0xc9f3x8))[_0x87a4[16]](function(_0xc9f3xa){return _0xc9f3x6[_0x87a4[15]](200)[_0x87a4[14]](_0xc9f3xa)})[_0x87a4[13]](function(_0xc9f3x9){return handleError(_0xc9f3x6,_0xc9f3x9)})};exports[_0x87a4[20]]= function(_0xc9f3x5,_0xc9f3x6){return ReportAgentHistory[_0x87a4[20]]()[_0x87a4[16]](function(_0xc9f3xb){return _0xc9f3x6[_0x87a4[15]](200)[_0x87a4[14]](_0xc9f3xb)})[_0x87a4[13]](function(_0xc9f3x9){return handleError(_0xc9f3x6,_0xc9f3x9)})};function handleError(_0xc9f3x6,_0xc9f3x9){return _0xc9f3x6[_0x87a4[15]](500)[_0x87a4[14]](_0xc9f3x9)}
\ No newline at end of file