Built motion from commit fd18f58.|0.0.129
[motion.git] / server / api / mail_application / mail_application.controller.js
index 260557e..769b624 100644 (file)
@@ -1,111 +1 @@
-'use strict';
-var _ = require('lodash');
-var MailApplication = require('../../models').MailApplication;
-// Get list of mailApplications
-exports.index = function(req, res, next) {
-  MailApplication
-    .findAll({
-      where: req.query,
-      order: 'priority',
-      include: [{
-        all: true
-      }]
-    })
-    .then(function(mailApplications) {
-      return res.status(200).send(mailApplications);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Get a single mailApplication
-exports.show = function(req, res, next) {
-  MailApplication
-    .findById(req.params.id, {
-      include: [{
-        all: true
-      }]
-    })
-    .then(function(mailApplication) {
-      if (!mailApplication) {
-        return res.sendStatus(404);
-      }
-      return res.send(mailApplication);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Creates a new mailApplication in the DB.
-exports.create = function(req, res, next) {
-  MailApplication
-    .max('priority', {
-      where: {
-        MailAccountId: req.body.MailAccountId
-      }
-    }).then(function(max) {
-      // SET PRIORITY
-      req.body.priority = max ? ++max : 1;
-      MailApplication
-        .create(req.body)
-        .then(function(mailApplication) {
-          return res.status(201).send(mailApplication);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Updates an existing mailApplication in the DB.
-exports.update = function(req, res, next) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  MailApplication
-    .findById(req.params.id)
-    .then(function(mailApplication) {
-      if (!mailApplication) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(mailApplication, req.body);
-      updated
-        .save()
-        .then(function() {
-          return res.status(200).send(mailApplication);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-// Deletes a mailApplication from the DB.
-exports.destroy = function(req, res, next) {
-  MailApplication
-    .findById(req.params.id)
-    .then(function(mailApplication) {
-      if (!mailApplication) {
-        return res.sendStatus(404);
-      }
-      mailApplication
-        .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 _0x474b=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x4D\x61\x69\x6C\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","\x4D\x61\x69\x6C\x41\x63\x63\x6F\x75\x6E\x74\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"];_0x474b[0];var _=require(_0x474b[1]);var MailApplication=require(_0x474b[3])[_0x474b[2]];exports[_0x474b[4]]= function(_0x9db4x3,_0x9db4x4,_0x9db4x5){return MailApplication[_0x474b[11]]({where:_0x9db4x3[_0x474b[9]],order:_0x474b[10],include:[{all:true}]})[_0x474b[8]](function(_0x9db4x7){return _0x9db4x4[_0x474b[7]](200)[_0x474b[6]](_0x9db4x7)})[_0x474b[5]](function(_0x9db4x6){return handleError(_0x9db4x4,_0x9db4x6)})};exports[_0x474b[12]]= function(_0x9db4x3,_0x9db4x4,_0x9db4x5){return MailApplication[_0x474b[16]](_0x9db4x3[_0x474b[15]][_0x474b[14]],{include:[{all:true}]})[_0x474b[8]](function(_0x9db4x8){if(!_0x9db4x8){return _0x9db4x4[_0x474b[13]](404)};return _0x9db4x4[_0x474b[6]](_0x9db4x8)})[_0x474b[5]](function(_0x9db4x6){return handleError(_0x9db4x4,_0x9db4x6)})};exports[_0x474b[17]]= function(_0x9db4x3,_0x9db4x4,_0x9db4x5){return MailApplication[_0x474b[20]](_0x474b[10],{where:{MailAccountId:_0x9db4x3[_0x474b[18]][_0x474b[19]]}})[_0x474b[8]](function(_0x9db4x9){_0x9db4x3[_0x474b[18]][_0x474b[10]]= _0x9db4x9?++_0x9db4x9:1;return MailApplication[_0x474b[17]](_0x9db4x3[_0x474b[18]])})[_0x474b[8]](function(_0x9db4x8){return _0x9db4x4[_0x474b[7]](201)[_0x474b[6]](_0x9db4x8)})[_0x474b[5]](function(_0x9db4x6){return handleError(_0x9db4x4,_0x9db4x6)})};exports[_0x474b[21]]= function(_0x9db4x3,_0x9db4x4,_0x9db4x5){if(_0x9db4x3[_0x474b[18]][_0x474b[14]]){delete _0x9db4x3[_0x474b[18]][_0x474b[14]]};return MailApplication[_0x474b[16]](_0x9db4x3[_0x474b[15]][_0x474b[14]])[_0x474b[8]](function(_0x9db4x8){if(!_0x9db4x8){return _0x9db4x4[_0x474b[13]](404)};var _0x9db4xa=_[_0x474b[22]](_0x9db4x8,_0x9db4x3[_0x474b[18]]);return _0x9db4xa[_0x474b[23]]()})[_0x474b[8]](function(_0x9db4x8){return _0x9db4x4[_0x474b[7]](200)[_0x474b[6]](_0x9db4x8)})[_0x474b[5]](function(_0x9db4x6){return handleError(_0x9db4x4,_0x9db4x6)})};exports[_0x474b[24]]= function(_0x9db4x3,_0x9db4x4,_0x9db4x5){return MailApplication[_0x474b[16]](_0x9db4x3[_0x474b[15]][_0x474b[14]])[_0x474b[8]](function(_0x9db4x8){if(!_0x9db4x8){return _0x9db4x4[_0x474b[13]](404)};return _0x9db4x8[_0x474b[24]]()})[_0x474b[8]](function(){return _0x9db4x4[_0x474b[13]](204)})[_0x474b[5]](function(_0x9db4x6){return handleError(_0x9db4x4,_0x9db4x6)})};function handleError(_0x9db4x4,_0x9db4x6){return _0x9db4x4[_0x474b[7]](500)[_0x474b[6]](_0x9db4x6)}
\ No newline at end of file