2016-05-23 20:35:29 +02:00
|
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from typing import Any, Callable, Dict
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-09-30 04:18:16 +02:00
|
|
|
from zerver.lib.actions import check_send_stream_message
|
2016-05-23 20:35:29 +02:00
|
|
|
from zerver.lib.response import json_success, json_error
|
|
|
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-05-23 20:35:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('IFTTT')
|
|
|
|
@has_request_variables
|
2017-05-02 01:00:50 +02:00
|
|
|
def api_iftt_app_webhook(request, user_profile,
|
2016-05-23 20:35:29 +02:00
|
|
|
payload=REQ(argument_type='body'),
|
|
|
|
stream=REQ(default='ifttt')):
|
2017-05-02 01:00:50 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Dict[str, Any], str) -> HttpResponse
|
2016-05-23 20:35:29 +02:00
|
|
|
subject = payload.get('subject')
|
|
|
|
content = payload.get('content')
|
|
|
|
if subject is None:
|
|
|
|
return json_error(_("Subject can't be empty"))
|
|
|
|
if content is None:
|
2016-07-28 05:29:34 +02:00
|
|
|
return json_error(_("Content can't be empty"))
|
2017-09-30 04:18:16 +02:00
|
|
|
check_send_stream_message(user_profile, request.client, stream, subject, content)
|
2016-05-23 20:35:29 +02:00
|
|
|
return json_success()
|