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