Built motion from commit 2239aeb.|0.0.113
[motion.git] / server / api / company / company.controller.js
index 0e92164..4ffc90e 100644 (file)
@@ -1,209 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var Company = require('../../models').Company;
-var util = require('util');
-
-// Get list of companies
-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 + '%';
-    }
-  });
-
-  Company
-    .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.companyValidation = function(req, res) {
-  console.log(req.body);
-  Company
-    .findAll({
-      where: {
-        name: req.body.name
-      }
-    })
-    .then(function(companies) {
-      if (!companies) {
-        return res.sendStatus(404);
-      }
-      return res.send(companies);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single company
-exports.show = function(req, res) {
-  Company
-    .findById(req.params.id)
-    .then(function(company) {
-      if (!company) {
-        return res.sendStatus(404);
-      }
-      return res.send(company);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new company in the DB.
-exports.create = function(req, res) {
-  Company
-    .create(req.body)
-    .then(function(company) {
-      return res.status(201).send(company);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing company in the DB.
-exports.update = function(req, res) {
-  Company
-    .findAll({
-      where: {
-        name: req.body.name,
-        id: {
-          $ne: req.body.id
-        }
-      }
-    })
-    .then(function(companies) {
-      if (!companies) {
-        return res.sendStatus(404);
-      }
-      if (companies.length > 0) {
-        return res.status(500).send({
-          message: 'MESSAGE_EXIST_COMPANY'
-        })
-      }
-      if (req.body.id) {
-        delete req.body.id;
-      }
-      Company
-        .find({
-          where: {
-            id: req.params.id
-          }
-        })
-        .then(function(company) {
-          if (!company) {
-            return res.sendStatus(404);
-          }
-          var updated = _.merge(company, req.body);
-          updated.save()
-            .then(function() {
-              return res.status(200).send(company);
-            })
-            .catch(function(err) {
-              return handleError(res, err);
-            });
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a company from the DB.
-exports.destroy = function(req, res) {
-  Company
-    .findById(req.params.id)
-    .then(function(company) {
-      if (!company) {
-        return res.sendStatus(404);
-      }
-      company.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) {
-  Company
-    .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 _0x8afc=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x43\x6F\x6D\x70\x61\x6E\x79","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x75\x74\x69\x6C","\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","\x63\x6F\x6D\x70\x61\x6E\x79\x56\x61\x6C\x69\x64\x61\x74\x69\x6F\x6E","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x6E\x61\x6D\x65","\x62\x6F\x64\x79","\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","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x6C\x65\x6E\x67\x74\x68","\x4D\x45\x53\x53\x41\x47\x45\x5F\x45\x58\x49\x53\x54\x5F\x43\x4F\x4D\x50\x41\x4E\x59","\x66\x69\x6E\x64","\x64\x65\x73\x74\x72\x6F\x79","\x62\x75\x6C\x6B\x44\x65\x73\x74\x72\x6F\x79","\x69\x64\x73"];_0x8afc[0];var _=require(_0x8afc[1]);var Company=require(_0x8afc[3])[_0x8afc[2]];var util=require(_0x8afc[4]);var Util=require(_0x8afc[5]);exports[_0x8afc[6]]= function(_0x795bx5,_0x795bx6,_0x795bx7){return Company[_0x8afc[13]](Util[_0x8afc[12]](_0x795bx5[_0x8afc[11]]))[_0x8afc[10]](function(_0x795bx9){_0x795bx6[_0x8afc[9]](200)[_0x8afc[8]](_0x795bx9)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};exports[_0x8afc[14]]= function(_0x795bx5,_0x795bx6){return Company[_0x8afc[18]]({where:{name:_0x795bx5[_0x8afc[17]][_0x8afc[16]]}})[_0x8afc[10]](function(_0x795bxa){if(!_0x795bxa){return _0x795bx6[_0x8afc[15]](404)};return _0x795bx6[_0x8afc[8]](_0x795bxa)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};exports[_0x8afc[19]]= function(_0x795bx5,_0x795bx6){return Company[_0x8afc[22]](_0x795bx5[_0x8afc[21]][_0x8afc[20]])[_0x8afc[10]](function(_0x795bxb){if(!_0x795bxb){return _0x795bx6[_0x8afc[15]](404)};return _0x795bx6[_0x8afc[8]](_0x795bxb)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};exports[_0x8afc[23]]= function(_0x795bx5,_0x795bx6){return Company[_0x8afc[23]](_0x795bx5[_0x8afc[17]])[_0x8afc[10]](function(_0x795bxb){return _0x795bx6[_0x8afc[9]](201)[_0x8afc[8]](_0x795bxb)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};exports[_0x8afc[24]]= function(_0x795bx5,_0x795bx6){return Company[_0x8afc[18]]({where:{name:_0x795bx5[_0x8afc[17]][_0x8afc[16]],id:{$ne:_0x795bx5[_0x8afc[17]][_0x8afc[20]]}}})[_0x8afc[10]](function(_0x795bxa){if(!_0x795bxa){return _0x795bx6[_0x8afc[15]](404)};if(_0x795bxa[_0x8afc[27]]> 0){return _0x795bx6[_0x8afc[9]](500)[_0x8afc[8]]({message:_0x8afc[28]})};if(_0x795bx5[_0x8afc[17]][_0x8afc[20]]){delete _0x795bx5[_0x8afc[17]][_0x8afc[20]]};return Company[_0x8afc[29]]({where:{id:_0x795bx5[_0x8afc[21]][_0x8afc[20]]}})})[_0x8afc[10]](function(_0x795bxb){if(!_0x795bxb){return _0x795bx6[_0x8afc[15]](404)};var _0x795bxc=_[_0x8afc[25]](_0x795bxb,_0x795bx5[_0x8afc[17]]);return _0x795bxc[_0x8afc[26]]()})[_0x8afc[10]](function(_0x795bxb){return _0x795bx6[_0x8afc[9]](200)[_0x8afc[8]](_0x795bxb)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};exports[_0x8afc[30]]= function(_0x795bx5,_0x795bx6){return Company[_0x8afc[22]](_0x795bx5[_0x8afc[21]][_0x8afc[20]])[_0x8afc[10]](function(_0x795bxb){if(!_0x795bxb){return _0x795bx6[_0x8afc[15]](404)};return _0x795bxb[_0x8afc[30]]()})[_0x8afc[10]](function(){return _0x795bx6[_0x8afc[15]](204)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};exports[_0x8afc[31]]= function(_0x795bx5,_0x795bx6){return Company[_0x8afc[30]]({where:{id:_0x795bx5[_0x8afc[11]][_0x8afc[32]]},individualHooks:true})[_0x8afc[10]](function(){return _0x795bx6[_0x8afc[15]](204)})[_0x8afc[7]](function(_0x795bx8){return handleError(_0x795bx6,_0x795bx8)})};function handleError(_0x795bx6,_0x795bx8){return _0x795bx6[_0x8afc[9]](500)[_0x8afc[8]](_0x795bx8)}
\ No newline at end of file