-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathDOI.js
322 lines (293 loc) · 9.04 KB
/
DOI.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
{
"translatorID": "c159dcfe-8a53-4301-a499-30f6549c340d",
"label": "DOI",
"creator": "Simon Kornblith",
"target": "",
"minVersion": "3.0",
"maxVersion": "",
"priority": 400,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-06-04 14:34:03"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2019 Simon Kornblith
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 *****
*/
// TODO Detect DOIs more correctly.
// The actual rules for DOIs are very lax-- but we're more strict.
// Specifically, we should allow space characters, and all Unicode
// characters except for control characters. Here, we're cheating
// by not allowing ampersands, to fix an issue with getting DOIs
// out of URLs.
// Additionally, all content inside <noscript> is picked up as text()
// by the xpath, which we don't necessarily want to exclude, but
// that means that we can get DOIs inside node attributes and we should
// exclude quotes in this case.
// DOI should never end with a period or a comma (we hope)
// Description at: http://www.doi.org/handbook_2000/appendix_1.html#A1-4
const DOIre = /\b10\.[0-9]{4,}\/[^\s&"']*[^\s&"'.,]/g;
/**
* @return {string | string[]} A single string if the URL contains a DOI
* and the document contains no others, or an array of DOIs otherwise
*/
function getDOIs(doc, url) {
let fromURL = getDOIFromURL(url);
let fromDocument = getDOIsFromDocument(doc);
if (
// We got a DOI from the URL
fromURL && (
// And none from the document
fromDocument.length == 0
// Or one from the document, but the same one that was in the URL
|| fromDocument.length == 1 && fromDocument[0] == fromURL
)
) {
return fromURL;
}
// De-duplicate before returning
return Array.from(new Set(fromURL ? [fromURL, ...fromDocument] : fromDocument));
}
function getDOIFromURL(url) {
// Split on # and ?, so that we don't allow DOIs to contain those characters
// but do allow finding DOIs on either side of them (e.g. a DOI in the URL hash)
let urlParts = url.split(/[#?]/);
for (let urlPart of urlParts) {
let match = DOIre.exec(urlPart);
if (match) {
// Only return a single DOI from the URL
return match[0];
}
}
return null;
}
function getDOIsFromDocument(doc) {
var dois = new Set();
var m, DOI;
var treeWalker = doc.createTreeWalker(doc.documentElement, 4, null, false);
var ignore = ['script', 'style'];
while (treeWalker.nextNode()) {
if (ignore.includes(treeWalker.currentNode.parentNode.tagName.toLowerCase())) continue;
// Z.debug(node.nodeValue)
DOIre.lastIndex = 0;
while ((m = DOIre.exec(treeWalker.currentNode.nodeValue))) {
DOI = m[0];
if (DOI.endsWith(")") && !DOI.includes("(")) {
DOI = DOI.substr(0, DOI.length - 1);
}
if (DOI.endsWith("}") && !DOI.includes("{")) {
DOI = DOI.substr(0, DOI.length - 1);
}
// only add new DOIs
if (!dois.has(DOI)) {
dois.add(DOI);
}
}
}
// FIXME: The test for this (developmentbookshelf.com) fails in Scaffold due
// to a cookie error, though running the code in Scaffold still works
var links = doc.querySelectorAll('a[href]');
for (let link of links) {
DOIre.lastIndex = 0;
let m = DOIre.exec(link.href);
if (m) {
let doi = m[0];
if (doi.endsWith(")") && !doi.includes("(")) {
doi = doi.substr(0, doi.length - 1);
}
if (doi.endsWith("}") && !doi.includes("{")) {
doi = doi.substr(0, doi.length - 1);
}
// only add new DOIs
if (!dois.has(doi) && !dois.has(doi.replace(/#.*/, ''))) {
dois.add(doi);
}
}
}
return Array.from(dois);
}
function detectWeb(doc, url) {
// Blacklist the advertising iframe in ScienceDirect guest mode:
// http://www.sciencedirect.com/science/advertisement/options/num/264322/mainCat/general/cat/general/acct/...
// This can be removed from blacklist when 5c324134c636a3a3e0432f1d2f277a6bc2717c2a hits all clients (Z 3.0+)
const blacklistRe = /^https?:\/\/[^/]*(?:google\.com|sciencedirect\.com\/science\/advertisement\/)/i;
if (blacklistRe.test(url)) {
return false;
}
let doiOrDOIs = getDOIs(doc, url);
if (Array.isArray(doiOrDOIs)) {
return doiOrDOIs.length ? "multiple" : false;
}
return "journalArticle"; // A decent guess
}
async function retrieveDOIs(doiOrDOIs) {
let showSelect = Array.isArray(doiOrDOIs);
let dois = showSelect ? doiOrDOIs : [doiOrDOIs];
let items = {};
let numDOIs = dois.length;
for (const doi of dois) {
items[doi] = null;
const translate = Zotero.loadTranslator("search");
translate.setTranslator("b28d0d42-8549-4c6d-83fc-8382874a5cb9");
translate.setSearch({ itemType: "journalArticle", DOI: doi });
// don't save when item is done
translate.setHandler("itemDone", function (_translate, item) {
if (!item.title) {
Zotero.debug("No title available for " + item.DOI);
item.title = "[No Title]";
}
items[item.DOI] = item;
});
/* eslint-disable no-loop-func */
translate.setHandler("done", function () {
numDOIs--;
// All DOIs retrieved
if (numDOIs <= 0) {
// Check to see if there's at least one DOI
if (!Object.keys(items).length) {
throw new Error("DOI Translator: could not find DOI");
}
// If showSelect is false, don't show a Select Items dialog,
// just complete if we can
if (!showSelect) {
let firstItem = items[Object.keys(items)[0]];
if (firstItem) {
firstItem.complete();
}
return;
}
// Otherwise, allow the user to select among items that resolved successfully
let select = {};
for (let doi in items) {
let item = items[doi];
if (item) {
select[doi] = item.title || "[" + item.DOI + "]";
}
}
Zotero.selectItems(select, function (selectedDOIs) {
if (!selectedDOIs) return;
for (let selectedDOI in selectedDOIs) {
items[selectedDOI].complete();
}
});
}
});
// Don't throw on error
translate.setHandler("error", function () {});
try {
await translate.translate();
}
catch (e) {
Zotero.debug(`Failed to resolve DOI '${doi}': ${e}`);
}
}
}
async function doWeb(doc, url) {
let doiOrDOIs = getDOIs(doc, url);
Z.debug(doiOrDOIs);
await retrieveDOIs(doiOrDOIs);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://blog.apastyle.org/apastyle/digital-object-identifier-doi/",
"items": "multiple"
},
{
"type": "web",
"url": "http://libguides.csuchico.edu/citingbusiness",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.egms.de/static/de/journals/mbi/2015-15/mbi000336.shtml",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.roboticsproceedings.org/rss09/p23.html",
"items": "multiple"
},
{
"type": "web",
"url": "https://en.wikipedia.org/wiki/Template_talk:Doi",
"items": "multiple"
},
{
"type": "web",
"url": "https://onlinelibrary.wiley.com/doi/full/10.7448/IAS.15.5.18440",
"items": [
{
"itemType": "journalArticle",
"title": "Track C Epidemiology and Prevention Science",
"creators": [],
"date": "2012-10-22",
"DOI": "10.7448/IAS.15.5.18440",
"ISSN": "1758-2652",
"issue": "Suppl 3",
"journalAbbreviation": "Journal of the International AIDS Society",
"libraryCatalog": "DOI.org (Crossref)",
"publicationTitle": "Journal of the International AIDS Society",
"url": "http://doi.wiley.com/10.7448/IAS.15.5.18440",
"volume": "15",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/BEJTMI",
"detectedItemType": "journalArticle",
"items": [
{
"itemType": "dataset",
"title": "Transfer of 50 thousand improved genetically improved farmed tilapia (GIFT) fry to Nigeria",
"creators": [
{
"lastName": "Trinh",
"firstName": "Trong",
"creatorType": "author"
},
{
"lastName": "Trinh",
"firstName": "Trong",
"creatorType": "contributor"
},
{
"lastName": "WorldFish",
"creatorType": "contributor",
"fieldMode": 1
}
],
"date": "2023",
"DOI": "10.7910/DVN/BEJTMI",
"abstractNote": "The data contains the list of female broodstock that produced improved GIFT fry sent to Nigeria in three batches in 2022",
"libraryCatalog": "DOI.org (Datacite)",
"repository": "Harvard Dataverse",
"url": "https://dataverse.harvard.edu/citation?persistentId=doi:10.7910/DVN/BEJTMI",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/