Built motion from commit c56b56e.|0.0.125
[motion.git] / server / api / chat_visitor / chat_visitor.controller.js
index 4297f32..70275b1 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 _0x90ff=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\x43\x68\x61\x74\x56\x69\x73\x69\x74\x6F\x72","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x43\x68\x61\x74\x45\x6E\x71\x75\x69\x72\x79","\x43\x68\x61\x74\x57\x65\x62\x73\x69\x74\x65","\x69\x6E\x64\x65\x78","\x65\x72\x72\x6F\x72","\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","\x6D\x65\x72\x67\x65","\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","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79"];_0x90ff[0];var _=require(_0x90ff[1]);var Util=require(_0x90ff[2]);var ChatVisitor=require(_0x90ff[4])[_0x90ff[3]];var ChatEnquiry=require(_0x90ff[4])[_0x90ff[5]];var ChatWebsite=require(_0x90ff[4])[_0x90ff[6]];exports[_0x90ff[7]]= function(_0xe5a1x6,_0xe5a1x7,_0xe5a1x8){return ChatVisitor[_0x90ff[16]](_[_0x90ff[15]](Util[_0x90ff[14]](_0xe5a1x6[_0x90ff[13]]),{include:[{model:ChatWebsite}]}))[_0x90ff[12]](function(_0xe5a1xa){_0xe5a1x7[_0x90ff[11]](200)[_0x90ff[10]](_0xe5a1xa)})[_0x90ff[9]](function(_0xe5a1x9){console[_0x90ff[8]](_0xe5a1x9);return handleError(_0xe5a1x7,_0xe5a1x9)})};exports[_0x90ff[17]]= function(_0xe5a1x6,_0xe5a1x7){return ChatVisitor[_0x90ff[21]](_0xe5a1x6[_0x90ff[20]][_0x90ff[19]],{include:[{model:ChatEnquiry},{model:ChatWebsite}]})[_0x90ff[12]](function(_0xe5a1xb){if(!_0xe5a1xb){return _0xe5a1x7[_0x90ff[18]](404)};return _0xe5a1x7[_0x90ff[10]](_0xe5a1xb)})[_0x90ff[9]](function(_0xe5a1x9){return handleError(_0xe5a1x7,_0xe5a1x9)})};exports[_0x90ff[22]]= function(_0xe5a1x6,_0xe5a1x7){return ChatVisitor[_0x90ff[22]](_0xe5a1x6[_0x90ff[23]])[_0x90ff[12]](function(_0xe5a1xb){return _0xe5a1x7[_0x90ff[11]](201)[_0x90ff[10]](_0xe5a1xb)})[_0x90ff[9]](function(_0xe5a1x9){return handleError(_0xe5a1x7,_0xe5a1x9)})};exports[_0x90ff[24]]= function(_0xe5a1x6,_0xe5a1x7){if(_0xe5a1x6[_0x90ff[23]][_0x90ff[19]]){delete _0xe5a1x6[_0x90ff[23]][_0x90ff[19]]};return ChatVisitor[_0x90ff[21]](_0xe5a1x6[_0x90ff[20]][_0x90ff[19]])[_0x90ff[12]](function(_0xe5a1xb){if(!_0xe5a1xb){return _0xe5a1x7[_0x90ff[18]](404)};var _0xe5a1xc=_[_0x90ff[15]](_0xe5a1xb,_0xe5a1x6[_0x90ff[23]]);return _0xe5a1xc[_0x90ff[25]]()})[_0x90ff[12]](function(_0xe5a1xb){return _0xe5a1x7[_0x90ff[11]](200)[_0x90ff[10]](_0xe5a1xb)})[_0x90ff[9]](function(_0xe5a1x9){return handleError(_0xe5a1x7,_0xe5a1x9)})};exports[_0x90ff[26]]= function(_0xe5a1x6,_0xe5a1x7){return ChatVisitor[_0x90ff[21]](_0xe5a1x6[_0x90ff[20]][_0x90ff[19]])[_0x90ff[12]](function(_0xe5a1xb){if(!_0xe5a1xb){return _0xe5a1x7[_0x90ff[18]](404)};return _0xe5a1xb[_0x90ff[26]]()})[_0x90ff[12]](function(){return _0xe5a1x7[_0x90ff[18]](204)})[_0x90ff[9]](function(_0xe5a1x9){return handleError(_0xe5a1x7,_0xe5a1x9)})};function handleError(_0xe5a1x7,_0xe5a1x9){return _0xe5a1x7[_0x90ff[11]](500)[_0x90ff[10]](_0xe5a1x9)}
\ No newline at end of file