forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DOI.js
178 lines (157 loc) · 4.44 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
{
"translatorID": "c159dcfe-8a53-4301-a499-30f6549c340d",
"label": "DOI",
"creator": "Simon Kornblith",
"target": "",
"minVersion": "3.0",
"maxVersion": "",
"priority": 300,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcs",
"lastUpdated": "2012-04-04 05:29:41"
}
var items = {};
var selectArray = {};
var __num_DOIs;
// builds a list of DOIs
function getDOIs(doc) {
// 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.
// Description at: http://www.doi.org/handbook_2000/appendix_1.html#A1-4
const DOIre = /\b10\.[0-9]{4,}\/[^\s&]*[^\s\&\.,]/g;
const DOIXPath = "//text()[contains(., '10.')]\
[not(parent::script or parent::style)]";
var DOIs = [];
var node, m, DOI;
var results = doc.evaluate(DOIXPath, doc, null, XPathResult.ANY_TYPE, null);
while(node = results.iterateNext()) {
DOIre.lastMatch = 0;
while(m = DOIre.exec(node.nodeValue)) {
DOI = m[0];
if(DOI.substr(-1) == ")" && DOI.indexOf("(") == -1) {
DOI = DOI.substr(0, DOI.length-1);
}
// only add new DOIs
if(DOIs.indexOf(DOI) == -1) {
DOIs.push(DOI);
}
}
}
return 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)) {
var DOIs = getDOIs(doc);
if(DOIs.length) {
return DOIs.length == 1 ? "journalArticle" : "multiple";
}
}
return false;
}
function completeDOIs(doc) {
// all DOIs retrieved now
// check to see if there is more than one DOI
var numDOIs = 0;
for(var DOI in selectArray) {
numDOIs++;
if(numDOIs == 2) break;
}
if(numDOIs == 0) {
throw "DOI Translator: could not find DOI";
} else if(numDOIs == 1) {
// do we want to add URL of the page?
items[DOI].url = doc.location.href;
items[DOI].attachments = [{document:doc}];
items[DOI].complete();
} else {
Zotero.selectItems(selectArray, function(selectedDOIs) {
if(!selectedDOIs) return true;
for(var DOI in selectedDOIs) {
items[DOI].complete();
}
});
}
}
function retrieveDOIs(DOIs, doc) {
__num_DOIs = DOIs.length;
for(var i=0, n=DOIs.length; i<n; i++) {
(function(doc, DOI) {
var translate = Zotero.loadTranslator("search");
translate.setTranslator("11645bd1-0420-45c1-badb-53fb41eeb753");
var item = {"itemType":"journalArticle", "DOI":DOI};
translate.setSearch(item);
// don't save when item is done
translate.setHandler("itemDone", function(translate, item) {
item.repository = "CrossRef";
items[DOI] = item;
selectArray[DOI] = item.title;
});
translate.setHandler("done", function(translate) {
__num_DOIs--;
if(__num_DOIs <= 0) {
completeDOIs(doc);
}
});
// Don't throw on error
translate.setHandler("error", function() {});
translate.translate();
})(doc, DOIs[i]);
}
}
function doWeb(doc, url) {
var DOIs = getDOIs(doc);
// retrieve full items asynchronously
retrieveDOIs(DOIs, doc);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://www.crossref.org/help/Content/01_About_DOIs/What_is_a_DOI.htm",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"creatorType": "author",
"firstName": "J",
"lastName": "Mou"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"document": false
}
],
"publicationTitle": "Journal of Molecular Biology",
"volume": "248",
"ISSN": "00222836",
"issue": "3",
"date": "1995-5-5",
"pages": "507-512",
"DOI": "10.1006/jmbi.1995.0238",
"url": "http://www.crossref.org/help/Content/01_About_DOIs/What_is_a_DOI.htm",
"title": "Atomic Force Microscopy of Cholera Toxin B-oligomers Bound to Bilayers of Biologically Relevant Lipids",
"libraryCatalog": "CrossRef"
}
]
},
{
"type": "web",
"url": "http://blog.apastyle.org/apastyle/digital-object-identifier-doi/",
"items": "multiple"
}
]
/** END TEST CASES **/