Built motion from commit 05106a3.|0.0.33
[motion.git] / server / api / chat_visitor / chat_visitor.controller.js
index 4297f32..6b17bca 100644 (file)
@@ -1,94 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var ChatVisitor = require('../../models').ChatVisitor;
-
-// Get list of chat_visitors
-exports.index = function(req, res) {
-  ChatVisitor
-    .findAll()
-    .then(function(chat_visitors) {
-      return res.status(200).send(chat_visitors);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single chat_visitor
-exports.show = function(req, res) {
-  ChatVisitor
-    .findById(req.params.id)
-    .then(function(chat_visitor) {
-      if (!chat_visitor) {
-        return res.sendStatus(404);
-      }
-      return res.send(chat_visitor);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new chat_visitor in the DB.
-exports.create = function(req, res) {
-
-  ChatVisitor
-    .create(req.body)
-    .then(function(chat_visitor) {
-      return res.status(201).send(chat_visitor);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing chat_visitor in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  ChatVisitor
-    .findById(req.params.id)
-    .then(function(chat_visitor) {
-      if (!chat_visitor) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(chat_visitor, req.body);
-      updated.save()
-        .then(function() {
-          return res.status(200).send(chat_visitor);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a chat_visitor from the DB.
-exports.destroy = function(req, res) {
-  ChatVisitor
-    .findById(req.params.id)
-    .then(function(chat_visitor) {
-      if (!chat_visitor) {
-        return res.sendStatus(404);
-      }
-      chat_visitor.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 _0x7684=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x43\x68\x61\x74\x56\x69\x73\x69\x74\x6F\x72","\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","\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","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79"];_0x7684[0];var _=require(_0x7684[1]);var ChatVisitor=require(_0x7684[3])[_0x7684[2]];exports[_0x7684[4]]=function(_0xfe4dx3,_0xfe4dx4){ChatVisitor[_0x7684[9]]()[_0x7684[8]](function(_0xfe4dx6){return _0xfe4dx4[_0x7684[7]](200)[_0x7684[6]](_0xfe4dx6)})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)})};exports[_0x7684[10]]=function(_0xfe4dx3,_0xfe4dx4){ChatVisitor[_0x7684[14]](_0xfe4dx3[_0x7684[13]][_0x7684[12]])[_0x7684[8]](function(_0xfe4dx7){if(!_0xfe4dx7){return _0xfe4dx4[_0x7684[11]](404)};return _0xfe4dx4[_0x7684[6]](_0xfe4dx7);})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)})};exports[_0x7684[15]]=function(_0xfe4dx3,_0xfe4dx4){ChatVisitor[_0x7684[15]](_0xfe4dx3[_0x7684[16]])[_0x7684[8]](function(_0xfe4dx7){return _0xfe4dx4[_0x7684[7]](201)[_0x7684[6]](_0xfe4dx7)})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)})};exports[_0x7684[17]]=function(_0xfe4dx3,_0xfe4dx4){if(_0xfe4dx3[_0x7684[16]][_0x7684[12]]){delete _0xfe4dx3[_0x7684[16]][_0x7684[12]]};ChatVisitor[_0x7684[14]](_0xfe4dx3[_0x7684[13]][_0x7684[12]])[_0x7684[8]](function(_0xfe4dx7){if(!_0xfe4dx7){return _0xfe4dx4[_0x7684[11]](404)};var _0xfe4dx8=_[_0x7684[18]](_0xfe4dx7,_0xfe4dx3[_0x7684[16]]);_0xfe4dx8[_0x7684[19]]()[_0x7684[8]](function(){return _0xfe4dx4[_0x7684[7]](200)[_0x7684[6]](_0xfe4dx7)})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)});})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)});};exports[_0x7684[20]]=function(_0xfe4dx3,_0xfe4dx4){ChatVisitor[_0x7684[14]](_0xfe4dx3[_0x7684[13]][_0x7684[12]])[_0x7684[8]](function(_0xfe4dx7){if(!_0xfe4dx7){return _0xfe4dx4[_0x7684[11]](404)};_0xfe4dx7[_0x7684[20]]()[_0x7684[8]](function(){return _0xfe4dx4[_0x7684[11]](204)})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)});})[_0x7684[5]](function(_0xfe4dx5){return handleError(_0xfe4dx4,_0xfe4dx5)})};function handleError(_0xfe4dx4,_0xfe4dx5){return _0xfe4dx4[_0x7684[7]](500)[_0x7684[6]](_0xfe4dx5)}
\ No newline at end of file