-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathms-deadlinks.py
454 lines (377 loc) · 17.5 KB
/
ms-deadlinks.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
451
452
453
454
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
This bot creates a pages with links to disambig pages with ref counts.
Wikipedysta:MastiBot/Statystyka martwych linków
Wikipedysta:MastiBot/Statystyka martwych linków/ogólne
Call:
python pwb.py masti/ms-deadlinks.py -cat:"Niezweryfikowane martwe linki" -ns:1 -outpage:"Wikipedysta:MastiBot/Statystyka martwych linków" -summary:"Bot uaktualnia stronę" -maxlines:3000
The following parameters are supported:
¶ms;
-always If used, the bot won't ask if it should file the message
onto user talk page.
-outpage Results page; otherwise "Wikipedysta:mastiBot/test" is used
-maxlines Max number of entries before new subpage is created; default 1000
-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.
-includes: Link to be searched for
-progress: Display progress
"""
#
# (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
import datetime
#import api
# 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
'outpage': u'Wikipedysta:mastiBot/test', #default output page
'maxlines': 1000, #default number of entries per page
'test': False, #test options
'progress':False, #display progress
'includes' : False, #only include links that include this text
})
# call constructor of the super class
super(BasicBot, self).__init__(site=True, **kwargs)
#super(SingleSiteBot, 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):
if self.getOption('test'):
pywikibot.output(self.getOption('includes'))
headerfull = u"Poniżej znajduje się lista " + self.getOption('maxlines') + u" martwych linków występujących w największej liczbie artykułów.\n\n"
headersum = headerfull
if not self.getOption('includes'):
headersum += u"Zobacz też: [[" + self.getOption('outpage') + u"|Statystykę szczegółowych linków]]\n\n"
headerfull += u"Zobacz też: [[" + self.getOption('outpage') + u"/ogólne|Statystykę domen z największą liczbą martwych linków]]\n\n"
headerfull += u"Ta strona jest okresowo uaktualniana przez [[Wikipedysta:MastiBot|MastiBota]]. Ostatnia aktualizacja ~~~~~. \n"
headerfull += u"Wszelkie uwagi proszę zgłaszać w [[Dyskusja_Wikipedysty:Masti|dyskusji operatora]].\n\n"
headersum += u"Ta strona jest okresowo uaktualniana przez [[Wikipedysta:MastiBot|MastiBota]]. Ostatnia aktualizacja ~~~~~. \n"
headersum += u"Wszelkie uwagi proszę zgłaszać w [[Dyskusja_Wikipedysty:Masti|dyskusji operatora]].\n\n"
footer = u''
deadlinksf = {} #full links
deadlinkss = {} #summary links
deadlinksfuse = {} #full links
deadlinkssuse = {} #summary links
licznik = 0
for page in self.generator:
licznik += 1
if self.getOption('progress'):
pywikibot.output(u'[%s]Treating #%i: %s' % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"),licznik, page.title()))
refs = self.treat(page) # get list of weblinks
for ref,rcount in refs:
#if self.getOption('test'):
# pywikibot.output('REFS: %s' % refs)
if ref in deadlinksf:
deadlinksf[ref] += 1
deadlinksfuse[ref] += rcount
else:
deadlinksf[ref] = 1
deadlinksfuse[ref] = rcount
if self.getOption('test'):
pywikibot.output(u'%s - %i' % (ref,deadlinksf[ref]))
""" sitch of -domains option
#TODO get domain form analysis of previous step
refs = self.treat(page, True) # get list of weblinks
for ref,rcount in refs:
if ref in deadlinkss:
deadlinkss[ref] += 1
deadlinkssuse[ref] += rcount
else:
deadlinkss[ref] = 1
deadlinkssuse[ref] = rcount
if self.getOption('test'):
pywikibot.output(u'%s - %i' % (ref,deadlinkss[ref]))
"""
#if licznik > self.maxlines-1:
# pywikibot.output(u'*** Breaking outer loop ***')
# break
deadlinkss,deadlinkssuse = self.getDomainStats(deadlinksf,deadlinksfuse)
footer = u'Przetworzono: ' + str(licznik) + u' stron'
result = self.generateresultspage(deadlinksf,deadlinksfuse,self.getOption('outpage'),headerfull,footer)
# skip domains grouping if looking for specific text
#if not self.getOption('includes'):
result = self.generateresultspage(deadlinkss,deadlinkssuse,self.getOption('outpage')+u'/ogólne',headersum,footer)
def getDomainStats(self,dl,dluse):
deadlinksf = {}
deadlinksfuse = {}
domainR = re.compile(r'(?P<domain>https?://[^\/]*)')
for l in dl.keys():
try:
dom = domainR.match(l).group('domain')
if self.getOption('test'):
pywikibot.output('Domain:link:%s' % dom)
if dom in deadlinksf.keys():
deadlinksf[dom] += dl[l]
deadlinksfuse[dom] += dluse[l]
else:
deadlinksf[dom] = dl[l]
deadlinksfuse[dom] = dluse[l]
except:
pywikibot.output('Missing domain group in %s' % l)
return(deadlinksf,deadlinksfuse)
def getRefsNumber(self,weblink,text):
#find how many times link is referenced on the page
# ref names including group
#refR = re.compile(r'(?i)<ref (group *?= *?"?(?P<group>[^>"]*)"?)?(name *?= *?"?(?P<name>[^>"]*)"?)?>\.?\[?(?P<url>http[s]?:(\/\/[^:\s\?]+?)(\??[^\s<]*?)[^\]\.])(\]|\]\.)?[ \t]*<\/ref>')
refR = re.compile(r'(?im)<ref (group *?= *?"?(?P<group>[^>"]*)"?)?(name *?= *?"?(?P<name>[^>"]*)"?)?>.*?%s.*?<\/ref>' % re.escape(weblink).strip())
"""
opcje wywołania: <ref name="BVL2006" /> {{u|BVL2006}} {{r|BVL2006}}
"""
#check if weblink is in named ref
linkscount = 0
#for r in refR.finditer(text):
r = refR.search(text)
if r:
if r.group('name'):
if self.getOption('test'):
pywikibot.output('Treat:NamedRef:%s' % r.group('name'))
#template to catch note/ref with {{u}} or {{r}}
ruR = re.compile(r'(?i)(?:{{[ur] *?(?:[^\|}]*\|)*|<ref *?name *?= *?\"?)(%s)(?:[^}\/]*}}|\"? \/>)' % re.escape(r.group('name').strip()))
if self.getOption('test'):
pywikibot.output('Treat:Regex:(?i)(?:{{[ur] *?(?:[^\|}]*\|)*|<ref *?name *?= *?\"?)(%s)(?:[^}\/]*}}|\"? \/>)' % re.escape(r.group('name').strip()))
match = ruR.findall(text)
linkscount += len(match)
if self.getOption('test'):
pywikibot.output('Treat:Templates matched:%s' % match)
if self.getOption('test'):
pywikibot.output('Treat:links count:%s' % linkscount)
#catch unnamed links
match = re.findall(re.escape(weblink),text)
linkscount += len(match)
if self.getOption('test'):
pywikibot.output('Treat:Loose links matched:%s' % match)
pywikibot.output('Treat:links count:%s' % linkscount)
return(linkscount)
def treat(self, page):
"""
Creates a list of weblinks
"""
refs = []
tempR = re.compile(r'(?P<template>\{\{Martwy link dyskusja[^}]*?}}\n*?)')
#weblinkR = re.compile(r'link\s*?=\s*?\*?\s*?(?P<weblink>[^\n\(]*)')
weblinkR = re.compile(r'link *?= *?\*? (?P<weblink>[^\n ]*)')
if self.getOption('test'):
pywikibot.output(u'domains=False')
links = u''
art = page.toggleTalkPage()
arttext = art.text
templs = tempR.finditer(page.text)
for link in templs:
template = link.group('template').strip()
if self.getOption('test'):
pywikibot.output(template)
try:
weblink = re.search(weblinkR,template).group('weblink').strip()
except:
continue
linkscount = self.getRefsNumber(weblink,arttext)
refs.append( (weblink,linkscount) )
if self.getOption('test'):
pywikibot.output('Treat Weblink:%s' % weblink)
pywikibot.output('Treat Usage:%i' % linkscount)
#except:
# pywikibot.output(u'Error in page %s' % page.title(asLink=True))
return(refs)
def SpamCheck(self, url):
r = pywikibot.data.api.Request(parameters={'action': 'spamblacklist', 'url': url})
data = r.submit()
return(data['spamblacklist']['result']=='blacklisted')
def generateresultspage(self, redirlist, redirlistuse, pagename, header, footer):
"""
Generates results page from redirlist
Starting with header, ending with footer
Output page is pagename
"""
maxlines = int(self.getOption('maxlines'))
finalpage = header
finalpage +=u'\n{| class="wikitable sortable" style="font-size:85%;"'
finalpage +=u'\n|-'
finalpage +=u'\n!Nr'
finalpage +=u'\n!Link'
finalpage +=u'\n!Liczba stron'
finalpage +=u'\n!Liczba odnośników'
res = sorted(redirlist, key=redirlist.__getitem__, reverse=True)
itemcount = 0
pywikibot.output('res length:%i' % len(res))
for i in res:
# use only links with -includes if specified
if self.getOption('includes'):
if not (self.getOption('includes') in i):
continue
# check for spamlist entry
spam = self.SpamCheck(i)
itemcount += 1
count = redirlist[i]
strcount = str(count)
#suffix = self.declination(count, u'wystąpienie', u'wystąpienia', u'wystąpień')
suffix = self.declination(count, u'strona', u'strony', u'stron')
linksuffix = self.declination(redirlistuse[i], u'odnośnik', u'odnośniki', u'odnośników')
#finalpage += u'#' + i + u' ([{{fullurl:Specjalna:Wyszukiwarka linków/|target=' + i + u'}} ' + str(count) + u' ' + suffix + u'])\n'
if self.getOption('test'):
pywikibot.output(u'(%d, %d) #%s (%s %s)' % (itemcount, len(finalpage), i, str(count), suffix))
if spam:
finalpage += u'\n|-\n| ' + str(itemcount) + u' || <nowiki>' + i + u'</nowiki><sup>SPAM</sup> || style="width: 20%;" align="center" | [{{fullurl:Specjalna:Wyszukiwarka linków/|target=' + i + u'}} ' + str(count) + u' ' + suffix + u']'
else:
finalpage += u'\n|-\n| ' + str(itemcount) + u' || ' + i + u' || style="width: 20%;" align="center" | [{{fullurl:Specjalna:Wyszukiwarka linków/|target=' + i + u'}} ' + str(count) + u' ' + suffix + u']'
finalpage += u' || %i %s' % (redirlistuse[i],linksuffix)
if itemcount > maxlines-1:
pywikibot.output(u'*** Breaking output loop ***')
break
finalpage += u'\n|}\n'
finalpage += footer
if self.getOption('test'):
pywikibot.output(finalpage)
success = True
outpage = pywikibot.Page(pywikibot.Site(), pagename)
outpage.text = finalpage
if self.getOption('test'):
pywikibot.output(outpage.title())
outpage.save(summary=self.getOption('summary'))
return(success)
def declination(self, v, t1, t2, t3):
value = int(str(v)[-2:])
if value == 0:
return(t3)
elif value == 1:
return(t1)
elif value < 5:
return(t2)
else:
return(t3)
def templateArg(param):
"""
return name,value for each template param
input text in form "name = value"
@return: a tuple for each param of a template
named: named (True) or int
name: name of param or None if numbered
value: value of param
@rtype: tuple
"""
paramR = re.compile(r'(?P<name>.*)=(?P<value>.*)')
if '=' in param:
match = paramR.search(param)
named = True
name = match.group("name").strip()
value = match.group("value").strip()
else:
named = False
name = None
value = param
#test
if self.getOption('test'):
pywikibot.output(u'named:%s:name:%s:value:%s' % (named, name, value))
return(named, name, value)
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', 'outpage', 'maxlines', 'includes'):
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()