-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathirc_bot.py
52 lines (40 loc) · 1.51 KB
/
irc_bot.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
# Some code adapted from sadface by Benjamin Keith ([email protected])
# at https://github.com/benlk/sadface
from twisted.words.protocols import irc
from twisted.internet import protocol, reactor
import re
class ircBot(irc.IRCClient):
def _get_nickname(self):
return self.factory.nickname
nickname = property(_get_nickname)
def signedOn(self):
print "Joining " + self.factory.channel
self.join(self.factory.channel)
def joined(self, channel):
print "Joined " + channel
self.msg(channel, "Hai everyone!")
def privmsg(self, user, channel, msg):
user_nick = user.split('!', 1)[0]
if self.nickname in msg:
msg = re.compile(self.nickname + "[:,]* ?", re.I).sub('', msg)
reply = user_nick + ": " + self.factory.generator(msg)
self.msg(channel, reply)
class ircBotFactory(protocol.ClientFactory):
protocol = ircBot
def __init__(self, channel, nick, generator):
self.channel = channel
self.nickname = nick
self.generator = generator
def clientConnectionLost(self, connector, reason):
print "Lost connection: %s. Attempting to reconnect." % (reason,)
connector.connect()
def clientConnectionFailed(self, connector, reason):
print "Failed to connect: %s." % (reason,)
quit()
def Run(host, port, channel, nickname, generator):
print "Starting IRC bot..."
factory = ircBotFactory(channel, nickname, generator)
reactor.connectTCP(host, port, factory)
reactor.run()
if __name__ == "__main__":
Run("irc.freenode.net", 6667, "#bottest", "benjbot", None)