Built motion from commit 5b01f56.|0.0.106
[motion.git] / server / api / dashboard / dashboard.controller.js
index fd7df07..6435a54 100644 (file)
@@ -1,178 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var util = require('util');
-var Dashboard = require('../../models').Dashboard;
-
-// Get list of dashboards
-exports.index = function(req, res) {
-  var attributes = ['name', 'description'];
-  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 + '%';
-    }
-  });
-
-  Dashboard
-    .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 dashboard
-exports.all = function(req, res) {
-  Dashboard
-    .findAll()
-    .then(function(dashboards) {
-      if (!dashboards) {
-        return res.sendStatus(404);
-      }
-      return res.status(200).send(dashboards);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single dashboard
-exports.show = function(req, res) {
-  Dashboard
-    .findById(req.params.id)
-    .then(function(dashboard) {
-      if (!dashboard) {
-        return res.sendStatus(404);
-      }
-      return res.send(dashboard);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new dashboard in the DB.
-exports.create = function(req, res) {
-  Dashboard
-    .create(req.body)
-    .then(function(dashboard) {
-      return res.status(201).send(dashboard);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing dashboard in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  Dashboard
-    .findById(req.params.id)
-    .then(function(dashboard) {
-      if (!dashboard) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(dashboard, req.body);
-      updated.save()
-        .then(function() {
-          return res.status(200).send(dashboard);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a dashboard from the DB.
-exports.destroy = function(req, res) {
-  Dashboard
-    .findById(req.params.id)
-    .then(function(dashboard) {
-      if (!dashboard) {
-        return res.sendStatus(404);
-      }
-      dashboard.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) {
-  Dashboard
-    .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 _0x910a=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x75\x74\x69\x6C","\x44\x61\x73\x68\x62\x6F\x61\x72\x64","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\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\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x66\x69\x6E\x64\x41\x6C\x6C","\x73\x68\x6F\x77","\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","\x63\x6C\x6F\x6E\x65","\x64\x61\x74\x61\x56\x61\x6C\x75\x65\x73","\x65\x64\x69\x74\x61\x62\x6C\x65","\x64\x65\x66\x61\x75\x6C\x74\x45\x6E\x74\x72\x79","\x6E\x61\x6D\x65","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79","\x69\x64\x73"];_0x910a[0];var _=require(_0x910a[1]);var util=require(_0x910a[2]);var Dashboard=require(_0x910a[4])[_0x910a[3]];var Util=require(_0x910a[5]);exports[_0x910a[6]]=function(_0x7296x5,_0x7296x6,_0x7296x7){return Dashboard[_0x910a[13]](Util[_0x910a[12]](_0x7296x5[_0x910a[11]]))[_0x910a[10]](function(_0x7296x9){_0x7296x6[_0x910a[9]](200)[_0x910a[8]](_0x7296x9)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[14]]=function(_0x7296x5,_0x7296x6){return Dashboard[_0x910a[16]]()[_0x910a[10]](function(_0x7296xa){if(!_0x7296xa){return _0x7296x6[_0x910a[15]](404)};return _0x7296x6[_0x910a[9]](200)[_0x910a[8]](_0x7296xa)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[17]]=function(_0x7296x5,_0x7296x6){return Dashboard[_0x910a[20]](_0x7296x5[_0x910a[19]][_0x910a[18]])[_0x910a[10]](function(_0x7296xb){if(!_0x7296xb){return _0x7296x6[_0x910a[15]](404)};return _0x7296x6[_0x910a[8]](_0x7296xb)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[21]]=function(_0x7296x5,_0x7296x6){return Dashboard[_0x910a[21]](_0x7296x5[_0x910a[22]])[_0x910a[10]](function(_0x7296xb){return _0x7296x6[_0x910a[9]](201)[_0x910a[8]](_0x7296xb)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[23]]=function(_0x7296x5,_0x7296x6){return Dashboard[_0x910a[20]](_0x7296x5[_0x910a[19]][_0x910a[18]])[_0x910a[10]](function(_0x7296xb){var _0x7296xc=_0x7296xb[_0x910a[24]];delete _0x7296xc[_0x910a[18]];_0x7296xc[_0x910a[25]]=true;_0x7296xc[_0x910a[26]]=false;_0x7296xc[_0x910a[27]]=_0x7296x5[_0x910a[22]][_0x910a[27]]||_0x7296xc[_0x910a[27]];return Dashboard[_0x910a[21]](_0x7296xc)})[_0x910a[10]](function(_0x7296xb){return _0x7296x6[_0x910a[9]](201)[_0x910a[8]](_0x7296xb)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[28]]=function(_0x7296x5,_0x7296x6){if(_0x7296x5[_0x910a[22]][_0x910a[18]]){delete _0x7296x5[_0x910a[22]][_0x910a[18]]};return Dashboard[_0x910a[20]](_0x7296x5[_0x910a[19]][_0x910a[18]])[_0x910a[10]](function(_0x7296xb){if(!_0x7296xb){return _0x7296x6[_0x910a[15]](404)};var _0x7296xd=_[_0x910a[29]](_0x7296xb,_0x7296x5[_0x910a[22]]);return _0x7296xd[_0x910a[30]]()})[_0x910a[10]](function(_0x7296xb){return _0x7296x6[_0x910a[9]](200)[_0x910a[8]](_0x7296xb)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[31]]=function(_0x7296x5,_0x7296x6){return Dashboard[_0x910a[20]](_0x7296x5[_0x910a[19]][_0x910a[18]])[_0x910a[10]](function(_0x7296xb){if(!_0x7296xb){return _0x7296x6[_0x910a[15]](404)};return _0x7296xb[_0x910a[31]]()})[_0x910a[10]](function(){return _0x7296x6[_0x910a[15]](204)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};exports[_0x910a[32]]=function(_0x7296x5,_0x7296x6){return Dashboard[_0x910a[31]]({where:{id:_0x7296x5[_0x910a[11]][_0x910a[33]]},individualHooks:true})[_0x910a[10]](function(){return _0x7296x6[_0x910a[15]](204)})[_0x910a[7]](function(_0x7296x8){return handleError(_0x7296x6,_0x7296x8)})};function handleError(_0x7296x6,_0x7296x8){return _0x7296x6[_0x910a[9]](500)[_0x910a[8]](_0x7296x8)}
\ No newline at end of file