Built motion from commit d3a776a.|0.0.126
[motion.git] / server / api / sugarcrm_configuration / sugarcrm_configuration.controller.js
index 5918283..6b78d19 100644 (file)
@@ -1,145 +1 @@
-/**
- * Using Rails-like standard naming convention for endpoints.
- * GET     /api/sugarcrm/configurations              ->  index
- * POST    /api/sugarcrm/configurations              ->  create
- * GET     /api/sugarcrm/configurations/:id          ->  show
- * PUT     /api/sugarcrm/configurations/:id          ->  update
- * DELETE  /api/sugarcrm/configurations/:id          ->  destroy
- */
-
-'use strict';
-
-
-var _ = require('lodash');
-
-var SugarcrmConfiguration = require('../../models').SugarcrmConfiguration;
-var SugarcrmField = require('../../models').SugarcrmField;
-
-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 SugarcrmConfigurations
-exports.index = function(req, res) {
-  SugarcrmConfiguration.findAll({
-      where: req.query
-    })
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Gets a single SugarcrmConfiguration from the DB
-exports.show = function(req, res) {
-  SugarcrmConfiguration.find({
-      where: {
-        id: req.params.id
-      },
-      include: [{
-        model: SugarcrmField,
-        as: 'Subject'
-      }, {
-        model: SugarcrmField,
-        as: 'Description'
-      }, {
-        model: SugarcrmField,
-        as: 'Field'
-      }]
-    })
-    .then(handleEntityNotFound(res))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Creates a new SugarcrmConfiguration in the DB
-exports.create = function(req, res) {
-  SugarcrmConfiguration.create(req.body)
-    .then(responseWithResult(res, 201))
-    .catch(handleError(res));
-}
-
-// Updates an existing SugarcrmConfiguration in the DB
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  SugarcrmConfiguration.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(saveUpdates(req.body))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Deletes a SugarcrmConfiguration from the DB
-exports.destroy = function(req, res) {
-  SugarcrmConfiguration.findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(removeEntity(res))
-    .catch(handleError(res));
-}
-
-exports.addConfigurationField = function(req, res, next) {
-  var sugarcrmConfiguration;
-  SugarcrmConfiguration
-    .findById(req.params.id)
-    .then(handleEntityNotFound(res))
-    .then(function(sugarcrm_configuration) {
-      sugarcrmConfiguration = sugarcrm_configuration;
-      return SugarcrmField.create(req.body)
-    })
-    .then(function(sugarcrmField) {
-      switch (req.params.type) {
-        case 'subject':
-          return [sugarcrmConfiguration.addSubject(sugarcrmField), sugarcrmField];
-        case 'description':
-          return [sugarcrmConfiguration.addDescription(sugarcrmField), sugarcrmField];
-        case 'field':
-          return [sugarcrmConfiguration.addField(sugarcrmField), sugarcrmField];
-      }
-    })
-    .spread(function(data, sugarcrmField) {
-      return res.status(201).json(sugarcrmField);
-    })
-    .catch(handleError(res));
-};
+var _0xed8d=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x53\x75\x67\x61\x72\x63\x72\x6D\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","\x53\x75\x67\x61\x72\x63\x72\x6D\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"];_0xed8d[0];var _=require(_0xed8d[1]);var SugarcrmConfiguration=require(_0xed8d[3])[_0xed8d[2]];var SugarcrmField=require(_0xed8d[3])[_0xed8d[4]];function handleError(_0x8bbax5,_0x8bbax6){_0x8bbax6= _0x8bbax6|| 500;return function(_0x8bbax7){_0x8bbax5[_0xed8d[6]](_0x8bbax6)[_0xed8d[5]](_0x8bbax7)}}function responseWithResult(_0x8bbax5,_0x8bbax6){_0x8bbax6= _0x8bbax6|| 200;return function(_0x8bbax9){if(_0x8bbax9){_0x8bbax5[_0xed8d[6]](_0x8bbax6)[_0xed8d[7]](_0x8bbax9)}}}function handleEntityNotFound(_0x8bbax5){return function(_0x8bbax9){if(!_0x8bbax9){_0x8bbax5[_0xed8d[6]](404)[_0xed8d[8]]();return null};return _0x8bbax9}}function saveUpdates(_0x8bbaxc){return function(_0x8bbax9){return _0x8bbax9[_0xed8d[10]](_0x8bbaxc)[_0xed8d[9]](function(_0x8bbaxd){return _0x8bbaxd})}}function removeEntity(_0x8bbax5){return function(_0x8bbax9){if(_0x8bbax9){return _0x8bbax9[_0xed8d[11]]()[_0xed8d[9]](function(){_0x8bbax5[_0xed8d[6]](204)[_0xed8d[8]]()})}}}exports[_0xed8d[12]]= function(_0x8bbaxf,_0x8bbax5){SugarcrmConfiguration[_0xed8d[15]]({where:_0x8bbaxf[_0xed8d[14]]})[_0xed8d[9]](responseWithResult(_0x8bbax5))[_0xed8d[13]](handleError(_0x8bbax5))};exports[_0xed8d[16]]= function(_0x8bbaxf,_0x8bbax5){SugarcrmConfiguration[_0xed8d[22]]({where:{id:_0x8bbaxf[_0xed8d[18]][_0xed8d[17]]},include:[{model:SugarcrmField,as:_0xed8d[19]},{model:SugarcrmField,as:_0xed8d[20]},{model:SugarcrmField,as:_0xed8d[21]}]})[_0xed8d[9]](handleEntityNotFound(_0x8bbax5))[_0xed8d[9]](responseWithResult(_0x8bbax5))[_0xed8d[13]](handleError(_0x8bbax5))};exports[_0xed8d[23]]= function(_0x8bbaxf,_0x8bbax5){SugarcrmConfiguration[_0xed8d[23]](_0x8bbaxf[_0xed8d[24]])[_0xed8d[9]](responseWithResult(_0x8bbax5,201))[_0xed8d[13]](handleError(_0x8bbax5))};exports[_0xed8d[25]]= function(_0x8bbaxf,_0x8bbax5){if(_0x8bbaxf[_0xed8d[24]][_0xed8d[17]]){delete _0x8bbaxf[_0xed8d[24]][_0xed8d[17]]};SugarcrmConfiguration[_0xed8d[26]](_0x8bbaxf[_0xed8d[18]][_0xed8d[17]])[_0xed8d[9]](handleEntityNotFound(_0x8bbax5))[_0xed8d[9]](saveUpdates(_0x8bbaxf[_0xed8d[24]]))[_0xed8d[9]](responseWithResult(_0x8bbax5))[_0xed8d[13]](handleError(_0x8bbax5))};exports[_0xed8d[11]]= function(_0x8bbaxf,_0x8bbax5){SugarcrmConfiguration[_0xed8d[26]](_0x8bbaxf[_0xed8d[18]][_0xed8d[17]])[_0xed8d[9]](handleEntityNotFound(_0x8bbax5))[_0xed8d[9]](removeEntity(_0x8bbax5))[_0xed8d[13]](handleError(_0x8bbax5))};exports[_0xed8d[27]]= function(_0x8bbaxf,_0x8bbax5,_0x8bbax10){var _0x8bbax11;SugarcrmConfiguration[_0xed8d[26]](_0x8bbaxf[_0xed8d[18]][_0xed8d[17]])[_0xed8d[9]](handleEntityNotFound(_0x8bbax5))[_0xed8d[9]](function(_0x8bbax14){_0x8bbax11= _0x8bbax14;return SugarcrmField[_0xed8d[23]](_0x8bbaxf[_0xed8d[24]])})[_0xed8d[9]](function(_0x8bbax13){switch(_0x8bbaxf[_0xed8d[18]][_0xed8d[35]]){case _0xed8d[30]:return [_0x8bbax11[_0xed8d[29]](_0x8bbax13),_0x8bbax13];case _0xed8d[32]:return [_0x8bbax11[_0xed8d[31]](_0x8bbax13),_0x8bbax13];case _0xed8d[34]:return [_0x8bbax11[_0xed8d[33]](_0x8bbax13),_0x8bbax13]}})[_0xed8d[28]](function(_0x8bbax12,_0x8bbax13){return _0x8bbax5[_0xed8d[6]](201)[_0xed8d[7]](_0x8bbax13)})[_0xed8d[13]](handleError(_0x8bbax5))}
\ No newline at end of file