1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.MastodonAPI.StatusView do
12 alias Pleroma.Web.CommonAPI
13 alias Pleroma.Web.CommonAPI.Utils
14 alias Pleroma.Web.MastodonAPI.AccountView
15 alias Pleroma.Web.MastodonAPI.StatusView
16 alias Pleroma.Web.MediaProxy
18 # TODO: Add cached version.
19 defp get_replied_to_activities(activities) do
22 %{data: %{"type" => "Create", "object" => %{"inReplyTo" => in_reply_to}}} ->
23 in_reply_to != "" && in_reply_to
29 |> Activity.create_by_object_ap_id()
31 |> Enum.reduce(%{}, fn activity, acc ->
32 Map.put(acc, activity.data["object"]["id"], activity)
36 defp get_user(ap_id) do
38 user = User.get_cached_by_ap_id(ap_id) ->
41 user = User.get_by_guessed_nickname(ap_id) ->
45 User.error_user(ap_id)
49 defp get_context_id(%{data: %{"context_id" => context_id}}) when not is_nil(context_id),
52 defp get_context_id(%{data: %{"context" => context}}) when is_binary(context),
53 do: Utils.context_to_conversation_id(context)
55 defp get_context_id(_), do: nil
57 defp reblogged?(activity, user) do
58 object = activity.data["object"] || %{}
59 present?(user && user.ap_id in (object["announcements"] || []))
62 def render("index.json", opts) do
63 replied_to_activities = get_replied_to_activities(opts.activities)
69 Map.put(opts, :replied_to_activities, replied_to_activities)
75 %{activity: %{data: %{"type" => "Announce", "object" => object}} = activity} = opts
77 user = get_user(activity.data["actor"])
78 created_at = Utils.to_masto_date(activity.data["published"])
80 reblogged_activity = Activity.get_create_by_object_ap_id(object)
81 reblogged = render("status.json", Map.put(opts, :activity, reblogged_activity))
85 |> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
87 |> Enum.map(fn user -> AccountView.render("mention.json", %{user: user}) end)
90 id: to_string(activity.id),
93 account: AccountView.render("account.json", %{user: user}),
95 in_reply_to_account_id: nil,
97 content: reblogged[:content] || "",
98 created_at: created_at,
102 reblogged: reblogged?(reblogged_activity, opts[:for]),
106 pinned: pinned?(activity, user),
109 visibility: "public",
110 media_attachments: reblogged[:media_attachments] || [],
112 tags: reblogged[:tags] || [],
120 local: activity.local
125 def render("status.json", %{activity: %{data: %{"object" => object}} = activity} = opts) do
126 user = get_user(activity.data["actor"])
128 like_count = object["like_count"] || 0
129 announcement_count = object["announcement_count"] || 0
131 tags = object["tag"] || []
132 sensitive = object["sensitive"] || Enum.member?(tags, "nsfw")
136 |> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
138 |> Enum.map(fn user -> AccountView.render("mention.json", %{user: user}) end)
140 favorited = opts[:for] && opts[:for].ap_id in (object["likes"] || [])
141 bookmarked = opts[:for] && object["id"] in opts[:for].bookmarks
143 attachment_data = object["attachment"] || []
144 attachments = render_many(attachment_data, StatusView, "attachment.json", as: :attachment)
146 created_at = Utils.to_masto_date(object["published"])
148 reply_to = get_reply_to(activity, opts)
149 reply_to_user = reply_to && get_user(reply_to.data["actor"])
157 |> HTML.get_cached_scrubbed_html_for_activity(
158 User.html_filter_policy(opts[:for]),
165 |> HTML.get_cached_stripped_html_for_activity(
170 summary = object["summary"] || ""
174 |> HTML.get_cached_scrubbed_html_for_activity(
175 User.html_filter_policy(opts[:for]),
182 |> HTML.get_cached_stripped_html_for_activity(
187 card = render("card.json", Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity))
191 Pleroma.Web.Router.Helpers.o_status_url(Pleroma.Web.Endpoint, :notice, activity)
193 object["external_url"] || object["id"]
197 id: to_string(activity.id),
200 account: AccountView.render("account.json", %{user: user}),
201 in_reply_to_id: reply_to && to_string(reply_to.id),
202 in_reply_to_account_id: reply_to_user && to_string(reply_to_user.id),
205 content: content_html,
206 created_at: created_at,
207 reblogs_count: announcement_count,
208 replies_count: object["repliesCount"] || 0,
209 favourites_count: like_count,
210 reblogged: reblogged?(activity, opts[:for]),
211 favourited: present?(favorited),
212 bookmarked: present?(bookmarked),
213 muted: CommonAPI.thread_muted?(user, activity) || User.mutes?(opts[:for], user),
214 pinned: pinned?(activity, user),
215 sensitive: sensitive,
216 spoiler_text: summary_html,
217 visibility: get_visibility(object),
218 media_attachments: attachments,
220 tags: build_tags(tags),
226 emojis: build_emojis(activity.data["object"]["emoji"]),
228 local: activity.local,
229 conversation_id: get_context_id(activity),
230 content: %{"text/plain" => content_plaintext},
231 spoiler_text: %{"text/plain" => summary_plaintext}
236 def render("status.json", _) do
240 def render("card.json", %{rich_media: rich_media, page_url: page_url}) do
241 page_url_data = URI.parse(page_url)
244 if rich_media[:url] != nil do
245 URI.merge(page_url_data, URI.parse(rich_media[:url]))
250 page_url = page_url_data |> to_string
253 if rich_media[:image] != nil do
254 URI.merge(page_url_data, URI.parse(rich_media[:image]))
260 site_name = rich_media[:site_name] || page_url_data.host
264 provider_name: site_name,
265 provider_url: page_url_data.scheme <> "://" <> page_url_data.host,
267 image: image_url |> MediaProxy.url(),
268 title: rich_media[:title],
269 description: rich_media[:description],
271 opengraph: rich_media
276 def render("card.json", _) do
280 def render("attachment.json", %{attachment: attachment}) do
281 [attachment_url | _] = attachment["url"]
282 media_type = attachment_url["mediaType"] || attachment_url["mimeType"] || "image"
283 href = attachment_url["href"] |> MediaProxy.url()
287 String.contains?(media_type, "image") -> "image"
288 String.contains?(media_type, "video") -> "video"
289 String.contains?(media_type, "audio") -> "audio"
293 <<hash_id::signed-32, _rest::binary>> = :crypto.hash(:md5, href)
296 id: to_string(attachment["id"] || hash_id),
302 description: attachment["name"],
303 pleroma: %{mime_type: media_type}
307 def get_reply_to(activity, %{replied_to_activities: replied_to_activities}) do
308 with nil <- replied_to_activities[activity.data["object"]["inReplyTo"]] do
309 # If user didn't participate in the thread
310 Activity.get_in_reply_to_activity(activity)
314 def get_reply_to(%{data: %{"object" => object}}, _) do
315 if object["inReplyTo"] && object["inReplyTo"] != "" do
316 Activity.get_create_by_object_ap_id(object["inReplyTo"])
322 def get_visibility(object) do
323 public = "https://www.w3.org/ns/activitystreams#Public"
324 to = object["to"] || []
325 cc = object["cc"] || []
334 # this should use the sql for the object's activity
335 Enum.any?(to, &String.contains?(&1, "/followers")) ->
346 def render_content(%{"type" => "Video"} = object) do
347 with name when not is_nil(name) and name != "" <- object["name"] do
348 "<p><a href=\"#{object["id"]}\">#{name}</a></p>#{object["content"]}"
350 _ -> object["content"] || ""
354 def render_content(%{"type" => object_type} = object)
355 when object_type in ["Article", "Page"] do
356 with summary when not is_nil(summary) and summary != "" <- object["name"],
357 url when is_bitstring(url) <- object["url"] do
358 "<p><a href=\"#{url}\">#{summary}</a></p>#{object["content"]}"
360 _ -> object["content"] || ""
364 def render_content(object), do: object["content"] || ""
367 Builds a dictionary tags.
371 iex> Pleroma.Web.MastodonAPI.StatusView.build_tags(["fediverse", "nextcloud"])
372 [{"name": "fediverse", "url": "/tag/fediverse"},
373 {"name": "nextcloud", "url": "/tag/nextcloud"}]
376 @spec build_tags(list(any())) :: list(map())
377 def build_tags(object_tags) when is_list(object_tags) do
378 object_tags = for tag when is_binary(tag) <- object_tags, do: tag
380 Enum.reduce(object_tags, [], fn tag, tags ->
381 tags ++ [%{name: tag, url: "/tag/#{tag}"}]
385 def build_tags(_), do: []
390 Arguments: `nil` or list tuple of name and url.
396 iex> Pleroma.Web.MastodonAPI.StatusView.build_emojis([{"2hu", "corndog.png"}])
397 [%{shortcode: "2hu", static_url: "corndog.png", url: "corndog.png", visible_in_picker: false}]
400 @spec build_emojis(nil | list(tuple())) :: list(map())
401 def build_emojis(nil), do: []
403 def build_emojis(emojis) do
405 |> Enum.map(fn {name, url} ->
406 name = HTML.strip_tags(name)
413 %{shortcode: name, url: url, static_url: url, visible_in_picker: false}
417 defp present?(nil), do: false
418 defp present?(false), do: false
419 defp present?(_), do: true
421 defp pinned?(%Activity{id: id}, %User{info: %{pinned_activities: pinned_activities}}),
422 do: id in pinned_activities