Built motion from commit 82438f7.|0.0.115
[motion.git] / server / api / chat_application / chat_application.controller.js
index 9c2085d..e43ba3e 100644 (file)
@@ -1,105 +1 @@
-'use strict';
-var _ = require('lodash');
-var ChatApplication = require('../../models').ChatApplication;
-// Get list of chat_applications
-exports.index = function(req, res) {
-  ChatApplication
-    .findAll({
-      where: req.query,
-      order: 'priority',
-      include: [{
-        all: true
-      }]
-    })
-    .then(function(chat_applications) {
-      return res.status(200).send(chat_applications);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Get a single chat_application
-exports.show = function(req, res) {
-  ChatApplication
-    .findById(req.params.id)
-    .then(function(chat_application) {
-      if (!chat_application) {
-        return res.sendStatus(404);
-      }
-      return res.send(chat_application);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Creates a new chat_application in the DB.
-exports.create = function(req, res, next) {
-  ChatApplication.max('priority', {
-    where: {
-      ChatWebsiteId: req.body.ChatWebsiteId
-    }
-  }).then(function(max) {
-    // SET PRIORITY
-    req.body.priority = max ? ++max : 1;
-    ChatApplication
-      .create(req.body)
-      .then(function(mailApplication) {
-        return res.status(201).send(mailApplication);
-      })
-      .catch(function(err) {
-        return next(err);
-      });
-  }).catch(function(err) {
-    next(err);
-  });
-};
-// Updates an existing chat_application in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  ChatApplication
-    .findById(req.params.id)
-    .then(function(chat_application) {
-      if (!chat_application) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(chat_application, req.body);
-      updated
-        .save()
-        .then(function() {
-          return res.status(200).send(chat_application);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Deletes a chat_application from the DB.
-exports.destroy = function(req, res) {
-  ChatApplication
-    .findById(req.params.id)
-    .then(function(chat_application) {
-      if (!chat_application) {
-        return res.sendStatus(404);
-      }
-      chat_application
-        .destroy()
-        .then(function() {
-          return res.sendStatus(204);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0xeb64=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x43\x68\x61\x74\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\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","\x70\x72\x69\x6F\x72\x69\x74\x79","\x66\x69\x6E\x64\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","\x43\x68\x61\x74\x57\x65\x62\x73\x69\x74\x65\x49\x64","\x6D\x61\x78","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79"];_0xeb64[0];var _=require(_0xeb64[1]);var ChatApplication=require(_0xeb64[3])[_0xeb64[2]];exports[_0xeb64[4]]= function(_0x186ex3,_0x186ex4){return ChatApplication[_0xeb64[11]]({where:_0x186ex3[_0xeb64[9]],order:_0xeb64[10],include:[{all:true}]})[_0xeb64[8]](function(_0x186ex6){return _0x186ex4[_0xeb64[7]](200)[_0xeb64[6]](_0x186ex6)})[_0xeb64[5]](function(_0x186ex5){return handleError(_0x186ex4,_0x186ex5)})};exports[_0xeb64[12]]= function(_0x186ex3,_0x186ex4){return ChatApplication[_0xeb64[16]](_0x186ex3[_0xeb64[15]][_0xeb64[14]])[_0xeb64[8]](function(_0x186ex7){if(!_0x186ex7){return _0x186ex4[_0xeb64[13]](404)};return _0x186ex4[_0xeb64[6]](_0x186ex7)})[_0xeb64[5]](function(_0x186ex5){return handleError(_0x186ex4,_0x186ex5)})};exports[_0xeb64[17]]= function(_0x186ex3,_0x186ex4,_0x186ex8){return ChatApplication[_0xeb64[20]](_0xeb64[10],{where:{ChatWebsiteId:_0x186ex3[_0xeb64[18]][_0xeb64[19]]}})[_0xeb64[8]](function(_0x186exa){_0x186ex3[_0xeb64[18]][_0xeb64[10]]= _0x186exa?++_0x186exa:1;return ChatApplication[_0xeb64[17]](_0x186ex3[_0xeb64[18]])})[_0xeb64[8]](function(_0x186ex9){return _0x186ex4[_0xeb64[7]](201)[_0xeb64[6]](_0x186ex9)})[_0xeb64[5]](function(_0x186ex5){_0x186ex8(_0x186ex5)})};exports[_0xeb64[21]]= function(_0x186ex3,_0x186ex4){if(_0x186ex3[_0xeb64[18]][_0xeb64[14]]){delete _0x186ex3[_0xeb64[18]][_0xeb64[14]]};return ChatApplication[_0xeb64[16]](_0x186ex3[_0xeb64[15]][_0xeb64[14]])[_0xeb64[8]](function(_0x186ex7){if(!_0x186ex7){return _0x186ex4[_0xeb64[13]](404)};var _0x186exb=_[_0xeb64[22]](_0x186ex7,_0x186ex3[_0xeb64[18]]);return _0x186exb[_0xeb64[23]]()})[_0xeb64[8]](function(_0x186ex7){return _0x186ex4[_0xeb64[7]](200)[_0xeb64[6]](_0x186ex7)})[_0xeb64[5]](function(_0x186ex5){return handleError(_0x186ex4,_0x186ex5)})};exports[_0xeb64[24]]= function(_0x186ex3,_0x186ex4){return ChatApplication[_0xeb64[16]](_0x186ex3[_0xeb64[15]][_0xeb64[14]])[_0xeb64[8]](function(_0x186ex7){if(!_0x186ex7){return _0x186ex4[_0xeb64[13]](404)};return _0x186ex7[_0xeb64[24]]()})[_0xeb64[8]](function(){return _0x186ex4[_0xeb64[13]](204)})[_0xeb64[5]](function(_0x186ex5){return handleError(_0x186ex4,_0x186ex5)})};function handleError(_0x186ex4,_0x186ex5){return _0x186ex4[_0xeb64[7]](500)[_0xeb64[6]](_0x186ex5)}
\ No newline at end of file