2020-01-16 08:01:39 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import webhook_view
|
2020-01-16 08:01:39 +01:00
|
|
|
from zerver.lib.response import json_success
|
2023-08-12 09:34:31 +02:00
|
|
|
from zerver.lib.typed_endpoint import WebhookPayload, typed_endpoint
|
|
|
|
from zerver.lib.validator import WildValue, check_string
|
2020-01-16 08:01:39 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
ERRBIT_TOPIC_TEMPLATE = "{project_name}"
|
2020-01-16 08:01:39 +01:00
|
|
|
ERRBIT_MESSAGE_TEMPLATE = '[{error_class}]({error_url}): "{error_message}" occurred.'
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@webhook_view("Errbit")
|
2023-08-12 09:34:31 +02:00
|
|
|
@typed_endpoint
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_errbit_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2023-08-12 09:34:31 +02:00
|
|
|
*,
|
|
|
|
payload: WebhookPayload[WildValue],
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2023-07-12 13:37:08 +02:00
|
|
|
topic = get_topic(payload)
|
2020-01-16 08:01:39 +01:00
|
|
|
body = get_body(payload)
|
2023-07-12 13:37:08 +02:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|
2020-01-16 08:01:39 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2023-07-12 13:37:08 +02:00
|
|
|
def get_topic(payload: WildValue) -> str:
|
2022-03-30 17:43:16 +02:00
|
|
|
project = payload["problem"]["app_name"].tame(check_string)
|
|
|
|
project += " / " + payload["problem"]["environment"].tame(check_string)
|
2020-01-16 08:01:39 +01:00
|
|
|
return ERRBIT_TOPIC_TEMPLATE.format(project_name=project)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2022-03-30 17:43:16 +02:00
|
|
|
def get_body(payload: WildValue) -> str:
|
2020-01-16 08:01:39 +01:00
|
|
|
data = {
|
2022-03-30 17:43:16 +02:00
|
|
|
"error_url": payload["problem"]["url"].tame(check_string),
|
|
|
|
"error_class": payload["problem"]["error_class"].tame(check_string),
|
|
|
|
"error_message": payload["problem"]["message"].tame(check_string),
|
2020-01-16 08:01:39 +01:00
|
|
|
}
|
|
|
|
return ERRBIT_MESSAGE_TEMPLATE.format(**data)
|