-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxchat_spammer_killer.py
94 lines (73 loc) · 2.43 KB
/
xchat_spammer_killer.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
__module_name__ = "Wiki Spam Killer"
__module_version__ = "1.1"
__module_description__ = "Blocks wiki spammers and deletes pages created"
import threading, sys, datetime, pytz
import xchat
import wikitools
USERNAME = ''
PASSWORD = ''
WIKI_API = r'http://wiki.tf2.com/w/api.php'
class KillerThread(threading.Thread):
def __init__(self):
xchat.prnt('Wiki Spam Killer started')
self.wiki = wikitools.Wiki(WIKI_API)
self.loggedin = False
def login(self):
if self.wiki.login(username=USERNAME, password=PASSWORD):
self.loggedin = True
xchat.prnt('Succesfully logged into wiki')
else:
xchat.prnt('Error: failed to log into wiki. Please reload module with correct login details')
def block_user(self, user):
user.block(reason='Spamming links to external sites', expiry=False, nocreate=True, autoblock=True)
def get_user_edits(self, user):
params = {
'action': 'query',
'list': 'usercontribs',
'ucuser': 'User:' + user,
'uclimit': '100',
'ucprop': 'title|flags',
}
req = wikitools.api.APIRequest(self.wiki, params)
res = req.query(querycontinue=True)
return res['query']['usercontribs']
def get_created_pages(self, contribs):
titles = []
for edit in contribs:
if u'new' in edit:
titles.append(edit['title'])
return titles
def delete_pages(self, pages):
for page in pages:
try:
wikitools.Page(self.wiki, page).delete('Spam')
except:
xchat.prnt('Error: page no longer exists')
def is_old_user(self, user):
now = datetime.datetime.now(pytz.utc)
age = now - user.registration
return age.days > 1
def kill_spammer(self, word, word_eol, userdata):
if not self.loggedin:
xchat.prnt('Error: please reload module with correct login details')
return None
if len(word) < 2:
xchat.prnt('Error: username was not supplied')
return None
username = word_eol[1]
user = wikitools.User(self.wiki, username)
if self.is_old_user(user):
xchat.prnt('User:' + username + ' is > 1 day old. Backing off.')
elif not user.isBlocked():
self.block_user(user)
xchat.prnt('User:' + username + ' has been blocked')
edits = self.get_user_edits(username)
pagescreated = self.get_created_pages(edits)
self.delete_pages(pagescreated)
else:
xchat.prnt('User:' + username + ' has already been blocked')
def kill_spammer(word, word_eol, userdata):
thread.kill_spammer(word, word_eol, userdata)
thread = KillerThread()
thread.login()
xchat.hook_command('block', kill_spammer)