Built motion from commit 3594e56.|0.0.120
[motion.git] / server / api / automation / automation.controller.js
index dc50214..e9b89b4 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 _0x77ad=["\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"];_0x77ad[0];var _=require(_0x77ad[1]);var util=require(_0x77ad[2]);var Util=require(_0x77ad[3]);var sequelize=require(_0x77ad[5])[_0x77ad[4]];var Automation=require(_0x77ad[5])[_0x77ad[6]];var ToolsCondition=require(_0x77ad[5])[_0x77ad[7]];var ToolsAction=require(_0x77ad[5])[_0x77ad[8]];exports[_0x77ad[9]]= function(_0x2399x8,_0x2399x9,_0x2399xa){return Automation[_0x77ad[18]](_0x77ad[17])[_0x77ad[16]](Util[_0x77ad[15]](_0x2399x8[_0x77ad[14]]))[_0x77ad[13]](function(_0x2399xc){_0x2399x9[_0x77ad[12]](200)[_0x77ad[11]](_0x2399xc)})[_0x77ad[10]](function(_0x2399xb){return handleError(_0x2399x9,_0x2399xb)})};exports[_0x77ad[19]]= function(_0x2399x8,_0x2399x9){return Automation[_0x77ad[18]](_0x77ad[17])[_0x77ad[23]](_0x2399x8[_0x77ad[22]][_0x77ad[21]])[_0x77ad[13]](function(Automation){if(!Automation){return _0x2399x9[_0x77ad[20]](404)};return _0x2399x9[_0x77ad[11]](Automation)})[_0x77ad[10]](function(_0x2399xb){return handleError(_0x2399x9,_0x2399xb)})};exports[_0x77ad[24]]= function(_0x2399x8,_0x2399x9,_0x2399xa){return Automation[_0x77ad[24]](_0x2399x8[_0x77ad[25]],{include:[{model:ToolsCondition,as:_0x77ad[26]},{model:ToolsCondition,as:_0x77ad[27]},{model:ToolsAction,as:_0x77ad[28]}]})[_0x77ad[13]](function(){return _0x2399x9[_0x77ad[20]](201)})[_0x77ad[10]](function(_0x2399xb){return handleError(_0x2399x9,_0x2399xb)})};exports[_0x77ad[29]]= function(_0x2399x8,_0x2399x9,_0x2399xa){var _0x2399xd;if(_0x2399x8[_0x77ad[25]][_0x77ad[21]]){delete _0x2399x8[_0x77ad[25]][_0x77ad[21]]};return sequelize[_0x77ad[41]](function(_0x2399xe){return Automation[_0x77ad[23]](_0x2399x8[_0x77ad[22]][_0x77ad[21]])[_0x77ad[13]](function(_0x2399x11){if(!_0x2399x11){return _0x2399x9[_0x77ad[20]](404)};_0x2399xd= _0x2399x11;if(_0x2399x8[_0x77ad[25]][_0x77ad[27]]){return ToolsCondition[_0x77ad[38]]({where:{AutomationAnyId:_0x2399x8[_0x77ad[22]][_0x77ad[21]]},transaction:_0x2399xe})}})[_0x77ad[13]](function(){if(_0x2399x8[_0x77ad[25]][_0x77ad[27]]&& Array[_0x77ad[33]](_0x2399x8[_0x77ad[25]].Any)&& _0x2399x8[_0x77ad[25]][_0x77ad[27]][_0x77ad[34]]){_[_0x77ad[36]](_0x2399x8[_0x77ad[25]].Any,function(_0x2399x10){_0x2399x10[_0x77ad[40]]= _0x2399x8[_0x77ad[22]][_0x77ad[21]]});return ToolsCondition[_0x77ad[37]](_0x2399x8[_0x77ad[25]].Any,{transaction:_0x2399xe})};return})[_0x77ad[13]](function(){if(_0x2399x8[_0x77ad[25]][_0x77ad[26]]){return ToolsCondition[_0x77ad[38]]({where:{AutomationAllId:_0x2399x8[_0x77ad[22]][_0x77ad[21]]},transaction:_0x2399xe})}})[_0x77ad[13]](function(){if(_0x2399x8[_0x77ad[25]][_0x77ad[26]]&& Array[_0x77ad[33]](_0x2399x8[_0x77ad[25]].All)&& _0x2399x8[_0x77ad[25]][_0x77ad[26]][_0x77ad[34]]){_[_0x77ad[36]](_0x2399x8[_0x77ad[25]].All,function(_0x2399x10){_0x2399x10[_0x77ad[39]]= _0x2399x8[_0x77ad[22]][_0x77ad[21]]});return ToolsCondition[_0x77ad[37]](_0x2399x8[_0x77ad[25]].All,{transaction:_0x2399xe})};return})[_0x77ad[13]](function(){if(_0x2399x8[_0x77ad[25]][_0x77ad[28]]){return ToolsAction[_0x77ad[38]]({where:{AutomationId:_0x2399x8[_0x77ad[22]][_0x77ad[21]]},transaction:_0x2399xe})}})[_0x77ad[13]](function(){if(_0x2399x8[_0x77ad[25]][_0x77ad[28]]&& Array[_0x77ad[33]](_0x2399x8[_0x77ad[25]].Actions)&& _0x2399x8[_0x77ad[25]][_0x77ad[28]][_0x77ad[34]]){_[_0x77ad[36]](_0x2399x8[_0x77ad[25]].Actions,function(_0x2399x10){_0x2399x10[_0x77ad[35]]= _0x2399x8[_0x77ad[22]][_0x77ad[21]]});return ToolsAction[_0x77ad[37]](_0x2399x8[_0x77ad[25]].Actions,{transaction:_0x2399xe})};return})[_0x77ad[13]](function(){var _0x2399xf=_[_0x77ad[31]](_0x2399xd,_0x2399x8[_0x77ad[25]]);return _0x2399xf[_0x77ad[32]]({transaction:_0x2399xe})})})[_0x77ad[13]](function(){return _0x2399x9[_0x77ad[20]](200)})[_0x77ad[10]](function(_0x2399xb){console[_0x77ad[30]](_0x2399xb);return handleError(_0x2399x9,_0x2399xb)})};exports[_0x77ad[38]]= function(_0x2399x8,_0x2399x9){return Automation[_0x77ad[23]](_0x2399x8[_0x77ad[22]][_0x77ad[21]])[_0x77ad[13]](function(Automation){if(!Automation){return _0x2399x9[_0x77ad[20]](404)};Automation[_0x77ad[38]]()[_0x77ad[13]](function(){return _0x2399x9[_0x77ad[20]](204)})[_0x77ad[10]](function(_0x2399xb){return handleError(_0x2399x9,_0x2399xb)})})[_0x77ad[10]](function(_0x2399xb){return handleError(_0x2399x9,_0x2399xb)})};exports[_0x77ad[42]]= function(_0x2399x8,_0x2399x9){return Automation[_0x77ad[38]]({where:{id:_0x2399x8[_0x77ad[14]][_0x77ad[43]]},individualHooks:true})[_0x77ad[13]](function(){return _0x2399x9[_0x77ad[20]](204)})[_0x77ad[10]](function(_0x2399xb){return handleError(_0x2399x9,_0x2399xb)})};function handleError(_0x2399x9,_0x2399xb){return _0x2399x9[_0x77ad[12]](500)[_0x77ad[11]](_0x2399xb)}
\ No newline at end of file