zulip/zerver/webhooks/airbrake/view.py

40 lines
1.3 KiB
Python
Raw Normal View History

2016-06-10 20:26:25 +02:00
# Webhooks for external integrations.
from typing import Any, Dict
2017-11-16 00:43:10 +01:00
2016-06-10 20:26:25 +02:00
from django.http import HttpRequest, HttpResponse
2017-11-16 00:43:10 +01:00
from zerver.decorator import webhook_view
from zerver.lib.request import REQ, 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
2016-06-10 20:26:25 +02:00
AIRBRAKE_TOPIC_TEMPLATE = "{project_name}"
2016-06-10 20:26:25 +02:00
AIRBRAKE_MESSAGE_TEMPLATE = '[{error_class}]({error_url}): "{error_message}" occurred.'
@webhook_view("Airbrake")
2016-06-10 20:26:25 +02:00
@has_request_variables
def api_airbrake_webhook(
request: HttpRequest,
user_profile: UserProfile,
payload: Dict[str, Any] = REQ(argument_type="body"),
) -> HttpResponse:
subject = get_subject(payload)
body = get_body(payload)
check_send_webhook_message(request, user_profile, subject, body)
2016-06-10 20:26:25 +02:00
return json_success()
def get_subject(payload: Dict[str, Any]) -> str:
return AIRBRAKE_TOPIC_TEMPLATE.format(project_name=payload["error"]["project"]["name"])
2016-06-10 20:26:25 +02:00
def get_body(payload: Dict[str, Any]) -> str:
2016-06-10 20:26:25 +02:00
data = {
"error_url": payload["airbrake_error_url"],
"error_class": payload["error"]["error_class"],
"error_message": payload["error"]["error_message"],
2016-06-10 20:26:25 +02:00
}
return AIRBRAKE_MESSAGE_TEMPLATE.format(**data)