pleroma/lib/pleroma/web/metadata/providers/open_graph.ex

106 lines
3.3 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
2019-02-09 16:16:26 +01:00
alias Pleroma.User
alias Pleroma.Web.Metadata
2019-02-06 20:20:02 +01:00
alias Pleroma.Web.Metadata.Providers.Provider
alias Pleroma.Web.Metadata.Utils
@behaviour Provider
2019-07-12 18:42:54 +02:00
@media_types ["image", "audio", "video"]
@impl Provider
def build_tags(%{
object: object,
url: url,
user: user
}) do
attachments = build_attachments(object)
scrubbed_content = Utils.scrub_html_and_truncate(object)
2019-01-15 19:20:27 +01:00
2019-01-16 16:02:46 +01:00
[
{:meta,
[
property: "og:title",
content: Utils.user_name_string(user)
2019-01-16 16:02:46 +01:00
], []},
{:meta, [property: "og:url", content: url], []},
2019-01-17 07:18:46 +01:00
{:meta,
[
property: "og:description",
content: scrubbed_content
2019-01-17 07:18:46 +01:00
], []},
{:meta, [property: "og:type", content: "website"], []}
2019-01-16 16:02:46 +01:00
] ++
if attachments == [] or Metadata.activity_nsfw?(object) do
2019-01-16 16:02:46 +01:00
[
{:meta, [property: "og:image", content: Utils.attachment_url(User.avatar_url(user))],
[]},
2019-01-17 07:18:46 +01:00
{:meta, [property: "og:image:width", content: 150], []},
{:meta, [property: "og:image:height", content: 150], []}
2019-01-16 16:02:46 +01:00
]
else
attachments
end
end
@impl Provider
def build_tags(%{user: user}) do
with truncated_bio = Utils.scrub_html_and_truncate(user.bio) do
[
{:meta,
[
property: "og:title",
content: Utils.user_name_string(user)
], []},
{:meta, [property: "og:url", content: user.uri || user.ap_id], []},
{:meta, [property: "og:description", content: truncated_bio], []},
2019-01-17 07:18:46 +01:00
{:meta, [property: "og:type", content: "website"], []},
{:meta, [property: "og:image", content: Utils.attachment_url(User.avatar_url(user))], []},
2019-01-17 07:18:46 +01:00
{:meta, [property: "og:image:width", content: 150], []},
{:meta, [property: "og:image:height", content: 150], []}
]
end
end
defp build_attachments(%{data: %{"attachment" => attachments}}) do
2019-01-16 14:52:01 +01:00
Enum.reduce(attachments, [], fn attachment, acc ->
2019-01-15 19:17:56 +01:00
rendered_tags =
2019-01-16 14:52:01 +01:00
Enum.reduce(attachment["url"], [], fn url, acc ->
2019-01-17 07:18:46 +01: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 Whatsapp Rich Preview.
2019-07-12 18:42:54 +02:00
case Utils.fetch_media_type(@media_types, url["mediaType"]) do
2019-01-17 07:18:46 +01:00
"audio" ->
[
2019-07-12 18:42:54 +02:00
{:meta, [property: "og:audio", content: Utils.attachment_url(url["href"])], []}
2019-01-17 07:18:46 +01:00
| acc
]
"image" ->
[
2019-07-12 18:42:54 +02:00
{:meta, [property: "og:image", content: Utils.attachment_url(url["href"])], []},
{:meta, [property: "og:image:alt", content: attachment["name"]], []}
2019-01-17 07:18:46 +01:00
| acc
]
"video" ->
[
2019-07-12 18:42:54 +02:00
{:meta, [property: "og:video", content: Utils.attachment_url(url["href"])], []}
2019-01-17 07:18:46 +01:00
| acc
]
_ ->
acc
2019-01-15 19:17:56 +01:00
end
end)
acc ++ rendered_tags
end)
end
defp build_attachments(_), do: []
end