akkoma/lib/pleroma/web/metadata.ex

56 lines
1.4 KiB
Elixir
Raw Normal View History

defmodule Pleroma.Web.Metadata do
alias Phoenix.HTML
@parsers Pleroma.Config.get([:metadata, :providers], [])
2019-01-16 07:35:06 +00:00
def get_cached_tags(%{activity: activity, user: user} = params) do
# We don't need to use the both activity and a user since the object can't change it's content
key = "#{:erlang.term_to_binary(user)}#{activity.data["id"]}"
Cachex.fetch!(:metadata_cache, key, fn _key ->
{:commit, build_tags(params)}
end)
end
2019-01-16 07:26:01 +00:00
2019-01-16 07:30:47 +00:00
def get_cached_tags(%{user: user} = params) do
2019-01-16 07:26:01 +00:00
# I am unsure how well ETS works with big keys
2019-01-16 07:30:47 +00:00
key = :erlang.term_to_binary(user)
2019-01-16 07:26:01 +00:00
Cachex.fetch!(:metadata_cache, key, fn _key ->
{:commit, build_tags(params)}
end)
end
def get_cached_tags(params) do
key = :erlang.term_to_binary(params)
Cachex.fetch!(:metadata_cache, key, fn _key ->
{:commit, build_tags(params)}
end)
end
def build_tags(params) do
Enum.reduce(@parsers, "", fn parser, acc ->
rendered_html =
params
|> parser.build_tags()
|> Enum.map(&to_tag/1)
|> Enum.map(&HTML.safe_to_string/1)
|> Enum.join()
acc <> rendered_html
end)
2019-01-15 09:11:07 +00:00
end
def to_tag(data) do
with {name, attrs, _content = []} <- data do
HTML.Tag.tag(name, attrs)
else
{name, attrs, content} ->
HTML.Tag.content_tag(name, content, attrs)
_ ->
raise ArgumentError, message: "make_tag invalid args"
end
end
end