-
Notifications
You must be signed in to change notification settings - Fork 1
/
jextract.js
446 lines (409 loc) · 13.6 KB
/
jextract.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
/**
jExtract: a function for extracting data from DOM.
Version: 1.1.1
Author: Mikhail Kormanowsky (@kormanowsky)
Date: 18.07.2020
*/
(function () {
const BROWSER = typeof window === "object";
let document = BROWSER ? window.document : null,
jQuery,
HTMLParser;
if (BROWSER) {
jQuery = window.jQuery;
} else {
HTMLParser = require("node-html-parser");
try {
jQuery = require("jquery");
} catch (e) {
jQuery = null;
}
}
// The JExtractError class
class JExtractError extends Error {
constructor(message) {
super();
this.name = "JExtractError";
this.message = message;
}
}
//Type checkers (The Is class)
class Is {
static NaN(v) {
return Is.NaN(v);
}
static null(v) {
return v === null;
}
static undefined(v) {
return v === undefined;
}
static object(v) {
return (
typeof v === "object" &&
v instanceof Object &&
!(v instanceof Array)
);
}
static array(v) {
return typeof v === "object" && v instanceof Array;
}
static emptyArray(v) {
return this.array(v) && !v.length;
}
static function(v) {
return typeof v === "function";
}
static jQuery(v) {
return jQuery && v instanceof jQuery;
}
static jExtractElement(v) {
return v instanceof Element;
}
static NodeList(v) {
if (!BROWSER) {
return this.array(v);
}
return v instanceof window.NodeList;
}
static string(v) {
return typeof v === "string";
}
static emptyString(v) {
return this.string(v) && !v.length;
}
static CSSSelector(v) {
if (!this.string(v) || this.emptyString(v)) {
return false;
}
if (BROWSER) {
try {
document.querySelector(v);
return true;
} catch (e) {
return false;
}
} else {
const CssSelectorParser = require("css-selector-parser")
.CssSelectorParser,
parser = new CssSelectorParser();
try {
parser.parse(v);
return true;
} catch (e) {
return false;
}
}
}
static JSON(v) {
if (!this.string(v) || this.emptyString(v)) {
return false;
}
try {
v = JSON.parse(v);
} catch (e) {
return false;
}
return true;
}
static HTML(v) {
if (!this.string(v) || this.emptyString(v)) {
return false;
}
v = v.trim();
return v[0] == "<" && v[v.length - 1] == ">";
}
}
// The Text class
class Text {
constructor(text) {
this.text = text;
}
get(trim) {
trim = trim || true;
if (trim) {
return this.text.trim();
}
return this.text;
}
match(regexp, index) {
let matches = this.get().match(new RegExp(regexp));
if (!Is.undefined(index) && Is.array(matches) && index in matches) {
return matches[index];
}
return matches;
}
toInt(leaveNaN) {
leaveNaN = leaveNaN || false;
if (!Is.NaN(parseInt(this.get())) || leaveNaN) {
return parseInt(this.get());
}
return 0;
}
toFloat(leaveNaN) {
leaveNaN = leaveNaN || false;
let str = this.get().replace(",", ".");
if (!Is.NaN(parseFloat(str)) || leaveNaN) {
return parseFloat(str);
}
return 0;
}
}
// The Element class
class Element {
constructor(element) {
this.element = element;
}
text() {
return (
this.element.innerText ||
this.element.textContent ||
this.element.text
);
}
attr(attr) {
return this.element.getAttribute(attr);
}
get() {
return this.element;
}
}
//Object creator and finder
function find(parent, selector) {
if (!parent.get()) {
throw new JExtractError(`Incorrect parent element or selector`);
}
if (selector == ".") {
return [parent];
} else {
if (!Is.CSSSelector(selector)) {
throw new JExtractError(
`Could not find elements that match given selector: ${selector}`
);
}
let children = parent.get().querySelectorAll(selector),
resultChildren = [];
children = Is.NodeList(children) ? children : [children];
each(children, function (e, i, a) {
resultChildren[i] = new Element(e);
});
return resultChildren;
}
}
function parseDefaultArgs(custom, defaults) {
let method = defaults[0],
args = defaults[1];
if (!Is.undefined(custom)) {
if (Is.string(custom) || Is.function(custom)) method = custom;
else if (Is.array(custom) && !Is.empt.array(custom)) {
method = custom[0];
if (custom.length > 1) {
args = custom.slice(1);
}
}
}
return [method, args];
}
//collection may be: array, object, jQuery (calls with: element, index, array as in.array.forEach)
function each(collection, callback) {
if (Is.array(collection) || Is.NodeList(collection)) {
collection.forEach(callback);
} else if (Is.object(collection)) {
for (let i in collection) {
let e = collection[i];
callback(e, i, collection);
}
}
}
// Converts a string (CSS selector or plain HTML) to an Element object.
function stringToElement(string) {
if (Is.CSSSelector(string)) {
return new Element(document.querySelector(string));
} else if (Is.HTML(string)) {
let elem;
if (BROWSER) {
elem = document.createElement("div");
elem.innerHTML = string;
} else {
elem = HTMLParser.parse("<div></div>");
elem.set_content(string);
}
return new Element(elem);
}
}
// Main extract function
function extract({ struct, root, options }) {
//Object for result
let result = {};
//Default values
struct = struct || {};
options = Is.object(options) ? options : {};
options.json = options.json || false;
if (!root) {
throw new JExtractError("Root element is not specified.");
}
if (!Is.object(struct)) {
if (Is.JSON(struct)) {
struct = JSON.parse(struct);
} else {
throw new JExtractError("Incorrect JSON");
}
}
if (Is.string(root)) {
root = stringToElement(root);
}
if (Is.jQuery(root)) {
root = root[0];
}
if (!Is.jExtractElement(root)) {
root = new Element(root);
}
//Start our loop
each(struct, function (e, i) {
//Recursion :)
if (Is.object(e)) {
result[i] = jExtract(e, root);
return;
}
//Get settings from the structure
let data = ["text", []],
filter = ["get", []],
options = {},
subresult = [],
elements,
substruct;
if (Is.string(e)) {
elements = find(root, e);
} else {
elements = find(root, e[0]);
//User-defined functions support added
if (Is.object(e[1])) {
substruct = e[1];
} else {
data = parseDefaultArgs(e[1], data);
}
filter = parseDefaultArgs(e[2], filter);
if (Is.object(e[3])) {
options = e[3];
}
options.keepArray = options.keepArray || false;
}
//Find elements that match selector and extract data from them
each(elements, function (item, index) {
if (Is.undefined(substruct)) {
let method = function () {},
args = [],
context = null;
if (Is.function(data[0])) {
method = data[0];
args = [item, index, elements].concat(data[1]);
} else if (Is.string(data[0])) {
args = data[1];
if (data[0] in item) {
method = item[data[0]];
context = item;
} else if (jQuery && data[0] in jQuery(item.get())) {
method = jQuery(item.get())[data[0]];
context = jQuery(item.get());
} else {
throw new JExtractError(
`Undefined Element method: ${data[0]}`
);
}
}
let extractedData = method.apply(context, args),
itemResult;
if (Is.string(extractedData) && filter[0]) {
method = function () {};
args = [];
context = null;
extractedData = new Text(extractedData);
if (Is.function(filter[0])) {
method = filter[0];
args = [extractedData.get(), index].concat(
filter[1]
);
} else if (Is.string(filter[0])) {
args = filter[1];
if (filter[0] in extractedData) {
method = extractedData[filter[0]];
context = extractedData;
} else if (
filter[0] in new String(extractedData.get())
) {
method = extractedData.get()[filter[0]];
context = extractedData.get();
} else {
throw new JExtractError(
`Undefined Text method: ${filter[0]}`
);
}
}
itemResult = method.apply(context, args);
} else {
itemResult = extractedData;
}
subresult.push(itemResult);
} else {
//Or just make a recursion if needed
subresult.push(jExtract(substruct, item));
}
});
//Make a value (e.g string or number) from array if there's less than 2 elements and no need for an array
if (!options.keepArray && subresult.length < 2) {
subresult = subresult[0];
}
//Add subresult to result object
result[i] = subresult;
});
//Return structure filled in with data
return options.json ? JSON.stringify(result) : result;
}
//jExtract itself
function jExtract(struct) {
let chainData = { struct, options: {}, root: {} },
chain = {
using(options) {
chainData.options = options;
return chain;
},
from(root) {
chainData.root = root;
return extract(chainData);
},
fromDocument() {
if (!BROWSER) {
throw new JExtractError(
"Cannot extract from document when not in browser."
);
}
return this.from(document);
},
};
return chain;
}
jExtract.extendText = function (extension) {
each(extension, (value, key) => {
Text.prototype[key] = function () {
return value.call(this, this);
};
});
};
jExtract.extendElement = function (extension) {
each(extension, (value, key) => {
Element.prototype[key] = function () {
return value.call(this, this);
};
});
};
if (BROWSER) {
window.jExtract = jExtract;
if (jQuery) {
window.jQuery.fn.jExtract = function (struct) {
return jExtract(struct, jQuery(this));
};
}
} else {
module.exports = jExtract;
}
})();