Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / freshdesk_field / freshdesk_field.controller.js
index a93707d..4a35db8 100644 (file)
@@ -1 +1,104 @@
-var _0xe314=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x46\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x73\x65\x6E\x64","\x73\x74\x61\x74\x75\x73","\x6A\x73\x6F\x6E","\x65\x6E\x64","\x74\x68\x65\x6E","\x75\x70\x64\x61\x74\x65\x41\x74\x74\x72\x69\x62\x75\x74\x65\x73","\x64\x65\x73\x74\x72\x6F\x79","\x69\x6E\x64\x65\x78","\x63\x61\x74\x63\x68","\x66\x69\x6E\x64\x41\x6C\x6C","\x73\x68\x6F\x77","\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"];_0xe314[0];var _=require(_0xe314[1]);var FreshdeskField=require(_0xe314[3])[_0xe314[2]];function handleError(_0xf5fbx4,_0xf5fbx5){_0xf5fbx5=_0xf5fbx5||500;return function(_0xf5fbx6){_0xf5fbx4[_0xe314[5]](_0xf5fbx5)[_0xe314[4]](_0xf5fbx6)};}function responseWithResult(_0xf5fbx4,_0xf5fbx5){_0xf5fbx5=_0xf5fbx5||200;return function(_0xf5fbx8){if(_0xf5fbx8){_0xf5fbx4[_0xe314[5]](_0xf5fbx5)[_0xe314[6]](_0xf5fbx8)}};}function handleEntityNotFound(_0xf5fbx4){return function(_0xf5fbx8){if(!_0xf5fbx8){_0xf5fbx4[_0xe314[5]](404)[_0xe314[7]]();return null;};return _0xf5fbx8;}}function saveUpdates(_0xf5fbxb){return function(_0xf5fbx8){return _0xf5fbx8[_0xe314[9]](_0xf5fbxb)[_0xe314[8]](function(_0xf5fbxc){return _0xf5fbxc})}}function removeEntity(_0xf5fbx4){return function(_0xf5fbx8){if(_0xf5fbx8){return _0xf5fbx8[_0xe314[10]]()[_0xe314[8]](function(){_0xf5fbx4[_0xe314[5]](204)[_0xe314[7]]()})}}}exports[_0xe314[11]]=function(_0xf5fbxe,_0xf5fbx4){FreshdeskField[_0xe314[13]]()[_0xe314[8]](responseWithResult(_0xf5fbx4))[_0xe314[12]](handleError(_0xf5fbx4))};exports[_0xe314[14]]=function(_0xf5fbxe,_0xf5fbx4){FreshdeskField[_0xe314[17]](_0xf5fbxe[_0xe314[16]][_0xe314[15]])[_0xe314[8]](handleEntityNotFound(_0xf5fbx4))[_0xe314[8]](responseWithResult(_0xf5fbx4))[_0xe314[12]](handleError(_0xf5fbx4))};exports[_0xe314[18]]=function(_0xf5fbxe,_0xf5fbx4){FreshdeskField[_0xe314[18]](_0xf5fbxe[_0xe314[19]])[_0xe314[8]](responseWithResult(_0xf5fbx4,201))[_0xe314[12]](handleError(_0xf5fbx4))};exports[_0xe314[20]]=function(_0xf5fbxe,_0xf5fbx4){if(_0xf5fbxe[_0xe314[19]][_0xe314[15]]){delete _0xf5fbxe[_0xe314[19]][_0xe314[15]]};FreshdeskField[_0xe314[17]](_0xf5fbxe[_0xe314[16]][_0xe314[15]])[_0xe314[8]](handleEntityNotFound(_0xf5fbx4))[_0xe314[8]](saveUpdates(_0xf5fbxe[_0xe314[19]]))[_0xe314[8]](responseWithResult(_0xf5fbx4))[_0xe314[12]](handleError(_0xf5fbx4));};exports[_0xe314[10]]=function(_0xf5fbxe,_0xf5fbx4){FreshdeskField[_0xe314[17]](_0xf5fbxe[_0xe314[16]][_0xe314[15]])[_0xe314[8]](handleEntityNotFound(_0xf5fbx4))[_0xe314[8]](removeEntity(_0xf5fbx4))[_0xe314[12]](handleError(_0xf5fbx4))};
\ No newline at end of file
+/**
+ * Using Rails-like standard naming convention for endpoints.
+ * GET     /api/freshdesk/fields              ->  index
+ * POST    /api/freshdesk/fields              ->  create
+ * GET     /api/freshdesk/fields/:id          ->  show
+ * PUT     /api/freshdesk/fields/:id          ->  update
+ * DELETE  /api/freshdesk/fields/:id          ->  destroy
+ */
+
+'use strict';
+
+
+var _ = require('lodash');
+
+var FreshdeskField = require('../../models').FreshdeskField;
+
+
+function handleError(res, statusCode) {
+  statusCode = statusCode || 500;
+  return function(err) {
+    res.status(statusCode).send(err);
+  };
+}
+
+function responseWithResult(res, statusCode) {
+  statusCode = statusCode || 200;
+  return function(entity) {
+    if (entity) {
+      res.status(statusCode).json(entity);
+    }
+  };
+}
+
+function handleEntityNotFound(res) {
+  return function(entity) {
+    if (!entity) {
+      res.status(404).end();
+      return null;
+    }
+    return entity;
+  };
+}
+
+function saveUpdates(updates) {
+  return function(entity) {
+    return entity.updateAttributes(updates)
+      .then(function(updated) {
+        return updated;
+      });
+  };
+}
+
+function removeEntity(res) {
+  return function(entity) {
+    if (entity) {
+      return entity.destroy()
+        .then(function() {
+          res.status(204).end();
+        });
+    }
+  };
+}
+
+// Gets a list of FreshdeskFields
+exports.index = function(req, res) {
+  FreshdeskField.findAll()
+    .then(responseWithResult(res))
+    .catch(handleError(res));
+}
+
+// Gets a single FreshdeskField from the DB
+exports.show = function(req, res) {
+  FreshdeskField.findById(req.params.id)
+    .then(handleEntityNotFound(res))
+    .then(responseWithResult(res))
+    .catch(handleError(res));
+}
+
+// Creates a new FreshdeskField in the DB
+exports.create = function(req, res) {
+  FreshdeskField.create(req.body)
+    .then(responseWithResult(res, 201))
+    .catch(handleError(res));
+}
+
+// Updates an existing FreshdeskField in the DB
+exports.update = function(req, res) {
+  if (req.body.id) {
+    delete req.body.id;
+  }
+  FreshdeskField.findById(req.params.id)
+    .then(handleEntityNotFound(res))
+    .then(saveUpdates(req.body))
+    .then(responseWithResult(res))
+    .catch(handleError(res));
+}
+
+// Deletes a FreshdeskField from the DB
+exports.destroy = function(req, res) {
+  FreshdeskField.findById(req.params.id)
+    .then(handleEntityNotFound(res))
+    .then(removeEntity(res))
+    .catch(handleError(res));
+}