forked from jrgns/parser_email
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser_email.js
More file actions
168 lines (146 loc) · 4.46 KB
/
parser_email.js
File metadata and controls
168 lines (146 loc) · 4.46 KB
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
var util = require('util')
, utils = require('./utils')
, events = require('events')
;
module.exports = ParserEmail;
function ParserEmail(content) {
var parser = this;
parser.content = content;
parser.on('raw_part', parser.parse_raw_part);
}
util.inherits(ParserEmail, events.EventEmitter);
ParserEmail.prototype.setContent = function(content) {
this.content = content;
}
ParserEmail.prototype.execute = function() {
var parser = this;
parser.parse_part(parser.content);
}
ParserEmail.prototype.parse_header_block = function(content) {
var parser = this;
var result = new Array();
if (content == '') {
return result;
}
var header_arr = content.split(/\r\n|\n/);
var current_key = false;
var extra = false;
for (var i = 0; i < header_arr.length; i++) {
tupple = utils.explode(header_arr[i], ':', 2);
if (header_arr[i].match(/^\s+/) || tupple.length < 2) {
if (current_key && header_arr[i].match(/^\s+/)) {
//util.log('Adding [' + header_arr[i] + '] to ' + current_key);
result[current_key] += ' ' + utils.trim(header_arr[i]);
extra = true;
} else {
util.debug('Invalid Header: ' + header_arr[i]);
}
continue;
}
var key = tupple[0].toLowerCase();
//util.log('Working with ' + key);
current_key = key;
result[key] = tupple[1];
}
for (key in result) {
result[key] = parser.parse_header(result[key]);
}
return result;
}
ParserEmail.prototype.parse_header = function(header) {
var parser = this;
var result = {};
var extra = false;
header = header.split(';');
result.value = utils.trim(header[0]);
//Start from second element
for(var i = 1; i < header.length; i++) {
if (header[i] == '') {
continue;
}
extra = true;
var tupple = utils.explode(header[i], '=', 2);
var h_name = utils.trim(tupple[0]);
//util.log('Extra Name: (' + i + ')' + h_name);
if (tupple.length == 2) {
result[h_name] = utils.trim(tupple[1]).replace(/^"/, '').replace(/"$/, '');
} else {
result[h_name] = '';
}
}
return result;
}
ParserEmail.prototype.parse_multitype = function(content, boundary) {
var parser = this;
if (!content || !boundary) {
return false;
}
// util.log('Working with boundary ' + boundary);
// Skip till the first --
if (content.indexOf('--') >= 0) {
content = content.substring(content.indexOf('--'));
}
// util.log(content.substr(0, boundary.length + 2));
if (content.substr(0, boundary.length + 2) != ('--' + boundary)) {
util.debug('Invalid Multi Part');
return false;
}
var regexp = new RegExp('--' + boundary + '\\r?\\n', 'mg');
//util.debug(util.inspect(regexp));
content = content.split(regexp);
//util.debug('Content Length: ' + content.length);
//Skip the first part, as it's empty
for (var i = 1; i < content.length; i++) {
inner = true;
//util.log('Parsing Part ' + i + ': ' + boundary);
if (content[i].indexOf("--" + boundary + "--") > -1) {
// cut off the last boundary
content[i] = content[i].substring(0, content[i].indexOf("--" + boundary + "--"));
}
parser.parse_part(content[i]);
}
}
ParserEmail.prototype.parse_part = function(content) {
var parser = this;
var temp = content.split(/\r?\n\r?\n/gm);
content = new Array();
content.push(temp[0]);
content.push(temp.slice(1).join("\n\n"));
//Compile the headers
var headers = parser.parse_header_block(content[0]);
if (!headers['content-type']) {
headers['content-type'] = { 'value': 'text/plain' };
}
//Compile the content
if (content.length == 2) {
content = content[1];
} else {
content = '';
}
//util.debug('Emitting raw part on ' + headers['content-type'].value);
parser.emit('raw_part', headers, content);
}
ParserEmail.prototype.parse_raw_part = function(headers, content) {
var parser = this;
//Rebuild some of the types
var main_type = headers['content-type'].value.split("\/", 1) + '';
// util.log('Have a content type: ' + headers['content-type'].value);
// util.log('Main Type: ' + main_type);
switch (main_type) {
case 'text':
parser.emit('part', headers, content);
break;
case 'multipart':
parser.parse_multitype(content, headers['content-type'].boundary);
break;
case 'application':
case 'image':
content = content.replace(/\r\n/mg, '');
break;
default:
util.debug('Unknown content type: ' + headers['content-type'].value);
util.debug('Unknown content type: ' + main_type);
util.debug(util.inspect(headers['content-type']));
break;
}
}