-
Notifications
You must be signed in to change notification settings - Fork 762
/
Antikvarium.hu.js
280 lines (243 loc) · 8.58 KB
/
Antikvarium.hu.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
{
"translatorID": "68a54283-67e0-4e1c-ad3d-5b699868b194",
"label": "Antikvarium.hu",
"creator": "Velősy Péter Kristóf",
"target": "^https?://(www\\.)?antikvarium\\.hu/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-09-22 19:39:49"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2017-2021 Velősy Péter Kristóf
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectWeb(doc, url) {
if (url.includes('konyv')) {
return "book";
}
else if (url.includes('index.php?type=search') && getSearchResults(doc, true)) {
return "multiple";
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.src-result-book');
for (let row of rows) {
var href = attr(row, '#searchResultKonyv-csempes', 'href');
var title = ZU.trimInternal(text(row, '.book-title-src'));
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (items) ZU.processDocuments(Object.keys(items), scrape);
});
}
else {
scrape(doc, url);
}
}
function scrape(doc, _url) {
var newItem = new Zotero.Item('book');
newItem.title = text(doc, '[itemprop=name]', 0).trim();
var subtitle = text(doc, '[itemprop=alternateName]', 0) ? text(doc, '[itemprop=alternateName]', 0).trim() : null;
if (subtitle) {
newItem.title = newItem.title + ': ' + capitalizeHungarianTitle(subtitle, true);
}
var authors = Array.from(doc.querySelectorAll('[itemprop=author]')).map(x => cleanHungarianAuthor(x.innerText));
authors.forEach(x => newItem.creators.push(x));
var abstract = text(doc, 'fulszovegFull', 0) || text(doc, 'eloszoFull', 0);
if (abstract) {
newItem.abstractNote = abstract.replace(' Vissza', '').trim();
}
var seriesElement = doc.getElementById('konyvAdatlapSorozatLink');
if (seriesElement && seriesElement.length) {
newItem.series = seriesElement.innerText;
newItem.seriesNumber = getElementByInnerText('th', 'Kötetszám:').parentElement.children[1].innerText;
newItem.volume = newItem.seriesNumber;
}
var publisherName = text(doc, '#konyvAdatlapKiadoLink [itemprop=name]')
|| text(doc, '[itemprop=name]', 1);
if (publisherName) {
newItem.publisher = publisherName;
}
var publisherPlace = firstText(doc, '[itemprop=address]');
if (publisherPlace) {
newItem.place = publisherPlace.replace('(', '').replace(')', '');
}
newItem.date = firstText(doc, '[itemprop=datePublished]');
newItem.numPages = firstText(doc, '[itemprop=numberOfPages]');
newItem.language = firstText(doc, '[itemprop=inLanguage]');
var isbnElement = getElementByInnerText(doc, 'th', 'ISBN:');
if (isbnElement) {
newItem.ISBN = isbnElement.parentElement.children[1].innerText;
}
var contentsElement = doc.getElementById('tartalomFull');
if (contentsElement) {
newItem.notes.push({ note: contentsElement.innerText });
}
newItem.attachments.push({ document: doc, title: "Antikvarium.hu Snapshot", mimeType: "text/html" });
newItem.complete();
}
/**
* Return the first element matching the selector with non-empty text.
*/
function firstText(docOrElem, selector) {
for (let elem of docOrElem.querySelectorAll(selector)) {
let elemText = elem.textContent.trim();
if (elemText) return elemText;
}
return '';
}
function getElementByInnerText(doc, elementType, innerText) {
var tags = doc.getElementsByTagName(elementType);
for (var i = 0; i < tags.length; i++) {
if (tags[i].textContent == innerText) {
return tags[i];
}
}
return null;
}
function cleanHungarianAuthor(authorName) {
if (authorName.includes(',')) {
return Zotero.Utilities.cleanAuthor(authorName, 'author', true);
}
else {
var author = Zotero.Utilities.cleanAuthor(authorName, 'author', false);
var firstName = author.lastName;
var lastName = author.firstName;
author.firstName = firstName;
author.lastName = lastName;
return author;
}
}
function capitalizeHungarianTitle(title) {
title = title[0].toUpperCase() + title.substring(1).toLowerCase();
var words = title.split(/[ !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~]/);
words.forEach((w) => {
if (isRomanNumeral(w)) {
title = title.replace(w, w.toUpperCase());
}
});
return title;
}
function isRomanNumeral(word) {
var romanRegex = /^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$/;
return !!word.toUpperCase().match(romanRegex);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.antikvarium.hu/konyv/erdei-janos-atlasz-almai-82276",
"items": [
{
"itemType": "book",
"title": "Atlasz álmai: Borges a szovjetunióban/az öröklét előszobája és egyéb történetek",
"creators": [
{
"firstName": "János",
"lastName": "Erdei",
"creatorType": "author"
}
],
"date": "1991",
"language": "Magyar",
"libraryCatalog": "Antikvarium.hu",
"numPages": "140",
"place": "Budapest",
"publisher": "Aero & Rádió Kft.",
"shortTitle": "Atlasz álmai",
"attachments": [
{
"title": "Antikvarium.hu Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [
{
"note": "TARTALOM\nElőszó\t5\nMásodik ébredés\t7\nMegvilágosodás\t9\nSzemelvények Gusavson műveiből\t17\nHalvány kétkedés\t17\nMegjegyzés\t20\nJótékony hazugság\t21\nA föltámadt Krisztus dilemmája\t23\nÁbrahám\t24\nSzerelmes ébredés és álom\t27\nRáébredés: a rabszolga\t33\nDacos ébredés, avagy az ötödik evangélista\t35\nElalvás előtt I.\t40\nKét álmodó\t40\nElalvás előtt II.\t43\nA kivégzési jegy\t45\nGyújtópont\t53\nFelvillanás\t55\nAngyali üdvözlet\t63\nA fellendülés okai\t65\nFéreg által homályosan\t71\nBorges a Szovjetunióban\t81\nA nevetés köve\t89\nA Nagy Rendszer\t93\nTúl az álmokon: az igazhitű\t97\nAz öröklét előszobája\t101\nElragadottság\t109\nA legvidámabb eretnek\t113\nÚjabb fejlemények az Oidipusz-ügyben\t117\nVisszahívták a Szfinxet!\t121\nAz egyetlen lehetőség\t125\nZavaros álom: letisztulás\t127\nN. és a tenger\t135\nUtószó\t137"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.antikvarium.hu/index.php?type=search&ksz=atlasz&reszletes=0&newSearch=1&searchstart=ksz&interfaceid=101",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.antikvarium.hu/konyv/peter-harrison-mary-harrison-misztikus-erok-51027-0",
"items": [
{
"itemType": "book",
"title": "Misztikus erők: Mistic forces/testen túli tapasztalatok",
"creators": [
{
"firstName": "Harrison",
"lastName": "Peter",
"creatorType": "author"
},
{
"firstName": "Harrison",
"lastName": "Mary",
"creatorType": "author"
},
{
"firstName": "Nóra",
"lastName": "Rohonczi",
"creatorType": "author"
}
],
"ISBN": "9789637994043",
"language": "Magyar",
"libraryCatalog": "Antikvarium.hu",
"numPages": "274",
"place": "Budapest",
"publisher": "Pesti Szalon Könyvkiadó",
"shortTitle": "Misztikus erők",
"attachments": [
{
"title": "Antikvarium.hu Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [
{
"note": "TARTALOM\nKöszönetnyilvánítás\t3\nElőszó\t5\nBevezetés\t9\nMi a TTT?\t13\nA fény\t23\nA magaslati nézőpont\t35\nA mennyországban?\t49\nA gyógyító erő\t55\nKülönös hatóerők\t75\nÁllatok\t91\nZene\t105\nA határterület\t111\nIdőutazások\t121\nA döntés\t141\nAz ezüstzsinór\t151\nEgybeesések\t163\nA fátum\t173\nMenekülés\t193\nGyermekek\t201\nA halálfélelem legyőzése\t213\nMegérzések\t231\nAz okkultizmus veszélyei\t235\nA lélek illata\t247\nAngyalok\t257\nPozitív végkövetkeztetések\t273"
}
],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/