-
Notifications
You must be signed in to change notification settings - Fork 524
/
People's Daily Epaper.js
279 lines (264 loc) · 7.29 KB
/
People's Daily Epaper.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
{
"translatorID": "84bd7e84-c61d-4348-8615-3b56d9ebb848",
"label": "People's Daily Epaper",
"creator": "jiaojiaodubai",
"target": "^http://paper\\.people(\\.com)?\\.cn",
"minVersion": "5.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-06-09 13:28:34"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2022 jiaojiaodubai<jiaojiaodubai23@gmail.com>
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 *****
*/
const newspaperMap = {
rmrb: '人民日报',
rmrbhwb: '人民日报海外版',
zgnyb: '中国能源报',
fcyym: '讽刺与幽默',
zgcsb: '中国城市报',
};
const journalMap = {
xwzx: '新闻战线',
rmlt: '人民论坛',
rmzk: '人民周刊',
zgjjzk: '中国经济周刊',
mszk: '民生周刊',
zgby: '中国报业'
};
function detectWeb(doc, url) {
if (doc.querySelector('.article-box')) {
if (Object.keys(newspaperMap).some(key => url.includes(`/${key}/`))) {
return 'newspaperArticle';
}
else if (Object.keys(journalMap).some(key => url.includes(`/${key}/`))) {
return 'journalArticle';
}
}
else if (getSearchResults(doc, true)) {
return 'multiple';
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.news > ul > li > a');
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 Zotero.selectItems(getSearchResults(doc, false));
if (!items) return;
for (let url of Object.keys(items)) {
await scrape(await requestDocument(url));
}
}
else {
await scrape(doc, url);
}
}
async function scrape(doc, url = doc.location.href) {
var newItem = new Z.Item(detectWeb(doc, url));
newItem.title = text(doc, '.article > h3') + text(doc, '.article > h3+h1') + text(doc, '.article > h1+h2');
newItem.shortTitle = text(doc, '.article > h1');
let key = [...Object.keys(newspaperMap), ...Object.keys(journalMap)].find(key => url.includes(`/${key}/`));
newItem.publicationTitle = newspaperMap[key] || journalMap[key];
let pubInfo = innerText(doc, '.sec > .date').replace(/\s/g, '');
newItem.place = '北京';
newItem.date = tryMatch(pubInfo, /(\d+)年(\d+)月(\d+)日/).replace(/(\d+)年(\d+)月(\d+)日/, '$1-$2-$3');
newItem.pages = tryMatch(pubInfo, /第0*([1-9]\d*)版/, 1);
pureText(doc.querySelector('.sec'))
// 预先将二字人名拼接起来
.replace(/□/, '')
.replace(/([^\u4e00-\u9fa5][\u4e00-\u9fa5])\s+([\u4e00-\u9fa5](?:[^\u4e00-\u9fa5]|$))/g, '$1$2')
.split(/\s/)
.filter(creator => !creator.includes('记者'))
.forEach((creator) => {
creator = creator.replace(/(图|文)\|/, '');
creator = ZU.cleanAuthor(creator, 'author');
creator.fieldMode = 1;
newItem.creators.push(creator);
});
newItem.language = 'zh-CN';
newItem.url = url;
newItem.libraryCatalog = '人民日报图文数据库';
newItem.attachments.push({
title: 'Snapshot',
document: doc
});
newItem.complete();
}
function tryMatch(string, pattern, index = 0) {
if (!string) return '';
let match = string.match(pattern);
return (match && match[index])
? match[index]
: '';
}
function pureText(element) {
if (!element) return '';
// Deep copy to avoid affecting the original page.
let elementCopy = element.cloneNode(true);
while (elementCopy.lastElementChild) {
elementCopy.removeChild(elementCopy.lastElementChild);
}
return ZU.trimInternal(elementCopy.innerText);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://paper.people.com.cn/mszk/html/2023-12/18/content_26034010.htm",
"items": [
{
"itemType": "journalArticle",
"title": "生态环境监管不能走过场",
"creators": [
{
"firstName": "",
"lastName": "严碧华",
"creatorType": "author",
"fieldMode": 1
}
],
"date": "2023-12-18",
"language": "zh-CN",
"libraryCatalog": "人民日报图文数据库",
"pages": "1",
"publicationTitle": "民生周刊",
"url": "http://paper.people.com.cn/mszk/html/2023-12/18/content_26034010.htm",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://paper.people.com.cn/rmrb/html/2024-01/07/nw.D110000renmrb_20240107_1-01.htm",
"items": [
{
"itemType": "newspaperArticle",
"title": "辽宁推动产业集群高质量发展",
"creators": [
{
"firstName": "",
"lastName": "刘成友",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "刘佳华",
"creatorType": "author",
"fieldMode": 1
}
],
"date": "2024-01-07",
"language": "zh-CN",
"libraryCatalog": "人民日报图文数据库",
"pages": "1",
"place": "北京",
"publicationTitle": "人民日报",
"url": "http://paper.people.com.cn/rmrb/html/2024-01/07/nw.D110000renmrb_20240107_1-01.htm",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://paper.people.com.cn/zgnyb/html/2024-01/01/node_2222.htm",
"items": "multiple"
},
{
"type": "web",
"url": "http://paper.people.com.cn/zgby/html/2022-01/25/node_2751.htm",
"items": "multiple"
},
{
"type": "web",
"url": "http://paper.people.com.cn/xwzx/html/2021-12/01/content_26016862.htm",
"items": [
{
"itemType": "journalArticle",
"title": "融媒体时代深挖财经报道的主流价值——电视新闻专题《百亿大和解》创作感悟",
"creators": [
{
"firstName": "",
"lastName": "原宝国",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "韩信",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "王兴涛",
"creatorType": "author",
"fieldMode": 1
}
],
"date": "2021-12-01",
"language": "zh-CN",
"libraryCatalog": "人民日报图文数据库",
"pages": "3",
"publicationTitle": "新闻战线",
"shortTitle": "融媒体时代深挖财经报道的主流价值",
"url": "http://paper.people.com.cn/xwzx/html/2021-12/01/content_26016862.htm",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/