2019-01-16 14:15:13 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2019-01-15 16:43:52 +00:00
|
|
|
defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
|
|
|
|
alias Pleroma.Web.Metadata.Providers.Provider
|
2019-01-17 06:18:46 +00:00
|
|
|
alias Pleroma.{HTML, Formatter, User, Web}
|
2019-01-15 16:43:52 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
|
|
|
|
|
|
|
@behaviour Provider
|
|
|
|
|
|
|
|
@impl Provider
|
|
|
|
def build_tags(%{activity: activity, user: user}) do
|
2019-01-16 15:02:46 +00:00
|
|
|
attachments = build_attachments(activity)
|
2019-01-15 18:20:27 +00:00
|
|
|
|
2019-01-17 06:18:46 +00:00
|
|
|
# Most previews only show og:title which is inconvenient. Instagram
|
|
|
|
# hacks this by putting the description in the title and making the
|
|
|
|
# description longer prefixed by how many likes and shares the post
|
|
|
|
# has. Here we use the descriptive nickname in the title, and expand
|
|
|
|
# the full account & nickname in the description. We also use the cute^Wevil
|
|
|
|
# smart quotes around the status text like Instagram, too.
|
2019-01-16 15:02:46 +00:00
|
|
|
[
|
|
|
|
{:meta,
|
|
|
|
[
|
|
|
|
property: "og:title",
|
2019-01-17 06:18:46 +00:00
|
|
|
content:
|
|
|
|
"#{user.name}: " <>
|
|
|
|
"“" <>
|
|
|
|
scrub_html_and_truncate(activity) <>
|
|
|
|
"”"
|
2019-01-16 15:02:46 +00:00
|
|
|
], []},
|
2019-01-17 06:18:46 +00:00
|
|
|
{:meta, [property: "og:url", content: "#{Web.base_url()}/notice/#{activity.id}"], []},
|
|
|
|
{:meta,
|
|
|
|
[
|
|
|
|
property: "og:description",
|
|
|
|
content:
|
|
|
|
"#{user_name_string(user)}: " <>
|
|
|
|
"“" <>
|
|
|
|
scrub_html_and_truncate(activity) <>
|
|
|
|
"”"
|
|
|
|
], []},
|
|
|
|
{:meta, [property: "og:type", content: "website"], []}
|
2019-01-16 15:02:46 +00:00
|
|
|
] ++
|
2019-01-17 06:18:46 +00:00
|
|
|
if attachments == [] do
|
2019-01-16 15:02:46 +00:00
|
|
|
[
|
|
|
|
{:meta, [property: "og:image", content: attachment_url(User.avatar_url(user))], []},
|
2019-01-17 06:18:46 +00:00
|
|
|
{:meta, [property: "og:image:width", content: 150], []},
|
|
|
|
{:meta, [property: "og:image:height", content: 150], []}
|
2019-01-16 15:02:46 +00:00
|
|
|
]
|
|
|
|
else
|
|
|
|
attachments
|
|
|
|
end
|
2019-01-15 16:43:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl Provider
|
|
|
|
def build_tags(%{user: user}) do
|
|
|
|
with truncated_bio = scrub_html_and_truncate(user.bio || "") do
|
|
|
|
[
|
|
|
|
{:meta,
|
|
|
|
[
|
|
|
|
property: "og:title",
|
|
|
|
content: user_name_string(user)
|
|
|
|
], []},
|
|
|
|
{:meta, [property: "og:url", content: User.profile_url(user)], []},
|
|
|
|
{:meta, [property: "og:description", content: truncated_bio], []},
|
2019-01-17 06:18:46 +00:00
|
|
|
{:meta, [property: "og:type", content: "website"], []},
|
2019-01-15 18:17:56 +00:00
|
|
|
{:meta, [property: "og:image", content: attachment_url(User.avatar_url(user))], []},
|
2019-01-17 06:18:46 +00:00
|
|
|
{:meta, [property: "og:image:width", content: 150], []},
|
|
|
|
{:meta, [property: "og:image:height", content: 150], []}
|
2019-01-15 16:43:52 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-16 13:52:01 +00:00
|
|
|
defp build_attachments(%{data: %{"object" => %{"attachment" => attachments}}} = _activity) do
|
|
|
|
Enum.reduce(attachments, [], fn attachment, acc ->
|
2019-01-15 18:17:56 +00:00
|
|
|
rendered_tags =
|
2019-01-16 13:52:01 +00:00
|
|
|
Enum.reduce(attachment["url"], [], fn url, acc ->
|
2019-01-15 18:17:56 +00:00
|
|
|
media_type =
|
|
|
|
Enum.find(["image", "audio", "video"], fn media_type ->
|
|
|
|
String.starts_with?(url["mediaType"], media_type)
|
|
|
|
end)
|
|
|
|
|
2019-01-17 06:18:46 +00:00
|
|
|
# TODO: Add additional properties to objects when we have the data available.
|
|
|
|
# Also, Whatsapp only wants JPEG or PNGs. It seems that if we add a second og:image
|
|
|
|
# object when a Video or GIF is attached it will display that in the Whatsapp Rich Preview.
|
|
|
|
case media_type do
|
|
|
|
"audio" ->
|
|
|
|
[
|
|
|
|
{:meta, [property: "og:" <> media_type, content: attachment_url(url["href"])], []}
|
|
|
|
| acc
|
|
|
|
]
|
|
|
|
|
|
|
|
"image" ->
|
|
|
|
[
|
|
|
|
{:meta, [property: "og:" <> media_type, content: attachment_url(url["href"])],
|
|
|
|
[]},
|
|
|
|
{:meta, [property: "og:image:width", content: 150], []},
|
|
|
|
{:meta, [property: "og:image:height", content: 150], []}
|
|
|
|
| acc
|
|
|
|
]
|
|
|
|
|
|
|
|
"video" ->
|
|
|
|
[
|
|
|
|
{:meta, [property: "og:" <> media_type, content: attachment_url(url["href"])], []}
|
|
|
|
| acc
|
|
|
|
]
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
acc
|
2019-01-15 18:17:56 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
acc ++ rendered_tags
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-01-16 06:42:24 +00:00
|
|
|
defp scrub_html_and_truncate(%{data: %{"object" => %{"content" => content}}} = activity) do
|
2019-01-15 21:07:28 +00:00
|
|
|
content
|
|
|
|
# html content comes from DB already encoded, decode first and scrub after
|
|
|
|
|> HtmlEntities.decode()
|
|
|
|
|> String.replace(~r/<br\s?\/?>/, " ")
|
|
|
|
|> HTML.get_cached_stripped_html_for_object(activity, __MODULE__)
|
|
|
|
|> Formatter.truncate()
|
|
|
|
end
|
|
|
|
|
2019-01-16 06:42:24 +00:00
|
|
|
defp scrub_html_and_truncate(content) when is_binary(content) do
|
2019-01-15 16:43:52 +00:00
|
|
|
content
|
|
|
|
# html content comes from DB already encoded, decode first and scrub after
|
|
|
|
|> HtmlEntities.decode()
|
2019-01-15 17:00:21 +00:00
|
|
|
|> String.replace(~r/<br\s?\/?>/, " ")
|
2019-01-15 16:43:52 +00:00
|
|
|
|> HTML.strip_tags()
|
|
|
|
|> Formatter.truncate()
|
|
|
|
end
|
2019-01-16 06:42:24 +00:00
|
|
|
|
2019-01-15 18:17:56 +00:00
|
|
|
defp attachment_url(url) do
|
|
|
|
MediaProxy.url(url)
|
2019-01-15 16:43:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp user_name_string(user) do
|
2019-01-15 18:47:45 +00:00
|
|
|
"#{user.name} " <>
|
2019-01-15 16:43:52 +00:00
|
|
|
if user.local do
|
|
|
|
"(@#{user.nickname}@#{Pleroma.Web.Endpoint.host()})"
|
|
|
|
else
|
|
|
|
"(@#{user.nickname})"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|