2019-02-02 23:53:55 +01:00
|
|
|
from typing import Any, Dict
|
2017-11-16 00:43:10 +01:00
|
|
|
|
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
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.response import json_success
|
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")
|
2016-05-23 20:35:29 +02:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_iftt_app_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2021-02-12 08:20:45 +01:00
|
|
|
payload: Dict[str, Any] = REQ(argument_type="body"),
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2021-02-12 08:20:45 +01:00
|
|
|
topic = payload.get("topic")
|
|
|
|
content = payload.get("content")
|
2018-03-17 21:11:54 +01:00
|
|
|
|
|
|
|
if topic is None:
|
2021-02-12 08:20:45 +01:00
|
|
|
topic = payload.get("subject") # Backwards-compatibility
|
2018-03-17 21:11:54 +01:00
|
|
|
if topic is None:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Topic can't be empty"))
|
2018-03-17 21:11:54 +01:00
|
|
|
|
2016-05-23 20:35:29 +02:00
|
|
|
if content is None:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Content can't be empty"))
|
2018-03-17 21:11:54 +01:00
|
|
|
|
2021-12-13 20:06:21 +01:00
|
|
|
if not isinstance(topic, str):
|
|
|
|
raise JsonableError(_("Topic must be a string"))
|
|
|
|
|
|
|
|
if not isinstance(content, str):
|
|
|
|
raise JsonableError(_("Content must be a string"))
|
|
|
|
|
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)
|