mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			988 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			988 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Webhooks for external integrations.
 | 
						|
from django.http import HttpRequest, HttpResponse
 | 
						|
 | 
						|
from zerver.decorator import api_key_only_webhook_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
 | 
						|
 | 
						|
TEMPLATE = """
 | 
						|
{user} deployed version {head} of [{app}]({url}):
 | 
						|
 | 
						|
``` quote
 | 
						|
{git_log}
 | 
						|
```
 | 
						|
""".strip()
 | 
						|
 | 
						|
@api_key_only_webhook_view("Heroku", notify_bot_owner_on_invalid_json=False)
 | 
						|
@has_request_variables
 | 
						|
def api_heroku_webhook(request: HttpRequest, user_profile: UserProfile,
 | 
						|
                       head: str=REQ(), app: str=REQ(), user: str=REQ(),
 | 
						|
                       url: str=REQ(), git_log: str=REQ()) -> HttpResponse:
 | 
						|
    content = TEMPLATE.format(user=user, head=head, app=app,
 | 
						|
                              url=url, git_log=git_log)
 | 
						|
 | 
						|
    check_send_webhook_message(request, user_profile, app, content)
 | 
						|
    return json_success()
 |