mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 00:46:03 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
# Webhooks for external integrations.
|
|
from typing import Any, Dict, Optional
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
from zerver.lib.request import REQ, has_request_variables
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.validator import check_dict
|
|
from zerver.lib.webhooks.common import UnexpectedWebhookEventType, check_send_webhook_message
|
|
from zerver.models import UserProfile
|
|
|
|
ALERT_TEMPLATE = "{long_description} ([view alert]({alert_url}))."
|
|
|
|
DEPLOY_TEMPLATE = """
|
|
**{revision}** deployed by **{deployed_by}**:
|
|
|
|
``` quote
|
|
{description}
|
|
```
|
|
|
|
Changelog:
|
|
|
|
``` quote
|
|
{changelog}
|
|
```
|
|
""".strip()
|
|
|
|
@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 = ALERT_TEMPLATE.format(**alert)
|
|
elif deployment:
|
|
subject = "{} deploy".format(deployment['application_name'])
|
|
content = DEPLOY_TEMPLATE.format(**deployment)
|
|
else:
|
|
raise UnexpectedWebhookEventType('New Relic', 'Unknown Event Type')
|
|
|
|
check_send_webhook_message(request, user_profile, subject, content)
|
|
return json_success()
|