-
Notifications
You must be signed in to change notification settings - Fork 1
/
infoboxer.js
executable file
·82 lines (65 loc) · 1.86 KB
/
infoboxer.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
#!/usr/bin/env node
/**
* Skrypt portujący strony w podanej kategorii do infoboksów
*/
var bot = require('nodemw'),
client = new bot('config.js');
var CATEGORY = 'Pomniki',
TEMPLATE_REGEX = /{{Pomnik|Kategoria:Listy/,
SUMMARY = 'Dodaję infobox do stron w kategorii ' + CATEGORY;
function extractFromWikitext(arg, regexp) {
var match = arg.wikitext.match(regexp);
if (match) {
arg.wikitext = arg.wikitext.replace(match[0], '');
return match.pop();
}
else {
return false;
}
}
client.logIn(function() {
client.getPagesInCategory(CATEGORY, function(err, pages) {
pages.forEach(function(page) {
if (page.ns !== 0) return; // tylko NS_MAIN
client.getArticle(page.title, function(err, content) {
var orig = content,
infobox = [],
params = {};
// infobox już użyty na tej stronie
if (TEMPLATE_REGEX.test(content)) {
return;
}
client.log('> %s', page.title);
// pobierz parametry infoboxa
var arg = {wikitext: content};
var mapa = extractFromWikitext(arg, /<place.*>/),
foto = extractFromWikitext(arg, /\[\[\Plik:([^\]\|]+)[^\n]+/);
// usuń kategorie
content = arg.wikitext;
content = content.replace('[[Kategoria:' + CATEGORY + ']]', '');
// zbuduj wikitekst
params = {
mapa: mapa,
foto: foto,
patron: false,
'odsłonięcie': false,
'projektant': false,
'zniszczenie': false
};
infobox.push('{{Pomnik infobox');
Object.keys(params).forEach(function(key) {
infobox.push('|' + key + ' = ' + (params[key] || ''));
});
infobox.push('}}');
// dodaj infobox
content = infobox.join("\n") + "\n" + content.trim();
// zapisz zmianę
console.log(client.diff(orig, content));
client.edit(page.title, content, SUMMARY, function(err) {
if (err) return;
client.log(page.title + ' zmieniony!');
});
});
});
});
});