2016-05-28 09:41:38 +02:00
|
|
|
# Webhooks for external integrations.
|
2018-05-10 19:34:01 +02:00
|
|
|
from typing import Any, Dict
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2017-10-31 04:25:48 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-11-16 00:43:10 +01:00
|
|
|
from django.utils.translation import ugettext as _
|
2017-10-31 04:25:48 +01:00
|
|
|
|
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.lib.response import json_error, json_success
|
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
|
|
|
|
2018-11-09 21:02:59 +01:00
|
|
|
CRASHLYTICS_TOPIC_TEMPLATE = '{display_id}: {title}'
|
2016-05-28 09:41:38 +02:00
|
|
|
CRASHLYTICS_MESSAGE_TEMPLATE = '[Issue]({url}) impacts at least {impacted_devices_count} device(s).'
|
|
|
|
|
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."
|
|
|
|
|
2016-05-28 09:41:38 +02:00
|
|
|
VERIFICATION_EVENT = 'verification'
|
|
|
|
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('Crashlytics')
|
|
|
|
@has_request_variables
|
2017-12-04 12:12:35 +01:00
|
|
|
def api_crashlytics_webhook(request: HttpRequest, user_profile: UserProfile,
|
2018-03-13 23:43:02 +01:00
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body')) -> HttpResponse:
|
2017-08-24 17:31:04 +02:00
|
|
|
event = payload['event']
|
|
|
|
if event == VERIFICATION_EVENT:
|
2018-11-09 21:02:59 +01:00
|
|
|
subject = CRASHLYTICS_SETUP_TOPIC_TEMPLATE
|
2017-08-24 17:31:04 +02:00
|
|
|
body = CRASHLYTICS_SETUP_MESSAGE_TEMPLATE
|
|
|
|
else:
|
|
|
|
issue_body = payload['payload']
|
2018-11-09 21:02:59 +01:00
|
|
|
subject = CRASHLYTICS_TOPIC_TEMPLATE.format(
|
2017-08-24 17:31:04 +02:00
|
|
|
display_id=issue_body['display_id'],
|
|
|
|
title=issue_body['title']
|
|
|
|
)
|
|
|
|
body = CRASHLYTICS_MESSAGE_TEMPLATE.format(
|
|
|
|
impacted_devices_count=issue_body['impacted_devices_count'],
|
|
|
|
url=issue_body['url']
|
|
|
|
)
|
2016-05-28 09:41:38 +02:00
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
2016-05-28 09:41:38 +02:00
|
|
|
return json_success()
|