Built motion from commit e155ad4.|0.0.101
[motion.git] / server / api / desk_field / desk_field.controller.js
index 6b39f83..1be01f3 100644 (file)
@@ -1,104 +1 @@
-/**
- * Using Rails-like standard naming convention for endpoints.
- * GET     /api/desk/fields              ->  index
- * POST    /api/desk/fields              ->  create
- * GET     /api/desk/fields/:id          ->  show
- * PUT     /api/desk/fields/:id          ->  update
- * DELETE  /api/desk/fields/:id          ->  destroy
- */
-
-'use strict';
-
-
-var _ = require('lodash');
-
-var DeskField = require('../../models').DeskField;
-
-
-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 DeskFields
-exports.index = function(req, res) {
-  DeskField.findAll()
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Gets a single DeskField from the DB
-exports.show = function(req, res) {
-  DeskField.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Creates a new DeskField in the DB
-exports.create = function(req, res) {
-  DeskField.create(req.body)
-    .then(responseWithResult(res, 201))
-    .catch(handleError(res));
-}
-
-// Updates an existing DeskField in the DB
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  DeskField.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(saveUpdates(req.body))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Deletes a DeskField from the DB
-exports.destroy = function(req, res) {
-  DeskField.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(removeEntity(res))
-    .catch(handleError(res));
-}
+var _0x139e=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x44\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"];_0x139e[0];var _=require(_0x139e[1]);var DeskField=require(_0x139e[3])[_0x139e[2]];function handleError(_0x5967x4,_0x5967x5){_0x5967x5=_0x5967x5||500;return function(_0x5967x6){_0x5967x4[_0x139e[5]](_0x5967x5)[_0x139e[4]](_0x5967x6)}}function responseWithResult(_0x5967x4,_0x5967x5){_0x5967x5=_0x5967x5||200;return function(_0x5967x8){if(_0x5967x8){_0x5967x4[_0x139e[5]](_0x5967x5)[_0x139e[6]](_0x5967x8)}}}function handleEntityNotFound(_0x5967x4){return function(_0x5967x8){if(!_0x5967x8){_0x5967x4[_0x139e[5]](404)[_0x139e[7]]();return null};return _0x5967x8}}function saveUpdates(_0x5967xb){return function(_0x5967x8){return _0x5967x8[_0x139e[9]](_0x5967xb)[_0x139e[8]](function(_0x5967xc){return _0x5967xc})}}function removeEntity(_0x5967x4){return function(_0x5967x8){if(_0x5967x8){return _0x5967x8[_0x139e[10]]()[_0x139e[8]](function(){_0x5967x4[_0x139e[5]](204)[_0x139e[7]]()})}}}exports[_0x139e[11]]=function(_0x5967xe,_0x5967x4){DeskField[_0x139e[13]]()[_0x139e[8]](responseWithResult(_0x5967x4))[_0x139e[12]](handleError(_0x5967x4))};exports[_0x139e[14]]=function(_0x5967xe,_0x5967x4){DeskField[_0x139e[17]](_0x5967xe[_0x139e[16]][_0x139e[15]])[_0x139e[8]](handleEntityNotFound(_0x5967x4))[_0x139e[8]](responseWithResult(_0x5967x4))[_0x139e[12]](handleError(_0x5967x4))};exports[_0x139e[18]]=function(_0x5967xe,_0x5967x4){DeskField[_0x139e[18]](_0x5967xe[_0x139e[19]])[_0x139e[8]](responseWithResult(_0x5967x4,201))[_0x139e[12]](handleError(_0x5967x4))};exports[_0x139e[20]]=function(_0x5967xe,_0x5967x4){if(_0x5967xe[_0x139e[19]][_0x139e[15]]){delete _0x5967xe[_0x139e[19]][_0x139e[15]]};DeskField[_0x139e[17]](_0x5967xe[_0x139e[16]][_0x139e[15]])[_0x139e[8]](handleEntityNotFound(_0x5967x4))[_0x139e[8]](saveUpdates(_0x5967xe[_0x139e[19]]))[_0x139e[8]](responseWithResult(_0x5967x4))[_0x139e[12]](handleError(_0x5967x4))};exports[_0x139e[10]]=function(_0x5967xe,_0x5967x4){DeskField[_0x139e[17]](_0x5967xe[_0x139e[16]][_0x139e[15]])[_0x139e[8]](handleEntityNotFound(_0x5967x4))[_0x139e[8]](removeEntity(_0x5967x4))[_0x139e[12]](handleError(_0x5967x4))}
\ No newline at end of file