forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailheader.js
188 lines (157 loc) · 5.3 KB
/
mailheader.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
"use strict";
// An RFC 2822 email header parser
var logger = require('./logger');
var utils = require('./utils');
var Iconv;
try { Iconv = require('iconv').Iconv }
catch (err) {
logger.logdebug("No iconv available - install with 'npm install iconv'");
}
function Header (options) {
this.headers = {};
this.headers_decoded = {};
this.header_list = [];
this.options = options;
};
exports.Header = Header;
exports.Iconv = Iconv;
Header.prototype.parse = function (lines) {
var self = this;
for (var i=0,l=lines.length; i < l; i++) {
var line = lines[i];
if (line.match(/^[ \t]/)) {
// continuation
this.header_list[this.header_list.length - 1] += line;
}
else {
this.header_list.push(line);
}
}
for (var i=0,l=this.header_list.length; i < l; i++) {
var match = this.header_list[i].match(/^([^:]*):\s*([\s\S]*)$/);
if (match) {
var key = match[1].toLowerCase();
var val = match[2];
this._add_header(key, val, "push");
}
else {
logger.logerror("Header did not look right: " + this.header_list[i]);
}
}
// Now add decoded versions
Object.keys(this.headers).forEach(function (key) {
self.headers[key].forEach(function (val) {
self._add_header_decode(key, val, "push");
})
})
};
function try_convert(data, encoding) {
try {
var converter = new Iconv(encoding, "UTF-8");
data = converter.convert(data);
}
catch (err) {
// TODO: raise a flag for this for possible scoring
logger.logwarn("initial iconv conversion from " + encoding + " to UTF-8 failed: " + err.message);
if (err.code !== 'EINVAL') {
try {
var converter = new Iconv(encoding, "UTF-8//TRANSLIT//IGNORE");
data = converter.convert(data);
}
catch (e) {
logger.logerror("iconv from " + encoding + " to UTF-8 failed: " + e.message);
}
}
}
return data;
}
function _decode_header (matched, encoding, cte, data) {
cte = cte.toUpperCase();
switch(cte) {
case 'Q':
data = utils.decode_qp(data.replace(/_/g, ' '));
break;
case 'B':
data = new Buffer(data, "base64");
break;
default:
logger.logerror("Invalid header encoding type: " + cte);
}
// convert with iconv if encoding != UTF-8
if (Iconv && !(/UTF-?8/i.test(encoding))) {
data = try_convert(data, encoding);
}
return data.toString();
}
Header.prototype.decode_header = function decode_header (val) {
// Fold continuations
val = val.replace(/\n[ \t]+/g, "\n ");
// remove end carriage return
val = val.replace(/\r?\n$/, '');
if (Iconv && !/^[\x00-\x7f]*$/.test(val)) {
// 8 bit values in the header
var matches = /\bcharset\s*=\s*["']?([\w_\-]*)/.exec(this.get('content-type'));
if (matches && !/UTF-?8/i.test(matches[1])) {
var encoding = matches[1];
var source = new Buffer(val, 'binary');
val = try_convert(source, encoding).toString();
}
}
if (! (/=\?/.test(val)) ) {
// no encoded stuff
return val;
}
val = val.replace(/=\?([\w_-]+)\?([bqBQ])\?(.*?)\?=/g, _decode_header);
return val;
}
Header.prototype.get = function (key) {
return (this.headers[key.toLowerCase()] || []).join("\n");
};
Header.prototype.get_all = function (key) {
return this.headers[key.toLowerCase()] || [];
};
Header.prototype.get_decoded = function (key) {
return (this.headers_decoded[key.toLowerCase()] || []).join("\n");
};
Header.prototype.remove = function (key) {
key = key.toLowerCase();
delete this.headers[key];
delete this.headers_decoded[key];
this._remove_more(key);
}
Header.prototype._remove_more = function (key) {
var key_len = key.length;
var to_remove;
for (var i=0,l=this.header_list.length; i < l; i++) {
if (this.header_list[i].substring(0, key_len).toLowerCase() === key) {
this.header_list.splice(i, 1);
return this._remove_more(key);
}
}
};
Header.prototype._add_header = function (key, value, method) {
this.headers[key] = this.headers[key] || [];
this.headers[key][method](value);
};
Header.prototype._add_header_decode = function (key, value, method) {
this.headers_decoded[key] = this.headers_decoded[key] || [];
this.headers_decoded[key][method](this.decode_header(value));
}
Header.prototype.add = function (key, value) {
value = value.replace(/(\r?\n)*$/, '');
this._add_header(key.toLowerCase(), value, "unshift");
this._add_header_decode(key.toLowerCase(), value, "unshift");
this.header_list.unshift(key + ': ' + value + '\n');
};
Header.prototype.add_end = function (key, value) {
value = value.replace(/(\r?\n)*$/, '');
this._add_header(key.toLowerCase(), value, "push");
this._add_header_decode(key.toLowerCase(), value, "push");
this.header_list.push(key + ': ' + value + '\n');
}
Header.prototype.lines = function () {
return this.header_list;
};
Header.prototype.toString = function () {
return this.header_list.join("\n");
};