mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Adds request as a parameter to json_success as a refactor towards making `ignored_parameters_unsupported` functionality available for all API endpoints. Also, removes any data parameters that are an empty dict or a dict with the generic success response values.
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Webhooks for external integrations.
 | 
						|
from django.http import HttpRequest, HttpResponse
 | 
						|
 | 
						|
from zerver.decorator import authenticated_rest_api_view
 | 
						|
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
 | 
						|
 | 
						|
 | 
						|
# Desk.com's integrations all make the user supply a template, where it fills
 | 
						|
# in stuff like {{customer.name}} and posts the result as a "data" parameter.
 | 
						|
# There's no raw JSON for us to work from. Thus, it makes sense to just write
 | 
						|
# a template Zulip message within Desk.com and have the webhook extract that
 | 
						|
# from the "data" param and post it, which this does.
 | 
						|
@authenticated_rest_api_view(webhook_client_name="Desk")
 | 
						|
@has_request_variables
 | 
						|
def api_deskdotcom_webhook(
 | 
						|
    request: HttpRequest, user_profile: UserProfile, data: str = REQ()
 | 
						|
) -> HttpResponse:
 | 
						|
    topic = "Desk.com notification"
 | 
						|
    check_send_webhook_message(request, user_profile, topic, data)
 | 
						|
    return json_success(request)
 |