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