-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathms-contains.py
executable file
·450 lines (390 loc) · 18 KB
/
ms-contains.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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
#!/usr/bin/python
"""
Call:
python pwb.py masti/ms-contains.py -catr:"Posłowie do Kneset" -outpage:"Wikipedysta:Andrzei111/Izrael/bez Kneset" \
-summary:"Bot uaktualnia tabelę" -text:"{{Kneset" -negative
python pwb.py masti/ms-contains.py -weblink:'isap.sejm.gov.pl' -outpage:"Wikipedysta:mastiBot/isap" \
-summary:"Bot uaktualnia tabelę" -text:"http://isap\.sejm\.gov\.pl/Download\?id=WD[^\s\]\|]*" -ns:0 -regex
python pwb.py masti/ms-contains.py -weblink:'isap.sejm.gov.pl' -outpage:"Wikipedysta:mastiBot/isap" \
-summary:"Bot uaktualnia tabelę" -text:"(?P<result>http://isap\.sejm\.gov\.pl/Download\?id=WD[^\s\]\|]*)" -ns:0 -regex
Use global -simulate option for test purposes. No changes to live wiki
will be done.
The following parameters are supported:
-always The bot won't ask for confirmation when putting a page
-summary: Set the action summary message for the edit.
-replace False delete old text and write the new text
-summary None your own bot summary
-text Test add this text from option. Test is default
-top False append text on top of the page
-outpage Wikipedysta:mastiBot/test default output page
-maxlines 1000 default number of entries per page
-negative False if True mark pages that DO NOT contain search string
-test False switch on test functionality
-regex False use text as regex. has to contain ctaching group (?P<result>)
-as_link False put links as wikilinks
-append False append results to page
-section None section title
-title False check in title not text
-multi False ^ and $ will now match begin and end of each line.
-flags None list of regex flags
-edit False link thru template:edytuj instead of wikilink
-cite False cite search results
-nowiki False put citation in <nowiki> tags
-count False count pages only
-navi False add navigation template
-progress False report progress
-table False present results in a table
-nonempty False show nonempty results only
-talk False check on talk page
-nodisabled False remove disabled parts as per textlib.py
All settings can be made either by giving option with the command line
or with a settings file which is scripts.ini by default. If you don't
want the default values you can add any option you want to change to
that settings file below the [basic] section like:
[basic] ; inline comments starts with colon
# This is a commend line. Assignments may be done with '=' or ':'
text: A text with line break and
continuing on next line to be put
replace: yes ; yes/no, on/off, true/false and 1/0 is also valid
summary = Bot: My first test edit with pywikibot
Every script has its own section with the script name as header.
In addition the following generators and filters are supported but
cannot be set by settings file:
¶ms;
"""
#
# (C) Pywikibot team, 2006-2021
#
# Distributed under the terms of the MIT license.
#
import pywikibot
from pywikibot import pagegenerators
from pywikibot.bot import (
AutomaticTWSummaryBot,
ConfigParserBot,
ExistingPageBot,
SingleSiteBot,
)
import re
import datetime
from pywikibot import textlib
import backoff
# This is required for the text that is shown when you run this script
# with the parameter -help.
docuReplacements = {'¶ms;': pagegenerators.parameterHelp} # noqa: N816
class BasicBot(
# Refer pywikobot.bot for generic bot classes
SingleSiteBot, # A bot only working on one site
ConfigParserBot, # A bot which reads options from scripts.ini setting file
# CurrentPageBot, # Sets 'current_page'. Process it in treat_page method.
# # Not needed here because we have subclasses
ExistingPageBot, # CurrentPageBot which only treats existing pages
AutomaticTWSummaryBot, # Automatically defines summary; needs summary_key
):
"""
An incomplete sample bot.
:ivar summary_key: Edit summary message key. The message that should be
used is placed on /i18n subdirectory. The file containing these
messages should have the same name as the caller script (i.e. basic.py
in this case). Use summary_key to set a default edit summary message.
:type summary_key: str
"""
summary_key = 'basic-changing'
use_redirects = False
update_options = {
'replace': False, # delete old text and write the new text
'summary': None, # your own bot summary
'text': 'Test', # add this text from option. 'Test' is default
'top': False, # append text on top of the page
'outpage': 'Wikipedysta:mastiBot/test', # default output page
'maxlines': 1000, # default number of entries per page
'negative': False, # if True mark pages that DO NOT contain search string
'test': False, # switch on test functionality
'regex': False, # use text as regex. has to contain ctaching group (?P<result>)
'as_link': False, # put links as wikilinks
'append': False, # append results to page
'section': None, # section title
'title': False, # check in title not text
'multi': False, # '^' and '$' will now match begin and end of each line.
'flags': None, # list of regex flags
'edit': False, # link thru template:edytuj instead of wikilink
'cite': False, # cite search results
'nowiki': False, # put citation in <nowiki> tags
'count': False, # count pages only
'navi': False, # add navigation template
'progress': False, # report progress
'table': False, # present results in a table
'nonempty': False, # show nonempty results only
'talk': False, # check on talk page
'nodisabled': False, # remove disabled parts as per textlib.py
}
def run(self):
if not self.opt.append:
if self.opt.table:
header = "Ostatnia aktualizacja: '''<onlyinclude>{{#time: Y-m-d H:i|{{REVISIONTIMESTAMP}}}}</onlyinclude>'''."
header += "\n\nWszelkie uwagi proszę zgłaszać w [[User talk:masti|dyskusji operatora]]."
if self.opt.regex:
header += '\n\nregex: <code><nowiki>\'%s\'</nowiki></code>\n' % self.opt.text
header += '\n{| class="wikitable sortable" style="font-size:85%;"'
header += '\n|-'
header += '\n!Nr'
header += '\n!Artykuł'
header += '\n!Wyniki'
else:
header = "Ostatnia aktualizacja: '''<onlyinclude>{{#time: Y-m-d H:i|{{REVISIONTIMESTAMP}}}}</onlyinclude>'''.\n\n"
header += "Wszelkie uwagi proszę zgłaszać w [[User talk:masti|dyskusji operatora]].\n\n"
if self.opt.regex:
header += '\n\nregex: <code><nowiki>\'%s\'</nowiki></code>\n' % self.opt.text
else:
header = '\n\n'
reflinks = [] # initiate list
pagecounter = 0
duplicates = 0
marked = 0
for page in self.generator:
pagecounter += 1
if self.opt.test or self.opt.progress:
pywikibot.output('[%s] Treating #%i (marked:%i, duplicates:%i): %s' % (
datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
pagecounter, marked, duplicates, page.title()))
if page.title() in reflinks:
duplicates += 1
continue
refs = self.treat(page) # get (name)
if refs:
if refs not in reflinks:
# test
if self.opt.test:
pywikibot.output(refs)
reflinks.append(refs)
marked += 1
else:
# test
if self.opt.test:
pywikibot.output('Already marked')
footer = '\n\nPrzetworzono ' + str(pagecounter) + ' stron.'
outputpage = self.opt.outpage
return self.generateresultspage(reflinks, outputpage, header, footer)
def generateresultspage(self, redirlist, pagename, header, footer):
"""
Generates results page from redirlist
Starting with header, ending with footer
Output page is pagename + pagenumber split at maxlines rows
"""
# finalpage = header
finalpage = ''
if self.opt.section:
finalpage += '== ' + self.opt.section + ' ==\n'
# res = sorted(redirlist, key=redirlist.__getitem__, reverse=False)
res = sorted(redirlist)
itemcount = 0
totalcount = len(res)
pagecount = 0
if self.opt.count:
self.savepart(finalpage, pagename, pagecount, header,
self.generateprefooter(pagename, totalcount, pagecount) + footer)
return 1
for i in res:
if self.opt.regex and not self.opt.negative:
title, link = i
else:
title = i
# finalpage += '\n# [[' + title + ']]'
linenumber = str(pagecount * int(self.opt.maxlines) + itemcount + 1) + '.'
if self.opt.table:
finalpage += '\n|-\n| %s || ' % linenumber
if self.opt.edit:
nakedtitle = re.sub(r'\[\[|\]\]', '', title)
finalpage += '{{Edytuj|%s|%s}}' % (nakedtitle, nakedtitle)
else:
finalpage += re.sub(r'\[\[', '[[:', title, count=1)
finalpage += ' || '
else:
if self.opt.edit:
nakedtitle = re.sub(r'\[\[|\]\]', '', title)
finalpage += '\n:' + linenumber + ' {{Edytuj|' + nakedtitle + '|' + nakedtitle + '}}'
else:
finalpage += '\n:' + linenumber + ' ' + re.sub(r'\[\[', '[[:', title, count=1)
if self.opt.regex and self.opt.cite and not self.opt.negative:
if self.opt.multi:
# results are list
if self.opt.nowiki:
if self.opt.table:
for r in link:
finalpage += '<nowiki>%s</nowiki><br />' % r
else:
finalpage += ' – <nowiki>' + ', '.join(link) + '</nowiki><br />'
else:
# results are single string
# TODO convert all results to lists
if self.opt.nowiki:
finalpage += ' – <nowiki>' + link + '</nowiki>' if not self.opt.table else '<nowiki>' + link + '</nowiki>'
else:
finalpage += ' – ' + link if not self.opt.table else link
itemcount += 1
if itemcount > int(self.opt.maxlines) - 1:
pywikibot.output('***** saving partial results *****')
self.savepart(finalpage, pagename, pagecount, header,
self.generateprefooter(pagename, totalcount, pagecount) + footer)
finalpage = ''
itemcount = 0
pagecount += 1
# save remaining results
pywikibot.output('***** saving remaining results *****')
self.savepart(finalpage, pagename, pagecount, header,
self.generateprefooter(pagename, totalcount, pagecount) + footer)
return pagecount
def generateprefooter(self, pagename, totalcount, pagecount):
# generate text to appear before footer
if self.opt.test:
pywikibot.output('***** GENERATING PREFOOTER page ' + pagename + ' ' + str(pagecount) + ' *****')
result = ''
if self.opt.table:
result += '\n|}'
# if no results found to be reported
if not totalcount:
result += "\n\n'''Brak wyników'''\n\n"
elif self.opt.count:
result += "\n\n'''Liczba stron spełniających warunki: " + str(totalcount) + "'''"
else:
result += "\n\n"
return result
def navigation(self, pagename, pagecount):
# generate navigation template
if pagecount > 1:
result = '\n\n{{User:mastiBot/Nawigacja|' + pagename + ' ' + str(
pagecount - 1) + '|' + pagename + ' ' + str(pagecount + 1) + '}}\n\n'
elif pagecount:
result = '\n\n{{User:mastiBot/Nawigacja|' + pagename + '|' + pagename + ' ' + str(
pagecount + 1) + '}}\n\n'
else:
result = '\n\n{{User:mastiBot/Nawigacja|' + pagename + '|' + pagename + ' ' + str(
pagecount + 1) + '}}\n\n'
return result
def savepart(self, pagepart, pagename, pagecount, header, footer):
# generate resulting page
if self.opt.test:
pywikibot.output('***** SAVING PAGE #%i' % pagecount)
# pywikibot.output(finalpage)
if self.opt.navi:
finalpage = self.navigation(pagename, pagecount) + header + pagepart + footer + self.navigation(pagename,
pagecount)
else:
finalpage = header + pagepart + footer
if pagecount:
numberedpage = pagename + ' ' + str(pagecount)
else:
numberedpage = pagename
outpage = pywikibot.Page(pywikibot.Site(), numberedpage)
if self.opt.append:
outpage.text += finalpage
else:
outpage.text = finalpage
if self.opt.test:
pywikibot.output(outpage.title())
pywikibot.output(outpage.text)
success = outpage.save(summary=self.opt.summary)
# if not outpage.save(finalpage, outpage, self.summary):
# pywikibot.output('Page %s not saved.' % outpage.title(as_link=True))
# success = False
return success
@backoff.on_exception(
backoff.expo,
pywikibot.exceptions.ServerError,
max_tries=5
)
def treat(self, cpage):
"""
Returns page title if param 'text' not in page
"""
if self.opt.talk:
page = cpage.toggleTalkPage()
else:
page = cpage
# choose proper source - title or text
if self.opt.title:
source = page.title()
else:
source = page.text
if self.opt.nodisabled:
source = textlib.removeDisabledParts(source,
tags={'comment', 'noinclude', 'nowiki', 'pre', 'syntaxhighlight'})
# pywikibot.output(source)
# new version
if self.opt.regex:
if '?P<result>' in self.opt.text:
resultR = self.opt.text
else:
resultR = '(?P<result>' + self.opt.text + ')'
if self.opt.flags:
resultR = '(?' + self.opt.flags + ')' + resultR
if self.opt.test:
pywikibot.output(resultR)
resultR = re.compile(resultR)
match = resultR.search(source)
if not match and self.opt.negative:
return cpage.title(as_link=True, force_interwiki=True, textlink=True)
elif match and not self.opt.negative:
if self.opt.multi:
# return all found results
resultslist = []
for r in re.finditer(resultR, source):
# based on nonempty
if (self.opt.nonempty and len(r.group('result').strip())) or not self.opt.nonempty:
resultslist.append(r.group('result'))
return cpage.title(as_link=True, force_interwiki=True, textlink=True), resultslist
else:
# return just first match
# based on nonempty
if (self.opt.nonempty and len(match.group('result').strip())) or not self.opt.nonempty:
return cpage.title(as_link=True, force_interwiki=True, textlink=True), match.group('result')
return None
else:
isIn = self.opt.text in source
if not isIn and self.opt.negative:
if self.opt.test:
pywikibot.output('NEGATIVE:Text not found')
return cpage.title(as_link=True, force_interwiki=True, textlink=True)
if isIn and not self.opt.negative:
if self.opt.test:
pywikibot.output('POSITIVE:Text found')
return cpage.title(as_link=True, force_interwiki=True, textlink=True)
return None
def main(*args: str) -> None:
"""
Process command line arguments and invoke bot.
If args is an empty list, sys.argv is used.
:param args: command line arguments
"""
options = {}
# Process global arguments to determine desired site
local_args = pywikibot.handle_args(args)
# This factory is responsible for processing command line arguments
# that are also used by other scripts and that determine on which pages
# to work on.
gen_factory = pagegenerators.GeneratorFactory()
# Process pagegenerators arguments
local_args = gen_factory.handle_args(local_args)
# Parse your own command line arguments
for arg in local_args:
arg, sep, value = arg.partition(':')
option = arg[1:]
if option in ('summary', 'text', 'outpage', 'maxlines', 'section', 'flags'):
if not value:
pywikibot.input('Please enter a value for ' + arg)
options[option] = value
# take the remaining options as booleans.
# You will get a hint if they aren't pre-defined in your bot class
else:
options[option] = True
# The preloading option is responsible for downloading multiple
# pages from the wiki simultaneously.
gen = gen_factory.getCombinedGenerator(preload=True)
if gen:
# pass generator and private options to the bot
bot = BasicBot(generator=gen, **options)
bot.run() # guess what it does
else:
pywikibot.bot.suggest_help(missing_generator=True)
if __name__ == '__main__':
main()