Built motion from commit 2438401.|1.0.5
[motion.git] / server / models / mail_message.js
index e4f516b..d2f2b56 100644 (file)
@@ -1 +1,100 @@
-var _0x871d=["\x63\x72\x79\x70\x74\x6F","\x65\x78\x70\x6F\x72\x74\x73","\x4D\x61\x69\x6C\x4D\x65\x73\x73\x61\x67\x65","\x53\x54\x52\x49\x4E\x47","\x66\x72\x6F\x6D","\x67\x65\x74\x44\x61\x74\x61\x56\x61\x6C\x75\x65","\x3B","\x73\x70\x6C\x69\x74","\x6A\x6F\x69\x6E","\x73\x65\x74\x44\x61\x74\x61\x56\x61\x6C\x75\x65","\x74\x6F","\x63\x63","\x62\x63\x63","\x54\x45\x58\x54","\x42\x4C\x4F\x42","\x74\x65\x78\x74","\x68\x74\x6D\x6C","\x53\x45\x4E\x54","\x53\x45\x4E\x44\x49\x4E\x47","\x52\x45\x43\x45\x49\x56\x45\x44","\x46\x41\x49\x4C\x45\x44","\x4E\x4F\x54\x45","\x6D\x61\x69\x6C\x5F\x6D\x65\x73\x73\x61\x67\x65\x73","\x68\x61\x73\x4D\x61\x6E\x79","\x62\x65\x6C\x6F\x6E\x67\x73\x54\x6F","\x64\x65\x66\x69\x6E\x65"];var crypto=require(_0x871d[0]);module[_0x871d[1]]=function(_0x5069x2,_0x5069x3){var _0x5069x4=_0x5069x2[_0x871d[25]](_0x871d[2],{messageId:_0x5069x3[_0x871d[3]],inReplyTo:_0x5069x3[_0x871d[3]],subject:_0x5069x3[_0x871d[3]],from:{type:_0x5069x3[_0x871d[3]],get:function(){return this[_0x871d[5]](_0x871d[4])?this[_0x871d[5]](_0x871d[4])[_0x871d[7]](_0x871d[6]):[]},set:function(_0x5069x5){this[_0x871d[9]](_0x871d[4],_0x5069x5[_0x871d[8]](_0x871d[6]))}},to:{type:_0x5069x3[_0x871d[3]],get:function(){return this[_0x871d[5]](_0x871d[10])?this[_0x871d[5]](_0x871d[10])[_0x871d[7]](_0x871d[6]):[]},set:function(_0x5069x5){this[_0x871d[9]](_0x871d[10],_0x5069x5[_0x871d[8]](_0x871d[6]))}},cc:{type:_0x5069x3[_0x871d[3]],get:function(){return this[_0x871d[5]](_0x871d[11])?this[_0x871d[5]](_0x871d[11])[_0x871d[7]](_0x871d[6]):[]},set:function(_0x5069x5){this[_0x871d[9]](_0x871d[11],_0x5069x5[_0x871d[8]](_0x871d[6]))}},bcc:{type:_0x5069x3[_0x871d[3]],get:function(){return this[_0x871d[5]](_0x871d[12])?this[_0x871d[5]](_0x871d[12])[_0x871d[7]](_0x871d[6]):[]},set:function(_0x5069x5){this[_0x871d[9]](_0x871d[12],_0x5069x5[_0x871d[8]](_0x871d[6]))}},attachment:_0x5069x3[_0x871d[13]],text:{type:_0x5069x3[_0x871d[14]],get:function(){if(this[_0x871d[5]](_0x871d[15])){return this[_0x871d[5]](_0x871d[15]).toString()}}},html:{type:_0x5069x3[_0x871d[14]],get:function(){if(this[_0x871d[5]](_0x871d[16])){return this[_0x871d[5]](_0x871d[16]).toString()}}},reason:_0x5069x3[_0x871d[13]],status:{type:_0x5069x3.ENUM(_0x871d[17],_0x871d[18],_0x871d[19],_0x871d[20],_0x871d[21]),defaultValue:_0x871d[18]}},{tableName:_0x871d[22],associate:function(_0x5069x6){_0x5069x4[_0x871d[23]](_0x5069x6.MailAttachment);_0x5069x4[_0x871d[24]](_0x5069x6.User);_0x5069x4[_0x871d[24]](_0x5069x6.MailRoom);_0x5069x4[_0x871d[24]](_0x5069x6.ContactEmail,{foreignKey:_0x871d[4],constraints:false})}});return _0x5069x4}
\ No newline at end of file
+/**
+ * Chat Website Model
+ */
+
+var _ = require('lodash');
+
+module.exports = function(sequelize, DataTypes) {
+
+       var MailMessage = sequelize.define('MailMessage', {
+               messageId: DataTypes.STRING,
+               inReplyTo: DataTypes.STRING,
+               subject: DataTypes.STRING,
+               from: {
+                       type: DataTypes.STRING,
+                       get: function() {
+                               return this.getDataValue('from') ? this.getDataValue('from').split(';') : [];
+                       },
+                       set: function(val) {
+                               this.setDataValue('from', val.join(';'));
+                       }
+               },
+               to: {
+                       type: DataTypes.TEXT,
+                       get: function() {
+                               return this.getDataValue('to') ? this.getDataValue('to').split(';') : [];
+                       },
+                       set: function(val) {
+                               this.setDataValue('to', val.join(';'));
+                       }
+               },
+               cc: {
+                       type: DataTypes.TEXT,
+                       get: function() {
+                               return this.getDataValue('cc') ? this.getDataValue('cc').split(';') : [];
+                       },
+                       set: function(val) {
+                               this.setDataValue('cc', val.join(';'));
+                       }
+               },
+               bcc: {
+                       type: DataTypes.TEXT,
+                       get: function() {
+                               return this.getDataValue('bcc') ? this.getDataValue('bcc').split(';') : [];
+                       },
+                       set: function(val) {
+                               this.setDataValue('bcc', val.join(';'));
+                       }
+               },
+               fromId: {
+                       type: DataTypes.INTEGER
+               },
+               attachment: DataTypes.TEXT,
+               text: {
+                       type: DataTypes.BLOB('long'),
+                       get: function() {
+                               if (this.getDataValue('text')) {
+                                       return _.toString(this.getDataValue('text'));
+                               }
+                       }
+               },
+               html: {
+                       type: DataTypes.BLOB('long'),
+                       get: function() {
+                               if (this.getDataValue('html')) {
+                                       return _.toString(this.getDataValue('html'));
+                               }
+                       }
+               },
+               reason: DataTypes.TEXT,
+               auto: {
+                       type: DataTypes.BOOLEAN,
+                       defaultValue: false
+               },
+               status: {
+                       type: DataTypes.ENUM('SENDING', 'SENT', 'RECEIVED', 'FAILED', 'NOTE'),
+                       defaultValue: 'SENDING'
+               },
+               retry: {
+                       type: DataTypes.INTEGER,
+                       defaultValue: 0
+               },
+               voiceSource: DataTypes.STRING,
+               userName: DataTypes.STRING,
+               userFullname: DataTypes.STRING,
+               accountId: DataTypes.INTEGER,
+               accountName: DataTypes.STRING
+       }, {
+               tableName: 'mail_messages',
+               paranoid: true,
+               associate: function(models) {
+                       MailMessage.hasMany(models.MailAttachment);
+                       MailMessage.belongsTo(models.User);
+                       MailMessage.belongsTo(models.MailRoom, {
+                               onDelete: 'cascade'
+                       });
+               }
+       });
+
+       return MailMessage;
+};