Built motion from commit b5b971d.|0.0.97
[motion.git] / server / api / dashboard / dashboard.controller.js
index 986e3f4..1da4b68 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;
-
-      return 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) {
-      return 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 _0xbed7=["\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"];_0xbed7[0];var _=require(_0xbed7[1]);var util=require(_0xbed7[2]);var Dashboard=require(_0xbed7[4])[_0xbed7[3]];var Util=require(_0xbed7[5]);exports[_0xbed7[6]]=function(_0x2d88x5,_0x2d88x6,_0x2d88x7){return Dashboard[_0xbed7[13]](Util[_0xbed7[12]](_0x2d88x5[_0xbed7[11]]))[_0xbed7[10]](function(_0x2d88x9){_0x2d88x6[_0xbed7[9]](200)[_0xbed7[8]](_0x2d88x9)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[14]]=function(_0x2d88x5,_0x2d88x6){return Dashboard[_0xbed7[16]]()[_0xbed7[10]](function(_0x2d88xa){if(!_0x2d88xa){return _0x2d88x6[_0xbed7[15]](404)};return _0x2d88x6[_0xbed7[9]](200)[_0xbed7[8]](_0x2d88xa)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[17]]=function(_0x2d88x5,_0x2d88x6){return Dashboard[_0xbed7[20]](_0x2d88x5[_0xbed7[19]][_0xbed7[18]])[_0xbed7[10]](function(_0x2d88xb){if(!_0x2d88xb){return _0x2d88x6[_0xbed7[15]](404)};return _0x2d88x6[_0xbed7[8]](_0x2d88xb)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[21]]=function(_0x2d88x5,_0x2d88x6){return Dashboard[_0xbed7[21]](_0x2d88x5[_0xbed7[22]])[_0xbed7[10]](function(_0x2d88xb){return _0x2d88x6[_0xbed7[9]](201)[_0xbed7[8]](_0x2d88xb)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[23]]=function(_0x2d88x5,_0x2d88x6){return Dashboard[_0xbed7[20]](_0x2d88x5[_0xbed7[19]][_0xbed7[18]])[_0xbed7[10]](function(_0x2d88xb){var _0x2d88xc=_0x2d88xb[_0xbed7[24]];delete _0x2d88xc[_0xbed7[18]];_0x2d88xc[_0xbed7[25]]=true;_0x2d88xc[_0xbed7[26]]=false;_0x2d88xc[_0xbed7[27]]=_0x2d88x5[_0xbed7[22]][_0xbed7[27]]||_0x2d88xc[_0xbed7[27]];return Dashboard[_0xbed7[21]](_0x2d88xc)})[_0xbed7[10]](function(_0x2d88xb){return _0x2d88x6[_0xbed7[9]](201)[_0xbed7[8]](_0x2d88xb)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[28]]=function(_0x2d88x5,_0x2d88x6){if(_0x2d88x5[_0xbed7[22]][_0xbed7[18]]){delete _0x2d88x5[_0xbed7[22]][_0xbed7[18]]};return Dashboard[_0xbed7[20]](_0x2d88x5[_0xbed7[19]][_0xbed7[18]])[_0xbed7[10]](function(_0x2d88xb){if(!_0x2d88xb){return _0x2d88x6[_0xbed7[15]](404)};var _0x2d88xd=_[_0xbed7[29]](_0x2d88xb,_0x2d88x5[_0xbed7[22]]);return _0x2d88xd[_0xbed7[30]]()})[_0xbed7[10]](function(_0x2d88xb){return _0x2d88x6[_0xbed7[9]](200)[_0xbed7[8]](_0x2d88xb)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[31]]=function(_0x2d88x5,_0x2d88x6){return Dashboard[_0xbed7[20]](_0x2d88x5[_0xbed7[19]][_0xbed7[18]])[_0xbed7[10]](function(_0x2d88xb){if(!_0x2d88xb){return _0x2d88x6[_0xbed7[15]](404)};return _0x2d88xb[_0xbed7[31]]()})[_0xbed7[10]](function(){return _0x2d88x6[_0xbed7[15]](204)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};exports[_0xbed7[32]]=function(_0x2d88x5,_0x2d88x6){return Dashboard[_0xbed7[31]]({where:{id:_0x2d88x5[_0xbed7[11]][_0xbed7[33]]},individualHooks:true})[_0xbed7[10]](function(){return _0x2d88x6[_0xbed7[15]](204)})[_0xbed7[7]](function(_0x2d88x8){return handleError(_0x2d88x6,_0x2d88x8)})};function handleError(_0x2d88x6,_0x2d88x8){return _0x2d88x6[_0xbed7[9]](500)[_0xbed7[8]](_0x2d88x8)}
\ No newline at end of file