2016-03-13 13:15:21 +01:00
|
|
|
# Webhooks for external integrations.
|
2017-05-24 23:03:06 +02:00
|
|
|
from typing import Any, Callable, Dict, Iterable, Optional, Tuple, Text
|
2016-05-25 15:02:02 +02:00
|
|
|
|
|
|
|
from django.utils.translation import ugettext as _
|
2016-06-05 23:18:47 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2016-05-25 15:02:02 +02:00
|
|
|
|
2016-03-13 13:15:21 +01:00
|
|
|
from zerver.lib.actions import check_send_message
|
|
|
|
from zerver.lib.response import json_success, json_error
|
|
|
|
from zerver.lib.validator import check_dict
|
|
|
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile, Stream
|
2016-03-13 13:15:21 +01:00
|
|
|
|
|
|
|
|
2016-05-12 22:49:36 +02:00
|
|
|
@api_key_only_webhook_view("NewRelic")
|
2016-03-13 13:15:21 +01:00
|
|
|
@has_request_variables
|
2017-05-24 23:03:06 +02:00
|
|
|
def api_newrelic_webhook(request, user_profile, stream=REQ(default='newrelic'),
|
2016-05-07 20:07:48 +02:00
|
|
|
alert=REQ(validator=check_dict([]), default=None),
|
|
|
|
deployment=REQ(validator=check_dict([]), default=None)):
|
2017-05-24 23:03:06 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Text, Optional[Dict[str, Any]], Optional[Dict[str, Any]]) -> HttpResponse
|
2016-03-13 13:15:21 +01:00
|
|
|
if alert:
|
|
|
|
# Use the message as the subject because it stays the same for
|
|
|
|
# "opened", "acknowledged", and "closed" messages that should be
|
|
|
|
# grouped.
|
|
|
|
subject = alert['message']
|
|
|
|
content = "%(long_description)s\n[View alert](%(alert_url)s)" % (alert)
|
|
|
|
elif deployment:
|
|
|
|
subject = "%s deploy" % (deployment['application_name'])
|
|
|
|
content = """`%(revision)s` deployed by **%(deployed_by)s**
|
|
|
|
%(description)s
|
|
|
|
|
|
|
|
%(changelog)s""" % (deployment)
|
|
|
|
else:
|
2016-05-25 15:02:02 +02:00
|
|
|
return json_error(_("Unknown webhook request"))
|
2016-03-13 13:15:21 +01:00
|
|
|
|
2017-05-02 01:00:50 +02:00
|
|
|
check_send_message(user_profile, request.client, "stream",
|
2016-03-13 13:15:21 +01:00
|
|
|
[stream], subject, content)
|
|
|
|
return json_success()
|