mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This is preparatory work towards adding a Topic model. We plan to use the local variable name as 'topic' for the Topic model objects. Currently, we use *topic as the local variable name for topic names. We rename local variables of the form *topic to *topic_name so that we don't need to think about type collisions in individual code paths where we might want to talk about both Topic objects and strings for the topic name.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Webhooks for external integrations.
 | 
						|
from django.http import HttpRequest, HttpResponse
 | 
						|
 | 
						|
from zerver.decorator import webhook_view
 | 
						|
from zerver.lib.response import json_success
 | 
						|
from zerver.lib.typed_endpoint import JsonBodyPayload, typed_endpoint
 | 
						|
from zerver.lib.validator import WildValue, check_int, check_string
 | 
						|
from zerver.lib.webhooks.common import check_send_webhook_message
 | 
						|
from zerver.models import UserProfile
 | 
						|
 | 
						|
CRASHLYTICS_TOPIC_TEMPLATE = "{display_id}: {title}"
 | 
						|
CRASHLYTICS_MESSAGE_TEMPLATE = "[Issue]({url}) impacts at least {impacted_devices_count} device(s)."
 | 
						|
 | 
						|
CRASHLYTICS_SETUP_TOPIC_TEMPLATE = "Setup"
 | 
						|
CRASHLYTICS_SETUP_MESSAGE_TEMPLATE = "Webhook has been successfully configured."
 | 
						|
 | 
						|
VERIFICATION_EVENT = "verification"
 | 
						|
 | 
						|
 | 
						|
@webhook_view("Crashlytics")
 | 
						|
@typed_endpoint
 | 
						|
def api_crashlytics_webhook(
 | 
						|
    request: HttpRequest,
 | 
						|
    user_profile: UserProfile,
 | 
						|
    *,
 | 
						|
    payload: JsonBodyPayload[WildValue],
 | 
						|
) -> HttpResponse:
 | 
						|
    event = payload["event"]
 | 
						|
    if event == VERIFICATION_EVENT:
 | 
						|
        topic_name = CRASHLYTICS_SETUP_TOPIC_TEMPLATE
 | 
						|
        body = CRASHLYTICS_SETUP_MESSAGE_TEMPLATE
 | 
						|
    else:
 | 
						|
        issue_body = payload["payload"]
 | 
						|
        topic_name = CRASHLYTICS_TOPIC_TEMPLATE.format(
 | 
						|
            display_id=issue_body["display_id"].tame(check_int),
 | 
						|
            title=issue_body["title"].tame(check_string),
 | 
						|
        )
 | 
						|
        body = CRASHLYTICS_MESSAGE_TEMPLATE.format(
 | 
						|
            impacted_devices_count=issue_body["impacted_devices_count"].tame(check_int),
 | 
						|
            url=issue_body["url"].tame(check_string),
 | 
						|
        )
 | 
						|
 | 
						|
    check_send_webhook_message(request, user_profile, topic_name, body)
 | 
						|
    return json_success(request)
 |