2016-03-13 13:15:21 +01:00
|
|
|
# Webhooks for external integrations.
|
2020-11-19 01:19:08 +01:00
|
|
|
from datetime import datetime
|
|
|
|
from typing import Any, Dict
|
2016-05-25 15:02:02 +02:00
|
|
|
|
2016-06-05 23:18:47 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2020-11-19 01:19:08 +01:00
|
|
|
from django.utils.translation import ugettext as _
|
2016-05-25 15:02:02 +02:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import webhook_view
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2020-11-19 01:19:08 +01:00
|
|
|
from zerver.lib.response import json_error, json_success
|
2020-08-19 22:14:40 +02:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.models import UserProfile
|
2016-03-13 13:15:21 +01:00
|
|
|
|
2020-11-19 01:19:08 +01:00
|
|
|
OPEN_TEMPLATE = """
|
|
|
|
[Incident]({incident_url}) **opened** for condition: **{condition_name}** at <time:{iso_timestamp}>
|
2019-04-17 23:26:31 +02:00
|
|
|
``` quote
|
2020-11-19 01:19:08 +01:00
|
|
|
{details}
|
2019-04-17 23:26:31 +02:00
|
|
|
```
|
2020-11-19 01:19:08 +01:00
|
|
|
""".strip()
|
2019-04-17 23:26:31 +02:00
|
|
|
|
2020-11-19 01:19:08 +01:00
|
|
|
DEFAULT_TEMPLATE = """[Incident]({incident_url}) **{status}** for condition: **{condition_name}**""".strip()
|
2019-04-17 23:26:31 +02:00
|
|
|
|
2020-11-19 01:19:08 +01:00
|
|
|
TOPIC_TEMPLATE = """{policy_name} ({incident_id})""".strip()
|
2019-04-17 23:26:31 +02:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
@webhook_view("NewRelic")
|
2016-03-13 13:15:21 +01:00
|
|
|
@has_request_variables
|
2020-11-19 01:19:08 +01:00
|
|
|
def api_newrelic_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body')
|
|
|
|
) -> HttpResponse:
|
|
|
|
|
|
|
|
info = {
|
|
|
|
"condition_name": payload.get('condition_name', 'Unknown condition'),
|
|
|
|
"details": payload.get('details', 'No details.'),
|
|
|
|
"incident_url": payload.get('incident_url', 'https://alerts.newrelic.com'),
|
|
|
|
"incident_acknowledge_url": payload.get('incident_acknowledge_url', 'https://alerts.newrelic.com'),
|
|
|
|
"status": payload.get('current_state', 'None'),
|
|
|
|
"iso_timestamp": '',
|
|
|
|
}
|
|
|
|
|
|
|
|
unix_time = payload.get('timestamp', None)
|
|
|
|
if unix_time is None:
|
|
|
|
return json_error(_("The newrelic webhook requires timestamp in milliseconds"))
|
|
|
|
|
|
|
|
duration = payload.get('duration', None)
|
|
|
|
if duration is None:
|
|
|
|
return json_error(_("The newrelic webhook requires duration in milliseconds"))
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Timestamp - duration to get time alert started
|
|
|
|
# timestamps from NewRelic are in ms
|
|
|
|
iso_timestamp = datetime.fromtimestamp((unix_time - duration) / 1000)
|
|
|
|
info['iso_timestamp'] = iso_timestamp
|
|
|
|
except ValueError:
|
|
|
|
return json_error(_("The newrelic webhook expects timestamp and duration in milliseconds"))
|
|
|
|
except TypeError:
|
|
|
|
return json_error(_("The newrelic webhook expects timestamp and duration in milliseconds"))
|
|
|
|
|
|
|
|
# These are the three promised current_state values
|
|
|
|
if 'open' in info['status']:
|
|
|
|
content = OPEN_TEMPLATE.format(**info)
|
|
|
|
elif 'acknowledged' in info['status']:
|
|
|
|
content = DEFAULT_TEMPLATE.format(**info)
|
|
|
|
elif 'closed' in info['status']:
|
|
|
|
content = DEFAULT_TEMPLATE.format(**info)
|
2016-03-13 13:15:21 +01:00
|
|
|
else:
|
2020-11-19 01:19:08 +01:00
|
|
|
return json_error(_("The newrelic webhook requires current_state be in [open|acknowledged|closed]"))
|
|
|
|
|
|
|
|
topic_info = {
|
|
|
|
"policy_name": payload.get('policy_name', 'Unknown Policy'),
|
|
|
|
"incident_id": payload.get('incident_id', 'Unknown ID'),
|
|
|
|
}
|
|
|
|
topic = TOPIC_TEMPLATE.format(**topic_info)
|
2016-03-13 13:15:21 +01:00
|
|
|
|
2020-11-19 01:19:08 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, content)
|
2016-03-13 13:15:21 +01:00
|
|
|
return json_success()
|