2017-01-17 19:41:29 +01:00
|
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from typing import Any, Callable, Dict
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.lib.actions import check_send_message
|
|
|
|
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
|
2017-01-17 19:41:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('Zapier')
|
|
|
|
@has_request_variables
|
2017-05-02 01:00:50 +02:00
|
|
|
def api_zapier_webhook(request, user_profile,
|
2017-01-17 19:41:29 +01:00
|
|
|
payload=REQ(argument_type='body'),
|
|
|
|
stream=REQ(default='zapier')):
|
2017-05-02 01:00:50 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Dict[str, Any], str) -> HttpResponse
|
2017-01-17 19:41:29 +01: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:
|
|
|
|
return json_error(_("Content can't be empty"))
|
2017-05-02 01:00:50 +02:00
|
|
|
check_send_message(user_profile, request.client, "stream", [stream], subject, content)
|
2017-01-17 19:41:29 +01:00
|
|
|
return json_success()
|