Built motion from commit bfa6da2.|0.0.130
[motion.git] / server / api / mail_application / mail_application.controller.js
index 260557e..eaf04dc 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 _0xf1c1=["\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"];_0xf1c1[0];var _=require(_0xf1c1[1]);var MailApplication=require(_0xf1c1[3])[_0xf1c1[2]];exports[_0xf1c1[4]]= function(_0x9928x3,_0x9928x4,_0x9928x5){return MailApplication[_0xf1c1[11]]({where:_0x9928x3[_0xf1c1[9]],order:_0xf1c1[10],include:[{all:true}]})[_0xf1c1[8]](function(_0x9928x7){return _0x9928x4[_0xf1c1[7]](200)[_0xf1c1[6]](_0x9928x7)})[_0xf1c1[5]](function(_0x9928x6){return handleError(_0x9928x4,_0x9928x6)})};exports[_0xf1c1[12]]= function(_0x9928x3,_0x9928x4,_0x9928x5){return MailApplication[_0xf1c1[16]](_0x9928x3[_0xf1c1[15]][_0xf1c1[14]],{include:[{all:true}]})[_0xf1c1[8]](function(_0x9928x8){if(!_0x9928x8){return _0x9928x4[_0xf1c1[13]](404)};return _0x9928x4[_0xf1c1[6]](_0x9928x8)})[_0xf1c1[5]](function(_0x9928x6){return handleError(_0x9928x4,_0x9928x6)})};exports[_0xf1c1[17]]= function(_0x9928x3,_0x9928x4,_0x9928x5){return MailApplication[_0xf1c1[20]](_0xf1c1[10],{where:{MailAccountId:_0x9928x3[_0xf1c1[18]][_0xf1c1[19]]}})[_0xf1c1[8]](function(_0x9928x9){_0x9928x3[_0xf1c1[18]][_0xf1c1[10]]= _0x9928x9?++_0x9928x9:1;return MailApplication[_0xf1c1[17]](_0x9928x3[_0xf1c1[18]])})[_0xf1c1[8]](function(_0x9928x8){return _0x9928x4[_0xf1c1[7]](201)[_0xf1c1[6]](_0x9928x8)})[_0xf1c1[5]](function(_0x9928x6){return handleError(_0x9928x4,_0x9928x6)})};exports[_0xf1c1[21]]= function(_0x9928x3,_0x9928x4,_0x9928x5){if(_0x9928x3[_0xf1c1[18]][_0xf1c1[14]]){delete _0x9928x3[_0xf1c1[18]][_0xf1c1[14]]};return MailApplication[_0xf1c1[16]](_0x9928x3[_0xf1c1[15]][_0xf1c1[14]])[_0xf1c1[8]](function(_0x9928x8){if(!_0x9928x8){return _0x9928x4[_0xf1c1[13]](404)};var _0x9928xa=_[_0xf1c1[22]](_0x9928x8,_0x9928x3[_0xf1c1[18]]);return _0x9928xa[_0xf1c1[23]]()})[_0xf1c1[8]](function(_0x9928x8){return _0x9928x4[_0xf1c1[7]](200)[_0xf1c1[6]](_0x9928x8)})[_0xf1c1[5]](function(_0x9928x6){return handleError(_0x9928x4,_0x9928x6)})};exports[_0xf1c1[24]]= function(_0x9928x3,_0x9928x4,_0x9928x5){return MailApplication[_0xf1c1[16]](_0x9928x3[_0xf1c1[15]][_0xf1c1[14]])[_0xf1c1[8]](function(_0x9928x8){if(!_0x9928x8){return _0x9928x4[_0xf1c1[13]](404)};return _0x9928x8[_0xf1c1[24]]()})[_0xf1c1[8]](function(){return _0x9928x4[_0xf1c1[13]](204)})[_0xf1c1[5]](function(_0x9928x6){return handleError(_0x9928x4,_0x9928x6)})};function handleError(_0x9928x4,_0x9928x6){return _0x9928x4[_0xf1c1[7]](500)[_0xf1c1[6]](_0x9928x6)}
\ No newline at end of file