-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathNPR.js
341 lines (314 loc) · 9.7 KB
/
NPR.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
{
"translatorID": "bc2fbf38-3061-4335-8644-69ce68580b20",
"label": "NPR",
"creator": "Abe Jellinek",
"target": "^https?://www\\.npr\\.org/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-08-13 21:08:15"
}
/*
***** 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 *****
*/
function detectWeb(doc, url) {
// NPR assumes that only a crawler (which always loads pages fresh rather
// than letting the SPA framework fake a reload) would want JSON-LD, so we
// can't use that as our only check, and we'll have to manually reload the
// page to get it in doWeb.
// The JSON-LD also sticks around when you navigate to a non-story page,
// which is odd, so we can't use it as a test for a story page at all!
if (doc.querySelector('#storytext')) {
if (doc.querySelector('h1.transcript a')) {
if (attr(doc, '.slug a', 'href').includes('npr.org/podcasts/')) {
return "podcast";
}
else {
return "radioBroadcast";
}
}
else if (doc.querySelector('#primaryaudio')) {
return "multiple";
}
else {
return "newspaperArticle";
}
}
else if (/^https?:\/\/www\.npr\.org\/.+/.test(url)) {
// wait for SPA reload
Z.monitorDOMChanges(doc.querySelector('#loading-bar'));
}
// we can't really do search results, because each result might be a
// multiple and there's no way to tell from the search page
return false;
}
function doWeb(doc, url) {
if (doc.querySelector('script[type="application/ld+json"]')) {
scrape(doc, url);
}
else {
// See comment in detectWeb. Have to add a # to ensure that
// processDocuments doesn't use the already-loaded page.
ZU.processDocuments(url + '#', scrape);
}
}
function scrape(doc, url) {
let detected = detectWeb(doc, url);
switch (detected) {
case 'multiple': {
// we're detecting "multiple" because we have audio and text,
// so we can just hardcode the options here
let options = { text: 'Text', audio: 'Audio' };
Zotero.selectItems(options, function (items) {
if (items.text) {
scrapeText(doc, url);
}
if (items.audio) {
scrapeAudio(doc, url);
}
});
break; }
case 'newspaperArticle':
scrapeText(doc, url);
break;
case 'radioBroadcast':
case 'podcast':
scrapeAudio(doc, url);
break;
}
}
function scrapeText(doc, _url) {
let item = new Zotero.Item('newspaperArticle');
let json = JSON.parse(text(doc, 'script[type="application/ld+json"]'));
item.title = json.headline;
item.abstractNote = ZU.cleanTags(json.description);
item.publicationTitle = 'NPR';
item.date = json.dateModified || json.datePublished;
item.section = text(doc, 'h3.slug');
item.language = 'en';
item.url = json.mainEntityOfPage['@id'];
if (json.author) {
for (let name of json.author.name) {
item.creators.push(ZU.cleanAuthor(name, 'author'));
}
}
item.attachments.push({
title: 'Snapshot',
document: doc
});
item.complete();
}
function scrapeAudio(doc, _url) {
// first we need to figure out whether we're looking at a radio broadcast
// or a podcast
let itemType;
if (doc.querySelector('h1.transcript a')) {
// if we're on a transcript page, the slug link will include /podcasts/
// if the show in question is a podcast
if (attr(doc, '.slug a', 'href').includes('npr.org/podcasts/')) {
itemType = 'podcast';
}
else {
itemType = 'radioBroadcast';
}
}
else if (doc.querySelector('.program-block a')) {
// if we're on an article page, there'll be a .program-block link iff
// the show aired on a radio program
itemType = 'radioBroadcast';
}
else {
itemType = 'podcast';
}
let item = new Zotero.Item(itemType);
let json = JSON.parse(text(doc, 'script[type="application/ld+json"]'));
item.title = text(doc, '#primaryaudio .audio-module-title') || json.headline;
item.abstractNote = ZU.cleanTags(json.description);
// strip the time from the date, since we have no way of knowing exactly
// what time it aired (and the time on the article is based on when the
// transcript was published)
let date = (json.dateModified || json.datePublished).replace(/T.+$/, '');
if (itemType == 'radioBroadcast') {
item.date = date;
item.programTitle = text(doc, '.program-block a');
if (!item.programTitle) {
// transcript pages don't have a .program-block, so we'll use a
// shakier approach based on internal audio player metadata
try {
item.programTitle = JSON.parse(
attr(doc, 'div[data-audio]', 'data-audio')
).program;
}
catch (_) {}
}
item.network = 'NPR';
}
else {
// podcasts have no date field
item.extra = `issued: ${date}\n`;
item.seriesTitle = text(doc, 'h3.slug');
item.publisher = 'NPR'; // no good analogue for this, so let it go into extra
}
item.runningTime = attr(doc, '#primaryaudio .audio-module-duration', 'datetime')
.replace(/P(\d+)H,(\d+)M,(\d+)S/, '$1:$2:$3')
.replace(/P(\d+)M,(\d+)S/, '$1:$2');
item.language = 'en';
item.url = json.mainEntityOfPage['@id'];
if (json.author) {
for (let name of json.author.name) {
let creatorType = itemType == 'radioBroadcast' ? 'director' : 'podcaster';
item.creators.push(ZU.cleanAuthor(name, creatorType));
}
}
item.attachments.push({
title: 'Audio',
mimeType: 'audio/mpeg',
url: attr(doc, '#primaryaudio .audio-tool-download > a', 'href')
});
item.attachments.push({
title: 'Transcript',
mimeType: 'text/html',
url: attr(doc, '#primaryaudio .audio-tool-transcript > a', 'href'),
snapshot: true
});
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.npr.org/2020/07/09/889562040/supreme-court-rules-that-about-half-of-oklahoma-is-indian-land",
"items": [
{
"itemType": "newspaperArticle",
"title": "Supreme Court Rules That About Half Of Oklahoma Is Native American Land",
"creators": [
{
"firstName": "Laurel",
"lastName": "Wamsley",
"creatorType": "author"
}
],
"date": "2020-07-09T19:17:00-04:00",
"abstractNote": "\"Today we are asked whether the land these treaties promised remains an Indian reservation. ... Because Congress has not said otherwise, we hold the government to its word,\" wrote Justice Gorsuch.",
"language": "en",
"libraryCatalog": "NPR",
"publicationTitle": "NPR",
"section": "Law",
"url": "https://www.npr.org/2020/07/09/889562040/supreme-court-rules-that-about-half-of-oklahoma-is-indian-land",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.npr.org/2021/07/13/1011376403/its-summer-and-that-means-the-mysterious-return-of-glacier-ice-worms",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.npr.org/transcripts/1011376403",
"items": [
{
"itemType": "radioBroadcast",
"title": "It's Summer, And That Means The Mysterious Return Of Glacier Ice Worms",
"creators": [
{
"firstName": "Nell",
"lastName": "Greenfieldboyce",
"creatorType": "director"
}
],
"date": "2021-07-13",
"abstractNote": "On mountaintop glaciers of Alaska, Washington and Oregon, billions of tiny black worms are tunneling upward to the barren, icy surface. What lures them, and how do they survive the frozen depths?",
"language": "en",
"libraryCatalog": "NPR",
"network": "NPR",
"programTitle": "Morning Edition",
"runningTime": "6:38",
"url": "https://www.npr.org/2021/07/13/1011376403/its-summer-and-that-means-the-mysterious-return-of-glacier-ice-worms",
"attachments": [
{
"title": "Audio",
"mimeType": "audio/mpeg"
},
{
"title": "Transcript",
"mimeType": "text/html",
"snapshot": true
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.npr.org/transcripts/1011289394",
"items": [
{
"itemType": "podcast",
"title": "Égalité, Fraternité, And 'Libertie'",
"creators": [
{
"firstName": "Gene",
"lastName": "Demby",
"creatorType": "podcaster"
},
{
"firstName": "Shereen Marisol",
"lastName": "Meraji",
"creatorType": "podcaster"
}
],
"abstractNote": "This month on Code Switch, we're talking about books — new and old — that have deepened our understandings of what it means to be free. First up, a conversation with author Kaitlyn Greenidge about her new novel, Libertie, which tells the story of a young woman pushing back against her mother's expectations of what her life should look like.",
"extra": "issued: 2021-07-07",
"language": "en",
"runningTime": "23:33",
"seriesTitle": "Code Switch",
"url": "https://www.npr.org/2021/06/29/1011289394/egalite-fraternite-and-libertie",
"attachments": [
{
"title": "Audio",
"mimeType": "audio/mpeg"
},
{
"title": "Transcript",
"mimeType": "text/html",
"snapshot": true
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/