2020-01-16 08:01:39 +01:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
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.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
|
|
|
|
|
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")
|
2020-01-16 08:01:39 +01:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_errbit_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2021-02-12 08:20:45 +01:00
|
|
|
payload: Dict[str, Any] = REQ(argument_type="body"),
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2020-01-16 08:01:39 +01:00
|
|
|
subject = get_subject(payload)
|
|
|
|
body = get_body(payload)
|
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
|
|
|
return json_success()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-01-16 08:01:39 +01:00
|
|
|
def get_subject(payload: Dict[str, Any]) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
project = payload["problem"]["app_name"] + " / " + payload["problem"]["environment"]
|
2020-01-16 08:01:39 +01:00
|
|
|
return ERRBIT_TOPIC_TEMPLATE.format(project_name=project)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-01-16 08:01:39 +01:00
|
|
|
def get_body(payload: Dict[str, Any]) -> str:
|
|
|
|
data = {
|
2021-02-12 08:20:45 +01:00
|
|
|
"error_url": payload["problem"]["url"],
|
|
|
|
"error_class": payload["problem"]["error_class"],
|
|
|
|
"error_message": payload["problem"]["message"],
|
2020-01-16 08:01:39 +01:00
|
|
|
}
|
|
|
|
return ERRBIT_MESSAGE_TEMPLATE.format(**data)
|