Handle /me correctly

This commit is contained in:
Alexei Sorokin 2016-07-30 13:11:20 +03:00
parent 7da0839dc0
commit 8ae268911a

View File

@ -4,6 +4,7 @@
import sys
sys.path.append('lib')
import time
import re
import sleekxmpp
from ircbot import SingleServerIRCBot
from ircbot import Channel
@ -76,6 +77,16 @@ class IRCBot(SingleServerIRCBot):
except:
pass
def on_action(self, c, e):
from_nick = nm_to_n(e.source())
if (from_nick != i_nick):
message = '***' + from_nick + ' ' + ''.join(e.arguments())
try:
inter.xmpp(message)
except:
pass
class XMPPBot(sleekxmpp.ClientXMPP):
def __init__(self, remotejid, chanmuc):
@ -127,8 +138,15 @@ class XMPPBot(sleekxmpp.ClientXMPP):
mtype='groupchat')
else:
isme = False
if (re.match('^/me .+$', text[0])):
text[0] = re.split('^/me ', text[0])[1]
isme = True
for i in range(0, len(text)):
m = '[' + nick + '] ' + text[i]
if not isme:
m = '[' + nick + '] ' + text[i]
else:
m = '***' + nick + ' ' + text[i]
# Slow down a bit.
if i > 0: