mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
This commit migrates all webhooks to use check_send_stream_message instead of check_send_message. The only two webhooks that still use check_send_message are our yo and teamcity webhooks. They both use check_send_message for private messages.
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
# Webhooks for external integrations.
|
|
from django.utils.translation import ugettext as _
|
|
from django.http import HttpRequest, HttpResponse
|
|
from zerver.models import UserProfile
|
|
from zerver.lib.actions import check_send_stream_message
|
|
from zerver.lib.response import json_success, json_error
|
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
|
from typing import Optional
|
|
|
|
@api_key_only_webhook_view('Transifex')
|
|
@has_request_variables
|
|
def api_transifex_webhook(request, user_profile,
|
|
project=REQ(), resource=REQ(),
|
|
language=REQ(), translated=REQ(default=None),
|
|
reviewed=REQ(default=None),
|
|
stream=REQ(default='transifex')):
|
|
# type: (HttpRequest, UserProfile, str, str, str, Optional[int], Optional[int], str) -> HttpResponse
|
|
subject = "{} in {}".format(project, language)
|
|
if translated:
|
|
body = "Resource {} fully translated.".format(resource)
|
|
elif reviewed:
|
|
body = "Resource {} fully reviewed.".format(resource)
|
|
else:
|
|
return json_error(_("Transifex wrong request"))
|
|
check_send_stream_message(user_profile, request.client, stream, subject, body)
|
|
return json_success()
|