1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* Copyright (c) 2014 ThoughtWorks, Inc.
*
* Pixelated is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pixelated 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
*/
define(
[
'helpers/contenttype',
'lib/html_whitelister',
'views/i18n',
'quoted-printable/quoted-printable',
'utf8/utf8'
],
function(contentType, htmlWhitelister, i18n_lib, quotedPrintable, utf8) {
'use strict';
function formatStatusClasses(ss) {
return _.map(ss, function(s) {
return 'status-' + s;
}).join(' ');
}
function addParagraphsToPlainText(textPlainBody) {
return textPlainBody.replace(/^(.*?)$/mg, '<p>$1</p>');
}
function escapeHtmlTags(body) {
var escapeIndex = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
'\'':''',
'/': '/'
};
return body.replace(/["'<>\/&]/g, function(char){
return escapeIndex[char];
});
}
function escapeHtmlAndAddParagraphs(body) {
var escapedBody = escapeHtmlTags(body);
return addParagraphsToPlainText(escapedBody);
}
function formatMailBody(mail) {
var body = mail.htmlBodyPart ?
htmlWhitelister.sanitize(mail.htmlBody, htmlWhitelister.tagPolicy) :
escapeHtmlAndAddParagraphs(mail.textPlainBody);
return $(body);
}
function moveCaretToEnd(el) {
if (typeof el.selectionStart === 'number') {
el.selectionStart = el.selectionEnd = el.value.length;
} else if (typeof el.createTextRange !== 'undefined') {
el.focus();
var range = el.createTextRange();
range.collapse(false);
range.select();
}
}
function fixedSizeNumber(num, size) {
var res = num.toString();
while(res.length < size) {
res = '0' + res;
}
return res;
}
function getFormattedDate(date){
var today = createTodayDate();
if (date.getTime() > today.getTime()) {
return fixedSizeNumber(date.getHours(), 2) + ':' + fixedSizeNumber(date.getMinutes(), 2);
} else {
return '' + date.getFullYear() + '-' + fixedSizeNumber(date.getMonth() + 1, 2) + '-' + fixedSizeNumber(date.getDate(), 2);
}
}
function createTodayDate() {
var today = new Date();
today.setHours(0);
today.setMinutes(0);
today.setSeconds(0);
return today;
}
function moveCaretToEndOfText() {
var self = this;
moveCaretToEnd(self);
window.setTimeout(function() {
moveCaretToEnd(self);
}, 1);
}
function quoteMail(mail) {
return '\n\n' + mail.textPlainBody.replace(/^/mg, '> ');
}
function i18n(text) {
return i18n_lib.get(text);
}
return {
formatStatusClasses: formatStatusClasses,
formatMailBody: formatMailBody,
moveCaretToEndOfText: moveCaretToEndOfText,
getFormattedDate: getFormattedDate,
quoteMail: quoteMail,
i18n: i18n
};
});
|