-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBibleGatewayParsing.js
More file actions
369 lines (347 loc) · 11.6 KB
/
BibleGatewayParsing.js
File metadata and controls
369 lines (347 loc) · 11.6 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
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
const axios = require('axios')
const fs = require('fs')
let {readFile, writeFile} = fs.promises
let {JSDOM} = require('jsdom')
class verseData {
verses = [];
currentVerse = 1;
text = "";
addHeader(header){
this.verses.push({
header: header
})
}
addVerse(){
if(this.text.length === 0) return;
this.verses.push({
num: this.currentVerse,
verse: this.text
})
this.text = ""
this.currentVerse++
}
addText(str){
this.text += str
}
}
class verseElement {
type;
content;
constructor(type, content){
this.type = type;
if(type === "poetry") this.content = [];
else this.content = "";
}
addText(text){
this.content += text;
}
addPoetry(text){
this.content.push(text)
}
}
class verseArray {
verses;
currentVerse;
element;
constructor(){
this.verses = [[], []];
this.currentVerse = 1;
this.element = new verseElement("start",)
}
getVerses(){
// this.verses.forEach((verse) => {
// // this is cause the first element might be undefined
// // verse.filter(each => each.type !== "start");
// verse.filter(each => each);
// })
// this.verses[1] = this.verses[1].filter(each => each.type !== "start")
this.verses.forEach((verse) => {
verse = verse.slice(1);
})
return this.verses
}
incrementVerse(){
this.verses[this.currentVerse].push(this.element);
this.element = new verseElement("start",)
this.currentVerse++;
this.verses.push([]);
}
addHeader(text){
if(this.element?.type !== "header"){
// this.verses[this.currentVerse].push(this.element);
this.element = new verseElement("header", text)
}
this.element.addText(text);
}
addPoetry(text){
if(this.element?.type !== "poetry"){
// this.verses[this.currentVerse].push(this.element);
this.element = new verseElement("poetry", text)
}
this.element.addPoetry(text);
}
addProse(text){
if(this.element?.type !== "prose"){
// this.verses[this.currentVerse].push(this.element);
this.element = new verseElement("prose", text)
}
this.element.addText(text);
}
}
module.exports = {
arrayParse(document, translation){
let data = new verseArray()
const paragraphs = document.querySelector(`body > div.nav-content > div > section > div > div > div.passage-resources > section > div.passage-table > div.passage-cols > div > div.passage-col.version-${translation} > div.passage-text > div > div`).childNodes
for(const paragraph of paragraphs){
// header
if(paragraph.localName === "h3"){
data.addHeader(paragraph.textContent)
}
// poetry
else if(paragraph.className === "poetry"){
for(const line of paragraph.childNodes){
for(const part of line.childNodes){
if(part.localName === "br"){
data.addPoetry("\n");
}
else if(part.localName === "span"){
for(const eachpart of part.childNodes){
if(eachpart.localName === undefined){
data.addPoetry(paragraph.textContent);
}
else if(eachpart.localName && eachpart.className === "versenum"){
data.incrementVerse();
}
}
}
}
}
}
// prose
else{
for(const verse of paragraph.childNodes){
for(const part of verse.childNodes){
// normal text
if(part.localName === undefined){
data.addProse(part.textContent);
}
else if(part.localName === "sup" && part.className === "versenum"){
data.incrementVerse();
}
}
}
}
}
return data.getVerses();
},
test(document, translation){
let data = new verseData()
let paragraphs = document.querySelector(`body > div.nav-content > div > section > div > div > div.passage-resources > section > div.passage-table > div.passage-cols > div > div.passage-col.version-${translation} > div.passage-text > div > div`).childNodes
let text = ""
for(const paragraph of paragraphs){
// header/title
if(paragraph.localName === "h3"){
// data.push({
// header: paragraph.textContent
// })
data.addHeader(paragraph.textContent)
}
// poetry
else if(paragraph.className === "poetry"){
// let text = paragraph.textContent.replace(/(\(.*\))|(\[.*\])/g, "")
// data.addVerse(text)
paragraph.childNodes.forEach((line) => {
//i think there is only 1 line element
line.childNodes.forEach((part) => {
if(part.localName === "br") {
// line break
data.addText("<br>");
}
else if(part.localName === "span"){
part.childNodes.forEach((eachPart) =>{
if(eachPart.localName === undefined){
data.addText(eachPart.textContent)
}
else if(eachPart.localName && eachPart.className === "versenum" ){
data.addVerse()
}
})
}
})
})
// data.addText()
}
// text
else {
// each verse
paragraph.childNodes.forEach((verse) => {
verse.childNodes.forEach((part) => {
// normal text
if(part.localName === undefined){
data.addText(part.textContent)
}
else if(part.localName === "sup" && part.className === "versenum"){
data.addVerse()
}
})
})
if(data.text.length > 0){
data.addText("<br>")
}
}
}
// console.log(data.verses);
return data.verses
},
NASB(document, translation){
// console.log(translation);
let html = document.querySelector(`body > div.nav-content > div > section > div > div > div.passage-resources > section > div.passage-table > div.passage-cols > div > div.passage-col.version-${translation} > div.passage-text > div > div`)
let data = []
let isFirstVerse = true
html.childNodes.forEach(({localName, textContent, classList, childNodes}) => {
let classes = Object.values({...classList})
if(!classes.includes("crossrefs") && !classes.includes("footnotes") && localName) {
// localName h3 -> section header
// localName p -> verses
if(localName === "h3"){
data.push({
header: textContent,
})
}
// poetry / quoting OT
// else if(localName === "div" && classes.includes("poetry")){
// // console.log(textContent);
// [...childNodes].forEach((eachChildNode) => {
// [...eachChildNode.childNodes].forEach((eachGrandChildNode) => {
// let obj = {
// num: 0,
// verse: ""
// };
// [...eachGrandChildNode.childNodes].forEach((ggchildnode) => {
// let ggclassList = Object.values({...ggchildnode.classList})
// if(!ggclassList.length){
// obj.verse += ggchildnode.textContent
// console.log(ggchildnode.textContent, ggclassList, obj.num);
// }else if(ggclassList.includes("versenum")){
// obj.num = parseInt(ggchildnode.textContent);
// }
// })
// if(obj.num) data.push(obj);
// })
// })
// }
// if(localName === "div" && classes.includes("poetry")){
// childNodes = [...[...childNodes].childNodes]
// }
let poetry = false
if(localName === "div" && classes.includes("poetry")){
poetry = true
}
//paragraphs
{
[...childNodes].forEach((eachChildNode) => {
//individual verses
let obj = {
num: 0,
verse: ""
}
if(poetry){
[...eachChildNode.childNodes].forEach((eachGrandChildNode) => {
[...eachGrandChildNode.childNodes].forEach((ggchildnode) => {
let ggclassList = Object.values({...ggchildnode.classList})
if(!ggclassList.length){
obj.verse += ggchildnode.textContent
console.log(ggchildnode.textContent, ggclassList, obj.num);
}else if(ggclassList.includes("versenum")){
obj.num = parseInt(ggchildnode.textContent);
}
})
// if(obj.num) data.push(obj);
})
}
eachChildNode.childNodes.forEach(e => {
let grandChildClasses = Object.values({...e.classList})
// its the verse number
// console.log(`${e.localName} .${e.classList}`);
// console.log(grandChildClasses);
if(e.localName === "sup" && grandChildClasses.includes("versenum") || (e.localName === "span" && grandChildClasses.includes("chapternum"))){
if(isFirstVerse){
obj.num = 1
isFirstVerse = false
}else{
obj.num = parseInt(e.textContent.match(/\d+/g)[0])
}
}
// else if(grandChildClasses.includes("lines")){
// console.log("LINES");
// console.log(e.textContent);
// }
// its just text
else if(!e.localName){
obj.verse += e.textContent
}
else if(!grandChildClasses.includes("crossreference") && !grandChildClasses.includes("footnote")){
e.childNodes.forEach((ee) => {
if(ee.localName !== "sup"){
obj.verse += ee.textContent
}
})
}
})
if(obj.num){
data.push(obj)
}
})
}
}
})
return data
},
NIV(document, translation){
// console.log(translation);
let html = document.querySelector(`body > div.nav-content > div > section > div > div > div.passage-resources > section > div.passage-table > div.passage-cols > div > div.passage-col.version-${translation} > div.passage-text > div > div > div.std-text`)
let data = []
html.childNodes.forEach(({localName, textContent, classList, childNodes}) => {
let classes = Object.values({...classList})
if(!classes.includes("crossrefs") && !classes.includes("footnotes") && localName) {
// localName h3 -> section header
// localName p -> verses
if(localName === "h3"){
data.push({
header: textContent,
})
}
//paragraphs
[...childNodes].forEach((eachChildNode) => {
//individual verses
let obj = {
num: 0,
verse: ""
}
eachChildNode.childNodes.forEach(e => {
let grandChildClasses = Object.values({...e.classList})
// its the verse number
if(e.localName === "sup" && grandChildClasses.includes("versenum") || (e.localName === "span" && grandChildClasses.includes("chapternum"))){
obj.num = parseInt(e.textContent.match(/\d+/g)[0])
}
// its just text
else if(!e.localName){
obj.verse += e.textContent
}
else if(!grandChildClasses.includes("crossreference") && !grandChildClasses.includes("footnote")){
e.childNodes.forEach((ee) => {
if(ee.localName !== "sup"){
obj.verse += ee.textContent
}
})
}
})
if(obj.num){
data.push(obj)
}
})
}
})
return data
}
}