mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 12:10:06 -03:30
52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
# Copyright (c) 2016 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
import logging
|
|
import pygerduty
|
|
|
|
from django.utils.encoding import smart_text
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from awx.main.notifications.base import AWXBaseEmailBackend
|
|
|
|
logger = logging.getLogger('awx.main.notifications.pagerduty_backend')
|
|
|
|
|
|
class PagerDutyBackend(AWXBaseEmailBackend):
|
|
|
|
init_parameters = {"subdomain": {"label": "Pagerduty subdomain", "type": "string"},
|
|
"token": {"label": "API Token", "type": "password"},
|
|
"service_key": {"label": "API Service/Integration Key", "type": "string"},
|
|
"client_name": {"label": "Client Identifier", "type": "string"}}
|
|
recipient_parameter = "service_key"
|
|
sender_parameter = "client_name"
|
|
|
|
def __init__(self, subdomain, token, fail_silently=False, **kwargs):
|
|
super(PagerDutyBackend, self).__init__(fail_silently=fail_silently)
|
|
self.subdomain = subdomain
|
|
self.token = token
|
|
|
|
def format_body(self, body):
|
|
return body
|
|
|
|
def send_messages(self, messages):
|
|
sent_messages = 0
|
|
|
|
try:
|
|
pager = pygerduty.PagerDuty(self.subdomain, self.token)
|
|
except Exception as e:
|
|
if not self.fail_silently:
|
|
raise
|
|
logger.error(smart_text(_("Exception connecting to PagerDuty: {}").format(e)))
|
|
for m in messages:
|
|
try:
|
|
pager.trigger_incident(m.recipients()[0],
|
|
description=m.subject,
|
|
details=m.body,
|
|
client=m.from_email)
|
|
sent_messages += 1
|
|
except Exception as e:
|
|
logger.error(smart_text(_("Exception sending messages: {}").format(e)))
|
|
if not self.fail_silently:
|
|
raise
|
|
return sent_messages
|