mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02:30
Implement irc notification backend
This commit is contained in:
@@ -16,6 +16,7 @@ from awx.main.notifications.twilio_backend import TwilioBackend
|
|||||||
from awx.main.notifications.pagerduty_backend import PagerDutyBackend
|
from awx.main.notifications.pagerduty_backend import PagerDutyBackend
|
||||||
from awx.main.notifications.hipchat_backend import HipChatBackend
|
from awx.main.notifications.hipchat_backend import HipChatBackend
|
||||||
from awx.main.notifications.webhook_backend import WebhookBackend
|
from awx.main.notifications.webhook_backend import WebhookBackend
|
||||||
|
from awx.main.notifications.irc_backend import IrcBackend
|
||||||
|
|
||||||
# Django-JSONField
|
# Django-JSONField
|
||||||
from jsonfield import JSONField
|
from jsonfield import JSONField
|
||||||
@@ -31,7 +32,8 @@ class NotificationTemplate(CommonModel):
|
|||||||
('twilio', _('Twilio'), TwilioBackend),
|
('twilio', _('Twilio'), TwilioBackend),
|
||||||
('pagerduty', _('Pagerduty'), PagerDutyBackend),
|
('pagerduty', _('Pagerduty'), PagerDutyBackend),
|
||||||
('hipchat', _('HipChat'), HipChatBackend),
|
('hipchat', _('HipChat'), HipChatBackend),
|
||||||
('webhook', _('Webhook'), WebhookBackend)]
|
('webhook', _('Webhook'), WebhookBackend),
|
||||||
|
('irc', _('IRC'), IrcBackend)]
|
||||||
NOTIFICATION_TYPE_CHOICES = [(x[0], x[1]) for x in NOTIFICATION_TYPES]
|
NOTIFICATION_TYPE_CHOICES = [(x[0], x[1]) for x in NOTIFICATION_TYPES]
|
||||||
CLASS_FOR_NOTIFICATION_TYPE = dict([(x[0], x[2]) for x in NOTIFICATION_TYPES])
|
CLASS_FOR_NOTIFICATION_TYPE = dict([(x[0], x[2]) for x in NOTIFICATION_TYPES])
|
||||||
|
|
||||||
|
|||||||
93
awx/main/notifications/irc_backend.py
Normal file
93
awx/main/notifications/irc_backend.py
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
# Copyright (c) 2016 Ansible, Inc.
|
||||||
|
# All Rights Reserved.
|
||||||
|
|
||||||
|
import time
|
||||||
|
import ssl
|
||||||
|
import logging
|
||||||
|
|
||||||
|
import irc.client
|
||||||
|
|
||||||
|
from django.core.mail.backends.base import BaseEmailBackend
|
||||||
|
|
||||||
|
logger = logging.getLogger('awx.main.notifications.irc_backend')
|
||||||
|
|
||||||
|
class IrcBackend(BaseEmailBackend):
|
||||||
|
|
||||||
|
init_parameters = {"server": {"label": "IRC Server Address", "type": "string"},
|
||||||
|
"port": {"label": "IRC Server Port", "type": "int"},
|
||||||
|
"nickname": {"label": "IRC Nick", "type": "string"},
|
||||||
|
"password": {"label": "IRC Server Password", "type": "password"},
|
||||||
|
"use_ssl": {"label": "SSL Connection", "type": "bool"},
|
||||||
|
"targets": {"label": "Destination Channels or Users", "type": "list"}}
|
||||||
|
recipient_parameter = "targets"
|
||||||
|
sender_parameter = None
|
||||||
|
|
||||||
|
def __init__(self, server, port, nickname, password, use_ssl, fail_silently=False, **kwargs):
|
||||||
|
super(IrcBackend, self).__init__(fail_silently=fail_silently)
|
||||||
|
self.server = server
|
||||||
|
self.port = port
|
||||||
|
self.nickname = nickname
|
||||||
|
self.password = password if password != "" else None
|
||||||
|
self.use_ssl = use_ssl
|
||||||
|
self.connection = None
|
||||||
|
|
||||||
|
def open(self):
|
||||||
|
if self.connection is not None:
|
||||||
|
return False
|
||||||
|
if self.use_ssl:
|
||||||
|
connection_factory = irc.connection.Factory(wrapper=ssl.wrap_socket)
|
||||||
|
else:
|
||||||
|
connection_factory = irc.connection.Factory()
|
||||||
|
try:
|
||||||
|
self.reactor = irc.client.Reactor()
|
||||||
|
self.connection = self.reactor.server().connect(
|
||||||
|
self.server,
|
||||||
|
self.port,
|
||||||
|
self.nickname,
|
||||||
|
password=self.password,
|
||||||
|
connect_factory=connection_factory,
|
||||||
|
)
|
||||||
|
except irc.client.ServerConnectionError as e:
|
||||||
|
logger.error("Exception connecting to irc server: {}".format(e))
|
||||||
|
if not self.fail_silently:
|
||||||
|
raise
|
||||||
|
return True
|
||||||
|
|
||||||
|
def close(self):
|
||||||
|
if self.connection is None:
|
||||||
|
return
|
||||||
|
self.connection = None
|
||||||
|
|
||||||
|
def on_connect(self, connection, event):
|
||||||
|
for c in self.channels:
|
||||||
|
if irc.client.is_channel(c):
|
||||||
|
connection.join(c)
|
||||||
|
else:
|
||||||
|
for m in self.channels[c]:
|
||||||
|
connection.privmsg(c, m.subject)
|
||||||
|
self.channels_sent += 1
|
||||||
|
|
||||||
|
def on_join(self, connection, event):
|
||||||
|
for m in self.channels[event.target]:
|
||||||
|
connection.privmsg(event.target, m.subject)
|
||||||
|
self.channels_sent += 1
|
||||||
|
|
||||||
|
def send_messages(self, messages):
|
||||||
|
if self.connection is None:
|
||||||
|
self.open()
|
||||||
|
self.channels = {}
|
||||||
|
self.channels_sent = 0
|
||||||
|
for m in messages:
|
||||||
|
for r in m.recipients():
|
||||||
|
if r not in self.channels:
|
||||||
|
self.channels[r] = []
|
||||||
|
self.channels[r].append(m)
|
||||||
|
self.connection.add_global_handler("welcome", self.on_connect)
|
||||||
|
self.connection.add_global_handler("join", self.on_join)
|
||||||
|
start_time = time.time()
|
||||||
|
process_time = time.time()
|
||||||
|
while self.channels_sent < len(self.channels) and (process_time-start_time) < 60:
|
||||||
|
self.reactor.process_once(0.1)
|
||||||
|
process_time = time.time()
|
||||||
|
self.reactor.disconnect_all()
|
||||||
|
return self.channels_sent
|
||||||
@@ -44,7 +44,7 @@ class SlackBackend(BaseEmailBackend):
|
|||||||
self.connection.rtm_send_message(r, m.body)
|
self.connection.rtm_send_message(r, m.body)
|
||||||
sent_messages += 1
|
sent_messages += 1
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
logger.error("Exception sending messages: {}".format(e))
|
||||||
if not self.fail_silently:
|
if not self.fail_silently:
|
||||||
raise
|
raise
|
||||||
logger.error("Exception sending messages: {}".format(e))
|
|
||||||
return sent_messages
|
return sent_messages
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ httplib2==0.9
|
|||||||
idna==2.0
|
idna==2.0
|
||||||
importlib==1.0.3
|
importlib==1.0.3
|
||||||
ipaddress==1.0.14
|
ipaddress==1.0.14
|
||||||
|
irc==13.3.1
|
||||||
iso8601==0.1.10
|
iso8601==0.1.10
|
||||||
isodate==0.5.1
|
isodate==0.5.1
|
||||||
jsonpatch==1.11
|
jsonpatch==1.11
|
||||||
|
|||||||
Reference in New Issue
Block a user