-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathloc.js
143 lines (140 loc) · 4.46 KB
/
loc.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
const PARSER = new DOMParser();
const baseURL = "https://www.loc.gov/marc/bibliographic/concise/bd";
const requester = (url,encoding="utf-8") => {
return new Promise((resolve,reject) => {
const reader = new FileReader();
reader.addEventListener("loadend", () => {
resolve(reader.result)
});
fetch(url)
.then(response => response.blob())
.then(blob => reader.readAsText(blob, encoding))
});
}
let analyzeLOC = (document) => {
let existsAndClean = (selector) => {
if (typeof selector === "string") {
selector = document.querySelector(selector);
}
if (typeof selector !== "undefined") {
try {
//console.log(selector);
selector = (selector.innerText || selector.textContent);
selector = selector.replace(/\s+/g," ")
.replace(/(^\s*|\s*$)/g,"");
} catch {
console.warn("nothing to replace",selector);
return undefined;
}
if (selector != "") {
return selector;
}
}
return undefined;
}
let elementToValue = (element) => {
try {
let code = existsAndClean(element).split(" - ");
let value = code[1];
code = code[0].replace(/^\$/g,"");
return {code,value};
} catch(e) {
console.warn("couldn't extract info from element",element,e);
}
}
let getDetails = (indicators,subfields,targetSelectors) => {
let lastdt;
indicators = (targetSelectors.indicator == "dt") ? [indicators]:indicators;
for (let indicator of [...indicators]) {
if (targetSelectors.indicator != "dt") {
lastdt = elementToValue(indicator.childNodes[0]);
}
for (let ind of [...indicator.children]) {
if (ind.nodeName.toLowerCase() == targetSelectors.indicator) {
lastdt = elementToValue(ind);
} else {
try {
(ind.querySelector("span") || ind.querySelector("div")).remove();
} catch {
console.warn("nothing to remove from indicator",ind);
}
ind = elementToValue(ind);
if (ind.value !== "Undefined") {
if (ind.code.indexOf("-") > 0) {
let min = parseInt(ind.code.split("-")[0]);
let max = parseInt(ind.code.split("-")[1]);
for (let x=min;x<=max;x++) {
field["ind"+(1+(lastdt.code == "Second")*1)][x] = lastdt.value+" - "+ind.value;
}
} else {
field["ind"+(1+(lastdt.code == "Second")*1)][ind.code] = lastdt.value+" - "+ind.value;
}
}
}
}
}
for (let sf of [...subfields]) {
try {
(sf.querySelector("span") || sf.querySelector("div")).remove();
} catch {
console.warn("nothing to remove from subfield",sf);
}
sf = elementToValue(sf);
field.subfields[sf.code] = {"*":sf.value};
}
}
let field = {ind1:{},ind2:{},subfields:{}};
field.value = (existsAndClean([...document.querySelectorAll("h1 span")][1])
|| existsAndClean("h1").split(" - ")[1].split(" (")[0]);
let details = (existsAndClean(".definition div p") || existsAndClean("p"));
if (typeof details !== "undefined") {
field.value += "\n"+details;
}
try {
if (document.querySelector("dl") !== null) {
getDetails(document.querySelector(".indicators dl"),
[...document.querySelectorAll(".subfields dt")],
{indicator:"dt"});
} else {
getDetails([...document.querySelectorAll("body>.indicatorvalue")],
[...document.querySelectorAll(".subfieldvalue")],
{indicator:""});
}
} catch(e) {
console.warn("only field definition was extracted",field.value,e);
}
return field;
};
let normalize = (fieldNumber) => {
fieldNumber = fieldNumber.toString();
while (fieldNumber.length < 3) {
fieldNumber = "0"+fieldNumber;
}
return fieldNumber;
}
let getLOC = async (code) => {
code = normalize(code);
let result = await requester(baseURL+code+".html");
result = PARSER.parseFromString(result, "text/html");
try {
result = analyzeLOC(result);
} catch(e) {
console.error(e);
}
return {code,result};
};
(async () => {
let fields = {};
await Promise.all([...new Array(1000).fill(0)].map(async (e,i) => {
let marc = await getLOC(i);
try {
if (marc.result[Object.keys(marc.result)] !== null) {
fields[marc.code] = marc.result;
}
} catch(e) {
console.error(e);
}
}));
//console.log(fields);
document.querySelector("body").innerHTML = JSON.stringify(fields);
})();