Initial Commit
This commit is contained in:
242
translators/Alsharekh.js
Normal file
242
translators/Alsharekh.js
Normal file
@@ -0,0 +1,242 @@
|
||||
{
|
||||
"translatorID": "70fbaf2f-ba02-426c-8beb-4ddfbbefd14b",
|
||||
"label": "Alsharekh",
|
||||
"creator": "Abe Jellinek",
|
||||
"target": "^https://archive\\.alsharekh\\.org/",
|
||||
"minVersion": "3.0",
|
||||
"maxVersion": "",
|
||||
"priority": 100,
|
||||
"inRepository": true,
|
||||
"translatorType": 4,
|
||||
"browserSupport": "gcsibv",
|
||||
"lastUpdated": "2023-07-24 02:21:59"
|
||||
}
|
||||
|
||||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2021 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 *****
|
||||
*/
|
||||
|
||||
|
||||
let apiBase = 'https://archiveapi.alsharekh.org';
|
||||
let urlRe = /\/Articles\/([^/]+)\/([^/]+)\/([^/?#]+)/;
|
||||
|
||||
function detectWeb(doc, url) {
|
||||
if (urlRe.test(url)) {
|
||||
return "magazineArticle";
|
||||
}
|
||||
let appElem = doc.querySelector("app-root");
|
||||
if (appElem) {
|
||||
Z.monitorDOMChanges(appElem);
|
||||
}
|
||||
if (getSearchResults(doc, true)) {
|
||||
return "multiple";
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function getSearchResults(doc, checkOnly) {
|
||||
var items = {};
|
||||
var found = false;
|
||||
var rows = doc.querySelectorAll('td > a[href^="/Articles/"], th > a[href^="/Articles/"]');
|
||||
for (let row of rows) {
|
||||
let href = row.href;
|
||||
let title = ZU.trimInternal(row.textContent);
|
||||
if (!href || !title) continue;
|
||||
if (checkOnly) return true;
|
||||
found = true;
|
||||
items[href] = title;
|
||||
}
|
||||
return found ? items : false;
|
||||
}
|
||||
|
||||
async function doWeb(doc, url) {
|
||||
if (detectWeb(doc, url) == "multiple") {
|
||||
let items = await Z.selectItems(getSearchResults(doc));
|
||||
if (!items) return;
|
||||
for (let url of Object.keys(items)) {
|
||||
await scrape(null, url);
|
||||
}
|
||||
}
|
||||
else {
|
||||
await scrape(doc, url);
|
||||
}
|
||||
}
|
||||
|
||||
async function scrape(doc, url) {
|
||||
let item = new Zotero.Item('magazineArticle');
|
||||
|
||||
let [, MID, IID, AID] = url.match(urlRe);
|
||||
let issue = await requestJSON(`${apiBase}/Search/IssueHInfo?MID=${MID}&IID=${IID}`);
|
||||
let article = await requestJSON(`${apiBase}/Search/ArticleHInfo?AID=${AID}`);
|
||||
|
||||
item.title = article.articleTitle.replace(' : ', ": ");
|
||||
item.pages = article.pageNo;
|
||||
item.creators.push(ZU.cleanAuthor(article.articleAuthor, 'author'));
|
||||
|
||||
item.publicationTitle = issue.magazineArabicName;
|
||||
item.place = issue.countryName;
|
||||
item.issue = issue.issuenumber || issue.issueName;
|
||||
item.date = ZU.strToISO(arabicToEnglishDate(issue.newIssueDate));
|
||||
|
||||
item.url = url;
|
||||
|
||||
let attachment = { title: "Snapshot" };
|
||||
if (doc) {
|
||||
attachment.document = doc;
|
||||
}
|
||||
else {
|
||||
attachment.url = url;
|
||||
}
|
||||
item.attachments.push(attachment);
|
||||
|
||||
item.complete();
|
||||
}
|
||||
|
||||
// just so we get months on non-Arabic locales
|
||||
function arabicToEnglishDate(date) {
|
||||
return date
|
||||
.replace('يناير', 'January')
|
||||
.replace('فبراير', 'February')
|
||||
.replace('مارس', 'March')
|
||||
.replace('أبريل', 'April')
|
||||
.replace('إبريل', 'April')
|
||||
.replace('مايو', 'May')
|
||||
.replace('يونيو', 'June')
|
||||
.replace('يونية', 'June')
|
||||
.replace('يوليو', 'July')
|
||||
.replace('يوليو', 'July')
|
||||
.replace('أغسطس', 'August')
|
||||
.replace('سبتمبر', 'September')
|
||||
.replace('أكتوبر', 'October')
|
||||
.replace('نوفمبر', 'November')
|
||||
.replace('ديسمبر', 'December');
|
||||
}
|
||||
|
||||
/** BEGIN TEST CASES **/
|
||||
var testCases = [
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://archive.alsharekh.org/Articles/290/20647/469598",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "magazineArticle",
|
||||
"title": "الخط العربي: فلسفة التأصيل الجمالي والتفريع الفني",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "بركات محمد",
|
||||
"lastName": "مراد",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2004-04-01",
|
||||
"issue": "11",
|
||||
"libraryCatalog": "Alsharekh",
|
||||
"publicationTitle": "حروف عربية",
|
||||
"shortTitle": "الخط العربي",
|
||||
"url": "https://archive.alsharekh.org/Articles/290/20647/469598",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://archive.alsharekh.org/Articles/312/21129/479105",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "magazineArticle",
|
||||
"title": "الرحالة والباحثون الروس في تاريخ الجزيرة العربية وآثارها \"دراسة تقويمية\"",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "عبد الرحمن الطيب",
|
||||
"lastName": "الأنصاري",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2005-01-01",
|
||||
"issue": "11",
|
||||
"libraryCatalog": "Alsharekh",
|
||||
"publicationTitle": "أدوماتو",
|
||||
"url": "https://archive.alsharekh.org/Articles/312/21129/479105",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://archive.alsharekh.org/Articles/174/16356/368236",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "magazineArticle",
|
||||
"title": "أسلوب النقض في كتابات الرحالة الأوربيين",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "حسن",
|
||||
"lastName": "غزالة",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2005-06-01",
|
||||
"issue": "20",
|
||||
"libraryCatalog": "Alsharekh",
|
||||
"publicationTitle": "جذور",
|
||||
"url": "https://archive.alsharekh.org/Articles/174/16356/368236",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://archive.alsharekh.org/contents/174/19785",
|
||||
"defer": true,
|
||||
"items": "multiple"
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://archive.alsharekh.org/AuthorArticles/124",
|
||||
"items": "multiple"
|
||||
}
|
||||
]
|
||||
/** END TEST CASES **/
|
||||
Reference in New Issue
Block a user