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
13 alias Pleroma.Web.CommonAPI
14 alias Pleroma.Web.CommonAPI.Utils
15 alias Pleroma.Web.MastodonAPI.AccountView
16 alias Pleroma.Web.MastodonAPI.StatusView
17 alias Pleroma.Web.MediaProxy
19 import Pleroma.Web.ActivityPub.Visibility, only: [get_visibility: 1]
21 # TODO: Add cached version.
22 defp get_replied_to_activities(activities) do
25 %{data: %{"type" => "Create", "object" => object}} ->
26 object = Object.normalize(object)
27 object.data["inReplyTo"] != "" && object.data["inReplyTo"]
33 |> Activity.create_by_object_ap_id()
35 |> Enum.reduce(%{}, fn activity, acc ->
36 object = Object.normalize(activity)
37 Map.put(acc, object.data["id"], activity)
41 defp get_user(ap_id) do
43 user = User.get_cached_by_ap_id(ap_id) ->
46 user = User.get_by_guessed_nickname(ap_id) ->
50 User.error_user(ap_id)
54 defp get_context_id(%{data: %{"context_id" => context_id}}) when not is_nil(context_id),
57 defp get_context_id(%{data: %{"context" => context}}) when is_binary(context),
58 do: Utils.context_to_conversation_id(context)
60 defp get_context_id(_), do: nil
62 defp reblogged?(activity, user) do
63 object = Object.normalize(activity) || %{}
64 present?(user && user.ap_id in (object.data["announcements"] || []))
67 def render("index.json", opts) do
68 replied_to_activities = get_replied_to_activities(opts.activities)
74 Map.put(opts, :replied_to_activities, replied_to_activities)
80 %{activity: %{data: %{"type" => "Announce", "object" => _object}} = activity} = opts
82 user = get_user(activity.data["actor"])
83 created_at = Utils.to_masto_date(activity.data["published"])
84 activity_object = Object.normalize(activity)
87 Activity.create_by_object_ap_id(activity_object.data["id"])
88 |> Activity.with_preloaded_bookmark(opts[:for])
91 reblogged = render("status.json", Map.put(opts, :activity, reblogged_activity))
93 favorited = opts[:for] && opts[:for].ap_id in (activity_object.data["likes"] || [])
95 bookmarked = Activity.get_bookmark(reblogged_activity, opts[:for]) != nil
99 |> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
101 |> Enum.map(fn user -> AccountView.render("mention.json", %{user: user}) end)
104 id: to_string(activity.id),
105 uri: activity_object.data["id"],
106 url: activity_object.data["id"],
107 account: AccountView.render("account.json", %{user: user, for: opts[:for]}),
109 in_reply_to_account_id: nil,
111 content: reblogged[:content] || "",
112 created_at: created_at,
116 reblogged: reblogged?(reblogged_activity, opts[:for]),
117 favourited: present?(favorited),
118 bookmarked: present?(bookmarked),
120 pinned: pinned?(activity, user),
123 visibility: "public",
124 media_attachments: reblogged[:media_attachments] || [],
126 tags: reblogged[:tags] || [],
134 local: activity.local
139 def render("status.json", %{activity: %{data: %{"object" => _object}} = activity} = opts) do
140 object = Object.normalize(activity)
142 user = get_user(activity.data["actor"])
144 like_count = object.data["like_count"] || 0
145 announcement_count = object.data["announcement_count"] || 0
147 tags = object.data["tag"] || []
148 sensitive = object.data["sensitive"] || Enum.member?(tags, "nsfw")
152 |> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
154 |> Enum.map(fn user -> AccountView.render("mention.json", %{user: user}) end)
156 favorited = opts[:for] && opts[:for].ap_id in (object.data["likes"] || [])
158 bookmarked = Activity.get_bookmark(activity, opts[:for]) != nil
161 case activity.thread_muted? do
162 thread_muted? when is_boolean(thread_muted?) -> thread_muted?
163 nil -> CommonAPI.thread_muted?(user, activity)
166 attachment_data = object.data["attachment"] || []
167 attachments = render_many(attachment_data, StatusView, "attachment.json", as: :attachment)
169 created_at = Utils.to_masto_date(object.data["published"])
171 reply_to = get_reply_to(activity, opts)
173 reply_to_user = reply_to && get_user(reply_to.data["actor"])
181 |> HTML.get_cached_scrubbed_html_for_activity(
182 User.html_filter_policy(opts[:for]),
189 |> HTML.get_cached_stripped_html_for_activity(
194 summary = object.data["summary"] || ""
198 |> HTML.get_cached_scrubbed_html_for_activity(
199 User.html_filter_policy(opts[:for]),
206 |> HTML.get_cached_stripped_html_for_activity(
211 card = render("card.json", Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity))
215 Pleroma.Web.Router.Helpers.o_status_url(Pleroma.Web.Endpoint, :notice, activity)
217 object.data["external_url"] || object.data["id"]
221 id: to_string(activity.id),
222 uri: object.data["id"],
224 account: AccountView.render("account.json", %{user: user, for: opts[:for]}),
225 in_reply_to_id: reply_to && to_string(reply_to.id),
226 in_reply_to_account_id: reply_to_user && to_string(reply_to_user.id),
229 content: content_html,
230 created_at: created_at,
231 reblogs_count: announcement_count,
232 replies_count: object.data["repliesCount"] || 0,
233 favourites_count: like_count,
234 reblogged: reblogged?(activity, opts[:for]),
235 favourited: present?(favorited),
236 bookmarked: present?(bookmarked),
237 muted: thread_muted? || User.mutes?(opts[:for], user),
238 pinned: pinned?(activity, user),
239 sensitive: sensitive,
240 spoiler_text: summary_html,
241 visibility: get_visibility(object),
242 media_attachments: attachments,
243 poll: render("poll.json", %{object: object, for: opts[:for]}),
245 tags: build_tags(tags),
251 emojis: build_emojis(object.data["emoji"]),
253 local: activity.local,
254 conversation_id: get_context_id(activity),
255 in_reply_to_account_acct: reply_to_user && reply_to_user.nickname,
256 content: %{"text/plain" => content_plaintext},
257 spoiler_text: %{"text/plain" => summary_plaintext}
262 def render("status.json", _) do
266 def render("card.json", %{rich_media: rich_media, page_url: page_url}) do
267 page_url_data = URI.parse(page_url)
270 if rich_media[:url] != nil do
271 URI.merge(page_url_data, URI.parse(rich_media[:url]))
276 page_url = page_url_data |> to_string
279 if rich_media[:image] != nil do
280 URI.merge(page_url_data, URI.parse(rich_media[:image]))
286 site_name = rich_media[:site_name] || page_url_data.host
290 provider_name: site_name,
291 provider_url: page_url_data.scheme <> "://" <> page_url_data.host,
293 image: image_url |> MediaProxy.url(),
294 title: rich_media[:title] || "",
295 description: rich_media[:description] || "",
297 opengraph: rich_media
302 def render("card.json", _) do
306 def render("attachment.json", %{attachment: attachment}) do
307 [attachment_url | _] = attachment["url"]
308 media_type = attachment_url["mediaType"] || attachment_url["mimeType"] || "image"
309 href = attachment_url["href"] |> MediaProxy.url()
313 String.contains?(media_type, "image") -> "image"
314 String.contains?(media_type, "video") -> "video"
315 String.contains?(media_type, "audio") -> "audio"
319 <<hash_id::signed-32, _rest::binary>> = :crypto.hash(:md5, href)
322 id: to_string(attachment["id"] || hash_id),
328 description: attachment["name"],
329 pleroma: %{mime_type: media_type}
333 def render("poll.json", %{object: object} = opts) do
334 {multiple, options} =
336 %{"anyOf" => options} when is_list(options) -> {true, options}
337 %{"oneOf" => options} when is_list(options) -> {false, options}
343 (object.data["closed"] || object.data["endTime"])
344 |> NaiveDateTime.from_iso8601!()
348 |> NaiveDateTime.compare(NaiveDateTime.utc_now())
357 Pleroma.Web.ActivityPub.Utils.get_existing_votes(opts[:for].ap_id, object)
359 existing_votes != [] or opts[:for].ap_id == object.data["actor"]
364 {options, votes_count} =
365 Enum.map_reduce(options, 0, fn %{"name" => name} = option, count ->
366 current_count = option["replies"]["totalItems"] || 0
369 title: HTML.strip_tags(name),
370 votes_count: current_count
371 }, current_count + count}
375 # Mastodon uses separate ids for polls, but an object can't have
376 # more than one poll embedded so object id is fine
378 expires_at: Utils.to_masto_date(end_time),
381 votes_count: votes_count,
384 emojis: build_emojis(object.data["emoji"])
391 def get_reply_to(activity, %{replied_to_activities: replied_to_activities}) do
392 object = Object.normalize(activity)
394 with nil <- replied_to_activities[object.data["inReplyTo"]] do
395 # If user didn't participate in the thread
396 Activity.get_in_reply_to_activity(activity)
400 def get_reply_to(%{data: %{"object" => _object}} = activity, _) do
401 object = Object.normalize(activity)
403 if object.data["inReplyTo"] && object.data["inReplyTo"] != "" do
404 Activity.get_create_by_object_ap_id(object.data["inReplyTo"])
410 def render_content(%{data: %{"type" => "Video"}} = object) do
411 with name when not is_nil(name) and name != "" <- object.data["name"] do
412 "<p><a href=\"#{object.data["id"]}\">#{name}</a></p>#{object.data["content"]}"
414 _ -> object.data["content"] || ""
418 def render_content(%{data: %{"type" => object_type}} = object)
419 when object_type in ["Article", "Page"] do
420 with summary when not is_nil(summary) and summary != "" <- object.data["name"],
421 url when is_bitstring(url) <- object.data["url"] do
422 "<p><a href=\"#{url}\">#{summary}</a></p>#{object.data["content"]}"
424 _ -> object.data["content"] || ""
428 def render_content(object), do: object.data["content"] || ""
431 Builds a dictionary tags.
435 iex> Pleroma.Web.MastodonAPI.StatusView.build_tags(["fediverse", "nextcloud"])
436 [{"name": "fediverse", "url": "/tag/fediverse"},
437 {"name": "nextcloud", "url": "/tag/nextcloud"}]
440 @spec build_tags(list(any())) :: list(map())
441 def build_tags(object_tags) when is_list(object_tags) do
442 object_tags = for tag when is_binary(tag) <- object_tags, do: tag
444 Enum.reduce(object_tags, [], fn tag, tags ->
445 tags ++ [%{name: tag, url: "/tag/#{tag}"}]
449 def build_tags(_), do: []
454 Arguments: `nil` or list tuple of name and url.
460 iex> Pleroma.Web.MastodonAPI.StatusView.build_emojis([{"2hu", "corndog.png"}])
461 [%{shortcode: "2hu", static_url: "corndog.png", url: "corndog.png", visible_in_picker: false}]
464 @spec build_emojis(nil | list(tuple())) :: list(map())
465 def build_emojis(nil), do: []
467 def build_emojis(emojis) do
469 |> Enum.map(fn {name, url} ->
470 name = HTML.strip_tags(name)
477 %{shortcode: name, url: url, static_url: url, visible_in_picker: false}
481 defp present?(nil), do: false
482 defp present?(false), do: false
483 defp present?(_), do: true
485 defp pinned?(%Activity{id: id}, %User{info: %{pinned_activities: pinned_activities}}),
486 do: id in pinned_activities