Initial Commit
This commit is contained in:
416
translators/Sveriges radio.js
Normal file
416
translators/Sveriges radio.js
Normal file
@@ -0,0 +1,416 @@
|
||||
{
|
||||
"translatorID": "caa8f42c-9dbf-446e-963b-6ee18e3133d2",
|
||||
"label": "Sveriges radio",
|
||||
"creator": "Sebastian Berlin",
|
||||
"target": "^https?://sverigesradio\\.se/(artikel|sok\\?)",
|
||||
"minVersion": "3.0",
|
||||
"maxVersion": "",
|
||||
"priority": 100,
|
||||
"inRepository": true,
|
||||
"translatorType": 4,
|
||||
"browserSupport": "gcsibv",
|
||||
"lastUpdated": "2021-06-11 19:10:14"
|
||||
}
|
||||
|
||||
/*
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
|
||||
Copyright © 2018 Sebastian Berlin
|
||||
|
||||
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('/artikel/')) {
|
||||
return "newspaperArticle";
|
||||
}
|
||||
else if (url.includes('/sok?') && getSearchResults(doc, true)) {
|
||||
return "multiple";
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
function getSearchResults(doc, checkOnly) {
|
||||
var items = {};
|
||||
var found = false;
|
||||
var rows = doc.querySelectorAll('a.search-item');
|
||||
for (let i = 0; i < rows.length; i++) {
|
||||
let href = rows[i].href;
|
||||
let title = ZU.trimInternal(rows[i].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) {
|
||||
var translator = Zotero.loadTranslator('web');
|
||||
// Embedded Metadata
|
||||
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
|
||||
|
||||
translator.setHandler('itemDone', function (obj, item) {
|
||||
item.publicationTitle = "Sveriges Radio";
|
||||
|
||||
item.creators = [];
|
||||
var nameNodes = ZU.xpath(doc, '//p[@class="byline"]/text()');
|
||||
for (let node of nameNodes) {
|
||||
// Take the first two strings of non-spaces as the names. The byline
|
||||
// can vary in format, including:
|
||||
// First Last
|
||||
// First Last SecondLast
|
||||
// First Last, City
|
||||
// First Last City, Country
|
||||
var nameString = node.wholeText.split(" ", 2).join(" ");
|
||||
var author = ZU.cleanAuthor(nameString, "author");
|
||||
item.creators.push(author);
|
||||
}
|
||||
if (item.creators.length === 1 && item.creators[0].lastName === "Ekot") {
|
||||
// Special case when only signed as "Ekot", i.e. no person
|
||||
// specified as author.
|
||||
item.creators[0].fieldMode = true;
|
||||
item.creators[0].firstName = undefined;
|
||||
}
|
||||
|
||||
// The title from the meta is in the format:
|
||||
// Australierna säger ja till samkönade äktenskap - Nyheter (Ekot)
|
||||
var titleString = attr(doc, 'meta[name="twitter:title"]', "content");
|
||||
var titleParts = titleString.split(" - ");
|
||||
item.title = titleParts[0];
|
||||
item.section = titleParts[1];
|
||||
|
||||
var dateString = attr(doc, '.publication-metadata time', 'datetime');
|
||||
item.date = dateString;
|
||||
|
||||
item.tags = [];
|
||||
|
||||
item.complete();
|
||||
});
|
||||
|
||||
translator.getTranslatorObject(function (trans) {
|
||||
trans.itemType = "newspaperArticle";
|
||||
trans.addCustomFields({
|
||||
'twitter:description': 'abstractNote'
|
||||
});
|
||||
trans.doWeb(doc, url);
|
||||
});
|
||||
}
|
||||
|
||||
/** BEGIN TEST CASES **/
|
||||
var testCases = [
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6821850",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Australierna säger ja till samkönade äktenskap",
|
||||
"creators": [
|
||||
{
|
||||
"lastName": "Ekot",
|
||||
"creatorType": "author",
|
||||
"fieldMode": true
|
||||
}
|
||||
],
|
||||
"date": "2017-11-15 00:11:00Z",
|
||||
"abstractNote": "I en rådgivande postomröstning i Australien svarade 61,6 procent av medborgarna att de ville se en lag som godkänner samkönade äktenskap.",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "Nyheter (Ekot)",
|
||||
"url": "https://sverigesradio.se/artikel/6821850",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6865752",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Här duschas de äldre av en robot",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "Emil",
|
||||
"lastName": "Hellerud",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2018-02-20 06:06:00Z",
|
||||
"abstractNote": "I Karlstad har äldreomsorgen börjat använda en duschrobot.",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "Nyheter (Ekot)",
|
||||
"url": "https://sverigesradio.se/artikel/6865752",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6891473",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Stim skriver internationellt avtal med Facebook",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "Emil",
|
||||
"lastName": "Salmaso",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2018-02-21 16:26:00Z",
|
||||
"abstractNote": "Musikskaparnas representantorganisation Stim har skrivit ett internationellt avtal med Facebook.",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "Kulturnytt i P1",
|
||||
"url": "https://sverigesradio.se/artikel/6891473",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6892065",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "HD: Nawaz Sharif får inte leda sitt parti i Pakistan",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "Margita",
|
||||
"lastName": "Boström",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2018-02-22 11:44:00Z",
|
||||
"abstractNote": "Högsta domstolen i Pakistan har slagit fast att landets avsatte premiärminister Nawaz Sharif inte längre får leda det parti han själv grundat.",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "Nyheter (Ekot)",
|
||||
"shortTitle": "HD",
|
||||
"url": "https://sverigesradio.se/artikel/6892065",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6891577",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Alarmerande självmordssiffror bland ensamkommande unga",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "Åsa",
|
||||
"lastName": "Swee",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2018-02-22 06:21:00Z",
|
||||
"abstractNote": "Förra året begick 12 ensamkommande barn och ungdomar självmord i Sverige. Ett av fallen skedde i Jämtland.",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "P4 Jämtland",
|
||||
"url": "https://sverigesradio.se/artikel/6891577",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6892091",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Facebook låg nere – #facebookdown trendar",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "Karin",
|
||||
"lastName": "Ingströmer",
|
||||
"creatorType": "author"
|
||||
},
|
||||
{
|
||||
"firstName": "Estrid",
|
||||
"lastName": "Wagersten",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2018-02-22 12:09:00Z",
|
||||
"abstractNote": "Facebook och Instagram fick problem strax före 12. Minuter senare fungerade allt som vanligt för de flesta användare. Under tiden hade #facebookdown använts ...",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "P4 Halland",
|
||||
"url": "https://sverigesradio.se/artikel/6892091",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/6894423",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Siberian 'Beast from the East' keeps Swedish kids inside",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "Richard",
|
||||
"lastName": "Orange",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2018-02-26 13:31:00Z",
|
||||
"abstractNote": "A Siberian cold front has brought Sweden unusually cold temperatures for late February. It was -42C when Kristina Lindqvist left home for her job at the ...",
|
||||
"language": "en",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "Radio Sweden",
|
||||
"url": "https://sverigesradio.se/artikel/6894423",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/sok?query=choklad",
|
||||
"defer": true,
|
||||
"items": "multiple"
|
||||
},
|
||||
{
|
||||
"type": "web",
|
||||
"url": "https://sverigesradio.se/artikel/har-gor-den-svenska-extrabubblan-sin-forsta-traning",
|
||||
"items": [
|
||||
{
|
||||
"itemType": "newspaperArticle",
|
||||
"title": "Här gör den svenska ”extrabubblan” sin första träning",
|
||||
"creators": [
|
||||
{
|
||||
"firstName": "",
|
||||
"lastName": "Radiosporten",
|
||||
"creatorType": "author"
|
||||
}
|
||||
],
|
||||
"date": "2021-06-11 20:03:00Z",
|
||||
"abstractNote": "Under fredagen genomfördes den första träningen för de sex spelare som blixtinkallats till fotbollslandslagets extrabubbla. De som ska vara redo att skrivas ...",
|
||||
"language": "sv",
|
||||
"libraryCatalog": "sverigesradio.se",
|
||||
"publicationTitle": "Sveriges Radio",
|
||||
"section": "Radiosporten",
|
||||
"url": "https://sverigesradio.se/artikel/har-gor-den-svenska-extrabubblan-sin-forsta-traning",
|
||||
"attachments": [
|
||||
{
|
||||
"title": "Snapshot",
|
||||
"mimeType": "text/html"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"notes": [],
|
||||
"seeAlso": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
/** END TEST CASES **/
|
||||
Reference in New Issue
Block a user