zulip/zerver/webhooks/flock/view.py

33 lines
864 B
Python
Raw Normal View History

2018-03-01 12:13:15 +01:00
# Webhooks for external integrations.
from typing import Any, Dict
from django.http import HttpRequest, HttpResponse
from zerver.decorator import REQ, has_request_variables, webhook_view
2018-03-01 12:13:15 +01:00
from zerver.lib.response import json_success
from zerver.lib.webhooks.common import check_send_webhook_message
2018-03-01 12:13:15 +01:00
from zerver.models import UserProfile
CHECK_IS_REPLY = "in reply to"
@webhook_view("Flock")
2018-03-01 12:13:15 +01:00
@has_request_variables
def api_flock_webhook(
request: HttpRequest,
user_profile: UserProfile,
payload: Dict[str, Any] = REQ(argument_type="body"),
) -> HttpResponse:
2018-03-01 12:13:15 +01:00
if len(payload["text"]) != 0:
message_body = payload["text"]
else:
message_body = payload["notification"]
topic = "Flock notifications"
body = f"{message_body}"
2018-03-01 12:13:15 +01:00
check_send_webhook_message(request, user_profile, topic, body)
2018-03-01 12:13:15 +01:00
return json_success()