Built motion from commit 9ab4571.|0.0.110
[motion.git] / server / api / automation / automation.controller.js
index dc50214..15e2582 100644 (file)
@@ -1,168 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var util = require('util');
-
-var Automation = require('../../models').Automation;
-
-// Get list of agents
-exports.index = function(req, res, next) {
-
-  var attributes = ['fullname', 'name', 'email'];
-  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 + '%';
-    }
-  });
-
-  Automation
-    .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!'
-      });
-    });
-};
-
-// Get a single Automation
-exports.show = function(req, res) {
-  Automation
-    .findById(req.params.id)
-    .then(function(Automation) {
-      if (!Automation) {
-        return res.sendStatus(404);
-      }
-      return res.send(Automation);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new Automation in the DB.
-exports.create = function(req, res, next) {
-  Automation
-    .create(req.body)
-    .then(function() {
-      return res.sendStatus(201);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing Automation in the DB.
-exports.update = function(req, res, next) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  Automation
-    .findById(req.params.id)
-    .then(function(Automation) {
-      if (!Automation) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(Automation, req.body);
-      updated
-        .save()
-        .then(function() {
-          return res.status(200).send(Automation);
-        })
-        .catch(function(err) {
-          // return handleError(res, err);
-          return next(err);
-
-        });
-    })
-    .catch(function(err) {
-      return next(err);
-    });
-};
-
-// Deletes a Automation from the DB.
-exports.destroy = function(req, res) {
-  Automation
-    .findById(req.params.id)
-    .then(function(Automation) {
-      if (!Automation) {
-        return res.sendStatus(404);
-      }
-      Automation.destroy()
-        .then(function() {
-          return res.sendStatus(204);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-}
-
-exports.bulkDestroy = function(req, res) {
-  Automation
-    .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 _0xea1f=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x75\x74\x69\x6C","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x73\x65\x71\x75\x65\x6C\x69\x7A\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E","\x54\x6F\x6F\x6C\x73\x43\x6F\x6E\x64\x69\x74\x69\x6F\x6E","\x54\x6F\x6F\x6C\x73\x41\x63\x74\x69\x6F\x6E","\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","\x61\x6C\x6C","\x73\x63\x6F\x70\x65","\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","\x41\x6C\x6C","\x41\x6E\x79","\x41\x63\x74\x69\x6F\x6E\x73","\x75\x70\x64\x61\x74\x65","\x6C\x6F\x67","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x69\x73\x41\x72\x72\x61\x79","\x6C\x65\x6E\x67\x74\x68","\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x49\x64","\x66\x6F\x72\x45\x61\x63\x68","\x62\x75\x6C\x6B\x43\x72\x65\x61\x74\x65","\x64\x65\x73\x74\x72\x6F\x79","\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x41\x6C\x6C\x49\x64","\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x41\x6E\x79\x49\x64","\x74\x72\x61\x6E\x73\x61\x63\x74\x69\x6F\x6E","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79","\x69\x64\x73"];_0xea1f[0];var _=require(_0xea1f[1]);var util=require(_0xea1f[2]);var Util=require(_0xea1f[3]);var sequelize=require(_0xea1f[5])[_0xea1f[4]];var Automation=require(_0xea1f[5])[_0xea1f[6]];var ToolsCondition=require(_0xea1f[5])[_0xea1f[7]];var ToolsAction=require(_0xea1f[5])[_0xea1f[8]];exports[_0xea1f[9]]=function(_0x8d41x8,_0x8d41x9,_0x8d41xa){return Automation[_0xea1f[18]](_0xea1f[17])[_0xea1f[16]](Util[_0xea1f[15]](_0x8d41x8[_0xea1f[14]]))[_0xea1f[13]](function(_0x8d41xc){_0x8d41x9[_0xea1f[12]](200)[_0xea1f[11]](_0x8d41xc)})[_0xea1f[10]](function(_0x8d41xb){return handleError(_0x8d41x9,_0x8d41xb)})};exports[_0xea1f[19]]=function(_0x8d41x8,_0x8d41x9){return Automation[_0xea1f[18]](_0xea1f[17])[_0xea1f[23]](_0x8d41x8[_0xea1f[22]][_0xea1f[21]])[_0xea1f[13]](function(Automation){if(!Automation){return _0x8d41x9[_0xea1f[20]](404)};return _0x8d41x9[_0xea1f[11]](Automation)})[_0xea1f[10]](function(_0x8d41xb){return handleError(_0x8d41x9,_0x8d41xb)})};exports[_0xea1f[24]]=function(_0x8d41x8,_0x8d41x9,_0x8d41xa){return Automation[_0xea1f[24]](_0x8d41x8[_0xea1f[25]],{include:[{model:ToolsCondition,as:_0xea1f[26]},{model:ToolsCondition,as:_0xea1f[27]},{model:ToolsAction,as:_0xea1f[28]}]})[_0xea1f[13]](function(){return _0x8d41x9[_0xea1f[20]](201)})[_0xea1f[10]](function(_0x8d41xb){return handleError(_0x8d41x9,_0x8d41xb)})};exports[_0xea1f[29]]=function(_0x8d41x8,_0x8d41x9,_0x8d41xa){var _0x8d41xd;if(_0x8d41x8[_0xea1f[25]][_0xea1f[21]]){delete _0x8d41x8[_0xea1f[25]][_0xea1f[21]]};return sequelize[_0xea1f[41]](function(_0x8d41xe){return Automation[_0xea1f[23]](_0x8d41x8[_0xea1f[22]][_0xea1f[21]])[_0xea1f[13]](function(_0x8d41x11){if(!_0x8d41x11){return _0x8d41x9[_0xea1f[20]](404)};_0x8d41xd=_0x8d41x11;if(_0x8d41x8[_0xea1f[25]][_0xea1f[27]]){return ToolsCondition[_0xea1f[38]]({where:{AutomationAnyId:_0x8d41x8[_0xea1f[22]][_0xea1f[21]]},transaction:_0x8d41xe})}})[_0xea1f[13]](function(){if(_0x8d41x8[_0xea1f[25]][_0xea1f[27]]&&Array[_0xea1f[33]](_0x8d41x8[_0xea1f[25]].Any)&&_0x8d41x8[_0xea1f[25]][_0xea1f[27]][_0xea1f[34]]){_[_0xea1f[36]](_0x8d41x8[_0xea1f[25]].Any,function(_0x8d41x10){_0x8d41x10[_0xea1f[40]]=_0x8d41x8[_0xea1f[22]][_0xea1f[21]]});return ToolsCondition[_0xea1f[37]](_0x8d41x8[_0xea1f[25]].Any,{transaction:_0x8d41xe})};return})[_0xea1f[13]](function(){if(_0x8d41x8[_0xea1f[25]][_0xea1f[26]]){return ToolsCondition[_0xea1f[38]]({where:{AutomationAllId:_0x8d41x8[_0xea1f[22]][_0xea1f[21]]},transaction:_0x8d41xe})}})[_0xea1f[13]](function(){if(_0x8d41x8[_0xea1f[25]][_0xea1f[26]]&&Array[_0xea1f[33]](_0x8d41x8[_0xea1f[25]].All)&&_0x8d41x8[_0xea1f[25]][_0xea1f[26]][_0xea1f[34]]){_[_0xea1f[36]](_0x8d41x8[_0xea1f[25]].All,function(_0x8d41x10){_0x8d41x10[_0xea1f[39]]=_0x8d41x8[_0xea1f[22]][_0xea1f[21]]});return ToolsCondition[_0xea1f[37]](_0x8d41x8[_0xea1f[25]].All,{transaction:_0x8d41xe})};return})[_0xea1f[13]](function(){if(_0x8d41x8[_0xea1f[25]][_0xea1f[28]]){return ToolsAction[_0xea1f[38]]({where:{AutomationId:_0x8d41x8[_0xea1f[22]][_0xea1f[21]]},transaction:_0x8d41xe})}})[_0xea1f[13]](function(){if(_0x8d41x8[_0xea1f[25]][_0xea1f[28]]&&Array[_0xea1f[33]](_0x8d41x8[_0xea1f[25]].Actions)&&_0x8d41x8[_0xea1f[25]][_0xea1f[28]][_0xea1f[34]]){_[_0xea1f[36]](_0x8d41x8[_0xea1f[25]].Actions,function(_0x8d41x10){_0x8d41x10[_0xea1f[35]]=_0x8d41x8[_0xea1f[22]][_0xea1f[21]]});return ToolsAction[_0xea1f[37]](_0x8d41x8[_0xea1f[25]].Actions,{transaction:_0x8d41xe})};return})[_0xea1f[13]](function(){var _0x8d41xf=_[_0xea1f[31]](_0x8d41xd,_0x8d41x8[_0xea1f[25]]);return _0x8d41xf[_0xea1f[32]]({transaction:_0x8d41xe})})})[_0xea1f[13]](function(){return _0x8d41x9[_0xea1f[20]](200)})[_0xea1f[10]](function(_0x8d41xb){console[_0xea1f[30]](_0x8d41xb);return handleError(_0x8d41x9,_0x8d41xb)})};exports[_0xea1f[38]]=function(_0x8d41x8,_0x8d41x9){return Automation[_0xea1f[23]](_0x8d41x8[_0xea1f[22]][_0xea1f[21]])[_0xea1f[13]](function(Automation){if(!Automation){return _0x8d41x9[_0xea1f[20]](404)};Automation[_0xea1f[38]]()[_0xea1f[13]](function(){return _0x8d41x9[_0xea1f[20]](204)})[_0xea1f[10]](function(_0x8d41xb){return handleError(_0x8d41x9,_0x8d41xb)})})[_0xea1f[10]](function(_0x8d41xb){return handleError(_0x8d41x9,_0x8d41xb)})};exports[_0xea1f[42]]=function(_0x8d41x8,_0x8d41x9){return Automation[_0xea1f[38]]({where:{id:_0x8d41x8[_0xea1f[14]][_0xea1f[43]]},individualHooks:true})[_0xea1f[13]](function(){return _0x8d41x9[_0xea1f[20]](204)})[_0xea1f[10]](function(_0x8d41xb){return handleError(_0x8d41x9,_0x8d41xb)})};function handleError(_0x8d41x9,_0x8d41xb){return _0x8d41x9[_0xea1f[12]](500)[_0xea1f[11]](_0x8d41xb)}
\ No newline at end of file