2017-01-17 19:41:29 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2021-04-16 00:57:30 +02:00
|
|
|
from django.utils.translation import gettext as _
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import webhook_view
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.exceptions import JsonableError
|
|
|
|
from zerver.lib.response import json_success
|
2023-09-27 19:01:31 +02:00
|
|
|
from zerver.lib.typed_endpoint import JsonBodyPayload, typed_endpoint
|
2023-08-12 09:34:31 +02:00
|
|
|
from zerver.lib.validator import WildValue, check_none_or, check_string
|
2019-02-28 19:40:48 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2017-01-17 19:41:29 +01:00
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@webhook_view("Zapier", notify_bot_owner_on_invalid_json=False)
|
2023-08-12 09:34:31 +02:00
|
|
|
@typed_endpoint
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_zapier_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2023-08-12 09:34:31 +02:00
|
|
|
*,
|
2023-09-27 19:01:31 +02:00
|
|
|
payload: JsonBodyPayload[WildValue],
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2022-06-08 11:42:48 +02:00
|
|
|
if payload.get("type").tame(check_none_or(check_string)) == "auth":
|
2019-03-09 01:20:46 +01:00
|
|
|
# The bot's details are used by our Zapier app to format a connection
|
|
|
|
# label for users to be able to distinguish between different Zulip
|
|
|
|
# bots and API keys in their UI
|
2021-02-12 08:19:30 +01:00
|
|
|
return json_success(
|
2022-01-31 13:44:02 +01:00
|
|
|
request,
|
|
|
|
data={
|
2021-02-12 08:20:45 +01:00
|
|
|
"full_name": user_profile.full_name,
|
|
|
|
"email": user_profile.email,
|
|
|
|
"id": user_profile.id,
|
2022-01-31 13:44:02 +01:00
|
|
|
},
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2019-02-01 02:41:57 +01:00
|
|
|
|
2024-01-17 15:53:30 +01:00
|
|
|
topic_name = payload.get("topic").tame(check_none_or(check_string))
|
2022-06-08 11:42:48 +02:00
|
|
|
content = payload.get("content").tame(check_none_or(check_string))
|
2018-03-17 19:38:13 +01:00
|
|
|
|
2024-01-17 15:53:30 +01:00
|
|
|
if topic_name is None:
|
|
|
|
topic_name = payload.get("subject").tame(
|
|
|
|
check_none_or(check_string)
|
|
|
|
) # Backwards-compatibility
|
|
|
|
if topic_name is None:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Topic can't be empty"))
|
2018-03-17 19:38:13 +01:00
|
|
|
|
2017-01-17 19:41:29 +01:00
|
|
|
if content is None:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Content can't be empty"))
|
2018-03-17 19:38:13 +01:00
|
|
|
|
2024-01-17 15:53:30 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic_name, content)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|