Built motion from commit 02c0abe.|0.0.118
[motion.git] / server / api / automation / automation.controller.js
index dc50214..945b993 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 _0xa579=["\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"];_0xa579[0];var _=require(_0xa579[1]);var util=require(_0xa579[2]);var Util=require(_0xa579[3]);var sequelize=require(_0xa579[5])[_0xa579[4]];var Automation=require(_0xa579[5])[_0xa579[6]];var ToolsCondition=require(_0xa579[5])[_0xa579[7]];var ToolsAction=require(_0xa579[5])[_0xa579[8]];exports[_0xa579[9]]= function(_0x751bx8,_0x751bx9,_0x751bxa){return Automation[_0xa579[18]](_0xa579[17])[_0xa579[16]](Util[_0xa579[15]](_0x751bx8[_0xa579[14]]))[_0xa579[13]](function(_0x751bxc){_0x751bx9[_0xa579[12]](200)[_0xa579[11]](_0x751bxc)})[_0xa579[10]](function(_0x751bxb){return handleError(_0x751bx9,_0x751bxb)})};exports[_0xa579[19]]= function(_0x751bx8,_0x751bx9){return Automation[_0xa579[18]](_0xa579[17])[_0xa579[23]](_0x751bx8[_0xa579[22]][_0xa579[21]])[_0xa579[13]](function(Automation){if(!Automation){return _0x751bx9[_0xa579[20]](404)};return _0x751bx9[_0xa579[11]](Automation)})[_0xa579[10]](function(_0x751bxb){return handleError(_0x751bx9,_0x751bxb)})};exports[_0xa579[24]]= function(_0x751bx8,_0x751bx9,_0x751bxa){return Automation[_0xa579[24]](_0x751bx8[_0xa579[25]],{include:[{model:ToolsCondition,as:_0xa579[26]},{model:ToolsCondition,as:_0xa579[27]},{model:ToolsAction,as:_0xa579[28]}]})[_0xa579[13]](function(){return _0x751bx9[_0xa579[20]](201)})[_0xa579[10]](function(_0x751bxb){return handleError(_0x751bx9,_0x751bxb)})};exports[_0xa579[29]]= function(_0x751bx8,_0x751bx9,_0x751bxa){var _0x751bxd;if(_0x751bx8[_0xa579[25]][_0xa579[21]]){delete _0x751bx8[_0xa579[25]][_0xa579[21]]};return sequelize[_0xa579[41]](function(_0x751bxe){return Automation[_0xa579[23]](_0x751bx8[_0xa579[22]][_0xa579[21]])[_0xa579[13]](function(_0x751bx11){if(!_0x751bx11){return _0x751bx9[_0xa579[20]](404)};_0x751bxd= _0x751bx11;if(_0x751bx8[_0xa579[25]][_0xa579[27]]){return ToolsCondition[_0xa579[38]]({where:{AutomationAnyId:_0x751bx8[_0xa579[22]][_0xa579[21]]},transaction:_0x751bxe})}})[_0xa579[13]](function(){if(_0x751bx8[_0xa579[25]][_0xa579[27]]&& Array[_0xa579[33]](_0x751bx8[_0xa579[25]].Any)&& _0x751bx8[_0xa579[25]][_0xa579[27]][_0xa579[34]]){_[_0xa579[36]](_0x751bx8[_0xa579[25]].Any,function(_0x751bx10){_0x751bx10[_0xa579[40]]= _0x751bx8[_0xa579[22]][_0xa579[21]]});return ToolsCondition[_0xa579[37]](_0x751bx8[_0xa579[25]].Any,{transaction:_0x751bxe})};return})[_0xa579[13]](function(){if(_0x751bx8[_0xa579[25]][_0xa579[26]]){return ToolsCondition[_0xa579[38]]({where:{AutomationAllId:_0x751bx8[_0xa579[22]][_0xa579[21]]},transaction:_0x751bxe})}})[_0xa579[13]](function(){if(_0x751bx8[_0xa579[25]][_0xa579[26]]&& Array[_0xa579[33]](_0x751bx8[_0xa579[25]].All)&& _0x751bx8[_0xa579[25]][_0xa579[26]][_0xa579[34]]){_[_0xa579[36]](_0x751bx8[_0xa579[25]].All,function(_0x751bx10){_0x751bx10[_0xa579[39]]= _0x751bx8[_0xa579[22]][_0xa579[21]]});return ToolsCondition[_0xa579[37]](_0x751bx8[_0xa579[25]].All,{transaction:_0x751bxe})};return})[_0xa579[13]](function(){if(_0x751bx8[_0xa579[25]][_0xa579[28]]){return ToolsAction[_0xa579[38]]({where:{AutomationId:_0x751bx8[_0xa579[22]][_0xa579[21]]},transaction:_0x751bxe})}})[_0xa579[13]](function(){if(_0x751bx8[_0xa579[25]][_0xa579[28]]&& Array[_0xa579[33]](_0x751bx8[_0xa579[25]].Actions)&& _0x751bx8[_0xa579[25]][_0xa579[28]][_0xa579[34]]){_[_0xa579[36]](_0x751bx8[_0xa579[25]].Actions,function(_0x751bx10){_0x751bx10[_0xa579[35]]= _0x751bx8[_0xa579[22]][_0xa579[21]]});return ToolsAction[_0xa579[37]](_0x751bx8[_0xa579[25]].Actions,{transaction:_0x751bxe})};return})[_0xa579[13]](function(){var _0x751bxf=_[_0xa579[31]](_0x751bxd,_0x751bx8[_0xa579[25]]);return _0x751bxf[_0xa579[32]]({transaction:_0x751bxe})})})[_0xa579[13]](function(){return _0x751bx9[_0xa579[20]](200)})[_0xa579[10]](function(_0x751bxb){console[_0xa579[30]](_0x751bxb);return handleError(_0x751bx9,_0x751bxb)})};exports[_0xa579[38]]= function(_0x751bx8,_0x751bx9){return Automation[_0xa579[23]](_0x751bx8[_0xa579[22]][_0xa579[21]])[_0xa579[13]](function(Automation){if(!Automation){return _0x751bx9[_0xa579[20]](404)};Automation[_0xa579[38]]()[_0xa579[13]](function(){return _0x751bx9[_0xa579[20]](204)})[_0xa579[10]](function(_0x751bxb){return handleError(_0x751bx9,_0x751bxb)})})[_0xa579[10]](function(_0x751bxb){return handleError(_0x751bx9,_0x751bxb)})};exports[_0xa579[42]]= function(_0x751bx8,_0x751bx9){return Automation[_0xa579[38]]({where:{id:_0x751bx8[_0xa579[14]][_0xa579[43]]},individualHooks:true})[_0xa579[13]](function(){return _0x751bx9[_0xa579[20]](204)})[_0xa579[10]](function(_0x751bxb){return handleError(_0x751bx9,_0x751bxb)})};function handleError(_0x751bx9,_0x751bxb){return _0x751bx9[_0xa579[12]](500)[_0xa579[11]](_0x751bxb)}
\ No newline at end of file