mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +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>
63 lines
2.1 KiB
Python
63 lines
2.1 KiB
Python
# Webhooks for external integrations.
|
|
from typing import Any, Dict
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.decorator import REQ, api_key_only_webhook_view, has_request_variables
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
from zerver.models import UserProfile
|
|
|
|
INCIDENT_TEMPLATE = """
|
|
**{name}**:
|
|
* State: **{state}**
|
|
* Description: {content}
|
|
""".strip()
|
|
|
|
COMPONENT_TEMPLATE = "**{name}** has changed status from **{old_status}** to **{new_status}**."
|
|
|
|
TOPIC_TEMPLATE = '{name}: {description}'
|
|
|
|
def get_incident_events_body(payload: Dict[str, Any]) -> str:
|
|
return INCIDENT_TEMPLATE.format(
|
|
name = payload["incident"]["name"],
|
|
state = payload["incident"]["status"],
|
|
content = payload["incident"]["incident_updates"][0]["body"],
|
|
)
|
|
|
|
def get_components_update_body(payload: Dict[str, Any]) -> str:
|
|
return COMPONENT_TEMPLATE.format(
|
|
name = payload["component"]["name"],
|
|
old_status = payload["component_update"]["old_status"],
|
|
new_status = payload["component_update"]["new_status"],
|
|
)
|
|
|
|
def get_incident_topic(payload: Dict[str, Any]) -> str:
|
|
return TOPIC_TEMPLATE.format(
|
|
name = payload["incident"]["name"],
|
|
description = payload["page"]["status_description"],
|
|
)
|
|
|
|
def get_component_topic(payload: Dict[str, Any]) -> str:
|
|
return TOPIC_TEMPLATE.format(
|
|
name = payload["component"]["name"],
|
|
description = payload["page"]["status_description"],
|
|
)
|
|
|
|
@api_key_only_webhook_view('Statuspage')
|
|
@has_request_variables
|
|
def api_statuspage_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
payload: Dict[str, Any]=REQ(argument_type='body')) -> HttpResponse:
|
|
|
|
status = payload["page"]["status_indicator"]
|
|
|
|
if status == "none":
|
|
topic = get_incident_topic(payload)
|
|
body = get_incident_events_body(payload)
|
|
else:
|
|
topic = get_component_topic(payload)
|
|
body = get_components_update_body(payload)
|
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
|
return json_success()
|