mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-19 11:45:01 +00:00
Add tag links.
This commit is contained in:
parent
bd100fd765
commit
270c903220
2 changed files with 16 additions and 5 deletions
|
@ -56,9 +56,9 @@ defmodule Pleroma.Web.CommonAPI do
|
||||||
mentions <- Formatter.parse_mentions(status),
|
mentions <- Formatter.parse_mentions(status),
|
||||||
inReplyTo <- get_replied_to_activity(data["in_reply_to_status_id"]),
|
inReplyTo <- get_replied_to_activity(data["in_reply_to_status_id"]),
|
||||||
to <- to_for_user_and_mentions(user, mentions, inReplyTo),
|
to <- to_for_user_and_mentions(user, mentions, inReplyTo),
|
||||||
content_html <- make_content_html(status, mentions, attachments),
|
|
||||||
context <- make_context(inReplyTo),
|
|
||||||
tags <- Formatter.parse_tags(status),
|
tags <- Formatter.parse_tags(status),
|
||||||
|
content_html <- make_content_html(status, mentions, attachments, tags),
|
||||||
|
context <- make_context(inReplyTo),
|
||||||
object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags) do
|
object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags) do
|
||||||
res = ActivityPub.create(to, user, context, object)
|
res = ActivityPub.create(to, user, context, object)
|
||||||
User.update_note_count(user)
|
User.update_note_count(user)
|
||||||
|
|
|
@ -38,9 +38,9 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def make_content_html(status, mentions, attachments) do
|
def make_content_html(status, mentions, attachments, tags) do
|
||||||
status
|
status
|
||||||
|> format_input(mentions)
|
|> format_input(mentions, tags)
|
||||||
|> add_attachments(attachments)
|
|> add_attachments(attachments)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -57,11 +57,22 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
||||||
Enum.join([text | attachment_text], "<br>\n")
|
Enum.join([text | attachment_text], "<br>\n")
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_input(text, mentions) do
|
def format_input(text, mentions, tags) do
|
||||||
HtmlSanitizeEx.strip_tags(text)
|
HtmlSanitizeEx.strip_tags(text)
|
||||||
|> Formatter.linkify
|
|> Formatter.linkify
|
||||||
|> String.replace("\n", "<br>\n")
|
|> String.replace("\n", "<br>\n")
|
||||||
|> add_user_links(mentions)
|
|> add_user_links(mentions)
|
||||||
|
|> add_tag_links(tags)
|
||||||
|
end
|
||||||
|
|
||||||
|
def add_tag_links(text, tags) do
|
||||||
|
tags = tags
|
||||||
|
|> Enum.sort_by(fn ({tag, _}) -> -String.length(tag) end)
|
||||||
|
|
||||||
|
Enum.reduce(tags, text, fn({full, tag}, text) ->
|
||||||
|
url = "#<a href='#{Pleroma.Web.base_url}/tag/#{tag}' rel='tag'>#{tag}</a>"
|
||||||
|
String.replace(text, full, url)
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_user_links(text, mentions) do
|
def add_user_links(text, mentions) do
|
||||||
|
|
Loading…
Reference in a new issue