Built motion from commit 48095ee.|0.0.102
[motion.git] / server / api / desk_configuration / desk_configuration.controller.js
index 3824ca1..b309837 100644 (file)
@@ -1,145 +1 @@
-/**
- * Using Rails-like standard naming convention for endpoints.
- * GET     /api/desk/configurations              ->  index
- * POST    /api/desk/configurations              ->  create
- * GET     /api/desk/configurations/:id          ->  show
- * PUT     /api/desk/configurations/:id          ->  update
- * DELETE  /api/desk/configurations/:id          ->  destroy
- */
-
-'use strict';
-
-var _ = require('lodash');
-
-var DeskConfiguration = require('../../models').DeskConfiguration;
-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 DeskConfigurations
-exports.index = function(req, res) {
-  DeskConfiguration.findAll({
-      where: req.query
-    })
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Gets a single DeskConfiguration from the DB
-exports.show = function(req, res) {
-  DeskConfiguration.find({
-      where: {
-        id: req.params.id
-      },
-      include: [{
-        model: DeskField,
-        as: 'Subject'
-      }, {
-        model: DeskField,
-        as: 'Description'
-      }, {
-        model: DeskField,
-        as: 'Field'
-      }]
-    })
-    .then(handleEntityNotFound(res))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Creates a new DeskConfiguration in the DB
-exports.create = function(req, res) {
-  DeskConfiguration.create(req.body)
-    .then(responseWithResult(res, 201))
-    .catch(handleError(res));
-}
-
-// Updates an existing DeskConfiguration in the DB
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  DeskConfiguration.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(saveUpdates(req.body))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Deletes a DeskConfiguration from the DB
-exports.destroy = function(req, res) {
-  DeskConfiguration.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(removeEntity(res))
-    .catch(handleError(res));
-}
-
-exports.addConfigurationField = function(req, res, next) {
-  // console.log(req.params);
-  var deskConfiguration;
-  DeskConfiguration
-    .findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(function(desk_configuration) {
-      deskConfiguration = desk_configuration;
-      return DeskField.create(req.body)
-    })
-    .then(function(deskField) {
-      switch (req.params.type) {
-        case 'subject':
-          return [deskConfiguration.addSubject(deskField), deskField];
-        case 'description':
-          return [deskConfiguration.addDescription(deskField), deskField];
-        case 'field':
-          return [deskConfiguration.addField(deskField), deskField];
-      }
-    })
-    .spread(function(data, deskField) {
-      return res.status(201).json(deskField);
-    })
-    .catch(handleError(res));
-};
+var _0x3a52=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x44\x65\x73\x6B\x43\x6F\x6E\x66\x69\x67\x75\x72\x61\x74\x69\x6F\x6E","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x44\x65\x73\x6B\x46\x69\x65\x6C\x64","\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","\x71\x75\x65\x72\x79","\x66\x69\x6E\x64\x41\x6C\x6C","\x73\x68\x6F\x77","\x69\x64","\x70\x61\x72\x61\x6D\x73","\x53\x75\x62\x6A\x65\x63\x74","\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6F\x6E","\x46\x69\x65\x6C\x64","\x66\x69\x6E\x64","\x63\x72\x65\x61\x74\x65","\x62\x6F\x64\x79","\x75\x70\x64\x61\x74\x65","\x66\x69\x6E\x64\x42\x79\x49\x64","\x61\x64\x64\x43\x6F\x6E\x66\x69\x67\x75\x72\x61\x74\x69\x6F\x6E\x46\x69\x65\x6C\x64","\x73\x70\x72\x65\x61\x64","\x61\x64\x64\x53\x75\x62\x6A\x65\x63\x74","\x73\x75\x62\x6A\x65\x63\x74","\x61\x64\x64\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6F\x6E","\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6F\x6E","\x61\x64\x64\x46\x69\x65\x6C\x64","\x66\x69\x65\x6C\x64","\x74\x79\x70\x65"];_0x3a52[0];var _=require(_0x3a52[1]);var DeskConfiguration=require(_0x3a52[3])[_0x3a52[2]];var DeskField=require(_0x3a52[3])[_0x3a52[4]];function handleError(_0xd185x5,_0xd185x6){_0xd185x6=_0xd185x6||500;return function(_0xd185x7){_0xd185x5[_0x3a52[6]](_0xd185x6)[_0x3a52[5]](_0xd185x7)}}function responseWithResult(_0xd185x5,_0xd185x6){_0xd185x6=_0xd185x6||200;return function(_0xd185x9){if(_0xd185x9){_0xd185x5[_0x3a52[6]](_0xd185x6)[_0x3a52[7]](_0xd185x9)}}}function handleEntityNotFound(_0xd185x5){return function(_0xd185x9){if(!_0xd185x9){_0xd185x5[_0x3a52[6]](404)[_0x3a52[8]]();return null};return _0xd185x9}}function saveUpdates(_0xd185xc){return function(_0xd185x9){return _0xd185x9[_0x3a52[10]](_0xd185xc)[_0x3a52[9]](function(_0xd185xd){return _0xd185xd})}}function removeEntity(_0xd185x5){return function(_0xd185x9){if(_0xd185x9){return _0xd185x9[_0x3a52[11]]()[_0x3a52[9]](function(){_0xd185x5[_0x3a52[6]](204)[_0x3a52[8]]()})}}}exports[_0x3a52[12]]=function(_0xd185xf,_0xd185x5){DeskConfiguration[_0x3a52[15]]({where:_0xd185xf[_0x3a52[14]]})[_0x3a52[9]](responseWithResult(_0xd185x5))[_0x3a52[13]](handleError(_0xd185x5))};exports[_0x3a52[16]]=function(_0xd185xf,_0xd185x5){DeskConfiguration[_0x3a52[22]]({where:{id:_0xd185xf[_0x3a52[18]][_0x3a52[17]]},include:[{model:DeskField,as:_0x3a52[19]},{model:DeskField,as:_0x3a52[20]},{model:DeskField,as:_0x3a52[21]}]})[_0x3a52[9]](handleEntityNotFound(_0xd185x5))[_0x3a52[9]](responseWithResult(_0xd185x5))[_0x3a52[13]](handleError(_0xd185x5))};exports[_0x3a52[23]]=function(_0xd185xf,_0xd185x5){DeskConfiguration[_0x3a52[23]](_0xd185xf[_0x3a52[24]])[_0x3a52[9]](responseWithResult(_0xd185x5,201))[_0x3a52[13]](handleError(_0xd185x5))};exports[_0x3a52[25]]=function(_0xd185xf,_0xd185x5){if(_0xd185xf[_0x3a52[24]][_0x3a52[17]]){delete _0xd185xf[_0x3a52[24]][_0x3a52[17]]};DeskConfiguration[_0x3a52[26]](_0xd185xf[_0x3a52[18]][_0x3a52[17]])[_0x3a52[9]](handleEntityNotFound(_0xd185x5))[_0x3a52[9]](saveUpdates(_0xd185xf[_0x3a52[24]]))[_0x3a52[9]](responseWithResult(_0xd185x5))[_0x3a52[13]](handleError(_0xd185x5))};exports[_0x3a52[11]]=function(_0xd185xf,_0xd185x5){DeskConfiguration[_0x3a52[26]](_0xd185xf[_0x3a52[18]][_0x3a52[17]])[_0x3a52[9]](handleEntityNotFound(_0xd185x5))[_0x3a52[9]](removeEntity(_0xd185x5))[_0x3a52[13]](handleError(_0xd185x5))};exports[_0x3a52[27]]=function(_0xd185xf,_0xd185x5,_0xd185x10){var _0xd185x11;DeskConfiguration[_0x3a52[26]](_0xd185xf[_0x3a52[18]][_0x3a52[17]])[_0x3a52[9]](handleEntityNotFound(_0xd185x5))[_0x3a52[9]](function(_0xd185x14){_0xd185x11=_0xd185x14;return DeskField[_0x3a52[23]](_0xd185xf[_0x3a52[24]])})[_0x3a52[9]](function(_0xd185x13){switch(_0xd185xf[_0x3a52[18]][_0x3a52[35]]){case _0x3a52[30]:return [_0xd185x11[_0x3a52[29]](_0xd185x13),_0xd185x13];case _0x3a52[32]:return [_0xd185x11[_0x3a52[31]](_0xd185x13),_0xd185x13];case _0x3a52[34]:return [_0xd185x11[_0x3a52[33]](_0xd185x13),_0xd185x13]}})[_0x3a52[28]](function(_0xd185x12,_0xd185x13){return _0xd185x5[_0x3a52[6]](201)[_0x3a52[7]](_0xd185x13)})[_0x3a52[13]](handleError(_0xd185x5))}
\ No newline at end of file