-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathFatcat.js
425 lines (400 loc) · 11.7 KB
/
Fatcat.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
{
"translatorID": "afef9c9d-53a1-49da-9155-1fdf683798c3",
"label": "Fatcat",
"creator": "Abe Jellinek",
"target": "^https://fatcat\\.wiki/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-07-18 23:05:26"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2021 Abe Jellinek
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('/release/') && !url.includes('/search') && doc.querySelector('meta[name="citation_title"]')) {
return guessType(doc);
}
else if (getSearchResults(doc, true)) {
return "multiple";
}
return false;
}
function guessType(doc) {
// Fatcat types are based on CSL types, with some extensions
// https://guide.fatcat.wiki/entity_release.html#release_type-vocabulary
let dcType = attr(doc, 'meta[name="DC.type"]', 'content');
switch (dcType) {
case 'article-magazine':
return 'magazineArticle';
case 'book':
return 'book';
case 'chapter':
return 'bookSection';
case 'entry':
return 'webpage';
case 'entry-encyclopedia':
return 'encyclopediaArticle';
case 'manuscript':
return 'manuscript';
case 'paper-conference':
return 'conferencePaper';
case 'patent':
return 'patent';
case 'report':
return 'report';
case 'dataset':
return 'document';
case 'letter':
return 'letter';
case 'post':
case 'post-weblog':
return 'blogPost';
case 'software':
return 'computerProgram';
case 'speech':
return 'presentation';
case 'thesis':
return 'thesis';
default:
return 'journalArticle';
}
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('h4 a[href*="/release/"], td > b > a[href*="/release/"]');
for (let row of rows) {
let href = row.href;
let title = ZU.trimInternal(row.textContent);
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 translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setHandler('itemDone', function (obj, item) {
item.itemType = guessType(doc); // needs to be told twice sometimes
// attachment URLs go to the archive.org frame page, not directly to
// the PDF
for (let attachment of item.attachments) {
if (attachment.url
&& attachment.url.startsWith('https://web.archive.org/web/')) {
// lots of specificity needed here because the original page URL
// could be anything
attachment.url = attachment.url
.replace(/^(https:\/\/web\.archive\.org\/web\/\d+)/, '$1if_');
}
}
item.url = attr(doc, 'a.huge.black.button', 'href');
for (let field in item) {
if (item.hasOwnProperty(field) && item[field] === 'None') {
delete item[field];
}
}
let id = text(doc, 'h1.header code');
item.extra = (item.extra ? item.extra + '\n' : '') + 'Fatcat ID: ' + id + '\n';
if (item.itemType == 'blogPost') {
delete item.websiteType; // "post"
item.blogTitle = item.publisher;
}
if (item.publicationTitle && item.seriesTitle
&& item.publicationTitle == item.seriesTitle
&& ZU.fieldIsValidForType('publicationTitle', item.itemType)) {
delete item.seriesTitle;
}
// we could handle special cases for every possible item type,
// but in practice it's about 90% papers, 5% blog posts, 5% everything else
item.complete();
});
translator.getTranslatorObject(function (trans) {
trans.itemType = guessType(doc);
trans.addCustomFields({
'citation_journal_title': 'seriesTitle',
'citation_first_page': 'pages',
'citation_volume': 'reportNumber'
});
trans.doWeb(doc, url);
});
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://fatcat.wiki/release/ogpp3g4uvfhyvhatlefj5wn2ce",
"items": [
{
"itemType": "conferencePaper",
"title": "Implementation of Interlisp on the VAX",
"creators": [
{
"firstName": "Raymond L.",
"lastName": "Bates",
"creatorType": "author"
},
{
"firstName": "David",
"lastName": "Dyer",
"creatorType": "author"
},
{
"firstName": "Johannes A. G. M.",
"lastName": "Koomen",
"creatorType": "author"
}
],
"date": "1982",
"DOI": "10.1145/800068.802138",
"extra": "Fatcat ID: release_ogpp3g4uvfhyvhatlefj5wn2ce",
"language": "en",
"libraryCatalog": "fatcat.wiki",
"publisher": "ACM Press",
"url": "https://web.archive.org/web/20170927043847/http://www.dtic.mil/get-tr-doc/pdf?AD=ADA141707",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
},
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://fatcat.wiki/release/dzi6bordrnafpnppds7lbv4po4",
"items": [
{
"itemType": "report",
"title": "Moving the Undeployed TCP Extensions RFC 1072, RFC 1106, RFC 1110, RFC 1145, RFC 1146, RFC 1379, RFC 1644, and RFC 1693 to Historic Status",
"creators": [
{
"firstName": "L.",
"lastName": "Eggert",
"creatorType": "author"
}
],
"date": "2011",
"extra": "Fatcat ID: release_dzi6bordrnafpnppds7lbv4po4",
"language": "en",
"libraryCatalog": "fatcat.wiki",
"pages": "1-4",
"reportNumber": "6247",
"reportType": "report",
"seriesTitle": "Request for Comments",
"url": "https://web.archive.org/web/201807201018/https://www.rfc-editor.org/rfc/pdfrfc/rfc6247.txt.pdf",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
},
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://fatcat.wiki/release/3mssw2qnlnblbk7oqyv2dafgey",
"items": [
{
"itemType": "document",
"title": "Jakobshavn Glacier Bed Elevation",
"creators": [
{
"firstName": "Lu",
"lastName": "An",
"creatorType": "author"
}
],
"date": "2018",
"abstractNote": "<p>Jakobshavn Isbræ, West Greenland, which holds a 0.6-m sea level volume equivalent, has been speeding up and retreating since the late 1990s. Interpretation of its retreat has been hindered by difficulties in measuring its ice thickness with airborne radar depth sounders. Here, we employ high-resolution, helicopter-borne gravity data from 2012 to reconstruct its bed elevation within 50 km of the ocean margin using a three-dimensional inversion constrained by fjord bathymetry data offshore and a mass conservation algorithm inland. We find the glacier trough to be asymmetric and several 100 m deeper than estimated previously in the lower part. From 1996-2016, the grounding line migrated at 0.6 km/yr from 700 m to 1,100 m depth. Upstream, the bed drops to 1,600 m over 10 km then slowly climbs to 1,200 m depth in 40 km. Jakobshavn Isbræ will continue to retreat along a retrograde slope for decades to come.\n\nAn L., E. Rignot, S.H.P. Elieff, M. Morlighem, R. Millan, J. Mouginot, D.M. Holland, D. Holland, and J. Paden (2017), Bed elevation of Jakobshavn Isbræ, West Greenland, from high-resolution airborne gravity and other data, Geophys. Res. Lett., 44, doi:10.1002/2017GL073245.\n\n</p>",
"extra": "Type: dataset\nDOI: 10.7280/d1j37z\nFatcat ID: release_3mssw2qnlnblbk7oqyv2dafgey",
"language": "en",
"libraryCatalog": "fatcat.wiki",
"publisher": "UC Irvine",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://fatcat.wiki/release/227sccesr5g7vfhq6hebiquxii",
"items": [
{
"itemType": "blogPost",
"title": "Of Roots and Scrolls",
"creators": [
{
"firstName": "Clare",
"lastName": "Griffin",
"creatorType": "author"
}
],
"date": "2017-12-11",
"blogTitle": "Open Book Publishers",
"extra": "DOI: 10.11647/obp.0173.0072\nFatcat ID: release_227sccesr5g7vfhq6hebiquxii",
"language": "en",
"url": "https://web.archive.org/web/20190822203945/http://blogs.openbookpublishers.com/of-roots-and-scrolls/",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://fatcat.wiki/creator/iimvc523xbhqlav6j3sbthuehu",
"items": "multiple"
},
{
"type": "web",
"url": "https://fatcat.wiki/release/rtwpnokyrnc25gvs3rfjc4s2ua",
"items": [
{
"itemType": "bookSection",
"title": "Operational Characterisation of Neighbourhood Heat Energy After Large-Scale Building Retrofit",
"creators": [
{
"firstName": "Paul",
"lastName": "Beagon",
"creatorType": "author"
},
{
"firstName": "Fiona",
"lastName": "Boland",
"creatorType": "author"
},
{
"firstName": "James",
"lastName": "O'Donnell",
"creatorType": "author"
}
],
"date": "2018-12-12",
"bookTitle": "Springer Proceedings in Energy",
"extra": "Fatcat ID: release_rtwpnokyrnc25gvs3rfjc4s2ua",
"language": "en",
"libraryCatalog": "fatcat.wiki",
"pages": "217-229",
"url": "https://web.archive.org/web/20190427203216/https://researchrepository.ucd.ie/bitstream/10197/9300/1/Cold_Climate_HVAC_2018_087_final_v13.pdf",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
},
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://fatcat.wiki/release/search?q=Zotero&generic=1",
"items": "multiple"
},
{
"type": "web",
"url": "https://fatcat.wiki/release/q5bn52bkmvgfnfpyj3fa6wfnzy",
"items": [
{
"itemType": "journalArticle",
"title": "The Maxc Systems",
"creators": [
{
"firstName": "E. R.",
"lastName": "Fiala",
"creatorType": "author"
}
],
"date": "1978",
"DOI": "10.1109/c-m.1978.218184",
"ISSN": "0018-9162",
"extra": "Fatcat ID: release_q5bn52bkmvgfnfpyj3fa6wfnzy",
"language": "en",
"libraryCatalog": "fatcat.wiki",
"pages": "57-67",
"publicationTitle": "Computer",
"url": "https://web.archive.org/web/2017/https://www.computer.org/web/csdl/index/-/csdl/mags/co/1978/05/01646959.pdf",
"volume": "11",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
},
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/