-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathIdref.js
179 lines (153 loc) · 5.28 KB
/
Idref.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
{
"translatorID": "271ee1a5-da86-465b-b3a5-eafe7bd3c156",
"label": "Idref",
"creator": "Sylvain Machefert",
"target": "^https?://www\\.idref\\.fr/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-06-29 09:01:54"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2018 Sylvain Machefert
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 *****
*/
var domain2translator = {
'www.sudoc.abes.fr': '1b9ed730-69c7-40b0-8a06-517a89a3a278',
'hal.archives-ouvertes.fr': 'f20f91fe-d875-47e7-9656-0abb928be472',
'archivesic.ccsd.cnrs.fr': 'dedcae51-073c-48fb-85ce-2425e97f128d',
'memsic.ccsd.cnrs.fr': '58ab2618-4a25-4b9b-83a7-80cd0259f896',
'catalogue.bnf.fr': '47533cd7-ccaa-47a7-81bb-71c45e68a74d',
'www.theses.fr': '3f73f0aa-f91c-4192-b0d5-907312876cb9',
'www.persee.fr': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'oatao.univ-toulouse.fr': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'pub.orcid.org': 'bc03b4fe-436d-4a1f-ba59-de4d2d7a63f7',
'dumas.ccsd.cnrs.fr': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'publications-prairial.fr': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'univoak.eu': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'publications.ut-capitole.fr': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'agritrop.cirad.fr': '951c027d-74ac-47d4-a107-9c3069ab7b48',
'explore.lib.uliege.be': 'cd669d1f-96b8-4040-aa36-48f843248399',
};
function getTranslatorFromDomain(domain) {
if (domain2translator[domain]) {
return domain2translator[domain];
}
/* Fallback for *.archives-ouvertes.fr */
if (domain.endsWith(".archives-ouvertes.fr")) {
return '951c027d-74ac-47d4-a107-9c3069ab7b48';
}
return false;
}
function detectWeb(doc, _url) {
if (getSearchResults(doc, true)) {
return "multiple";
}
Z.monitorDOMChanges(doc.getElementById("ref-liees-p"));
return false;
}
function getSearchResults(doc, checkOnly) {
var resultsTitle = ZU.xpath(doc, '//div[@id="perenne-references-docs"]/span[contains(@class, "detail_value")]');
var resultsHref = ZU.xpath(doc, '//div[@id="perenne-references-docs"]/span[contains(@class, "detail_label")]/a/@href');
var found = false;
var items = {};
for (let i = 0; i < resultsTitle.length; i++) {
var href = resultsHref[i].textContent;
// We need to replace the http://www.sudoc.fr/XXXXXX links are they are redirects and aren't handled correctly from subtranslator
href = href.replace(/http:\/\/www\.sudoc\.fr\/(.*)$/, "http://www.sudoc.abes.fr/xslt/DB=2.1//SRCH?IKT=12&TRM=$1");
var domain = urlToDomain(href);
if (getTranslatorFromDomain(domain)) {
if (checkOnly) return true;
found = true;
items[href] = resultsTitle[i].textContent;
}
else {
Z.debug("Not found : " + domain);
}
}
return found ? items : false;
}
function doWeb(doc, _url) {
Zotero.selectItems(getSearchResults(doc, false), function (selectedItems) {
if (!selectedItems) {
return;
}
var articles = [];
for (var i in selectedItems) {
articles.push(i);
}
ZU.processDocuments(articles, scrape);
});
}
function scrape(doc, url) {
var translator = Zotero.loadTranslator('web');
// Orcid is the only case where we need to use an import translator, different behvior from previous ones
if (url.includes("pub.orcid.org")) {
// Idrefs contains orcid links with /works/ for which the content negotiation
// does not allow to get CSL results. Each link describes only one reference
// so we can safely replace /works/ by /work/. The last one allows content negotiation
url = url.replace("/works/", "/work/");
ZU.doGet(url, function (text) {
var translator = Zotero.loadTranslator("import");
translator.setTranslator("bc03b4fe-436d-4a1f-ba59-de4d2d7a63f7");// CSL JSON
translator.setString(text);
translator.translate();
}, undefined, undefined, { Accept: "application/vnd.citationstyles.csl+json" });
return;
}
var domain = urlToDomain(url);
var domainTranslator = getTranslatorFromDomain(domain);
if (domainTranslator) {
translator.setTranslator(domainTranslator);
}
else {
Z.debug("Undefined website");
return;
}
translator.setHandler('itemDone', function (obj, item) {
item.complete();
});
translator.getTranslatorObject(function (trans) {
trans.doWeb(doc, url);
});
}
function urlToDomain(url) {
return url.replace(/^https?:\/\/([^/]*).*/, "$1");
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.idref.fr/199676100",
"defer": true,
"items": "multiple"
},
{
"type": "web",
"url": "https://www.idref.fr/236948326",
"defer": true,
"items": "multiple"
},
{
"type": "web",
"url": "https://www.idref.fr/056894546",
"defer": true,
"items": "multiple"
}
]
/** END TEST CASES **/