162 lines
4.7 KiB
JavaScript
162 lines
4.7 KiB
JavaScript
{
|
|
"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": "2020-06-19 12:54:28"
|
|
}
|
|
|
|
/*
|
|
***** 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',
|
|
};
|
|
|
|
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",
|
|
"items": "multiple"
|
|
}
|
|
]
|
|
/** END TEST CASES **/
|