zotero-db/translators/Journal of Religion and Soc...

175 lines
5.7 KiB
JavaScript

{
"translatorID": "e969da6b-30c9-4b26-8fcc-c2d78bce685f",
"label": "Journal of Religion and Society",
"creator": "Vincent Carret",
"target": "^https?://(www\\.)?moses\\.creighton\\.edu/JRS",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-07-14 20:06:32"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2019 Vincent Carret
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) {
// Three possible cases : the list of articles of an issue, the list of content of a supplement, or the list of the supplements
if (getSearchResults(doc, true)) {
return "multiple";
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
// We have a different querySelector according to the page (respectively, all supplements page, journal issue page, and supplement issue page)
var rows = doc.querySelectorAll('div[class^=pubs] p.SuppVolume em, div[class^=pubs] p.title, div[class^=pubs] p.chap');
for (let row of rows) {
let title = row.textContent;
if (!title) continue;
if (checkOnly) return true;
found = true;
items[title] = title;
}
return found ? items : false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (items) {
for (var id of Object.keys(items)) {
scrape(id, doc, url);
}
}
});
}
}
function scrape(id, doc, url) {
var item = null;
var infoBlock = null;
var author = null;
var pdfurl = "";
if (!url.includes('/toc/SS') && !url.includes('/toc/Supplement')) {
item = new Zotero.Item("journalArticle");
item.title = id;
item.publicationTitle = "Journal of Religion & Society";
item.date = ZU.strToISO(text(doc, ".heading").split('(')[1].match(/\d+/)[0]);
item.volume = text(doc, ".heading").split('(')[0].match(/\d+/)[0];
item.url = url;
infoBlock = ZU.xpath(doc, "//p[contains(., '" + id + "')]/following-sibling::p")[0];
author = infoBlock.textContent.split("\n");
for (let auth of author.slice(0, author.length - 1)) {
item.creators.push(ZU.cleanAuthor(auth.split(", ")[0], "author", false));
}
if (text(infoBlock, "a:last-child", 0).includes("PDF")) {
pdfurl = attr(infoBlock, "a:last-child", "href", 0);
item.attachments.push({
title: item.title,
mimeType: "application/pdf",
url: pdfurl
});
}
if (text(infoBlock, "a", 0).includes("Abstract")) {
let abstract = attr(infoBlock, "a", "href", 0).split("'")[1];
item.abstractNote = text(doc, abstract);
}
}
else if (url.includes('/toc/Supplement')) {
item = new Zotero.Item("book");
item.title = id;
item.series = "Supplement of the Journal of Religion & Society";
item.publisher = "Journal of Religion & Society Supplement";
infoBlock = ZU.xpath(doc, "//p[contains(., '" + id + "')]")[0];
item.date = ZU.strToISO(infoBlock.querySelector("em").nextSibling.textContent.match(/\d+/)[0]);
item.seriesNumber = text(infoBlock, "a").match(/\d+/)[0];
item.url = "http://moses.creighton.edu/JRS/toc/" + attr(infoBlock, "a", "href");
author = infoBlock.nextElementSibling.textContent.split(",")[0].replace("Edited by ", "").split(" and ");
for (let auth of author) item.creators.push(ZU.cleanAuthor(auth, "editor", false));
}
else if (url.includes('/toc/SS')) {
item = new Zotero.Item("bookSection");
item.title = id.split(" (")[0];
item.series = "Supplement of the Journal of Religion & Society";
item.seriesNumber = text(doc, ".heading").split('(')[0].match(/\d+/)[0];
item.publisher = "Journal of Religion & Society Supplement";
item.date = ZU.strToISO(text(doc, ".heading").split('(')[1].match(/\d+/)[0]);
item.bookTitle = text(doc, ".suppTitle");
author = text(doc, "p.SuppAuthor, p.editor").split(",")[0].replace("Edited by ", "").split(" and ");
for (let auth of author) item.creators.push(ZU.cleanAuthor(auth, "editor", false));
item.url = url;
infoBlock = ZU.xpath(doc, "//p[contains(., '" + id + "')]")[0];
item.pages = infoBlock.textContent.split("(pp. ")[1].replace(")", "");
author = infoBlock.nextElementSibling.textContent.split(",")[0].split(" and ");
for (let auth of author) item.creators.push(ZU.cleanAuthor(auth, "author", false));
pdfurl = attr(infoBlock.nextElementSibling, "a:last-child", "href", 0);
item.attachments.push({
title: item.title,
mimeType: "application/pdf",
url: pdfurl
});
if (text(infoBlock.nextElementSibling, "a", 0).includes("Abstract")) {
let abstract = attr(infoBlock.nextElementSibling, "a", "href", 0).split("'")[1];
item.abstractNote = text(doc, abstract);
}
}
item.libraryCatalog = "Journal of Religion and Society";
item.ISSN = "1522-5658";
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://moses.creighton.edu/JRS/toc/2016.html",
"items": "multiple"
},
{
"type": "web",
"url": "http://moses.creighton.edu/JRS/toc/Supplement.html",
"items": "multiple"
},
{
"type": "web",
"url": "http://moses.creighton.edu/JRS/toc/SS17.html",
"items": "multiple"
}
]
/** END TEST CASES **/