2016-05-28 09:41:38 +02:00
|
|
|
# Webhooks for external integrations.
|
2017-10-31 04:25:48 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import webhook_view
|
2019-02-02 23:53:55 +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_int, check_string
|
2018-03-13 23:43:02 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-05-28 09:41:38 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
CRASHLYTICS_TOPIC_TEMPLATE = "{display_id}: {title}"
|
|
|
|
CRASHLYTICS_MESSAGE_TEMPLATE = "[Issue]({url}) impacts at least {impacted_devices_count} device(s)."
|
2016-05-28 09:41:38 +02:00
|
|
|
|
2018-11-09 21:02:59 +01:00
|
|
|
CRASHLYTICS_SETUP_TOPIC_TEMPLATE = "Setup"
|
2017-04-06 08:11:44 +02:00
|
|
|
CRASHLYTICS_SETUP_MESSAGE_TEMPLATE = "Webhook has been successfully configured."
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
VERIFICATION_EVENT = "verification"
|
2016-05-28 09:41:38 +02:00
|
|
|
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@webhook_view("Crashlytics")
|
2023-08-12 09:34:31 +02:00
|
|
|
@typed_endpoint
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_crashlytics_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:
|
2021-02-12 08:20:45 +01:00
|
|
|
event = payload["event"]
|
2017-08-24 17:31:04 +02:00
|
|
|
if event == VERIFICATION_EVENT:
|
2023-07-12 13:37:08 +02:00
|
|
|
topic = CRASHLYTICS_SETUP_TOPIC_TEMPLATE
|
2017-08-24 17:31:04 +02:00
|
|
|
body = CRASHLYTICS_SETUP_MESSAGE_TEMPLATE
|
|
|
|
else:
|
2021-02-12 08:20:45 +01:00
|
|
|
issue_body = payload["payload"]
|
2023-07-12 13:37:08 +02:00
|
|
|
topic = CRASHLYTICS_TOPIC_TEMPLATE.format(
|
2021-12-17 07:03:22 +01:00
|
|
|
display_id=issue_body["display_id"].tame(check_int),
|
|
|
|
title=issue_body["title"].tame(check_string),
|
2017-08-24 17:31:04 +02:00
|
|
|
)
|
|
|
|
body = CRASHLYTICS_MESSAGE_TEMPLATE.format(
|
2021-12-17 07:03:22 +01:00
|
|
|
impacted_devices_count=issue_body["impacted_devices_count"].tame(check_int),
|
|
|
|
url=issue_body["url"].tame(check_string),
|
2017-08-24 17:31:04 +02:00
|
|
|
)
|
2016-05-28 09:41:38 +02:00
|
|
|
|
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)
|