Merge pull request #5203 from sivel/irc-rfc-loops
Improve IRC module. Fixes #5186
This commit is contained in:
commit
36d5d19937
1 changed files with 64 additions and 34 deletions
|
@ -61,10 +61,16 @@ options:
|
|||
description:
|
||||
- Server password
|
||||
required: false
|
||||
timeout:
|
||||
description:
|
||||
- Timeout to use while waiting for successful registration and join
|
||||
messages, this is to prevent an endless loop
|
||||
default: 30
|
||||
version_added: 1.5
|
||||
|
||||
# informational: requirements for nodes
|
||||
requirements: [ socket ]
|
||||
author: Jan-Piet Mens
|
||||
author: Jan-Piet Mens, Matt Martz
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
@ -81,11 +87,14 @@ EXAMPLES = '''
|
|||
# IRC module support methods.
|
||||
#
|
||||
|
||||
from time import sleep
|
||||
import re
|
||||
import socket
|
||||
|
||||
from time import sleep
|
||||
|
||||
|
||||
def send_msg(channel, msg, server='localhost', port='6667',
|
||||
nick="ansible", color='black', passwd=False):
|
||||
nick="ansible", color='black', passwd=False, timeout=30):
|
||||
'''send message to IRC'''
|
||||
|
||||
colornumbers = {
|
||||
|
@ -109,8 +118,27 @@ def send_msg(channel, msg, server='localhost', port='6667',
|
|||
irc.send('PASS %s\r\n' % passwd)
|
||||
irc.send('NICK %s\r\n' % nick)
|
||||
irc.send('USER %s %s %s :ansible IRC\r\n' % (nick, nick, nick))
|
||||
time.sleep(1)
|
||||
motd = ''
|
||||
start = time.time()
|
||||
while 1:
|
||||
motd += irc.recv(1024)
|
||||
if re.search('^:\S+ 00[1-4] %s :' % nick, motd, flags=re.M):
|
||||
break
|
||||
elif time.time() - start > timeout:
|
||||
raise Exception('Timeout waiting for IRC server welcome response')
|
||||
time.sleep(0.5)
|
||||
|
||||
irc.send('JOIN %s\r\n' % channel)
|
||||
join = ''
|
||||
start = time.time()
|
||||
while 1:
|
||||
join += irc.recv(1024)
|
||||
if re.search('^:\S+ 366 %s %s :' % (nick, channel), join, flags=re.M):
|
||||
break
|
||||
elif time.time() - start > timeout:
|
||||
raise Exception('Timeout waiting for IRC JOIN response')
|
||||
time.sleep(0.5)
|
||||
|
||||
irc.send('PRIVMSG %s :%s\r\n' % (channel, message))
|
||||
time.sleep(1)
|
||||
irc.send('PART %s\r\n' % channel)
|
||||
|
@ -122,8 +150,8 @@ def send_msg(channel, msg, server='localhost', port='6667',
|
|||
# Main
|
||||
#
|
||||
|
||||
def main():
|
||||
|
||||
def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
server=dict(default='localhost'),
|
||||
|
@ -133,7 +161,8 @@ def main():
|
|||
color=dict(default="black", choices=["yellow", "red", "green",
|
||||
"blue", "black"]),
|
||||
channel=dict(required=True),
|
||||
passwd = dict()
|
||||
passwd=dict(),
|
||||
timeout=dict(type='int', default=30)
|
||||
),
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
@ -145,9 +174,10 @@ def main():
|
|||
color = module.params["color"]
|
||||
channel = module.params["channel"]
|
||||
passwd = module.params["passwd"]
|
||||
timeout = module.params["timeout"]
|
||||
|
||||
try:
|
||||
send_msg(channel, msg, server, port, nick, color, passwd)
|
||||
send_msg(channel, msg, server, port, nick, color, passwd, timeout)
|
||||
except Exception, e:
|
||||
module.fail_json(msg="unable to send to IRC: %s" % e)
|
||||
|
||||
|
|
Loading…
Reference in a new issue