mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
432 lines
15 KiB
JavaScript
432 lines
15 KiB
JavaScript
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2021 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
|
|
* Website: https://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
|
************************************************************************/
|
|
|
|
define('email-helper', [], function () {
|
|
|
|
var EmailHelper = function (language, user, dateTime, acl) {
|
|
this.language = language;
|
|
this.user = user;
|
|
this.dateTime = dateTime;
|
|
this.acl = acl;
|
|
|
|
this.erasedPlaceholder = 'ERASED:';
|
|
}
|
|
|
|
_.extend(EmailHelper.prototype, {
|
|
|
|
getLanguage: function () {
|
|
return this.language;
|
|
},
|
|
|
|
getUser: function () {
|
|
return this.user;
|
|
},
|
|
|
|
getDateTime: function () {
|
|
return this.dateTime;
|
|
},
|
|
|
|
getReplyAttributes: function (model, data, cc) {
|
|
var attributes = {
|
|
status: 'Draft',
|
|
isHtml: model.get('isHtml')
|
|
};
|
|
|
|
var subject = model.get('name') || '';
|
|
if (subject.toUpperCase().indexOf('RE:') !== 0) {
|
|
attributes['name'] = 'Re: ' + subject;
|
|
} else {
|
|
attributes['name'] = subject;
|
|
}
|
|
|
|
var to = '';
|
|
|
|
var nameHash = model.get('nameHash') || {};
|
|
|
|
var isReplyOnSent = false;
|
|
|
|
var replyToAddressString = model.get('replyTo') || null;
|
|
|
|
if (replyToAddressString) {
|
|
var replyToAddressList = replyToAddressString.split(';');
|
|
to = replyToAddressList.join(';');
|
|
} else {
|
|
if (model.get('replyToString')) {
|
|
var str = model.get('replyToString');
|
|
|
|
var a = [];
|
|
str.split(';').forEach(function (item) {
|
|
var part = item.trim();
|
|
var address = this.parseAddressFromStringAddress(item);
|
|
|
|
if (address) {
|
|
a.push(address);
|
|
var name = this.parseNameFromStringAddress(part);
|
|
if (name && name !== address) {
|
|
nameHash[address] = name;
|
|
}
|
|
}
|
|
}, this);
|
|
to = a.join(';');
|
|
}
|
|
}
|
|
|
|
if (!to || !~to.indexOf('@')) {
|
|
if (model.get('from')) {
|
|
if (!~(this.getUser().get('emailAddressList') || []).indexOf(model.get('from'))) {
|
|
to = model.get('from');
|
|
if (!nameHash[to]) {
|
|
var fromString = model.get('fromString') || model.get('fromName');
|
|
if (fromString) {
|
|
var name = this.parseNameFromStringAddress(fromString);
|
|
if (name != to) {
|
|
nameHash[to] = name;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
isReplyOnSent = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
attributes.to = to;
|
|
|
|
if (cc) {
|
|
attributes.cc = model.get('cc') || '';
|
|
(model.get('to') || '').split(';').forEach(function (item) {
|
|
item = item.trim();
|
|
if (item != this.getUser().get('emailAddress')) {
|
|
if (isReplyOnSent) {
|
|
if (attributes.to) {
|
|
attributes.to += ';'
|
|
}
|
|
attributes.to += item;
|
|
} else {
|
|
if (attributes.cc) {
|
|
attributes.cc += ';'
|
|
}
|
|
attributes.cc += item;
|
|
}
|
|
}
|
|
}, this);
|
|
attributes.cc = attributes.cc.replace(/^(\; )/,"");
|
|
}
|
|
|
|
if (attributes.to) {
|
|
var toList = attributes.to.split(';');
|
|
toList = toList.filter(function (item) {
|
|
if (item.indexOf(this.erasedPlaceholder) === 0) return false;
|
|
return true;
|
|
}, this);
|
|
attributes.to = toList.join(';');
|
|
}
|
|
|
|
if (attributes.cc) {
|
|
var ccList = attributes.cc.split(';');
|
|
ccList = ccList.filter(function (item) {
|
|
if (item.indexOf(this.erasedPlaceholder) === 0) return false;
|
|
return true;
|
|
}, this);
|
|
attributes.cc = ccList.join(';');
|
|
}
|
|
|
|
if (model.get('parentId')) {
|
|
attributes['parentId'] = model.get('parentId');
|
|
attributes['parentName'] = model.get('parentName');
|
|
attributes['parentType'] = model.get('parentType');
|
|
}
|
|
|
|
if (model.get('teamsIds') && model.get('teamsIds').length) {
|
|
attributes.teamsIds = Espo.Utils.clone(model.get('teamsIds'));
|
|
attributes.teamsNames = Espo.Utils.clone(model.get('teamsNames') || {});
|
|
|
|
var defaultTeamId = this.user.get('defaultTeamId');
|
|
if (defaultTeamId && !~attributes.teamsIds.indexOf(defaultTeamId)) {
|
|
attributes.teamsIds.push(this.user.get('defaultTeamId'));
|
|
attributes.teamsNames[this.user.get('defaultTeamId')] = this.user.get('defaultTeamName');
|
|
}
|
|
attributes.teamsIds = attributes.teamsIds.filter(function (teamId) {
|
|
return this.acl.checkTeamAssignmentPermission(teamId);
|
|
}, this);
|
|
}
|
|
|
|
attributes.nameHash = nameHash;
|
|
|
|
attributes.repliedId = model.id;
|
|
|
|
attributes.inReplyTo = model.get('messageId');
|
|
|
|
this.addReplyBodyAttributes(model, attributes);
|
|
|
|
return attributes;
|
|
},
|
|
|
|
getForwardAttributes: function (model, data, cc) {
|
|
var attributes = {
|
|
status: 'Draft',
|
|
isHtml: model.get('isHtml')
|
|
};
|
|
|
|
var subject = model.get('name');
|
|
if (~!subject.toUpperCase().indexOf('FWD:') && ~!subject.toUpperCase().indexOf('FW:')) {
|
|
attributes['name'] = 'Fwd: ' + subject;
|
|
} else {
|
|
attributes['name'] = subject;
|
|
}
|
|
|
|
if (model.get('parentId')) {
|
|
attributes['parentId'] = model.get('parentId');
|
|
attributes['parentName'] = model.get('parentName');
|
|
attributes['parentType'] = model.get('parentType');
|
|
}
|
|
|
|
this.addForwardBodyAttributes(model, attributes);
|
|
|
|
return attributes;
|
|
},
|
|
|
|
addForwardBodyAttributes: function (model, attributes) {
|
|
var prepending = '';
|
|
|
|
if (model.get('isHtml')) {
|
|
prepending = '<br>' + '------' + this.getLanguage().translate('Forwarded message', 'labels', 'Email') + '------';
|
|
} else {
|
|
prepending = '\n\n' + '------' + this.getLanguage().translate('Forwarded message', 'labels', 'Email') + '------';
|
|
}
|
|
|
|
var list = [];
|
|
|
|
if (model.get('from')) {
|
|
var from = model.get('from');
|
|
var line = this.getLanguage().translate('from', 'fields', 'Email') + ': ';
|
|
var nameHash = model.get('nameHash') || {};
|
|
if (from in nameHash) {
|
|
line += nameHash[from] + ' ';
|
|
}
|
|
if (model.get('isHtml')) {
|
|
line += '<' + from + '>';
|
|
} else {
|
|
line += '<' + from + '>';
|
|
}
|
|
|
|
list.push(line);
|
|
}
|
|
|
|
if (model.get('dateSent')) {
|
|
line = this.getLanguage().translate('dateSent', 'fields', 'Email') + ': ';
|
|
line += this.getDateTime().toDisplayDateTime(model.get('dateSent'));
|
|
list.push(line);
|
|
}
|
|
|
|
if (model.get('name')) {
|
|
var line = this.getLanguage().translate('subject', 'fields', 'Email') + ': ';
|
|
line += model.get('name');
|
|
list.push(line);
|
|
}
|
|
|
|
if (model.get('to')) {
|
|
var line = this.getLanguage().translate('to', 'fields', 'Email') + ': ';
|
|
var partList = [];
|
|
model.get('to').split(';').forEach(function (to) {
|
|
var nameHash = model.get('nameHash') || {};
|
|
var line = '';
|
|
if (to in nameHash) {
|
|
line += nameHash[to] + ' ';
|
|
}
|
|
if (model.get('isHtml')) {
|
|
line += '<' + to + '>';
|
|
} else {
|
|
line += '<' + to + '>';
|
|
}
|
|
partList.push(line);
|
|
|
|
}, this);
|
|
line += partList.join(';');
|
|
list.push(line);
|
|
}
|
|
|
|
list.forEach(function (line) {
|
|
if (model.get('isHtml')) {
|
|
prepending += '<br>' + line;
|
|
} else {
|
|
prepending += '\n' + line;
|
|
}
|
|
}, this);
|
|
|
|
if (model.get('isHtml')) {
|
|
var body = model.get('body');
|
|
attributes['body'] = prepending + '<br><br>' + body;
|
|
} else {
|
|
var bodyPlain = model.get('body') || model.get('bodyPlain') || '';
|
|
attributes['bodyPlain'] = attributes['body'] = prepending + '\n\n' + bodyPlain;
|
|
}
|
|
},
|
|
|
|
parseNameFromStringAddress: function (value) {
|
|
if (~value.indexOf('<')) {
|
|
var name = value.replace(/<(.*)>/, '').trim();
|
|
if (name.charAt(0) === '"' && name.charAt(name.length - 1) === '"') {
|
|
name = name.substr(1, name.length - 2);
|
|
}
|
|
return name;
|
|
}
|
|
return null;
|
|
},
|
|
|
|
parseAddressFromStringAddress: function (value) {
|
|
var r = value.match(/<(.*)>/);
|
|
var address = null;
|
|
if (r && r.length > 1) {
|
|
address = r[1];
|
|
} else {
|
|
address = value.trim();
|
|
}
|
|
return address;
|
|
},
|
|
|
|
addReplyBodyAttributes: function (model, attributes) {
|
|
var format = this.getDateTime().getReadableShortDateTimeFormat();
|
|
var dateSent = model.get('dateSent');
|
|
|
|
var dateSentSting = null;
|
|
if (dateSent) {
|
|
var dateSentMoment = this.getDateTime().toMoment(dateSent);
|
|
dateSentSting =dateSentMoment.format(format);
|
|
}
|
|
|
|
var replyHeadString =
|
|
(dateSentSting || this.getLanguage().translate('Original message', 'labels', 'Email'));
|
|
|
|
var fromName = model.get('fromName');
|
|
|
|
if (!fromName && model.get('from')) {
|
|
fromName = (model.get('nameHash') || {})[model.get('from')];
|
|
if (fromName) {
|
|
replyHeadString += ', ' + fromName;
|
|
}
|
|
}
|
|
|
|
replyHeadString += ':'
|
|
|
|
|
|
if (model.get('isHtml')) {
|
|
var body = model.get('body');
|
|
body = '<br>' + replyHeadString + '<br><blockquote>' + body + '</blockquote>';
|
|
|
|
attributes['body'] = body;
|
|
} else {
|
|
var bodyPlain = model.get('body') || model.get('bodyPlain') || '';
|
|
|
|
var b = '\n\n';
|
|
b += replyHeadString + '\n';
|
|
|
|
bodyPlain.split('\n').forEach(function (line) {
|
|
b += '> ' + line + '\n';
|
|
});
|
|
bodyPlain = b;
|
|
|
|
attributes['body'] = bodyPlain;
|
|
attributes['bodyPlain'] = bodyPlain;
|
|
}
|
|
},
|
|
|
|
composeMailToLink: function (attributes, bcc) {
|
|
var link = 'mailto:';
|
|
|
|
link += (attributes.to || '').split(';').join(',');
|
|
|
|
var o = {};
|
|
|
|
if (attributes.cc) {
|
|
o.cc = attributes.cc.split(';').join(',');
|
|
}
|
|
|
|
if (attributes.bcc) {
|
|
if (!bcc) {
|
|
bcc = '';
|
|
} else {
|
|
bcc += ';'
|
|
}
|
|
bcc += attributes.bcc;
|
|
}
|
|
|
|
if (bcc) {
|
|
o.bcc = bcc.split(';').join(',');
|
|
}
|
|
|
|
if (attributes.name) {
|
|
o.subject = attributes.name;
|
|
}
|
|
|
|
if (attributes.body) {
|
|
o.body = attributes.body;
|
|
if (attributes.isHtml) {
|
|
o.body = this.htmlToPlain(o.body);
|
|
}
|
|
}
|
|
|
|
if (attributes.inReplyTo) {
|
|
o['In-Reply-To'] = attributes.inReplyTo;
|
|
}
|
|
|
|
var part = '';
|
|
for (var key in o) {
|
|
if (part !== '') {
|
|
part += '&';
|
|
} else {
|
|
part += '?';
|
|
}
|
|
part += key + '=' + encodeURIComponent(o[key]);
|
|
}
|
|
|
|
link += part;
|
|
|
|
return link;
|
|
},
|
|
|
|
htmlToPlain: function (text) {
|
|
text = text || '';
|
|
var value = text.replace(/<br\s*\/?>/mg, '\n');
|
|
|
|
value = value.replace(/<\/p\s*\/?>/mg, '\n\n');
|
|
|
|
var $div = $('<div>').html(value);
|
|
$div.find('style').remove();
|
|
$div.find('link[ref="stylesheet"]').remove();
|
|
|
|
value = $div.text();
|
|
|
|
return value;
|
|
}
|
|
|
|
});
|
|
|
|
return EmailHelper;
|
|
});
|