Built motion from commit e155ad4.|0.0.101
[motion.git] / server / api / mail_attachment / mail_attachment.controller.js
index f962782..bf5da31 100644 (file)
@@ -1,87 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var fs = require('fs');
-var MailAttachment = require('../../models').MailAttachment;
-
-// Get list of mailAttachments
-exports.index = function (req, res, next) {
-  MailAttachment
-    .findAll()
-    .then(function (mailAttachments) {
-      return res.status(200).send(mailAttachments);
-    })
-    .catch(function (err) {
-      return next(err);
-    });
-};
-
-// Get a single mailAttachment
-exports.show = function (req, res, next) {
-  MailAttachment
-    .findById(req.params.id)
-    .then(function (mailAttachment) {
-      res.download(mailAttachment.path, mailAttachment.fileName);
-    })
-    .catch(function (err) {
-      return next(err);
-    });
-};
-
-// Creates a new mailAttachment in the DB.
-exports.create = function (req, res, next) {
-  MailAttachment
-    .create(req.body)
-    .then(function (mailAttachment) {
-      return res.status(201).send(mailAttachment);
-    })
-    .catch(function (err) {
-      return next(err);
-    });
-};
-
-// Updates an existing mailAttachment in the DB.
-exports.update = function (req, res, next) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  MailAttachment
-    .findById(req.params.id)
-    .then(function (mailAttachment) {
-      if (!mailAttachment) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(mailAttachment, req.body);
-      updated.save()
-        .then(function () {
-          return res.status(200).send(mailAttachment);
-        })
-        .catch(function (err) {
-          return next(err);
-        });
-    })
-    .catch(function (err) {
-      return next(err);
-    });
-};
-
-// Deletes a mailAttachment from the DB.
-exports.destroy = function (req, res, next) {
-  MailAttachment
-    .findById(req.params.id)
-    .then(function (mailAttachment) {
-      if (!mailAttachment) {
-        return res.sendStatus(404);
-      }
-      mailAttachment.destroy()
-        .then(function () {
-          return res.sendStatus(204);
-        })
-        .catch(function (err) {
-          return next(err);
-        });
-    })
-    .catch(function (err) {
-      return next(err);
-    });
-};
+var _0xbfcc=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x70\x61\x74\x68","\x66\x73","\x66\x6F\x72\x6D\x69\x64\x61\x62\x6C\x65","\x62\x6C\x75\x65\x62\x69\x72\x64","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x65\x6E\x76\x69\x72\x6F\x6E\x6D\x65\x6E\x74","\x4D\x61\x69\x6C\x41\x74\x74\x61\x63\x68\x6D\x65\x6E\x74","\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","\x6E\x61\x6D\x65","\x64\x6F\x77\x6E\x6C\x6F\x61\x64","\x69\x64","\x70\x61\x72\x61\x6D\x73","\x66\x69\x6E\x64\x42\x79\x49\x64","\x63\x72\x65\x61\x74\x65","\x75\x70\x6C\x6F\x61\x64\x44\x69\x72","\x72\x6F\x6F\x74","\x73\x65\x72\x76\x65\x72","\x66\x69\x6C\x65\x73","\x61\x74\x74\x61\x63\x68\x6D\x65\x6E\x74\x73","\x6A\x6F\x69\x6E","\x6B\x65\x65\x70\x45\x78\x74\x65\x6E\x73\x69\x6F\x6E\x73","\x6D\x75\x6C\x74\x69\x70\x6C\x65\x73","\x68\x61\x73\x68","\x73\x69\x7A\x65","\x66\x69\x6C\x65","\x74\x79\x70\x65","\x62\x61\x73\x65\x6E\x61\x6D\x65","\x70\x61\x72\x73\x65","\x75\x70\x64\x61\x74\x65","\x62\x6F\x64\x79","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79","\x75\x6E\x6C\x69\x6E\x6B","\x70\x72\x6F\x6D\x69\x73\x69\x66\x79"];_0xbfcc[0];var _=require(_0xbfcc[1]);var path=require(_0xbfcc[2]);var fs=require(_0xbfcc[3]);var formidable=require(_0xbfcc[4]);var Promise=require(_0xbfcc[5]);var config=require(_0xbfcc[6]);var MailAttachment=require(_0xbfcc[8])[_0xbfcc[7]];exports[_0xbfcc[9]]=function(_0xd034x8,_0xd034x9,_0xd034xa){return MailAttachment[_0xbfcc[14]]()[_0xbfcc[13]](function(_0xd034xc){return _0xd034x9[_0xbfcc[12]](200)[_0xbfcc[11]](_0xd034xc)})[_0xbfcc[10]](function(_0xd034xb){return handleError(_0xd034x9,_0xd034xb)})};exports[_0xbfcc[15]]=function(_0xd034x8,_0xd034x9,_0xd034xa){return MailAttachment[_0xbfcc[20]](_0xd034x8[_0xbfcc[19]][_0xbfcc[18]])[_0xbfcc[13]](function(_0xd034xd){return _0xd034x9[_0xbfcc[17]](_0xd034xd[_0xbfcc[2]],_0xd034xd[_0xbfcc[16]])})[_0xbfcc[10]](function(_0xd034xb){return handleError(_0xd034x9,_0xd034xb)})};exports[_0xbfcc[21]]=function(_0xd034x8,_0xd034x9,_0xd034xa){var _0xd034xe= new formidable.IncomingForm();_0xd034xe[_0xbfcc[22]]=path[_0xbfcc[27]](config[_0xbfcc[23]],_0xbfcc[24],_0xbfcc[25],_0xbfcc[26]);_0xd034xe[_0xbfcc[28]]=true;_0xd034xe[_0xbfcc[29]]=true;_0xd034xe[_0xbfcc[30]]=true;_0xd034xe[_0xbfcc[35]](_0xd034x8,function(_0xd034xb,_0xd034xe,_0xd034xf){if(_0xd034xb){return _0xd034x9[_0xbfcc[12]](500)[_0xbfcc[11]](_0xd034xb)};return _0xd034x9[_0xbfcc[12]](201)[_0xbfcc[11]]({size:_0xd034xf[_0xbfcc[32]][_0xbfcc[31]],path:_0xd034xf[_0xbfcc[32]][_0xbfcc[2]],name:_0xd034xf[_0xbfcc[32]][_0xbfcc[16]],type:_0xd034xf[_0xbfcc[32]][_0xbfcc[33]],basename:path[_0xbfcc[34]](_0xd034xf[_0xbfcc[32]][_0xbfcc[2]])})})};exports[_0xbfcc[36]]=function(_0xd034x8,_0xd034x9,_0xd034xa){if(_0xd034x8[_0xbfcc[37]][_0xbfcc[18]]){delete _0xd034x8[_0xbfcc[37]][_0xbfcc[18]]};return MailAttachment[_0xbfcc[20]](_0xd034x8[_0xbfcc[19]][_0xbfcc[18]])[_0xbfcc[13]](function(_0xd034xd){if(!_0xd034xd){return _0xd034x9[_0xbfcc[38]](404)};var _0xd034x10=_[_0xbfcc[39]](_0xd034xd,_0xd034x8[_0xbfcc[37]]);return _0xd034x10[_0xbfcc[40]]()})[_0xbfcc[13]](function(_0xd034xd){return _0xd034x9[_0xbfcc[12]](200)[_0xbfcc[11]](_0xd034xd)})[_0xbfcc[10]](function(_0xd034xb){return handleError(_0xd034x9,_0xd034xb)})};exports[_0xbfcc[41]]=function(_0xd034x8,_0xd034x9,_0xd034xa){var _0xd034x11=Promise[_0xbfcc[43]](require(_0xbfcc[3])[_0xbfcc[42]]);var _0xd034x12=path[_0xbfcc[27]](config[_0xbfcc[23]],_0xbfcc[24],_0xbfcc[25],_0xbfcc[26],_0xd034x8[_0xbfcc[19]][_0xbfcc[18]]);return _0xd034x11(_0xd034x12)[_0xbfcc[13]](function(){return _0xd034x9[_0xbfcc[38]](204)})[_0xbfcc[10]](function(_0xd034xb){return handleError(_0xd034x9,_0xd034xb)})};function handleError(_0xd034x9,_0xd034xb){return _0xd034x9[_0xbfcc[12]](500)[_0xbfcc[11]](_0xd034xb)}
\ No newline at end of file