Files
zulip/zerver/webhooks/airbrake/view.py
Mateusz Mandera ac14a8bcf5 typed_endpoint: Rename WebhookPayload to JsonBodyPayload.
This kind of payload that's loaded from json in the body of the request
is not only used for webhooks, but also in the push bouncer, and may get
used elsewhere too - so a general name is better.
2023-09-27 14:21:42 -07:00

42 lines
1.4 KiB
Python

# Webhooks for external integrations.
from django.http import HttpRequest, HttpResponse
from zerver.decorator import webhook_view
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
AIRBRAKE_TOPIC_TEMPLATE = "{project_name}"
AIRBRAKE_MESSAGE_TEMPLATE = '[{error_class}]({error_url}): "{error_message}" occurred.'
@webhook_view("Airbrake")
@typed_endpoint
def api_airbrake_webhook(
request: HttpRequest,
user_profile: UserProfile,
*,
payload: JsonBodyPayload[WildValue],
) -> HttpResponse:
topic = get_topic(payload)
body = get_body(payload)
check_send_webhook_message(request, user_profile, topic, body)
return json_success(request)
def get_topic(payload: WildValue) -> str:
return AIRBRAKE_TOPIC_TEMPLATE.format(
project_name=payload["error"]["project"]["name"].tame(check_string)
)
def get_body(payload: WildValue) -> str:
data = {
"error_url": payload["airbrake_error_url"].tame(check_string),
"error_class": payload["error"]["error_class"].tame(check_string),
"error_message": payload["error"]["error_message"].tame(check_string),
}
return AIRBRAKE_MESSAGE_TEMPLATE.format(**data)