2016-12-13 15:50:24 +01:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
import re
|
2019-02-02 23:53:55 +01:00
|
|
|
from typing import Any, Dict
|
2016-12-13 15:50:24 +01:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2019-02-02 23:53:55 +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
|
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
|
|
|
|
2016-12-13 15:50:24 +01:00
|
|
|
@api_key_only_webhook_view("AppFollow")
|
|
|
|
@has_request_variables
|
2017-12-18 15:08:14 +01:00
|
|
|
def api_appfollow_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any]=REQ(argument_type="body")) -> HttpResponse:
|
2017-08-24 17:31:04 +02:00
|
|
|
message = payload["text"]
|
2018-07-02 00:05:24 +02: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)
|
2018-03-13 23:43:02 +01:00
|
|
|
topic = app_name
|
2016-12-13 15:50:24 +01:00
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic,
|
|
|
|
body=convert_markdown(message))
|
2016-12-13 15:50:24 +01:00
|
|
|
return json_success()
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def convert_markdown(text: str) -> str:
|
2016-12-13 15:50:24 +01:00
|
|
|
# Converts Slack-style markdown to Zulip format
|
|
|
|
# Implemented mainly for AppFollow messages
|
|
|
|
# Not ready for general use as some edge-cases not handled
|
|
|
|
# Convert Bold
|
|
|
|
text = re.sub(r'(?:(?<=\s)|(?<=^))\*(.+?\S)\*(?=\s|$)', r'**\1**', text)
|
|
|
|
# Convert Italics
|
|
|
|
text = re.sub(r'\b_(\s*)(.+?)(\s*)_\b', r'\1*\2*\3', text)
|
|
|
|
# Convert Strikethrough
|
|
|
|
text = re.sub(r'(?:(?<=\s)|(?<=^))~(.+?\S)~(?=\s|$)', r'~~\1~~', text)
|
|
|
|
|
|
|
|
return text
|