Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve IRC module. Fixes #5186 #5203

Merged
merged 2 commits into from
Dec 17, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
98 changes: 64 additions & 34 deletions library/notification/irc
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '''
Expand All @@ -81,19 +87,22 @@ 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 = {
'black' : "01",
'red' : "04",
'green' : "09",
'yellow' : "08",
'blue' : "12",
'black': "01",
'red': "04",
'green': "09",
'yellow': "08",
'blue': "12",
}

try:
Expand All @@ -103,51 +112,72 @@ def send_msg(channel, msg, server='localhost', port='6667',

message = "\x03" + colornumber + msg

irc = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
irc.connect( ( server, int(port) ) )
irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
irc.connect((server, int(port)))
if passwd:
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)
irc.send( 'JOIN %s\r\n' % channel )
irc.send( 'PRIVMSG %s :%s\r\n' % (channel, message))
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))
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)
irc.send( 'QUIT\r\n' )
irc.send('PART %s\r\n' % channel)
irc.send('QUIT\r\n')
time.sleep(1)
irc.close()

# ===========================================
# Main
#

def main():

def main():
module = AnsibleModule(
argument_spec=dict(
server = dict(default='localhost'),
port = dict(default = 6667),
nick = dict(default = 'ansible'),
msg = dict(required = True),
color = dict(default="black", choices=["yellow", "red", "green",
"blue", "black"]),
channel = dict(required = True),
passwd = dict()
server=dict(default='localhost'),
port=dict(default=6667),
nick=dict(default='ansible'),
msg=dict(required=True),
color=dict(default="black", choices=["yellow", "red", "green",
"blue", "black"]),
channel=dict(required=True),
passwd=dict(),
timeout=dict(type='int', default=30)
),
supports_check_mode=True
)

server = module.params["server"]
port = module.params["port"]
nick = module.params["nick"]
msg = module.params["msg"]
color = module.params["color"]
server = module.params["server"]
port = module.params["port"]
nick = module.params["nick"]
msg = module.params["msg"]
color = module.params["color"]
channel = module.params["channel"]
passwd = module.params["passwd"]
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)

Expand Down