459 lines
11 KiB
JavaScript
459 lines
11 KiB
JavaScript
{
|
||
"translatorID": "cd587058-6125-4b33-a876-8c6aae48b5e8",
|
||
"label": "WHO",
|
||
"creator": "Mario Trojan, Philipp Zumstein, and Abe Jellinek",
|
||
"target": "^https?://apps\\.who\\.int/iris/",
|
||
"minVersion": "3.0",
|
||
"maxVersion": "",
|
||
"priority": 96,
|
||
"inRepository": true,
|
||
"translatorType": 12,
|
||
"browserSupport": "gcsibv",
|
||
"lastUpdated": "2022-12-06 12:21:28"
|
||
}
|
||
|
||
/*
|
||
***** BEGIN LICENSE BLOCK *****
|
||
|
||
Copyright © 2018-2021 Mario Trojan and 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("/handle/") && text(doc, 'div.item-summary-view-metadata')) {
|
||
var type = attr(doc, 'meta[name="DC.type"]', 'content');
|
||
// Z.debug(type);
|
||
if (type && type.includes("articles")) {
|
||
return "journalArticle";
|
||
}
|
||
if (type && (type.includes("Book") || type.includes("Publications"))) {
|
||
return "book";
|
||
}
|
||
return "report";
|
||
}
|
||
else if (getSearchResults(doc, true)) {
|
||
return "multiple";
|
||
}
|
||
return false;
|
||
}
|
||
|
||
|
||
function getSearchResults(doc, checkOnly) {
|
||
var items = {};
|
||
var found = false;
|
||
|
||
var rows = doc.querySelectorAll('h4.artifact-title>a');
|
||
for (let row of rows) {
|
||
let href = row.href;
|
||
var title = 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) {
|
||
return;
|
||
}
|
||
var articles = [];
|
||
for (var i in items) {
|
||
articles.push(i);
|
||
}
|
||
ZU.processDocuments(articles, scrape);
|
||
});
|
||
}
|
||
else {
|
||
scrape(doc, url);
|
||
}
|
||
}
|
||
|
||
|
||
function scrape(doc, url) {
|
||
// copy meta tags in body to head
|
||
var head = doc.getElementsByTagName('head');
|
||
var metasInBody = ZU.xpath(doc, '//body/meta');
|
||
for (let meta of metasInBody) {
|
||
head[0].append(meta);
|
||
}
|
||
|
||
var type = detectWeb(doc, url);
|
||
|
||
var translator = Zotero.loadTranslator('web');
|
||
// Embedded Metadata
|
||
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
|
||
|
||
translator.setHandler('itemDone', function (obj, item) {
|
||
if (item.publisher && !item.place && item.publisher.includes(' : ')) {
|
||
let placePublisher = item.publisher.split(' : ');
|
||
item.place = placePublisher[0];
|
||
item.publisher = placePublisher[1];
|
||
}
|
||
|
||
var firstAuthor = attr(doc, 'meta[name="DC.creator"]', 'content');
|
||
if (firstAuthor && !firstAuthor.includes(',')) {
|
||
item.creators[0] = {
|
||
lastName: firstAuthor,
|
||
creatorType: "author",
|
||
fieldMode: 1
|
||
};
|
||
}
|
||
|
||
var descriptions = doc.querySelectorAll('meta[name="DC.description"]');
|
||
// DC.description doesn't actually contain other useful content,
|
||
// except possibly the number of pages
|
||
for (let description of descriptions) {
|
||
var numPages = description.content.match(/(([lxiv]+,\s*)?\d+)\s*p/);
|
||
if (numPages) {
|
||
if (ZU.fieldIsValidForType("numPages", item.itemType)) {
|
||
item.numPages = numPages[1];
|
||
}
|
||
else if (!item.extra) {
|
||
item.extra = "number-of-pages: " + numPages[1];
|
||
}
|
||
else {
|
||
item.extra += "\nnumber-of-pages: " + numPages[1];
|
||
}
|
||
delete item.abstractNote;
|
||
}
|
||
}
|
||
|
||
|
||
item.complete();
|
||
});
|
||
|
||
translator.getTranslatorObject(function (trans) {
|
||
trans.itemType = type;
|
||
trans.doWeb(doc, url);
|
||
});
|
||
}
|
||
|
||
function detectSearch(item) {
|
||
return item.ISBN && (ZU.cleanISBN(item.ISBN) || '').startsWith('978924');
|
||
}
|
||
|
||
function doSearch(item) {
|
||
let ISBN = ZU.cleanISBN(item.ISBN);
|
||
let url = `https://apps.who.int/iris/discover/export?format=refman&list=discover&rpp=10&etal=0&query=${ISBN}&group_by=none&page=1&filtertype_0=identifier&filter_relational_operator_0=equals&filter_0=${ISBN}`;
|
||
ZU.doGet(url, function (risText) {
|
||
if (!risText) return;
|
||
|
||
risText = risText.replace(/^SE(\s*-\s*[0-9]+).*$/m, 'SP$1');
|
||
|
||
var translator = Zotero.loadTranslator("import");
|
||
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7"); // RIS
|
||
translator.setString(risText);
|
||
translator.setHandler("itemDone", function (obj, item) {
|
||
item.libraryCatalog = 'WHO IRIS';
|
||
item.archive = '';
|
||
|
||
if (item.url) {
|
||
ZU.processDocuments(item.url, function (recordDoc) {
|
||
let pdfURL = attr(recordDoc, 'meta[name="citation_pdf_url"]', 'content');
|
||
if (pdfURL) {
|
||
item.attachments.push({
|
||
title: 'Full Text PDF',
|
||
mimeType: 'application/pdf',
|
||
url: pdfURL
|
||
});
|
||
}
|
||
item.complete();
|
||
});
|
||
}
|
||
else {
|
||
item.complete();
|
||
}
|
||
});
|
||
translator.translate();
|
||
});
|
||
}
|
||
|
||
/** BEGIN TEST CASES **/
|
||
var testCases = [
|
||
{
|
||
"type": "web",
|
||
"url": "http://apps.who.int/iris/handle/10665/70863?locale=ar",
|
||
"items": [
|
||
{
|
||
"itemType": "report",
|
||
"title": "Consensus document on the epidemiology of severe acute respiratory syndrome (SARS)",
|
||
"creators": [
|
||
{
|
||
"lastName": "World Health Organization",
|
||
"creatorType": "author",
|
||
"fieldMode": true
|
||
}
|
||
],
|
||
"date": "2003",
|
||
"extra": "number-of-pages: 46",
|
||
"institution": "World Health Organization",
|
||
"language": "en",
|
||
"libraryCatalog": "apps.who.int",
|
||
"reportNumber": "WHO/CDS/CSR/GAR/2003.11",
|
||
"url": "https://apps.who.int/iris/handle/10665/70863",
|
||
"attachments": [
|
||
{
|
||
"title": "Full Text PDF",
|
||
"mimeType": "application/pdf"
|
||
},
|
||
{
|
||
"title": "Snapshot",
|
||
"mimeType": "text/html"
|
||
}
|
||
],
|
||
"tags": [
|
||
{
|
||
"tag": "Communicable Diseases and their Control"
|
||
},
|
||
{
|
||
"tag": "Disease Outbreaks"
|
||
},
|
||
{
|
||
"tag": "Severe Acute Respiratory Syndrome"
|
||
}
|
||
],
|
||
"notes": [],
|
||
"seeAlso": []
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"type": "web",
|
||
"url": "http://apps.who.int/iris/handle/10665/272081",
|
||
"items": [
|
||
{
|
||
"itemType": "journalArticle",
|
||
"title": "Providing oxygen to children in hospitals: a realist review",
|
||
"creators": [
|
||
{
|
||
"firstName": "Hamish",
|
||
"lastName": "Graham",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "Shidan",
|
||
"lastName": "Tosif",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "Amy",
|
||
"lastName": "Gray",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "Shamim",
|
||
"lastName": "Qazi",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "Harry",
|
||
"lastName": "Campbell",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "David",
|
||
"lastName": "Peel",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "Barbara",
|
||
"lastName": "McPake",
|
||
"creatorType": "author"
|
||
},
|
||
{
|
||
"firstName": "Trevor",
|
||
"lastName": "Duke",
|
||
"creatorType": "author"
|
||
}
|
||
],
|
||
"date": "2017-4-01",
|
||
"DOI": "10.2471/BLT.16.186676",
|
||
"ISSN": "0042-9686",
|
||
"abstractNote": "288",
|
||
"extra": "PMID: 28479624",
|
||
"issue": "4",
|
||
"language": "en",
|
||
"libraryCatalog": "apps.who.int",
|
||
"pages": "288-302",
|
||
"publicationTitle": "Bulletin of the World Health Organization",
|
||
"rights": "http://creativecommons.org/licenses/by/3.0/igo/legalcode",
|
||
"shortTitle": "Providing oxygen to children in hospitals",
|
||
"url": "https://apps.who.int/iris/handle/10665/272081",
|
||
"volume": "95",
|
||
"attachments": [
|
||
{
|
||
"title": "Full Text PDF",
|
||
"mimeType": "application/pdf"
|
||
},
|
||
{
|
||
"title": "Snapshot",
|
||
"mimeType": "text/html"
|
||
},
|
||
{
|
||
"title": "PubMed entry",
|
||
"mimeType": "text/html",
|
||
"snapshot": false
|
||
}
|
||
],
|
||
"tags": [
|
||
{
|
||
"tag": "Systematic Reviews"
|
||
}
|
||
],
|
||
"notes": [],
|
||
"seeAlso": []
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"type": "web",
|
||
"url": "http://apps.who.int/iris/handle/10665/273678",
|
||
"items": [
|
||
{
|
||
"itemType": "book",
|
||
"title": "Сборник руководящих принципов и стандартов ВОЗ: обеспечение оптимального оказания медицинских услуг пациентам с туберкулезом",
|
||
"creators": [
|
||
{
|
||
"lastName": "Всемирная организация здравоохранения",
|
||
"creatorType": "author",
|
||
"fieldMode": true
|
||
}
|
||
],
|
||
"date": "2018",
|
||
"ISBN": "9789244514108",
|
||
"language": "ru",
|
||
"libraryCatalog": "apps.who.int",
|
||
"numPages": "47",
|
||
"publisher": "Всемирная организация здравоохранения",
|
||
"rights": "CC BY-NC-SA 3.0 IGO",
|
||
"shortTitle": "Сборник руководящих принципов и стандартов ВОЗ",
|
||
"url": "https://apps.who.int/iris/handle/10665/273678",
|
||
"attachments": [
|
||
{
|
||
"title": "Full Text PDF",
|
||
"mimeType": "application/pdf"
|
||
},
|
||
{
|
||
"title": "Snapshot",
|
||
"mimeType": "text/html"
|
||
}
|
||
],
|
||
"tags": [
|
||
{
|
||
"tag": "Delivery of Health Care"
|
||
},
|
||
{
|
||
"tag": "Disease Management"
|
||
},
|
||
{
|
||
"tag": "Guideline"
|
||
},
|
||
{
|
||
"tag": "Infection Control"
|
||
},
|
||
{
|
||
"tag": "Multidrug-Resistant"
|
||
},
|
||
{
|
||
"tag": "Patient Care"
|
||
},
|
||
{
|
||
"tag": "Reference Standards"
|
||
},
|
||
{
|
||
"tag": "Tuberculosis"
|
||
}
|
||
],
|
||
"notes": [],
|
||
"seeAlso": []
|
||
}
|
||
]
|
||
},
|
||
{
|
||
"type": "web",
|
||
"url": "http://apps.who.int/iris/discover?query=acupuncture",
|
||
"items": "multiple"
|
||
},
|
||
{
|
||
"type": "search",
|
||
"input": {
|
||
"ISBN": "9789241506236"
|
||
},
|
||
"items": [
|
||
{
|
||
"itemType": "book",
|
||
"title": "Global action plan for the prevention and control of noncommunicable diseases 2013-2020",
|
||
"creators": [
|
||
{
|
||
"lastName": "World Health Organization",
|
||
"creatorType": "author",
|
||
"fieldMode": 1
|
||
}
|
||
],
|
||
"date": "2013",
|
||
"ISBN": "9789241506236",
|
||
"language": "en",
|
||
"libraryCatalog": "WHO IRIS",
|
||
"place": "Geneva",
|
||
"publisher": "World Health Organization",
|
||
"url": "https://apps.who.int/iris/handle/10665/94384",
|
||
"attachments": [
|
||
{
|
||
"title": "Full Text PDF",
|
||
"mimeType": "application/pdf"
|
||
}
|
||
],
|
||
"tags": [
|
||
{
|
||
"tag": "Cardiovascular Diseases"
|
||
},
|
||
{
|
||
"tag": "Chronic Disease"
|
||
},
|
||
{
|
||
"tag": "Diabetes Mellitus"
|
||
},
|
||
{
|
||
"tag": "Health Planning"
|
||
},
|
||
{
|
||
"tag": "International Cooperation"
|
||
},
|
||
{
|
||
"tag": "Neoplasms"
|
||
},
|
||
{
|
||
"tag": "Respiratory Tract Diseases"
|
||
}
|
||
],
|
||
"notes": [],
|
||
"seeAlso": []
|
||
}
|
||
]
|
||
}
|
||
]
|
||
/** END TEST CASES **/
|