-
Notifications
You must be signed in to change notification settings - Fork 1
/
basiclinks2.py
315 lines (256 loc) · 10.9 KB
/
basiclinks2.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
An incomplete sample script.
This is not a complete bot; rather, it is a template from which simple
bots can be made. You can rename it to mybot.py, then edit it in
whatever way you want.
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
-text: Use this text to be added; otherwise 'Test' is used
-replace: Don't add text but replace it
-top Place additional text on top of the page
-summary: Set the action summary message for the edit.
The following generators and filters are supported:
¶ms;
"""
#
# (C) Pywikibot team, 2006-2020
#
# Distributed under the terms of the MIT license.
#
from typing import Tuple
import pywikibot
from pywikibot import pagegenerators, textlib, config2
import urllib, urllib.request
import datetime
from memento_client import MementoClient
import re
from pywikibot.bot import (
SingleSiteBot, ExistingPageBot, NoRedirectPageBot, AutomaticTWSummaryBot)
try:
import memento_client
from memento_client.memento_client import MementoClientException
except ImportError as e:
memento_client = e
import requests
# 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
# 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) -> None:
"""
Initializer.
@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.available_options.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'User:mastiBot/sports-reference', #default output page
'maxlines': 1000, #default number of entries per page
'test': False, # print testoutput
})
# call initializer of the super class
super().__init__(site=True, **kwargs)
# assign the generator to the bot
self.generator = generator
def _get_closest_memento_url(self, url, when=None, timegate_uri=None):
"""Get most recent memento for url."""
if isinstance(memento_client, ImportError):
raise memento_client
if not when:
when = datetime.datetime.now()
mc = memento_client.MementoClient()
if timegate_uri:
mc.timegate_uri = timegate_uri
retry_count = 0
while retry_count <= config2.max_retries:
try:
memento_info = mc.get_memento_info(url, when)
break
except (requests.ConnectionError, MementoClientException) as e:
error = e
retry_count += 1
pywikibot.sleep(config2.retry_wait)
else:
raise error
mementos = memento_info.get('mementos')
if not mementos:
raise Exception(
'mementos not found for {0} via {1}'.format(url, timegate_uri))
if 'closest' not in mementos:
raise Exception(
'closest memento not found for {0} via {1}'.format(
url, timegate_uri))
if 'uri' not in mementos['closest']:
raise Exception(
'closest memento uri not found for {0} via {1}'.format(
url, timegate_uri))
return mementos['closest']['uri'][0]
def get_archive_url(self, url):
"""Get archive URL."""
try:
archive = self._get_closest_memento_url(
url,
timegate_uri='http://web.archive.org/web/')
except Exception:
archive = self._get_closest_memento_url(
url,
timegate_uri='http://timetravel.mementoweb.org/webcite/timegate/')
# FIXME: Hack for T167463: Use https instead of http for archive.org links
if archive.startswith('http://web.archive.org'):
archive = archive.replace('http://', 'https://', 1)
return archive
def treat(self,page) -> None:
"""Load the given page, do some changes, and save it."""
text = page.text
line = []
#linkR = re.compile(r'(?P<url>http[s]?://[^\]\s<>\"]*?[^\]\s\.:;,<>\"\|\)](?=[\]\s\.:;,<>\"\|\)]*\'\')|http[s]?://[^\]\s<>\"]*[^\]\s\.:;,<>\"\|\)])')
linkR = re.compile(r'(?m)(?P<url>http[s]?:(\/\/[^\s\?]+?)(\??[^\s<\|\}\]]*))(?:[\]\s\.<\|\}])')
#linkR = textlib.compileLinkR()
for m in linkR.finditer(text):
if m.group('url'):
url = m.group('url')
#pywikibot.output('URL:{0}'.format(url))
else:
pywikibot.output('wrong link')
continue
if url.startswith(('http://sports-reference.com/olympics','http://www.sports-reference.com/olympics')):
result = {
'url' : None,
'memento' : None,
}
result['url'] = url
pywikibot.output('PROCESSING URL:{0}'.format(url))
try:
result['memento'] = self.get_archive_url(url)
except KeyboardInterrupt:
pass
pywikibot.output('URL :%s' % result['url'])
#pywikibot.output('ARCHIVE.ORG:%s' % result['arch'])
#pywikibot.output('MEMENTO :%s' % result['memento'])
#pywikibot.output('MEMENTO DIR:%s' % result['client'])
line.append(result)
print(line)
return(line)
def generateresultspage(self, redirlist, 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
if self.getOption('test'):
pywikibot.output(u'GENERATING RESULTS')
for p in redirlist.keys():
if self.getOption('test'):
pywikibot.output('RESULTS FOR:%s' % p)
subrows = len(redirlist[p])
finalpage += '\n|-\n| '
if subrows > 1: #multirow result
finalpage += 'rowspan="%i" | [[%s]] || ' % (subrows, p)
first = True
for r in redirlist[p]:
if not first:
finalpage += '\n|-\n| '
else:
first = False
finalpage += '%s || %s || %s || %s' % (r['url'], r['memento'])
else:
for r in redirlist[p]:
finalpage += '[[%s]] || %s || %s || %s || %s' % (p, r['url'], r['memento'])
finalpage += footer
outpage = pywikibot.Page(pywikibot.Site(), pagename)
outpage.text = finalpage
if self.getOption('test'):
pywikibot.output(outpage.title())
pywikibot.output(outpage.text)
outpage.save(summary=self.getOption('summary'))
return(True)
def run(self):
header = u"Ta strona jest okresowo uaktualniana przez [[Wikipedysta:MastiBot|MastiBota]]. Ostatnia aktualizacja ~~~~~. \n"
header += u"Wszelkie uwagi proszę zgłaszać w [[Dyskusja_Wikipedysty:Masti|dyskusji operatora]].\n\n"
header += '{| class="wikitable"\n'
header += '! strona !! link !! archive\n'
reflinks = {} #initiate list
counter = 0
marked = 0
for tpage in self.generator:
counter += 1
if self.getOption('test'):
pywikibot.output(u'Treating #%i (%i marked): %s' % (counter, marked, tpage.title()))
refs = self.treat(tpage) # get (name)
#if self.getOption('test'):
#pywikibot.output(u'%s' % refs)
if refs:
reflinks[tpage.title()] = refs
marked += 1
footer = u'\n|}\n\nPrzetworzono ' + str(counter) + u' stron'
outputpage = self.getOption('outpage')
result = self.generateresultspage(reflinks,outputpage,header,footer)
def main(*args: Tuple[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()
# Parse command line arguments
for arg in local_args:
# Catch the pagegenerators options
if gen_factory.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-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(gen, **options)
bot.run() # guess what it does
else:
pywikibot.bot.suggest_help(missing_generator=True)
if __name__ == '__main__':
main()