2019-11-14 13:21:38 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
|
|
|
from zerver.decorator import webhook_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
|
|
|
from zerver.lib.response import json_success
|
2022-10-08 19:13:04 +02:00
|
|
|
from zerver.lib.validator import WildValue, check_string, to_wild_value
|
2019-11-14 13:21:38 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
|
|
|
LINK_TEMPLATE = "[See in Wekan]({url})"
|
|
|
|
MESSAGE_TEMPLATE = "{body}\n\n{footer}"
|
|
|
|
|
|
|
|
|
|
|
|
def get_url(text: str) -> str:
|
|
|
|
return text.split("\n")[-1]
|
|
|
|
|
|
|
|
|
|
|
|
def get_hyperlinked_url(text: str) -> str:
|
|
|
|
url = get_url(text)
|
|
|
|
return LINK_TEMPLATE.format(url=url)
|
|
|
|
|
|
|
|
|
|
|
|
def clean_payload_text(text: str) -> str:
|
|
|
|
url = get_url(text)
|
|
|
|
return text.replace(url, "").replace("\n", "")
|
|
|
|
|
|
|
|
|
2022-10-08 19:13:04 +02:00
|
|
|
def get_message_body(payload: WildValue) -> str:
|
|
|
|
footer = get_hyperlinked_url(payload["text"].tame(check_string))
|
|
|
|
body = process_message_data(payload)
|
2019-11-14 13:21:38 +01:00
|
|
|
return MESSAGE_TEMPLATE.format(body=body, footer=footer)
|
|
|
|
|
|
|
|
|
2022-10-08 19:13:04 +02:00
|
|
|
def process_message_data(payload: WildValue) -> str:
|
|
|
|
text = clean_payload_text(payload["text"].tame(check_string))
|
|
|
|
return f"{text}."
|
2019-11-14 13:21:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
@webhook_view("Wekan")
|
|
|
|
@has_request_variables
|
|
|
|
def api_wekan_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2022-10-08 19:13:04 +02:00
|
|
|
payload: WildValue = REQ(argument_type="body", converter=to_wild_value),
|
2019-11-14 13:21:38 +01:00
|
|
|
) -> HttpResponse:
|
|
|
|
topic = "Wekan Notification"
|
2022-10-08 19:13:04 +02:00
|
|
|
body = get_message_body(payload)
|
2019-11-14 13:21:38 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
|
|
|
return json_success(request)
|