-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwikipedia.js
More file actions
276 lines (251 loc) · 9.51 KB
/
wikipedia.js
File metadata and controls
276 lines (251 loc) · 9.51 KB
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
const axios = require('axios');
const cheerio = require('cheerio');
const { getImageFromPage } = require('./wikimedia-commons');
module.exports = {
findWikidataItemFromWikipedia,
getWikipediaData,
getImageInfoFromWikipedia,
};
async function findWikidataItemFromWikipedia(language, topic) {
const requestConfig = {
baseURL: "https://" + language + ".wikipedia.org/w/api.php",
method: "get",
responseType: "json",
headers: {
'Api-User-Agent': process.env.WIKIDOCUMENTARIES_API_USER_AGENT
},
params: {
action: "query",
prop: "pageprops",
ppprop: "wikibase_item",
redirects: "resolve",
titles: topic,
format: "json"
}
};
const response = await axios.request(requestConfig);
if (response.data.query)
{
const key = Object.keys(response.data.query.pages)[0];
const page = response.data.query.pages[key];
if (page["pageprops"] && page["pageprops"]["wikibase_item"]) {
return page["pageprops"]["wikibase_item"];
}
}
return null;
}
// input the title of an image, returns the first image item with metadata in the api results
async function getImageInfoFromWikipedia(language, titles) {
titleString = decodeURIComponent(titles.join("|"));
var requestConfig = {
baseURL: "https://" + language + ".wikipedia.org/w/api.php",
method: "get",
responseType: "json",
headers: {
'Api-User-Agent': process.env.WIKIDOCUMENTARIES_API_USER_AGENT
},
params: {
action: "query",
prop: "imageinfo",
titles: titleString,
format: "json",
iiprop: "url|extmetadata",
iiextmetadatalanguage: language,
}
};
const response = await axios.request(requestConfig);
if (response.data) {
let titleChanges = response.data.query.normalized;
const titleChangesMap = new Map();
for (var titleChange of titleChanges){
titleChangesMap.set(titleChange.to, titleChange.from);
}
const keys = [Object.keys(response.data.query.pages)][0];
const pages = response.data.query.pages;
const orderedPages = Array(titles.length);
const decodeTitle = [];
for (var title of titles){
title = decodeURIComponent(title);
decodeTitle.push(title);
}
for (var key of keys){
let currImgTitle = pages[key]["title"];
if (titleChangesMap.has(currImgTitle)){
currImgTitle = titleChangesMap.get(currImgTitle);
}
let index = decodeTitle.indexOf(currImgTitle);
orderedPages[index] = pages[key];
}
const images = [];
for (var page of orderedPages){
images.push(getImageFromPage(page, 'Wikipedia'));
}
return images;
}
return null;
}
async function getWikipediaData(language, topic) {
const encodedLanguage = language && encodeURIComponent(language);
const encodedTopic = topic && encodeURIComponent(topic);
const wikipediaSummaryPromise = function() {
const requestConfig = {
baseURL: "https://" + language + ".wikipedia.org/api/rest_v1/",
url: "/page/summary/" + encodedTopic,
method: "get",
responseType: "json",
headers: {
"Api-User-Agent": process.env.WIKIDOCUMENTARIES_API_USER_AGENT
},
};
if (!encodedTopic || !language) return "";
else return axios.request(requestConfig);
};
const wikipediaHTMLPromise = function() {
const requestConfig = {
baseURL: "https://" + language + ".wikipedia.org/api/rest_v1/",
url: "/page/mobile-sections/" + encodedTopic,
method: "get",
responseType: "json",
headers: {
"Api-User-Agent": process.env.WIKIDOCUMENTARIES_API_USER_AGENT
},
};
if (!encodedTopic || !language) return "";
else return axios.request(requestConfig);
};
const [wikipediaSummaryResponse, wikipediaHTMLResponse]
= await axios.all([wikipediaSummaryPromise(), wikipediaHTMLPromise()]);
if (wikipediaHTMLResponse.data == undefined ) {
// No wikipedia article
excerptHTML="";
remainingHTML=null;
}
else {
var origHTML = wikipediaHTMLResponse.data.lead.sections[0].text;
var remainingHTML = null;
if (wikipediaHTMLResponse.data.lead.disambiguation != undefined && wikipediaHTMLResponse.data.lead.disambiguation == true) {
wikipediaHTMLResponse.data.remaining.sections.forEach(section => {
origHTML += section.text;
});
}
else {
var remainingOrigHTML = "";
wikipediaHTMLResponse.data.remaining.sections.forEach(section => {
if (section.isReferenceSection == undefined) {
var sectionHeaderStartTag = "";
var sectionHeaderEndTag = "";
switch(section.toclevel) {
case 1:
sectionHeaderStartTag = "<h2 class='h2'>";
sectionHeaderEndTag = "</h2>";
break;
case 2:
sectionHeaderStartTag = "<h3 class='h3'>";
sectionHeaderEndTag = "</h3>";
break;
case 3:
sectionHeaderStartTag = "<h4 class='h4'>";
sectionHeaderEndTag = "</h4>";
break;
case 4:
sectionHeaderStartTag = "<h5 class='h5'>";
sectionHeaderEndTag = "</h5>";
break;
}
remainingOrigHTML += sectionHeaderStartTag + section.line + sectionHeaderEndTag;
remainingOrigHTML += section.text;
}
});
/* if (remainingOrigHTML.length > 3000) { */ // Small count of HTML should be with the leading section
remainingHTML = convertToWikidocumentariesHTML(remainingOrigHTML, topic, language);
/* }
else {
origHTML += remainingOrigHTML;
} */
}
var excerptHTML = convertToWikidocumentariesHTML(origHTML, topic, language);
}
return {
wikipedia: wikipediaSummaryResponse.data,
excerptHTML,
remainingHTML,
};
};
// Adapt Wikipedia's HTML to our needs
const convertToWikidocumentariesHTML = function(origHTML, topic, language) {
const $ = cheerio.load(origHTML);
// Convert links appropriately
$("a").each(function() {
const href = $(this).attr('href');
if (!href) return;
if (href.startsWith('/wiki')) {
// A link to another page on the wiki
const isFileLink = $(this).hasClass('mw-file-description');
if (isFileLink || href.startsWith('/wiki/Special:')) {
// Point special pages to the original wiki
$(this).attr('href', 'https://' + language + '.wikipedia.org' + href);
$(this).attr('target', '_blank');
$(this).attr('class', 'extlink;');
} else {
// Point normal pages internally
var noHashPart = href.split('#')[0];
var internalPage = noHashPart.replace("/wiki/", "/wikipedia/" + language + "/");
$(this).attr('href', internalPage + "?language=" + language);
}
}
else if (href.indexOf('#cite_') == 0) {
$(this).attr('href', 'https://' + language + '.wikipedia.org/wiki/' + topic + href);
$(this).attr('target', '_blank');
$(this).attr('class', 'extlink;');
}
else {
//https://fi.wikipedia.org/wiki/Vapaamuurarin_hauta#cite_note-1
$(this).attr('target', '_blank');
$(this).attr('class', 'extlink;');
//$(this).replaceWith($(this).html());
}
});
/* $("table").each(function(index) {
$(this).remove();
});
$("figure").each(function(index) {
$(this).remove();
});
$("figure-inline").each(function(index) {
$(this).remove();
});
$("sup").each(function(index) {
$(this).remove();
});
$("div").each(function(index) {
var div_class = $(this).attr('class');
if (div_class == undefined || div_class != 'noprint') {
$(this).remove();
}
}); */
$("table").each(function(index) { //Remove English Wikipedia infobox
var div_class = $(this).attr('class');
if (div_class != undefined && div_class.indexOf('infobox') != -1) {
$(this).remove();
}
});
$("table").each(function(index) { //Remove warning boxes
var div_class = $(this).attr('class');
if (div_class != undefined && div_class.indexOf('ambox') != -1) {
$(this).remove();
}
});
$("div").each(function(index) { //Remove French Wikipedia infobox
var div_class = $(this).attr('class');
if (div_class == undefined || div_class != 'infobox_v3') {
$(this).remove();
}
});
$("ul").each(function(index) {
var div_class = $(this).attr('class');
if (div_class != undefined && div_class.indexOf('gallery') != -1) {
$(this).remove();
}
});
return $.html();
}