forked from masti01/pcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m-removedeadlinktemplates.py
305 lines (256 loc) · 11.2 KB
/
m-removedeadlinktemplates.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
This is a bot to remove {{Martwy link dyskusja}} templates from discussion pages if the link reported no longer exists in the article.
Call:
python pwb.py masti/m-removedeadlinktemplates.py -cat:"Niezweryfikowane martwe linki" -ns:1 -summary:"Nieaktualna informacja o martwym linku zewnętrznym" -pt:0
Use global -simulate option for test purposes. No changes to live wiki
will be done.
The following parameters are supported:
¶ms;
-always If used, the bot won't ask if it should file the message
onto user talk page.
-text: Use this text to be added; otherwise 'Test' is used
-replace: Dont add text but replace it
-top Place additional text on top of the page
-summary: Set the action summary message for the edit.
-test: Switch on test prinouts
-nodelete: Do not delete empty pages
"""
#
# (C) Pywikibot team, 2006-2016
#
# Distributed under the terms of the MIT license.
#
from __future__ import absolute_import, unicode_literals
__version__ = '$Id: c1795dd2fb2de670c0b4bddb289ea9d13b1e9b3f $'
#
import pywikibot
from pywikibot import pagegenerators
from pywikibot.bot import (
SingleSiteBot, ExistingPageBot, NoRedirectPageBot, AutomaticTWSummaryBot)
from pywikibot.tools import issue_deprecation_warning
import re
# This is required for the text that is shown when you run this script
# with the parameter -help.
docuReplacements = {
'¶ms;': pagegenerators.parameterHelp
}
class BasicBot(
# Refer pywikobot.bot for generic bot classes
SingleSiteBot, # A bot only working on one site
# CurrentPageBot, # Sets 'current_page'. Process it in treat_page method.
# # Not needed here because we have subclasses
ExistingPageBot, # CurrentPageBot which only treats existing pages
NoRedirectPageBot, # CurrentPageBot which only treats non-redirects
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'
def __init__(self, generator, **kwargs):
"""
Constructor.
@param generator: the page generator that determines on which pages
to work
@type generator: generator
"""
# Add your own options to the bot and set their defaults
# -always option is predefined by BaseBot class
self.availableOptions.update({
'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
'test': False, #switch on test functionality
'nodelete': False, #do not delete empty pages
})
# call constructor of the super class
super(BasicBot, self).__init__(site=True, **kwargs)
# handle old -dry paramter
self._handle_dry_param(**kwargs)
# assign the generator to the bot
self.generator = generator
def _handle_dry_param(self, **kwargs):
"""
Read the dry parameter and set the simulate variable instead.
This is a private method. It prints a deprecation warning for old
-dry paramter and sets the global simulate variable and informs
the user about this setting.
The constuctor of the super class ignores it because it is not
part of self.availableOptions.
@note: You should ommit this method in your own application.
@keyword dry: deprecated option to prevent changes on live wiki.
Use -simulate instead.
@type dry: bool
"""
if 'dry' in kwargs:
issue_deprecation_warning('dry argument',
'pywikibot.config.simulate', 1)
# use simulate variable instead
pywikibot.config.simulate = True
pywikibot.output('config.simulate was set to True')
def run(self):
counter = 1
changeCounter = 0
for page in self.generator:
pywikibot.output(u'Processing #%i (%i changed):%s' % (counter, changeCounter, page.title(asLink=True)))
counter += 1
if self.treat(page):
changeCounter += 1
pywikibot.output(u'Statistics: Processed: %i, Removed: %i' % ( counter, changeCounter ))
def treat(self, page):
"""
Loads the given discussion page, verifies if the links in {{Martwy link dyskusja}}
were removed from article or are a part of {{Cytuj}} template with properly filled archiwum= parameter
Then removes the template(s) or marks page for deletion
"""
talktext = page.text
if not talktext:
return
originaltext = talktext
articlepage = page.toggleTalkPage()
articletext = articlepage.text
if not articletext:
return
#test printout
if self.getOption('test'):
pywikibot.output(u'Page: %s' % articlepage.title(asLink=True))
pywikibot.output(u'Talk: %s' % page.title(asLink=True))
#find dead link templates
#linkR = re.compile(ur'\{\{(?P<infobox>([^\]\n\|}]+?infobox))')
tempR = re.compile(ur'(?P<template>\{\{Martwy link dyskusja[^}]*?}}\n*)')
weblinkR = re.compile(ur'link\s*?=\s*?\*?\s*?(?P<weblink>[^\s][^\n\s]*)')
links = u''
changed = False
templs = tempR.finditer(talktext)
for link in templs:
template = link.group('template')
if self.getOption('test'):
pywikibot.output(u'>>%s<<' % template)
#pywikibot.output(template)
# check if the template is properly built
try:
weblink = re.search(weblinkR,template).group('weblink').strip()
if weblink in articletext:
if self.getOption('test'):
pywikibot.output(u'Still there >>%s<<' % weblink)
if not self.removelinktemplate(weblink,articletext):
if self.getOption('test'):
pywikibot.output(u'Should stay >>%s<<' % weblink )
else:
pywikibot.output(u'Has to go >>%s<<' % weblink )
talktext = re.sub(re.escape(template), u'', talktext)
changed = True
else:
if self.getOption('test'):
pywikibot.output(u'Uuups! 404 - link not found >>%s<<' % weblink)
talktext = re.sub(re.escape(template), u'', talktext)
changed = True
except:
pywikibot.output(u'Unrecognized template content in %s' % page.title() )
if changed:
if len(talktext) < 4:
if self.getOption('test'):
pywikibot.output(u'Deleting {0}.'.format(page))
if not self.getOption('nodelete'):
talktext = u'{{ek|Nieaktualna informacja o martwym linku zewnętrznym}}\n\n' + talktext
page.text = talktext
if self.getOption('test'):
pywikibot.output(talktext)
page.save(summary=self.getOption('summary'))
return(True)
return(False)
def removelinktemplate(self,link, text):
"""
check if link is within {{cytuj...}} template with filled archiwum= field or within this field
conditions on link removal:
link in url/tytuł field + archiwum not empty
link in archiwum field
"""
citetempR = re.compile(ur'(?P<citetemplate>\{\{[cC]ytuj.*?\|[^}]*?\}\})')
urlfieldR = re.compile(ur'(url|tytuł)\s*?=(?P<url>[^\|\}]*)')
archfieldR = re.compile(ur'archiwum\s*?=\s*?(?P<arch>[^\|\}]*)')
result = False
cites = citetempR.finditer(text)
for c in cites:
citetemplate = c.group('citetemplate').strip()
if self.getOption('test'):
pywikibot.output(u'Cite:%s' % citetemplate)
try:
urlfield = re.search(urlfieldR,citetemplate).group('url').strip()
except AttributeError:
if self.getOption('test'):
pywikibot.output(u'No url or tytuł field in Cytuj')
continue
#pywikibot.output(u'URL:%s' % urlfield)
try:
archfield = re.search(archfieldR,citetemplate).group('arch').strip()
except AttributeError:
if self.getOption('test'):
pywikibot.output(u'No ARCH field')
continue
if self.getOption('test'):
pywikibot.output(u'URL2:%s' % urlfield)
pywikibot.output(u'Arch2:%s' % archfield)
if link in urlfield:
if self.getOption('test'):
pywikibot.output(u'URL in URL field')
if (len(archfield) > 0):
if self.getOption('test'):
pywikibot.output(u'ARCHIVE field filled in')
result = True
else:
if self.getOption('test'):
pywikibot.output(u'URL not found in template')
return(result)
def main(*args):
"""
Process command line arguments and invoke bot.
If args is an empty list, sys.argv is used.
@param args: command line arguments
@type args: list of unicode
"""
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.
genFactory = pagegenerators.GeneratorFactory()
# Parse command line arguments
for arg in local_args:
# Catch the pagegenerators options
if genFactory.handleArg(arg):
continue # nothing to do here
# Now pick up your own options
arg, sep, value = arg.partition(':')
option = arg[1:]
if option in ('summary', 'text'):
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-definded in your bot class
else:
options[option] = True
gen = genFactory.getCombinedGenerator()
if gen:
# The preloading generator is responsible for downloading multiple
# pages from the wiki simultaneously.
gen = pagegenerators.PreloadingGenerator(gen)
# pass generator and private options to the bot
bot = BasicBot(gen, **options)
bot.run() # guess what it does
return True
else:
pywikibot.bot.suggest_help(missing_generator=True)
return False
if __name__ == '__main__':
main()