2016-12-13 15:50:24 +01:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
import re
|
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import webhook_view
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.lib.response import json_success
|
2023-09-27 19:01:31 +02:00
|
|
|
from zerver.lib.typed_endpoint import JsonBodyPayload, typed_endpoint
|
2023-08-12 09:34:31 +02:00
|
|
|
from zerver.lib.validator import WildValue, check_string
|
2018-03-13 23:43:02 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-12-13 15:50:24 +01:00
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
@webhook_view("AppFollow")
|
2023-08-12 09:34:31 +02:00
|
|
|
@typed_endpoint
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_appfollow_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2023-08-12 09:34:31 +02:00
|
|
|
*,
|
2023-09-27 19:01:31 +02:00
|
|
|
payload: JsonBodyPayload[WildValue],
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2021-12-17 07:03:22 +01:00
|
|
|
message = payload["text"].tame(check_string)
|
2021-02-12 08:20:45 +01:00
|
|
|
app_name_search = re.search(r"\A(.+)", message)
|
2018-03-23 16:57:24 +01:00
|
|
|
assert app_name_search is not None
|
|
|
|
app_name = app_name_search.group(0)
|
2024-01-17 15:53:30 +01:00
|
|
|
topic_name = app_name
|
2016-12-13 15:50:24 +01:00
|
|
|
|
2024-01-17 15:53:30 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic_name, body=convert_markdown(message))
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|
2016-12-13 15:50:24 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def convert_markdown(text: str) -> str:
|
2020-08-11 01:47:49 +02:00
|
|
|
# Converts Slack-style Markdown to Zulip format
|
2016-12-13 15:50:24 +01:00
|
|
|
# Implemented mainly for AppFollow messages
|
|
|
|
# Not ready for general use as some edge-cases not handled
|
2021-05-10 07:02:14 +02:00
|
|
|
# Convert bold
|
2021-02-12 08:20:45 +01:00
|
|
|
text = re.sub(r"(?:(?<=\s)|(?<=^))\*(.+?\S)\*(?=\s|$)", r"**\1**", text)
|
2021-05-10 07:02:14 +02:00
|
|
|
# Convert italics
|
2021-02-12 08:20:45 +01:00
|
|
|
text = re.sub(r"\b_(\s*)(.+?)(\s*)_\b", r"\1*\2*\3", text)
|
2021-05-10 07:02:14 +02:00
|
|
|
# Convert strikethrough
|
2021-02-12 08:20:45 +01:00
|
|
|
text = re.sub(r"(?:(?<=\s)|(?<=^))~(.+?\S)~(?=\s|$)", r"~~\1~~", text)
|
2016-12-13 15:50:24 +01:00
|
|
|
|
|
|
|
return text
|