This repository was archived by the owner on Feb 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparser.js
159 lines (136 loc) · 5.59 KB
/
parser.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
var READING_STATE_HEADER = "READING_STATE_HEADER";
var READING_STATE_PART_HEADER = "READING_STATE_PART_HEADER";
var READING_STATE_PART_CONTENT = "READING_STATE_PART_CONTENT";
var READING_STATE_INITIALIZED = "READING_STATE_INITIALIZED";
var READ_MODE_ALL = "READ_MODE_ALL";
var READ_MODE_POSITION = "READ_MODE_POSITION";
var iconv = require("iconv-lite");
var os = require('os');
var quotedPrintable = require('quoted-printable');
var utils = require('./utils');
var EOLLength = os.EOL.length;
function getContent(key, content) {
var colonPosition = content.indexOf(":");
if (colonPosition < 0) return null;
if (content.substr(0, colonPosition).toLowerCase() != key.toLowerCase()) return null;
return content.substr(colonPosition + 1, content.length).trim();
}
function initializeOptions(unformattedOption) {
var option = {};
option = utils.objectAssign({}, unformattedOption);
option.charset = option.charset || "utf-8";
option.decodeQuotedPrintable = option.decodeQuotedPrintable || false;
option.decodeBase64ToBuffer = option.decodeBase64ToBuffer || false;
option.readMode = option.readMode || READ_MODE_ALL;
return option;
}
function parseByString(string, unformattedOption) {
var ret = {};
var option = initializeOptions(unformattedOption);
option.readMode = READ_MODE_ALL;
var parseLine = parse(ret);
string.split("\n").forEach(function(line, lineIndex) {
parseLine(line, lineIndex, -1, option);
});
return ret;
}
function parseByStream(readStream, unformattedOption, callback) {
var ret = {};
var parseLine = parse(ret);
var calledBack = false;
var option = initializeOptions(unformattedOption);
readStream.on("line", function (line, lineIndex, byteCount) {
var parseResult = parseLine(iconv.decode(line, option.charset), lineIndex - 1, byteCount, option);
if (parseResult !== true) {
if (!calledBack) callback(parseResult, null);
calledBack = true;
readStream.emit("close");
}
});
readStream.on("end", function () {
parseLine = null;
if (!calledBack) callback(null, ret);
})
}
function parse(ret) {
var READING_STATE = READING_STATE_INITIALIZED;
var boundary = "--";
var boundaryLength = 2;
var singleObjectTemplate = {
name: null,
location: null,
encoding: null,
type: null,
data: null,
startPosition: 0,
bufferLength: 0,
};
var singleObject = null;
var dataArray = [];
var startPosition = 0;
var parseLine = function (line, lineIndex, byteCount, option) {
line = line.trim();
if (line == boundary) {
READING_STATE = READING_STATE_PART_HEADER;
if (singleObject != null) {
ret[singleObject.name] = singleObject;
if (option.readMode == READ_MODE_ALL) {
ret[singleObject.name].data = dataArray.join("\n").trim();
if (option.decodeQuotedPrintable && ret[singleObject.name].encoding == "quoted-printable") {
ret[singleObject.name].data = quotedPrintable.decode(ret[singleObject.name].data);
}
}
ret[singleObject.name].startPosition = startPosition;
ret[singleObject.name].bufferLength = startPosition == 0 ? 0 : byteCount - boundaryLength - startPosition - EOLLength; // To remove the last empty line
startPosition = 0;
}
singleObject = utils.objectAssign({}, singleObjectTemplate);
dataArray = [];
}
if (lineIndex == 0) {
var mimeVersion = getContent("MIME-Version", line);
if (mimeVersion != "1.0") {
return "Unsupported version";
}
READING_STATE = READING_STATE_HEADER;
} else if (READING_STATE == READING_STATE_HEADER) {
var contentType = getContent("Content-Type", line);
if (contentType != null) {
var boundaryString = contentType.split("boundary=")[1];
boundary = "--" + boundaryString.substr(1, boundaryString.length - 2);
boundaryLength = boundary.length;
}
} else if (READING_STATE == READING_STATE_PART_HEADER) {
if (line == "" || line == "\r") {
READING_STATE = READING_STATE_PART_CONTENT;
startPosition = byteCount + 1; // To remove the first empty line
return true;
}
var contentType = getContent("Content-Type", line);
var contentLocation = getContent("Content-Location", line);
var contentTransferEncoding = getContent("Content-Transfer-Encoding", line);
if (contentType != null) {
singleObject.type = contentType;
} else if (contentLocation != null) {
singleObject.location = contentLocation;
singleObject.name = contentLocation.substr(contentLocation.lastIndexOf("/") + 1);
} else if (contentTransferEncoding != null) {
singleObject.encoding = contentTransferEncoding.toLowerCase();
}
} else if (READING_STATE == READING_STATE_PART_CONTENT) {
if (option.readMode == READ_MODE_ALL) {
dataArray.push(line);
}
}
return true;
}
return parseLine;
}
module.exports = {
parseByStream: parseByStream,
parseByString: parseByString,
constants: {
READ_MODE_ALL: READ_MODE_ALL,
READ_MODE_POSITION: READ_MODE_POSITION,
}
};