2019-02-02 23:53:55 +01:00
|
|
|
from typing import Any, Dict
|
2017-11-16 00:43:10 +01:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.lib.response import json_success
|
2018-03-16 22:53:50 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-08-14 18:03:36 +02:00
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('OpsGenie')
|
|
|
|
@has_request_variables
|
2017-12-18 15:09:16 +01:00
|
|
|
def api_opsgenie_webhook(request: HttpRequest, user_profile: UserProfile,
|
2018-03-16 22:53:50 +01:00
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body')) -> HttpResponse:
|
2017-08-14 18:03:36 +02:00
|
|
|
|
|
|
|
# construct the body of the message
|
|
|
|
info = {"additional_info": '',
|
|
|
|
"alert_type": payload['action'],
|
|
|
|
"alert_id": payload['alert']['alertId'],
|
|
|
|
"integration_name": payload['integrationName'],
|
|
|
|
"tags": ' '.join(['`' + tag + '`' for tag in payload['alert'].get('tags', [])]),
|
|
|
|
}
|
|
|
|
topic = info['integration_name']
|
|
|
|
if 'note' in payload['alert']:
|
|
|
|
info['additional_info'] += "Note: *{}*\n".format(payload['alert']['note'])
|
|
|
|
if 'recipient' in payload['alert']:
|
|
|
|
info['additional_info'] += "Recipient: *{}*\n".format(payload['alert']['recipient'])
|
|
|
|
if 'addedTags' in payload['alert']:
|
|
|
|
info['additional_info'] += "Added tags: *{}*\n".format(payload['alert']['addedTags'])
|
|
|
|
if 'team' in payload['alert']:
|
|
|
|
info['additional_info'] += "Added team: *{}*\n".format(payload['alert']['team'])
|
|
|
|
if 'owner' in payload['alert']:
|
|
|
|
info['additional_info'] += "Assigned owner: *{}*\n".format(payload['alert']['owner'])
|
|
|
|
if 'escalationName' in payload:
|
|
|
|
info['additional_info'] += "Escalation: *{}*\n".format(payload['escalationName'])
|
|
|
|
if 'removedTags' in payload['alert']:
|
|
|
|
info['additional_info'] += "Removed tags: *{}*\n".format(payload['alert']['removedTags'])
|
|
|
|
if 'message' in payload['alert']:
|
|
|
|
info['additional_info'] += "Message: *{}*\n".format(payload['alert']['message'])
|
|
|
|
body = ''
|
2017-10-27 02:47:30 +02:00
|
|
|
body_template = "**OpsGenie: [Alert for {integration_name}.]" \
|
|
|
|
"(https://app.opsgenie.com/alert/V2#/show/{alert_id})**\n" \
|
2017-08-24 17:31:04 +02:00
|
|
|
"Type: *{alert_type}*\n" \
|
|
|
|
"{additional_info}" \
|
|
|
|
"{tags}"
|
|
|
|
body += body_template.format(**info)
|
2017-08-14 18:03:36 +02:00
|
|
|
# send the message
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2017-08-14 18:03:36 +02:00
|
|
|
|
|
|
|
return json_success()
|