-
Notifications
You must be signed in to change notification settings - Fork 0
/
botlist.py
178 lines (159 loc) · 5.55 KB
/
botlist.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
# -*- coding: utf-8 -*-
"""
Allows access to the site's bot user list.
The function refresh() downloads the current bot user list and saves
it to disk. It is run automatically when a bot first tries to get this
data.
"""
# (C) Daniel Herding, 2005
# (C) Dr. Trigon, 2009-2010
# (C) Pywikipedia bot team, 2010-2012
#
# DrTrigonBot: http://de.wikipedia.org/wiki/Benutzer:DrTrigonBot
#
# Distributed under the terms of the MIT license.
#
__version__='$Id$'
#
import re, sys, pickle
import os.path
import time
import urllib
import wikipedia as pywikibot
cache = {}
def get(site = None):
if site is None:
site = pywikibot.getSite()
if site in cache:
# Use cached copy if it exists.
botlist = cache[site]
else:
fn = pywikibot.config.datafilepath('botlists',
'botlist-%s-%s.dat' % (site.family.name, site.lang))
try:
# find out how old our saved dump is (in seconds)
file_age = time.time() - os.path.getmtime(fn)
# if it's older than 1 day, reload it
if file_age > 1 * 24 * 60 * 60:
pywikibot.output(u'Copy of bot user list is one day old, reloading')
refresh(site)
except OSError:
# no saved botlist exists yet, retrieve one
refresh(site)
f = open(fn, 'r')
botlist = pickle.load(f)
f.close()
# create cached copy
cache[site] = botlist
return botlist
def isBot(user, site=None):
botlist = get(site)
return user in botlist
def refresh(site, sysop=False, witheditsonly=True):
#if not site.has_api() or site.versionnumber() < 10:
# _refreshOld(site)
# get botlist special page's URL
if not site.loggedInAs(sysop=sysop):
site.forceLogin(sysop=sysop)
params = {
'action': 'query',
'list': 'allusers',
'augroup': 'bot',
}
if witheditsonly:
params['auwitheditsonly'] = ''
pywikibot.output(u'Retrieving bot user list for %s via API.' % repr(site))
botlist = []
while True:
pywikibot.get_throttle()
data = pywikibot.query.GetData(params, site, sysop=sysop)
if 'error' in data:
raise RuntimeError('ERROR: %s' % data)
botlist.extend([w['name'] for w in data['query']['allusers']])
if 'query-continue' in data:
params.update(data['query-continue']['allusers'])
else:
break
pywikibot.output(u'Retrieving global bot user list for %s.' % repr(site))
m1 = True
offset = ''
if site.live_version()[1] >= 18:
PATTERN = u'<li><a.*?>(.*?)</.*?> *\((.*?),\s(.*?)\)(?:.*?)</li>'
elif site.live_version()[1] == 17:
PATTERN = u'<li>(.*?) *\((.*?),\s(.*?)\)(?:.*?)</li>'
else:
PATTERN = u'<li>(.*?) *\((.*?),\s(.*?)\)</li>'
while m1:
pywikibot.get_throttle()
text = site.getUrl(site.globalusers_address(offset=urllib.quote(offset), group='Global_bot'))
m1 = re.findall(u'<li>.*?</li>', text)
for item in m1:
m2 = re.search(PATTERN, item)
(bot, flag_local, flag_global) = m2.groups()
flag_local = (flag_local[:2] == u'<a')
flag_global = True # since group='Global_bot'
if bot not in botlist:
botlist.append( bot )
#print len(botlist)
offset = bot.encode(site.encoding())
# Save the botlist to disk
# The file is stored in the botlists subdir. Create if necessary.
if sysop:
f = open(pywikibot.config.datafilepath('botlists',
'botlist-%s-%s-sysop.dat' % (site.family.name, site.lang)), 'w')
else:
f = open(pywikibot.config.datafilepath('botlists',
'botlist-%s-%s.dat' % (site.family.name, site.lang)), 'w')
pickle.dump(botlist, f)
f.close()
#def refresh_all(new = False, sysop=False):
# if new:
# import config
# pywikibot.output('Downloading All bot user lists for your accounts in user-config.py');
# for family in config.usernames:
# for lang in config.usernames[ family ]:
# refresh(pywikibot.getSite( code = lang, fam = family ), sysop=sysop )
# for family in config.sysopnames:
# for lang in config.sysopnames[ family ]:
# refresh(pywikibot.getSite( code = lang, fam = family ), sysop=sysop )
#
# else:
# import dircache, time
# filenames = dircache.listdir(pywikibot.config.datafilepath('botlists'))
# botlist_filenameR = re.compile('botlist-([a-z\-:]+).dat')
# for filename in filenames:
# match = botlist_filenameR.match(filename)
# if match:
# arr = match.group(1).split('-')
# family = arr[0]
# lang = '-'.join(arr[1:])
# refresh(pywikibot.getSite(code = lang, fam = family))
#
#def main():
# all = False
# new = False
# sysop = False
# for arg in pywikibot.handleArgs():
# if arg == '-all' or arg == '-update':
# all = True
# elif arg == '-new':
# new = True
# elif arg == '-sysop':
# sysop = True
# if all:
# refresh_all(sysop=sysop)
# elif new:
# refresh_all(new, sysop=sysop)
# else:
# refresh(pywikibot.getSite(), sysop=sysop)
#
# botlist = get(pywikibot.getSite())
# pywikibot.output(u'%i pages in the bot user list.' % len(botlist))
# for pageName in botlist:
# pywikibot.output( pageName, toStdout = True )
#
#if __name__ == "__main__":
# try:
# main()
# finally:
# pywikibot.stopme()