2019-01-16 14:15:13 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2019-07-12 16:42:54 +00:00
|
|
|
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-01-16 14:15:13 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2019-01-18 06:32:52 +00:00
|
|
|
|
2019-01-15 20:00:22 +00:00
|
|
|
defmodule Pleroma.Web.Metadata.Providers.TwitterCard do
|
2019-02-11 23:59:04 +00:00
|
|
|
alias Pleroma.User
|
2021-06-09 14:58:29 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
2019-01-17 08:00:02 +00:00
|
|
|
alias Pleroma.Web.Metadata
|
2019-02-11 23:59:04 +00:00
|
|
|
alias Pleroma.Web.Metadata.Providers.Provider
|
|
|
|
alias Pleroma.Web.Metadata.Utils
|
2019-01-15 20:25:28 +00:00
|
|
|
|
|
|
|
@behaviour Provider
|
2019-07-12 16:42:54 +00:00
|
|
|
@media_types ["image", "audio", "video"]
|
2019-01-15 20:25:28 +00:00
|
|
|
|
|
|
|
@impl Provider
|
2019-07-12 16:42:54 +00:00
|
|
|
def build_tags(%{activity_id: id, object: object, user: user}) do
|
2019-02-19 16:39:42 +00:00
|
|
|
attachments = build_attachments(id, object)
|
2019-02-11 23:59:04 +00:00
|
|
|
scrubbed_content = Utils.scrub_html_and_truncate(object)
|
|
|
|
|
|
|
|
[
|
2019-07-12 16:42:54 +00:00
|
|
|
title_tag(user),
|
2021-06-04 04:15:54 +00:00
|
|
|
{:meta, [property: "twitter:description", content: scrubbed_content], []}
|
2019-02-11 23:59:04 +00:00
|
|
|
] ++
|
|
|
|
if attachments == [] or Metadata.activity_nsfw?(object) do
|
|
|
|
[
|
2019-07-12 16:42:54 +00:00
|
|
|
image_tag(user),
|
2019-12-20 22:32:04 +00:00
|
|
|
{:meta, [property: "twitter:card", content: "summary"], []}
|
2019-02-11 23:59:04 +00:00
|
|
|
]
|
|
|
|
else
|
|
|
|
attachments
|
2019-01-15 20:00:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-15 20:25:28 +00:00
|
|
|
@impl Provider
|
2019-02-11 23:59:04 +00:00
|
|
|
def build_tags(%{user: user}) do
|
2020-09-01 06:25:32 +00:00
|
|
|
with truncated_bio = Utils.scrub_html_and_truncate(user.bio) do
|
2019-02-11 23:59:04 +00:00
|
|
|
[
|
2019-07-12 16:42:54 +00:00
|
|
|
title_tag(user),
|
2019-02-11 23:59:04 +00:00
|
|
|
{:meta, [property: "twitter:description", content: truncated_bio], []},
|
2019-07-12 16:42:54 +00:00
|
|
|
image_tag(user),
|
2019-02-11 23:59:04 +00:00
|
|
|
{:meta, [property: "twitter:card", content: "summary"], []}
|
|
|
|
]
|
|
|
|
end
|
2019-01-15 20:00:22 +00:00
|
|
|
end
|
|
|
|
|
2019-07-12 16:42:54 +00:00
|
|
|
defp title_tag(user) do
|
|
|
|
{:meta, [property: "twitter:title", content: Utils.user_name_string(user)], []}
|
|
|
|
end
|
|
|
|
|
|
|
|
def image_tag(user) do
|
2021-06-09 14:58:29 +00:00
|
|
|
{:meta, [property: "twitter:image", content: MediaProxy.preview_url(User.avatar_url(user))],
|
|
|
|
[]}
|
2019-07-12 16:42:54 +00:00
|
|
|
end
|
|
|
|
|
2019-02-24 18:53:49 +00:00
|
|
|
defp build_attachments(id, %{data: %{"attachment" => attachments}}) do
|
2019-02-11 23:59:04 +00:00
|
|
|
Enum.reduce(attachments, [], fn attachment, acc ->
|
|
|
|
rendered_tags =
|
|
|
|
Enum.reduce(attachment["url"], [], fn url, acc ->
|
2019-07-12 16:42:54 +00:00
|
|
|
case Utils.fetch_media_type(@media_types, url["mediaType"]) do
|
2019-02-11 23:59:04 +00:00
|
|
|
"audio" ->
|
|
|
|
[
|
|
|
|
{:meta, [property: "twitter:card", content: "player"], []},
|
2019-02-19 16:39:42 +00:00
|
|
|
{:meta, [property: "twitter:player:width", content: "480"], []},
|
|
|
|
{:meta, [property: "twitter:player:height", content: "80"], []},
|
|
|
|
{:meta, [property: "twitter:player", content: player_url(id)], []}
|
2019-02-11 23:59:04 +00:00
|
|
|
| acc
|
|
|
|
]
|
|
|
|
|
2021-06-09 16:09:14 +00:00
|
|
|
# Not using preview_url for this. It saves bandwidth, but the image dimensions will
|
|
|
|
# be wrong. We generate it on the fly and have no way to capture or analyze the
|
2021-06-09 16:58:51 +00:00
|
|
|
# image to get the dimensions. This can be an issue for apps/FEs rendering images
|
|
|
|
# in timelines too, but you can get clever with the aspect ratio metadata as a
|
|
|
|
# workaround.
|
2019-02-11 23:59:04 +00:00
|
|
|
"image" ->
|
|
|
|
[
|
|
|
|
{:meta, [property: "twitter:card", content: "summary_large_image"], []},
|
|
|
|
{:meta,
|
|
|
|
[
|
|
|
|
property: "twitter:player",
|
2021-06-09 14:58:29 +00:00
|
|
|
content: MediaProxy.url(url["href"])
|
2021-06-08 21:31:12 +00:00
|
|
|
], []}
|
2019-02-11 23:59:04 +00:00
|
|
|
| acc
|
|
|
|
]
|
2021-06-08 21:31:12 +00:00
|
|
|
|> maybe_add_dimensions(url)
|
2019-02-11 23:59:04 +00:00
|
|
|
|
|
|
|
"video" ->
|
2021-06-08 21:31:12 +00:00
|
|
|
# fallback to old placeholder values
|
|
|
|
height = url["height"] || 480
|
|
|
|
width = url["width"] || 480
|
|
|
|
|
2019-02-11 23:59:04 +00:00
|
|
|
[
|
|
|
|
{:meta, [property: "twitter:card", content: "player"], []},
|
2019-02-19 16:39:42 +00:00
|
|
|
{:meta, [property: "twitter:player", content: player_url(id)], []},
|
2021-06-08 20:59:55 +00:00
|
|
|
{:meta, [property: "twitter:player:width", content: "#{width}"], []},
|
|
|
|
{:meta, [property: "twitter:player:height", content: "#{height}"], []},
|
2021-06-09 16:06:53 +00:00
|
|
|
{:meta, [property: "twitter:player:stream", content: MediaProxy.url(url["href"])],
|
|
|
|
[]},
|
2021-06-07 20:47:50 +00:00
|
|
|
{:meta,
|
|
|
|
[property: "twitter:player:stream:content_type", content: url["mediaType"]], []}
|
2019-02-11 23:59:04 +00:00
|
|
|
| acc
|
|
|
|
]
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
acc
|
|
|
|
end
|
2019-01-15 20:00:22 +00:00
|
|
|
end)
|
2019-02-11 23:59:04 +00:00
|
|
|
|
|
|
|
acc ++ rendered_tags
|
2019-01-15 20:00:22 +00:00
|
|
|
end)
|
|
|
|
end
|
2019-07-08 11:05:57 +00:00
|
|
|
|
2019-07-08 09:16:32 +00:00
|
|
|
defp build_attachments(_id, _object), do: []
|
2019-02-19 16:39:42 +00:00
|
|
|
|
|
|
|
defp player_url(id) do
|
|
|
|
Pleroma.Web.Router.Helpers.o_status_url(Pleroma.Web.Endpoint, :notice_player, id)
|
|
|
|
end
|
2021-06-08 21:31:12 +00:00
|
|
|
|
|
|
|
# Videos have problems without dimensions, but we used to not provide WxH for images.
|
|
|
|
# A default (read: incorrect) fallback for images is likely to cause rendering bugs.
|
|
|
|
defp maybe_add_dimensions(metadata, url) do
|
|
|
|
cond do
|
|
|
|
!is_nil(url["height"]) && !is_nil(url["width"]) ->
|
|
|
|
metadata ++
|
|
|
|
[
|
|
|
|
{:meta, [property: "twitter:player:width", content: "#{url["width"]}"], []},
|
|
|
|
{:meta, [property: "twitter:player:height", content: "#{url["height"]}"], []}
|
|
|
|
]
|
|
|
|
|
|
|
|
true ->
|
|
|
|
metadata
|
|
|
|
end
|
|
|
|
end
|
2019-01-15 20:00:22 +00:00
|
|
|
end
|