2022-10-08 19:27:08 +02:00
|
|
|
from django.core.exceptions import ValidationError
|
2016-05-23 20:35:29 +02: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
|
2018-03-16 22:53:50 +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
|
2016-05-23 20:35:29 +02:00
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@webhook_view("IFTTT")
|
2023-08-12 09:34:31 +02:00
|
|
|
@typed_endpoint
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_iftt_app_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-10-08 19:27:08 +02:00
|
|
|
try:
|
|
|
|
topic = payload.get("topic").tame(check_none_or(check_string))
|
|
|
|
content = payload.get("content").tame(check_none_or(check_string))
|
2018-03-17 21:11:54 +01:00
|
|
|
|
2022-10-08 19:27:08 +02:00
|
|
|
if topic is None:
|
|
|
|
topic = payload.get("subject").tame(
|
|
|
|
check_none_or(check_string)
|
|
|
|
) # Backwards-compatibility
|
|
|
|
if topic is None:
|
|
|
|
raise JsonableError(_("Topic can't be empty"))
|
2018-03-17 21:11:54 +01:00
|
|
|
|
2022-10-08 19:27:08 +02:00
|
|
|
if content is None:
|
|
|
|
raise JsonableError(_("Content can't be empty"))
|
2021-12-13 20:06:21 +01:00
|
|
|
|
2022-10-08 19:27:08 +02:00
|
|
|
except ValidationError:
|
|
|
|
raise JsonableError(_("Malformed payload"))
|
2021-12-13 20:06:21 +01:00
|
|
|
|
2018-03-17 21:11:54 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, content)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|