Fix mentions at the start of posts

pull/29/head
Andrew Godwin 2022-11-21 22:17:22 -07:00
rodzic 1d37dce012
commit 63ab492439
2 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -166,7 +166,7 @@ class Post(StatorModel):
### Content cleanup and extraction ###
mention_regex = re.compile(
r"([^\w\d\-_])@([\w\d\-_]+(?:@[\w\d\-_]+\.[\w\d\-_\.]+)?)"
r"(^|[^\w\d\-_])@([\w\d\-_]+(?:@[\w\d\-_]+\.[\w\d\-_\.]+)?)"
)
def linkify_mentions(self, content, local=False):

Wyświetl plik

@ -94,6 +94,17 @@ def test_linkify_mentions_local(identity, remote_identity):
post.safe_content_local()
== '<p><a href="/@test@example.com/">@test@example.com</a>, welcome!</p>'
)
# Test a full username (remote) with no <p>
post = Post.objects.create(
content="@test@remote.test hello!",
author=identity,
local=True,
)
post.mentions.add(remote_identity)
assert (
post.safe_content_local()
== '<a href="/@test@remote.test/">@test@remote.test</a> hello!'
)
# Test that they don't get touched without a mention
post = Post.objects.create(
content="<p>@test@example.com, welcome!</p>",