mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
This is preparatory work towards adding a Topic model. We plan to use the local variable name as 'topic' for the Topic model objects. Currently, we use *topic as the local variable name for topic names. We rename local variables of the form *topic to *topic_name so that we don't need to think about type collisions in individual code paths where we might want to talk about both Topic objects and strings for the topic name.
76 lines
2.5 KiB
Python
76 lines
2.5 KiB
Python
# Webhooks for external integrations.
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.decorator import webhook_view
|
|
from zerver.lib.exceptions import AnomalousWebhookPayloadError
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.typed_endpoint import JsonBodyPayload, typed_endpoint
|
|
from zerver.lib.validator import WildValue, check_string
|
|
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}"
|
|
|
|
ALL_EVENT_TYPES = ["incident", "component"]
|
|
|
|
|
|
def get_incident_events_body(payload: WildValue) -> str:
|
|
return INCIDENT_TEMPLATE.format(
|
|
name=payload["incident"]["name"].tame(check_string),
|
|
state=payload["incident"]["status"].tame(check_string),
|
|
content=payload["incident"]["incident_updates"][0]["body"].tame(check_string),
|
|
)
|
|
|
|
|
|
def get_components_update_body(payload: WildValue) -> str:
|
|
return COMPONENT_TEMPLATE.format(
|
|
name=payload["component"]["name"].tame(check_string),
|
|
old_status=payload["component_update"]["old_status"].tame(check_string),
|
|
new_status=payload["component_update"]["new_status"].tame(check_string),
|
|
)
|
|
|
|
|
|
def get_incident_topic(payload: WildValue) -> str:
|
|
return TOPIC_TEMPLATE.format(
|
|
name=payload["incident"]["name"].tame(check_string),
|
|
description=payload["page"]["status_description"].tame(check_string),
|
|
)
|
|
|
|
|
|
def get_component_topic(payload: WildValue) -> str:
|
|
return TOPIC_TEMPLATE.format(
|
|
name=payload["component"]["name"].tame(check_string),
|
|
description=payload["page"]["status_description"].tame(check_string),
|
|
)
|
|
|
|
|
|
@webhook_view("Statuspage", all_event_types=ALL_EVENT_TYPES)
|
|
@typed_endpoint
|
|
def api_statuspage_webhook(
|
|
request: HttpRequest,
|
|
user_profile: UserProfile,
|
|
*,
|
|
payload: JsonBodyPayload[WildValue],
|
|
) -> HttpResponse:
|
|
if "incident" in payload:
|
|
event = "incident"
|
|
topic_name = get_incident_topic(payload)
|
|
body = get_incident_events_body(payload)
|
|
elif "component" in payload:
|
|
event = "component"
|
|
topic_name = get_component_topic(payload)
|
|
body = get_components_update_body(payload)
|
|
else:
|
|
raise AnomalousWebhookPayloadError
|
|
|
|
check_send_webhook_message(request, user_profile, topic_name, body, event)
|
|
return json_success(request)
|