2018-03-01 12:13:15 +01:00
|
|
|
# Webhooks for external integrations.
|
2020-01-14 22:06:24 +01:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
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
|
2018-03-13 23:43:02 +01:00
|
|
|
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"
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
@webhook_view('Flock')
|
2018-03-01 12:13:15 +01:00
|
|
|
@has_request_variables
|
|
|
|
def api_flock_webhook(request: HttpRequest, user_profile: UserProfile,
|
2018-03-13 23:43:02 +01:00
|
|
|
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"]
|
2018-03-13 23:43:02 +01:00
|
|
|
|
|
|
|
topic = 'Flock notifications'
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"{message_body}"
|
2018-03-01 12:13:15 +01:00
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
return json_success()
|