2016-05-28 09:41:38 +02:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from zerver.lib.actions import check_send_message
|
|
|
|
from zerver.lib.response import json_success, json_error
|
|
|
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-06-06 00:29:27 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-03-03 19:01:52 +01:00
|
|
|
from typing import Any, Dict, Text
|
2016-05-28 09:41:38 +02:00
|
|
|
|
|
|
|
CRASHLYTICS_SUBJECT_TEMPLATE = '{display_id}: {title}'
|
|
|
|
CRASHLYTICS_MESSAGE_TEMPLATE = '[Issue]({url}) impacts at least {impacted_devices_count} device(s).'
|
|
|
|
|
2017-04-06 08:11:44 +02:00
|
|
|
CRASHLYTICS_SETUP_SUBJECT_TEMPLATE = "Setup"
|
|
|
|
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-05-02 01:00:50 +02:00
|
|
|
def api_crashlytics_webhook(request, user_profile, payload=REQ(argument_type='body'),
|
2016-05-28 09:41:38 +02:00
|
|
|
stream=REQ(default='crashlytics')):
|
2017-05-02 01:00:50 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Dict[str, Any], Text) -> HttpResponse
|
2016-05-28 09:41:38 +02:00
|
|
|
try:
|
|
|
|
event = payload['event']
|
|
|
|
if event == VERIFICATION_EVENT:
|
2017-04-06 08:11:44 +02:00
|
|
|
subject = CRASHLYTICS_SETUP_SUBJECT_TEMPLATE
|
|
|
|
body = CRASHLYTICS_SETUP_MESSAGE_TEMPLATE
|
|
|
|
else:
|
|
|
|
issue_body = payload['payload']
|
|
|
|
subject = CRASHLYTICS_SUBJECT_TEMPLATE.format(
|
|
|
|
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
|
|
|
except KeyError as e:
|
2016-07-13 17:09:49 +02:00
|
|
|
return json_error(_("Missing key {} in JSON".format(str(e))))
|
2016-05-28 09:41:38 +02:00
|
|
|
|
2017-05-02 01:00:50 +02:00
|
|
|
check_send_message(user_profile, request.client, 'stream', [stream],
|
2016-05-28 09:41:38 +02:00
|
|
|
subject, body)
|
|
|
|
return json_success()
|