{
"translatorID": "455fe24a-f7e8-4546-81d2-ad4f9aa10487",
"label": "The Intercept",
"creator": "czar",
"target": "^https?://(www\\.)?theintercept\\.com",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2018-04-15 16:59:35"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2017 czar
http://en.wikipedia.org/wiki/User_talk:Czar
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 .
***** END LICENSE BLOCK *****
*/
// attr()/text() v2
function attr(docOrElem,selector,attr,index){var elem=index?docOrElem.querySelectorAll(selector).item(index):docOrElem.querySelector(selector);return elem?elem.getAttribute(attr):null;}function text(docOrElem,selector,index){var elem=index?docOrElem.querySelectorAll(selector).item(index):docOrElem.querySelector(selector);return elem?elem.textContent:null;}
function detectWeb(doc, url) {
if (/theintercept\.com\/\d{4}\/\d{2}\/\d{2}\//.test(url)) {
return "blogPost";
} else if (url.includes("/document/")) {
return "document";
} else if (/(theintercept\.com\/search\/\?s=)|(theintercept\.com\/?$)/.test(url) && getSearchResults(doc, true) ) {
return "multiple";
}
}
function scrape(doc, url) {
var item = new Zotero.Item("blogPost");
item.blogTitle = "The Intercept";
item.language = "en-US";
var ldjson = JSON.parse(text(doc,'script[type="application/ld+json"]'));
item.url = ldjson.url;
item.title = ldjson.headline;
item.date = ldjson.dateCreated;
item.abstractNote = text(doc,'meta[name="description"]');
item.attachments.push({
document: doc,
title: "Snapshot"
});
// Authors
if (ldjson.authors.length) {
do {
item.creators.push(ZU.cleanAuthor(ldjson.authors[0], "author"));
ldjson.authors.shift();
}
while (ldjson.authors.length);
}
// Feature articles json omits the feature title
var featureTitle = text(doc,'.Post-feature-title');
if (featureTitle){
item.title = featureTitle.concat(": ", item.title);
}
item.complete();
}
function scrapeDocument(doc, url) {
var item = new Zotero.Item("document");
item.publisher = "The Intercept";
item.language = "en-US";
item.url = url;
item.title = text(doc,'.BasicDocumentDetail-title');
item.date = text(doc,'.BasicDocumentDetail-date');
if (item.date) { // don't perform on empty string
item.date = ZU.strToISO(item.date);
}
// no item.abstractNote: no description given
item.attachments.push({
title: item.title,
mimeType: "application/pdf",
url: attr(doc,'a[class$="-navigation-download"]','href')
});
item.complete();
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.Promo-title, h1.HomeFeature-title');
var links = doc.querySelectorAll('.Promo-link, a.HomeFeature-link');
for (var i=0; i