-
Notifications
You must be signed in to change notification settings - Fork 1
/
petle_linie_ztm.js
executable file
·163 lines (128 loc) · 4.05 KB
/
petle_linie_ztm.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
#!/usr/bin/env node
var fs = require('fs'),
bot = require('nodemw'),
client = new bot('config.js');
var SUMMARY = 'Zaktualizowano dane o liniach ZTM',
SKIP = '<!-- pyrabot skip -->';
// odczytaj bazę pętli
var db = JSON.parse(fs.readFileSync('db/ztm-linie.json'));
function updateLine(pageTitle) {
var page = {title: pageTitle};
var line = page.title.substring(20), // usuń prefix "Linia tramwajowa/autobusowa nr "
stops = db[line] && db[line].petle,
rozklad = (db[line] && db[line].rozklad) || `https://www.ztm.poznan.pl/pl/rozklad-jazdy/${line}`,
przystanki = db[line] && db[line].przystanki;;
console.log("\n" + page.title + ' (#' + line + ')');
if (typeof stops === 'undefined' || stops.length === 0) {
console.log('>>> brak danych!');
return;
}
if (line == '31' || line == '32') {
return;
}
// linie autobusowa z jedną pętlą (62, 89, 94, 96, ...)
if (stops.length === 1) {
stops[1] = stops[0];
}
console.log(JSON.stringify(db[line]));
console.log(stops);
console.log('Przystanków: ' + przystanki);
client.getArticle(page.title, function(err, content) {
if (err) {
console.log('Failed to get the content of ' + page.title);
throw err;
}
if (content.indexOf('|historyczna=tak') > -1) {
client.log(page.title + ': linia historyczna - pomijam');
return;
}
if (content.indexOf(SKIP) > -1) {
client.log(page.title + ' - skip!');
return;
}
var orig = content;
// aktualizuj infobox
content = content.replace(/\|pętla1\s?=[^|]+/, "|pętla1=" + stops[0] + "\n");
content = content.replace(/\|pętla2\s?=[^|]+/, "|pętla2=" + stops[1] + "\n");
/**
if (przystanki > 0) {
// dodaj parametr do wukitekstu
if (content.indexOf('|przystanki') < 0) {
content = content.replace(/\|dlugosc=/, '|przystanki=\n|dlugosc=');
}
content = content.replace(/\|przystanki\s?=[^|]+/, "|przystanki=" + przystanki + "\n");
}
**/
if (rozklad) {
// dodaj parametr do wukitekstu
if (content.indexOf('|rozkład') < 0) {
content = content.replace(/\|przystanki=/, '|rozkład=\n|przystanki=');
}
content = content.replace(/\|rozkład\s?=[^|]+/, "|rozkład=" + rozklad + "\n");
}
// kolory
if (content.indexOf('|kolor1') < 0) {
content = content.replace(/\|rozkład=/, '|kolor1=\n|kolor2=\n|rozkład=');
}
content = content.replace(/\|kolor1\s?=[^|]+/, "|kolor1=" + db[line]['kolor1'] + "\n");
content = content.replace(/\|kolor2\s?=[^|]+/, "|kolor2=" + db[line]['kolor2'] + "\n");
// usuń stare parametry
// |przejazd=82
// |strefy=A
content = content.
replace(/\|przejazd=\d+\n/, '').
replace(/\|strefy=[ABC, ]+\n/, '');
//console.log('\n\n================================\n' + page.title + '\n================================');
//console.log(content); return;
if (content === orig) {
console.log('No diff for ' + page.title);
return;
}
console.log(client.diff(orig, content));
// zapisz zmiany
var comment = stops[0] + ' - ' + stops[1];
client.edit(page.title, content, comment, function(err, data) {
if (err) {
console.error('Error: ' + page.title);
console.error(err);
return;
}
console.log('\n\n> ' + page.title + ' zaktualizowana!');
});
});
}
client.logIn(function(err) {
if (err) {
console.error('Failed to log in: ' + err);
throw err;
}
/**
// aktualizuj Moduł:Przystanki-linie
var lua = fs.readFileSync('db/ztm-stops.lua').toString();
client.edit('Module:Przystanki-linie', lua, 'Aktualizacja listy przystanków', function(err, data) {
if (err) {
console.error('Error: Module:Przystanki-linie');
console.error(err);
return;
}
console.log('\n\n> Moduł:Przystanki-linie zaktualizowany!');
/**/
client.getPagesByPrefix('Linia tramwajowa nr', function(err, pages) {
pages && pages.forEach(function(page) {
if (page.ns != 0) {
return;
}
updateLine(page.title);
});
});
/**/
client.getPagesByPrefix('Linia autobusowa nr', function(err, pages) {
pages && pages.forEach(function(page) {
if (page.ns != 0) {
return;
}
updateLine(page.title);
});
});
//});
});