-
Notifications
You must be signed in to change notification settings - Fork 2
/
Bali.py
executable file
·346 lines (304 loc) · 15.1 KB
/
Bali.py
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
342
343
344
345
346
#!/usr/bin/python
# -*- coding: utf-8 -*-
# MIT License
# Copyright (C) 2013-2014 sitic
import pywikibot
import mwparserfromhell
import re
import dateutil.parser as dateparser
import dateutil.relativedelta as datedelta
import datetime
import locale
import redis
redisServer = 'tools-redis'
redisPort = 6379
redisDB = 9
# openssl rand -base64 30
redSetMain = 'bceL8omhRhUIkx4KhGWPC6TLmq5IixQD7o5BId3x'
adtPageTitle = u'Wikipedia:Hauptseite/Artikel des Tages/{dayName}'
chronPageTitle = u'Wikipedia:Hauptseite/Artikel des Tages/Chronologie {year}'
editComment = u'Bot: heutiger AdT: [[{adt}]]{erneut}'
templateComment = u'Bot: dieser Artikel ist heute [[WP:AdT|Artikel des Tages]]'
verwaltungTitle1 = u'Wikipedia:Hauptseite/Artikel des Tages/Verwaltung'
verwaltungTitle2 = u'Wikipedia:Hauptseite/Artikel des Tages/Verwaltung/Lesenswerte Artikel' # NOQA
talkPageHeading = u'\n\n== Fehler beim automatischen Eintragen des heutigen Adt ({date}) ==\n' # NOQA
talkPageErrorMsgDay = talkPageHeading + (u'<small>Dies ist '
u'eine automatisch erstellte Fehlermeldung eines [[WP:Bots|Bots]].</small>\n\nDer Eintrag:\n*' # NOQA
u'{line}\nenthält das aktuelle Tagesdatum, obwohl der heutige AdT [[{adt}]] ist. Der Fehler wurde ' # NOQA
u'\'\'nicht\'\' berichtigt, bitte überprüfen. --~~~~')
talkPageErrorMsgTime = talkPageHeading + (u'<small>Dies ist '
u'eine automatisch erstellte Fehlermeldung eines [[WP:Bots|Bots]].</small>\n\nDer Eintrag:\n*' # NOQA
u'{line}\ndes heutigen AdT enthält ein Datum, das nicht das heutige ist, aber höchstens zwei Jahre ' # NOQA
u'zurückliegt. Der Fehler wurde \'\'nicht\'\' berichtigt, bitte überprüfen (auch die Chronologie). --~~~~') # NOQA
talkPageErrorNotFound = talkPageHeading + (u'<small>Dies ist '
u'eine automatisch erstellte Fehlermeldung eines [[WP:Bots|Bots]].</small>\n\nIch konnte den heutigen AdT ' # NOQA
u'[[{adt}]] weder in der [[Wikipedia:Hauptseite/Artikel des Tages/Verwaltung|Verwaltung]] noch in ' # NOQA
u'[[Wikipedia:Hauptseite/Artikel des Tages/Verwaltung/Lesenswerte Artikel|Verwaltung Lesenswerte]] finden. ' # NOQA
u'Bitte überprüfen und ggf. berichtigen. --~~~~')
talkPageErrorComment = (u'neu /* Fehler beim automatischen Eintragen des '
u'heutigen Adt ({date}) */, manuelle Berichtigung '
u'notwendig')
class AdtMain():
def __init__(self):
self.dry = False # debug
self.site = pywikibot.Site()
self.site.login()
self.red = redis.StrictRedis(host=redisServer, port=redisPort,
db=redisDB)
locale.setlocale(locale.LC_ALL, 'de_DE.utf8')
self.today = datetime.date.today()
self.dayName = self.today.strftime('%A').decode('utf-8')
self.monthName = self.today.strftime('%B').decode('utf-8')
self.year = self.today.year
# 1.12.2013
self.adtDate = self.today.strftime('%d.%m.%Y').decode('utf-8')
# 1. Dezember 2013
self.snapDate = self.today.strftime('%-d. %B %Y').decode('utf-8')
self.adtErneut = None
self.adtTitle = None
self.get_adt()
def run(self):
pywikibot.output(u'\n\ninit complete: ' +
(datetime.datetime.now()
.strftime('%d. %B %Y, %H:%M:%S')).decode('utf-8'))
if self.adtTitle is not None:
pywikibot.output(u'Heutiger AdT: ' + self.adtTitle)
try:
self.addto_verwaltung()
except Exception as inst:
pywikibot.output(u'ERROR: ' + str(type(inst)))
pywikibot.output(inst)
try:
self.addto_chron()
except Exception as inst:
pywikibot.output(u'ERROR: ' + str(type(inst)))
pywikibot.output(inst)
try:
self.add_template()
except Exception as inst:
pywikibot.output(u'ERROR: ' + str(type(inst)))
pywikibot.output(inst)
# self.cleanup_templates()
# Purge yesterdays AdT disc page
yesterday = self.today - datedelta.relativedelta(days=1)
self.get_adt(yesterday)
if self.adtTitle is not None:
pywikibot.output(u'Purge Disc. von ' + self.adtTitle)
page = pywikibot.Page(self.site, self.adtTitle, ns=1)
page.purge()
else:
pywikibot.error(u'Konnte heutigen AdT nicht finden!')
def get_adt(self, date=None):
if date is None:
date = self.today
dayName = date.strftime('%A').decode('utf-8')
title = adtPageTitle.format(dayName=dayName)
adtPage = pywikibot.Page(self.site, title)
code = mwparserfromhell.parse(adtPage.text)
for template in code.filter_templates():
if template.name.matches((u'AdT-Vorschlag', u'AdT-Vorschlag\n')):
l = re.search(r'\s*(?P<adt>.*)\s*\n?',
unicode(template.get(u'LEMMA').value))
d = re.search(r'\d{1,2}\.\d{1,2}\.\d{2,4}',
unicode(template.get(u'DATUM').value))
if l and dateparser.parse(d.group(),
dayfirst=True).date() == date:
self.adtTitle = l.group('adt').strip()
else:
self.adtTitle = None
return
def check_erneut(self):
adtPage = pywikibot.Page(self.site, self.adtTitle, ns=1)
code = mwparserfromhell.parse(adtPage.text)
self.adtErneut = False
for template in code.filter_templates(recursive=False):
if template.name.matches("War AdT"):
if any(self.snapDate not in p for p in template.params):
self.adtErneut = True
def addto_verwaltung(self):
self.check_erneut()
found = self.__verwaltung(verwaltungTitle1)
if not found:
found = self.__verwaltung(verwaltungTitle2)
if not found:
pywikibot.warning(u'Verwaltung: AdT nicht gefunden!')
page = pywikibot.Page(self.site, verwaltungTitle1)
talkpage = page.toggleTalkPage()
pywikibot.output(talkPageErrorNotFound.format(date=self.adtDate,
adt=self.adtTitle))
if talkPageHeading.format(date=self.adtDate) in talkpage.text:
return
talkpage.text += talkPageErrorNotFound.format(date=self.adtDate,
adt=self.adtTitle)
comment = talkPageErrorComment.format(date=self.adtDate)
if not self.dry:
talkpage.save(comment=comment, botflag=False, minor=False)
def __verwaltung(self, pageTitle): # NOQA
page = pywikibot.Page(self.site, pageTitle)
oldtext = page.text # debug
line_list = page.text.splitlines()
found = False
line_count = -1
for text_line in line_list:
line_count += 1
adt = re.search(r'\[\[(?P<adt>[^\|\]]*)\|?[^\]]*?\]\]', text_line)
if adt and adt.group('adt') == self.adtTitle:
text_line = text_line.replace(u'\'\'\'', u'')
text_line = text_line.replace(u'\'\'', u'')
r = re.findall(r'\d{1,2}\.\d{1,2}\.\d{2,4}', text_line)
if r:
for r_date in r:
date = dateparser.parse(r_date, dayfirst=True).date()
if date == self.today:
found = True
pywikibot.output(u'Verwaltung: AdT Datum war schon'
u' in ' + pageTitle +
u' eingetragen')
break
elif date + datedelta.relativedelta(years=2) > self.today: # NOQA
talkpage = page.toggleTalkPage()
pywikibot.output(talkPageErrorMsgTime
.format(date=self.adtDate,
line=text_line,
adt=self.adtTitle))
if not talkPageHeading.format(date=self.adtDate) in talkpage.text: # NOQA
talkpage.text += talkPageErrorMsgTime.format(
date=self.adtDate, line=text_line)
comment = talkPageErrorComment.format(
date=self.adtDate)
if not self.dry:
talkpage.save(comment=comment,
botflag=False,
minor=False)
if not found:
text_line = text_line.rsplit('</small>', 1)[0]
text_line += u' + ' + self.adtDate + u'</small> -'
else:
text_line = text_line.rsplit(u']]', 1)[0] + u']] <small>' +\
self.adtDate + u'</small> -'
line_list[line_count] = text_line
elif self.adtDate.strip() in text_line.strip():
talkpage = page.toggleTalkPage()
pywikibot.output(talkPageErrorMsgDay.format(date=self.adtDate,
line=text_line,
adt=self.adtTitle))
if not talkPageHeading.format(date=self.adtDate) in talkpage.text: # NOQA
talkpage.text += talkPageErrorMsgDay.format(
date=self.adtDate, line=text_line, adt=self.adtTitle)
comment = talkPageErrorComment.format(date=self.adtDate)
if not self.dry:
talkpage.save(comment=comment, botflag=False,
minor=False)
if page.text != u'\n'.join(line_list):
page.text = u'\n'.join(line_list)
if self.adtErneut:
comment = editComment.format(adt=self.adtTitle,
erneut=u' (erneut)')
else:
comment = editComment.format(adt=self.adtTitle,
erneut=u'')
pywikibot.showDiff(oldtext, page.text) # debug
if not self.dry:
page.save(comment=comment, botflag=False, minor=True)
return True
elif found:
return True
else:
pywikibot.output(u'Verwaltung: AdT nicht in ' +
pageTitle + u' gefunden.')
return False
def addto_chron(self):
title = chronPageTitle.format(year=self.year)
chronPage = pywikibot.Page(self.site, title)
oldtext = chronPage.text # debug
d = re.search(self.adtDate, chronPage.text)
if d:
pywikibot.output(u'Chronologie: AdT wurde schon eingetragen.')
return
r = re.search(r'\n===\s*' + self.monthName + r'\s*' +
unicode(self.year) + r'\s*===\s*\n', chronPage.text)
if not r: # neuer Monatsabschnitt erstellen?
pywikibot.output(u'Chronologie: erstelle neuen Monatsabschnitt')
part = chronPage.text.split(u'===', 1)
part[0] += u'=== ' + self.monthName + u' ' +\
unicode(self.year) + u' '
part[1] = u'\n===' + part[1]
else:
part = chronPage.text.split(u'===\n', 1)
text = part[0] + u'===\n* ' + self.adtDate +\
u' [[' + self.adtTitle + u']]'
if self.adtErneut:
text += u' (erneut)'
comment = editComment.format(adt=self.adtTitle, erneut=u' (erneut)')
else:
comment = editComment.format(adt=self.adtTitle, erneut=u'')
text += u'\n' + part[1]
chronPage.text = text
pywikibot.showDiff(oldtext, text) # debug
if not self.dry:
chronPage.save(comment=comment, botflag=False, minor=False)
def add_template(self):
if not self.adtTitle:
return # silently fail
adtPage = pywikibot.Page(self.site, self.adtTitle, ns=1)
code = mwparserfromhell.parse(adtPage.text)
war_adt_added = False
for template in code.filter_templates(recursive=False):
if template.name.matches("AdT-Vorschlag Hinweis"):
code.remove(template)
pywikibot.output(u'D:AdT: {{AdT-Vorschlag Hinweis}} gefunden,'
u'entfernt')
if template.name.matches("War AdT"):
if not any(self.snapDate in p for p in template.params):
template.add(str(len(template.params)+1), self.snapDate)
pywikibot.output(u'D:AdT: {{War AdT}} '
u'gefunden, füge heute hinzu')
war_adt_added = True
text = unicode(code)
text = text.lstrip(u'\n')
if not war_adt_added:
template = u'{{War AdT|1=' + self.snapDate + u'}}\n'
text = self.__add_templ(text, template)
if adtPage.text != text:
pywikibot.showDiff(adtPage.text, text) # debug
adtPage.text = text
if not self.dry:
adtPage.save(comment=templateComment, botflag=True, minor=True)
def __add_templ(self, text, template):
tmpl1 = u'{{Holocaustleugnung}}'
tmpl2 = u'{{Vorlage:Holocaustleugnung}}'
if text.startswith(tmpl1):
text = tmpl1 + u'\n' + template[:-1] + text[len(tmpl1):]
elif text.startswith(tmpl2):
text = tmpl1 + u'\n' + template[:-1] + text[len(tmpl2):]
else:
text = (template + text)
return text
def cleanup_templates(self):
pywikibot.output(u'\nÜberpürfe redis set ' + unicode(redSetMain))
while True:
title = self.red.spop(redSetMain)
if title is None:
break
page = pywikibot.Page(self.site, title, ns=1)
code = mwparserfromhell.parse(page.text)
for template in code.filter_templates(recursive=False):
if template.name.matches("AdT-Vorschlag Hinweis"):
param_tag = template.get(u'Tag').value
date = dateparser.parse(param_tag, dayfirst=True).date()
if date <= self.today:
code.remove(template)
pywikibot.output(title + u': {{AdT-Vorschlag Hinweis}}'
u' gefunden, entfernt.')
else:
pywikibot.output(title + u': {{AdT-Vorschlag Hinweis}}'
u' gefunden, belassen da für ' +
unicode(date))
if unicode(code) != page.text:
pass # page.save()
if __name__ == "__main__":
try:
runner = AdtMain()
runner.run()
finally:
pywikibot.stopme()