mirror of https://github.com/zulip/zulip.git
37 lines
1.5 KiB
Python
37 lines
1.5 KiB
Python
# Webhooks for external integrations.
|
|
from typing import Any, Callable, Dict, Iterable, Optional, Tuple
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
from zerver.lib.request import REQ, has_request_variables
|
|
from zerver.lib.response import json_error, json_success
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
from zerver.lib.validator import check_dict
|
|
from zerver.models import Stream, UserProfile
|
|
|
|
@api_key_only_webhook_view("NewRelic")
|
|
@has_request_variables
|
|
def api_newrelic_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
alert: Optional[Dict[str, Any]]=REQ(validator=check_dict([]), default=None),
|
|
deployment: Optional[Dict[str, Any]]=REQ(validator=check_dict([]), default=None)
|
|
)-> HttpResponse:
|
|
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:
|
|
return json_error(_("Unknown webhook request"))
|
|
|
|
check_send_webhook_message(request, user_profile, subject, content)
|
|
return json_success()
|