More robust send group message function.
This commit is contained in:
parent
33518e0b2d
commit
da91a1ad18
@ -79,12 +79,9 @@ class SyncBot(Tox):
|
|||||||
rx = re.match(r':(.*?)!.*? PRIVMSG %s :(.*?)\r' %
|
rx = re.match(r':(.*?)!.*? PRIVMSG %s :(.*?)\r' %
|
||||||
CHANNEL, line, re.S)
|
CHANNEL, line, re.S)
|
||||||
if rx:
|
if rx:
|
||||||
|
print('IRC> %s: %s' % rx.groups())
|
||||||
msg = '%s> %s' % rx.groups()
|
msg = '%s> %s' % rx.groups()
|
||||||
print('IRC> %s' % msg)
|
self.send_group_msg(msg)
|
||||||
self.sent = msg
|
|
||||||
|
|
||||||
if self.tox_group_id != None:
|
|
||||||
self.group_message_send(self.tox_group_id, msg)
|
|
||||||
|
|
||||||
l = line.rstrip().split()
|
l = line.rstrip().split()
|
||||||
if l[0] == "PING":
|
if l[0] == "PING":
|
||||||
@ -94,6 +91,18 @@ class SyncBot(Tox):
|
|||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
self.save_to_file('data')
|
self.save_to_file('data')
|
||||||
|
|
||||||
|
def send_group_msg(self, msg):
|
||||||
|
self.sent = msg
|
||||||
|
if self.tox_group_id != None:
|
||||||
|
sent = False
|
||||||
|
while not sent:
|
||||||
|
try:
|
||||||
|
self.group_message_send(self.tox_group_id, msg)
|
||||||
|
sent = True
|
||||||
|
except:
|
||||||
|
self.do()
|
||||||
|
sleep(0.02)
|
||||||
|
|
||||||
def on_group_invite(self, friendid, pk):
|
def on_group_invite(self, friendid, pk):
|
||||||
if not self.joined:
|
if not self.joined:
|
||||||
self.joined = True
|
self.joined = True
|
||||||
|
Loading…
Reference in New Issue
Block a user