Built motion from commit 2239aeb.|0.0.113
[motion.git] / server / api / variable / variable.controller.js
index 5cd10db..debb1eb 100644 (file)
@@ -1,220 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var Variable = require('../../models').Variable;
-var util = require('util');
-
-// Get list of variables
-exports.index = function(req, res) {
-
-  var attributes = ['name', 'description'];
-  var per_page = req.query.per_page ? parseInt(req.query.per_page, 10) : 100;
-  var page = req.query.page ? parseInt(req.query.page, 10) : 0;
-
-  var query = {
-    where: {},
-    limit: per_page,
-    offset: page * per_page
-  };
-
-  _.forIn(req.query, function(value, key) {
-    switch (key) {
-      case 'per_page':
-      case 'page':
-        break;
-      case 'sort_by':
-        query.order = util.format('%s %s', req.query.sort_by, req.query.sort_order || 'ASC') || null;
-        break;
-      case 'sort_order':
-        break;
-      case '$':
-        query.where.$or = [];
-        attributes.forEach(function(attribute) {
-          var tmp = {};
-          tmp[attribute] = {
-            $like: '%' + value + '%'
-          };
-
-          query.where.$or.push(tmp);
-        });
-        break;
-      default:
-        query.where[key] = {
-          $like: {}
-        };
-        query.where[key].$like = '%' + value + '%';
-    }
-  });
-
-  Variable
-    .findAndCountAll(query)
-    .then(function(result) {
-
-      var total_pages = Math.ceil(result.count / per_page);
-      var next_page = total_pages > (query.offset + 1) ? util.format('%s://%s%s?page=%d', req.protocol, req.headers.host, req.baseUrl, page + 1) : null;
-      var previous_page = page > 0 ? util.format('%s://%s%s?page=%d', req.protocol, req.headers.host, req.baseUrl, page - 1) : null;
-
-      res.status(200).send({
-        count: result.count,
-        rows: result.rows,
-        next_page: next_page,
-        previous_page: previous_page,
-        total_pages: total_pages
-      });
-
-    })
-    .catch(function(err) {
-      res.status(500).send({
-        error: 'Something blew up!'
-      });
-    });
-};
-
-exports.variableValidation = function(req, res) {
-  console.log(req.body);
-  Variable
-    .findAll({
-      where: {
-        name: req.body.name
-      }
-    })
-    .then(function(variables) {
-      if (!variables) {
-        return res.sendStatus(404);
-      }
-      return res.send(variables);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single variable
-exports.show = function(req, res) {
-  Variable
-    .findById(req.params.id)
-    .then(function(variable) {
-      if (!variable) {
-        return res.sendStatus(404);
-      }
-      return res.send(variable);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new variable in the DB.
-exports.create = function(req, res) {
-  Variable
-    .create(req.body)
-    .then(function(variable) {
-      return res.status(201).send(variable);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing variable in the DB.
-exports.update = function(req, res) {
-  Variable
-    .findAll({
-      where: {
-        name: req.body.name,
-        id: {
-          $ne: req.body.id
-        }
-      }
-    })
-    .then(function(variables) {
-      if (!variables) {
-        return res.sendStatus(404);
-      }
-      if (variables.length > 0) {
-        return res.status(500).send({
-          message: 'MESSAGE_EXIST_VARIABLE'
-        })
-      }
-      if (req.body.id) {
-        delete req.body.id;
-      }
-      Variable
-        .find({
-          where: {
-            id: req.params.id
-          }
-        })
-        .then(function(variable) {
-          if (!variable) {
-            return res.sendStatus(404);
-          }
-          var updated = _.merge(variable, req.body);
-          updated.save()
-            .then(function() {
-              return res.status(200).send(variable);
-            })
-            .catch(function(err) {
-              return handleError(res, err);
-            });
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a variable from the DB.
-exports.destroy = function(req, res) {
-  Variable
-    .findById(req.params.id)
-    .then(function(variable) {
-      if (!variable) {
-        return res.sendStatus(404);
-      }
-      variable.getZendeskTexts()
-        .then(function(texts) {
-          if (texts.length > 0) {
-            return res.status(500).send({
-              message: 'MESSAGE_VARIABLE_CONFIGURATION_ASSOCIATED'
-            });
-          }
-          variable.destroy()
-            .then(function() {
-              return res.sendStatus(204);
-            })
-            .catch(function(err) {
-              return handleError(res, err);
-            });
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-exports.bulkDestroy = function(req, res) {
-  Variable
-    .destroy({
-      where: {
-        id: req.query.id
-      },
-      individualHooks: true
-    })
-    .then(function() {
-      return res.sendStatus(204);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0xd00a=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x56\x61\x72\x69\x61\x62\x6C\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x69\x6E\x64\x65\x78","\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","\x73\x68\x6F\x77","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\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","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79","\x6D\x65\x73\x73\x61\x67\x65","\x56\x61\x72\x69\x61\x62\x6C\x65\x20\x69\x73\x20\x61\x73\x73\x6F\x63\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x61\x6E\x20\x69\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x27\x73\x20\x63\x6F\x6E\x66\x69\x67\x75\x72\x61\x74\x69\x6F\x6E","\x66\x69\x65\x6C\x64\x73","\x73\x63\x6F\x70\x65","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79","\x69\x64\x73","\x5A\x65\x6E\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x73","\x6C\x65\x6E\x67\x74\x68","\x44\x65\x73\x6B\x46\x69\x65\x6C\x64\x73","\x53\x61\x6C\x65\x73\x66\x6F\x72\x63\x65\x46\x69\x65\x6C\x64\x73","\x46\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x73","\x53\x75\x67\x61\x72\x63\x72\x6D\x46\x69\x65\x6C\x64\x73"];_0xd00a[0];var _=require(_0xd00a[1]);var Variable=require(_0xd00a[3])[_0xd00a[2]];var Util=require(_0xd00a[4]);exports[_0xd00a[5]]= function(_0x44f6x4,_0x44f6x5,_0x44f6x6){return Variable[_0xd00a[12]](Util[_0xd00a[11]](_0x44f6x4[_0xd00a[10]]))[_0xd00a[9]](function(_0x44f6x8){_0x44f6x5[_0xd00a[8]](200)[_0xd00a[7]](_0x44f6x8)})[_0xd00a[6]](function(_0x44f6x7){return handleError(_0x44f6x5,_0x44f6x7)})};exports[_0xd00a[13]]= function(_0x44f6x4,_0x44f6x5){return Variable[_0xd00a[17]](_0x44f6x4[_0xd00a[16]][_0xd00a[15]])[_0xd00a[9]](function(_0x44f6x9){if(!_0x44f6x9){return _0x44f6x5[_0xd00a[14]](404)};return _0x44f6x5[_0xd00a[7]](_0x44f6x9)})[_0xd00a[6]](function(_0x44f6x7){return handleError(_0x44f6x5,_0x44f6x7)})};exports[_0xd00a[18]]= function(_0x44f6x4,_0x44f6x5){return Variable[_0xd00a[18]](_0x44f6x4[_0xd00a[19]])[_0xd00a[9]](function(_0x44f6x9){return _0x44f6x5[_0xd00a[8]](201)[_0xd00a[7]](_0x44f6x9)})[_0xd00a[6]](function(_0x44f6x7){return handleError(_0x44f6x5,_0x44f6x7)})};exports[_0xd00a[20]]= function(_0x44f6x4,_0x44f6x5){if(_0x44f6x4[_0xd00a[19]][_0xd00a[15]]){delete _0x44f6x4[_0xd00a[19]][_0xd00a[15]]};return Variable[_0xd00a[17]](_0x44f6x4[_0xd00a[16]][_0xd00a[15]])[_0xd00a[9]](function(_0x44f6x9){if(!_0x44f6x9){return _0x44f6x5[_0xd00a[14]](404)};var _0x44f6xa=_[_0xd00a[21]](_0x44f6x9,_0x44f6x4[_0xd00a[19]]);return _0x44f6xa[_0xd00a[22]]()})[_0xd00a[9]](function(_0x44f6x9){return _0x44f6x5[_0xd00a[8]](200)[_0xd00a[7]](_0x44f6x9)})[_0xd00a[6]](function(_0x44f6x7){return handleError(_0x44f6x5,_0x44f6x7)})};exports[_0xd00a[23]]= function(_0x44f6x4,_0x44f6x5){return Variable[_0xd00a[27]](_0xd00a[26])[_0xd00a[17]](_0x44f6x4[_0xd00a[16]][_0xd00a[15]])[_0xd00a[9]](function(_0x44f6x9){if(!_0x44f6x9){return _0x44f6x5[_0xd00a[14]](404)};if(variableHasAssociation(_0x44f6x9)){var _0x44f6x7= new Error();_0x44f6x7[_0xd00a[24]]= _0xd00a[25];throw _0x44f6x7};return _0x44f6x9[_0xd00a[23]]()})[_0xd00a[9]](function(){return _0x44f6x5[_0xd00a[14]](204)})[_0xd00a[6]](function(_0x44f6x7){return handleError(_0x44f6x5,_0x44f6x7)})};exports[_0xd00a[28]]= function(_0x44f6x4,_0x44f6x5){return Variable[_0xd00a[23]]({where:{id:_0x44f6x4[_0xd00a[10]][_0xd00a[29]]},individualHooks:true})[_0xd00a[9]](function(){return _0x44f6x5[_0xd00a[14]](204)})[_0xd00a[6]](function(_0x44f6x7){return handleError(_0x44f6x5,_0x44f6x7)})};function handleError(_0x44f6x5,_0x44f6x7){return _0x44f6x5[_0xd00a[8]](500)[_0xd00a[7]](_0x44f6x7)}function variableHasAssociation(_0x44f6x9){return ((_0x44f6x9[_0xd00a[30]]&& _0x44f6x9[_0xd00a[30]][_0xd00a[31]]> 0)|| (_0x44f6x9[_0xd00a[32]]&& _0x44f6x9[_0xd00a[32]][_0xd00a[31]]> 0)|| (_0x44f6x9[_0xd00a[33]]&& _0x44f6x9[_0xd00a[33]][_0xd00a[31]]> 0)|| (_0x44f6x9[_0xd00a[34]]&& _0x44f6x9[_0xd00a[34]][_0xd00a[31]]> 0)|| (_0x44f6x9[_0xd00a[35]]&& _0x44f6x9[_0xd00a[35]][_0xd00a[31]]> 0))}
\ No newline at end of file