-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
228 lines (188 loc) · 4.91 KB
/
index.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*!
* Copyright (c) 2020 Daniel Duarte <[email protected]>
* Licensed under MIT License. See LICENSE file for details.
*/
const fs = require('fs');
const sax = require('sax');
const defaultOptions = {
skipEmptyTexts: false,
textNodesToStr: false,
extractOnlyChilds: false,
omitEmptyAttrs: false,
omitEmptyContent: false,
reportError: msg => {
console.error('Error:', msg);
},
};
const optProfiles = {
compact: {
skipEmptyTexts: true,
textNodesToStr: true,
extractOnlyChilds: true,
omitEmptyAttrs: true,
omitEmptyContent: true,
},
simple: {
skipEmptyTexts: true,
},
strict: defaultOptions
};
class Stack {
constructor() {
this.stack = [];
}
top() {
return this.stack[this.stack.length - 1];
}
push(x) {
this.stack.push(x);
}
pop() {
return this.stack.pop();
}
}
const toXml = (json) => {
// Make sure text nodes are in canonical form (see option textNodesToStr)
if (typeof json === 'string') {
json = {
type: 'text',
content: json,
};
}
// Make sure content field always exists (see option omitEmptyContent)
json.content = json.content ? json.content : [];
// Make sure content field is always an array (see option extractOnlyChilds)
json.content = Array.isArray(json.content) ? json.content : [json.content];
switch (json.type) {
case 'xml': {
const xmlDecl = json.declaration !== null ? `<?xml ${json.declaration}?>` : '';
return xmlDecl + json.content.map(child => toXml(child)).join('');
}
case 'text':
return json.content[0]
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, ''');
case 'comment':
return `<!--${json.content[0]}-->`;
case 'cdata':
return `<![CDATA[${json.content[0]}]]>`;
case 'element': {
const attrsStr = Object.entries(json.attrs || {}).reduce((acc, [k, v]) => {
return acc + ` ${k}="${v}"`;
}, '');
const childrenStr = json.content.map(child => toXml(child)).join('');
if (json.selfClosing) {
return `<${json.name}${attrsStr} />`;
} else {
return `<${json.name}${attrsStr}>${childrenStr}</${json.name}>`;
}
}
default:
opts.reportError('Not recognized XML node type: ' + json.type);
}
};
const toJson = (xmlStr, options) => {
let userOptions = options;
if (typeof userOptions === 'string') {
userOptions = optProfiles[userOptions];
}
const opts = { ...defaultOptions, ...userOptions };
const strict = true; // If false, it parses in HTML mode
const parser = sax.parser(strict);
const stack = new Stack();
let json = null;
// This is not a parser event
const onstart = function () {
const n = {
type: 'xml',
declaration: null,
content: [],
};
stack.push(n);
};
// --- Start: Event listeners
parser.onprocessinginstruction = function (d) {
stack.top().declaration = d.body;
};
parser.ontext = function (t) {
if (opts.skipEmptyTexts && /^[ \n\r\t]+$/.test(t)) {
return;
}
let n;
if (opts.textNodesToStr) {
n = t;
} else {
n = {
type: 'text',
content: t,
};
}
stack.top().content.push(n);
};
parser.oncomment = function (c) {
const n = {
type: 'comment',
content: c,
};
stack.top().content.push(n);
};
parser.oncdata = function (cd) {
const n = {
type: 'cdata',
content: cd,
};
stack.top().content.push(n);
};
parser.onopentag = function (node) {
const n = {
type: 'element',
name: node.name,
attrs: node.attributes,
selfClosing: node.isSelfClosing,
content: [],
};
if (opts.omitEmptyAttrs && Object.keys(n.attrs).length === 0) {
delete n.attrs;
}
stack.top().content.push(n);
stack.push(n);
};
parser.onclosetag = function () {
const n = stack.pop();
if (opts.omitEmptyContent && n.content.length === 0) {
delete n.content;
}
if (opts.extractOnlyChilds && n.content && n.content.length === 1) {
n.content = n.content[0];
}
};
parser.onend = function () {
json = stack.pop();
if (opts.extractOnlyChilds && json.content.length === 1) {
json.content = json.content[0];
}
};
// --- End: Event listeners
parser.onerror = function (e) {
opts.reportError(e.message);
};
onstart();
parser.write(xmlStr).close();
return json;
};
const toJsonFromFile = (filepath, options) => {
return new Promise((resolve, reject) => {
fs.readFile(filepath, 'utf8', (err, contents) => {
if (err) { reject(err); }
resolve(toJson(contents, options));
});
});
};
const toJsonFromFileSync = (filepath, options) => {
const contents = fs.readFileSync(filepath, 'utf8');
return toJson(contents, options);
};
module.exports = { toJson, toJsonFromFile, toJsonFromFileSync, toXml };