Built motion from commit b5b971d.|0.0.97
[motion.git] / server / api / square_project / square_project.controller.js
index 40dc276..486129f 100644 (file)
@@ -1,211 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var path = require('path');
-var config = require('../../config/environment');
-var util = require('util');
-
-var SquareProject = require('../../models').SquareProject;
-
-// Get list of square_projects
-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 + '%';
-    }
-  });
-
-  SquareProject
-    .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!'
-      });
-    });
-};
-
-exports.projectValidation = function(req, res) {
-  console.log(req.body);
-  SquareProject
-    .findAll({
-      where: {
-        name: req.body.name
-      }
-    })
-    .then(function(square_projects) {
-      if (!square_projects) {
-        return res.sendStatus(404);
-      }
-      return res.send(square_projects);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single square_project
-exports.show = function(req, res) {
-  SquareProject
-    .findById(req.params.id)
-    .then(function(square_project) {
-      if (!square_project) {
-        return res.sendStatus(404);
-      }
-      return res.send(square_project);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new square_project in the DB.
-exports.create = function(req, res) {
-  SquareProject
-    .create(req.body)
-    .then(function(square_project) {
-      return res.status(201).send(square_project);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing square_project in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  SquareProject
-    .findById(req.params.id)
-    .then(function(square_project) {
-      if (!square_project) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(square_project, req.body);
-      updated.save()
-        .then(function() {
-          return res.status(200).send(square_project);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a square_project from the DB.
-exports.destroy = function(req, res) {
-  SquareProject
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(square_project) {
-      if (!square_project) {
-        return res.sendStatus(404);
-      }
-      square_project.destroy()
-        .then(function() {
-          return res.sendStatus(204);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a square_project from the DB.
-exports.bulkDestroy = function(req, res) {
-  SquareProject
-    .destroy({
-      where: {
-        id: req.query.id
-      },
-      individualHooks: true
-    })
-    .then(function() {
-      return res.sendStatus(204);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-exports.download = function(req, res, next) {
-  SquareProject
-    .findById(req.params.id)
-    .then(function(square_project) {
-      if (!square_project) {
-        return res.sendStatus(404);
-      }
-      console.log(req.query.filename);
-      res.set({
-        "Content-Disposition": "attachment; filename=\"" + req.query.filename +
-          ".xml\"",
-        "Content-Type": "txt/xml"
-      });
-      return res.send(square_project.preproduction);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0x169c=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x70\x61\x74\x68","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x65\x6E\x76\x69\x72\x6F\x6E\x6D\x65\x6E\x74","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x53\x71\x75\x61\x72\x65\x50\x72\x6F\x6A\x65\x63\x74","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\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","\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","\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","\x64\x6F\x77\x6E\x6C\x6F\x61\x64","\x66\x69\x6C\x65\x6E\x61\x6D\x65","\x6C\x6F\x67","\x61\x74\x74\x61\x63\x68\x6D\x65\x6E\x74\x3B\x20\x66\x69\x6C\x65\x6E\x61\x6D\x65\x3D\x22","\x2E\x78\x6D\x6C\x22","\x74\x78\x74\x2F\x78\x6D\x6C","\x73\x65\x74","\x70\x72\x65\x70\x72\x6F\x64\x75\x63\x74\x69\x6F\x6E"];_0x169c[0];var _=require(_0x169c[1]);var path=require(_0x169c[2]);var config=require(_0x169c[3]);var Util=require(_0x169c[4]);var SquareProject=require(_0x169c[6])[_0x169c[5]];exports[_0x169c[7]]=function(_0x86b9x6,_0x86b9x7){return SquareProject[_0x169c[14]](Util[_0x169c[13]](_0x86b9x6[_0x169c[12]]))[_0x169c[11]](function(_0x86b9x9){_0x86b9x7[_0x169c[10]](200)[_0x169c[9]](_0x86b9x9)})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};exports[_0x169c[15]]=function(_0x86b9x6,_0x86b9x7){return SquareProject[_0x169c[19]](_0x86b9x6[_0x169c[18]][_0x169c[17]])[_0x169c[11]](function(_0x86b9xa){if(!_0x86b9xa){return _0x86b9x7[_0x169c[16]](404)};return _0x86b9x7[_0x169c[9]](_0x86b9xa)})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};exports[_0x169c[20]]=function(_0x86b9x6,_0x86b9x7){return SquareProject[_0x169c[20]](_0x86b9x6[_0x169c[21]])[_0x169c[11]](function(_0x86b9xa){return _0x86b9x7[_0x169c[10]](201)[_0x169c[9]](_0x86b9xa)})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};exports[_0x169c[22]]=function(_0x86b9x6,_0x86b9x7){if(_0x86b9x6[_0x169c[21]][_0x169c[17]]){delete _0x86b9x6[_0x169c[21]][_0x169c[17]]};return SquareProject[_0x169c[19]](_0x86b9x6[_0x169c[18]][_0x169c[17]])[_0x169c[11]](function(_0x86b9xa){if(!_0x86b9xa){return _0x86b9x7[_0x169c[16]](404)};var _0x86b9xb=_[_0x169c[23]](_0x86b9xa,_0x86b9x6[_0x169c[21]]);_0x86b9xb[_0x169c[24]]()[_0x169c[11]](function(){return _0x86b9x7[_0x169c[10]](200)[_0x169c[9]](_0x86b9xa)})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};exports[_0x169c[25]]=function(_0x86b9x6,_0x86b9x7){return SquareProject[_0x169c[19]](_0x86b9x6[_0x169c[18]][_0x169c[17]])[_0x169c[11]](function(_0x86b9xc){if(!_0x86b9xc){return _0x86b9x7[_0x169c[16]](404)};return _0x86b9xc[_0x169c[25]]()})[_0x169c[11]](function(){return _0x86b9x7[_0x169c[16]](204)})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};exports[_0x169c[26]]=function(_0x86b9x6,_0x86b9x7){return SquareProject[_0x169c[25]]({where:{id:_0x86b9x6[_0x169c[12]][_0x169c[27]]},individualHooks:true})[_0x169c[11]](function(){return _0x86b9x7[_0x169c[16]](204)})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};exports[_0x169c[28]]=function(_0x86b9x6,_0x86b9x7,_0x86b9xd){SquareProject[_0x169c[19]](_0x86b9x6[_0x169c[18]][_0x169c[17]])[_0x169c[11]](function(_0x86b9xa){if(!_0x86b9xa){return _0x86b9x7[_0x169c[16]](404)};console[_0x169c[30]](_0x86b9x6[_0x169c[12]][_0x169c[29]]);_0x86b9x7[_0x169c[34]]({"\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x44\x69\x73\x70\x6F\x73\x69\x74\x69\x6F\x6E":_0x169c[31]+_0x86b9x6[_0x169c[12]][_0x169c[29]]+_0x169c[32],"\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x54\x79\x70\x65":_0x169c[33]});return _0x86b9x7[_0x169c[9]](_0x86b9xa[_0x169c[35]])})[_0x169c[8]](function(_0x86b9x8){return handleError(_0x86b9x7,_0x86b9x8)})};function handleError(_0x86b9x7,_0x86b9x8){return _0x86b9x7[_0x169c[10]](500)[_0x169c[9]](_0x86b9x8)}
\ No newline at end of file