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.Utils
13 alias Pleroma.Web.MediaProxy
14 alias Pleroma.Web.MastodonAPI.AccountView
15 alias Pleroma.Web.MastodonAPI.StatusView
17 # TODO: Add cached version.
18 defp get_replied_to_activities(activities) do
21 %{data: %{"type" => "Create", "object" => %{"inReplyTo" => in_reply_to}}} ->
22 in_reply_to != "" && in_reply_to
28 |> Activity.create_by_object_ap_id()
30 |> Enum.reduce(%{}, fn activity, acc ->
31 Map.put(acc, activity.data["object"]["id"], activity)
35 defp get_user(ap_id) do
37 user = User.get_cached_by_ap_id(ap_id) ->
40 user = User.get_by_guessed_nickname(ap_id) ->
44 User.error_user(ap_id)
48 def render("index.json", opts) do
49 replied_to_activities = get_replied_to_activities(opts.activities)
55 Map.put(opts, :replied_to_activities, replied_to_activities)
61 %{activity: %{data: %{"type" => "Announce", "object" => object}} = activity} = opts
63 user = get_user(activity.data["actor"])
64 created_at = Utils.to_masto_date(activity.data["published"])
66 reblogged = Activity.get_create_by_object_ap_id(object)
67 reblogged = render("status.json", Map.put(opts, :activity, reblogged))
71 |> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
73 |> Enum.map(fn user -> AccountView.render("mention.json", %{user: user}) end)
76 id: to_string(activity.id),
79 account: AccountView.render("account.json", %{user: user}),
81 in_reply_to_account_id: nil,
83 content: reblogged[:content] || "",
84 created_at: created_at,
92 pinned: pinned?(activity, user),
96 media_attachments: reblogged[:media_attachments] || [],
98 tags: reblogged[:tags] || [],
108 def render("status.json", %{activity: %{data: %{"object" => object}} = activity} = opts) do
109 user = get_user(activity.data["actor"])
111 like_count = object["like_count"] || 0
112 announcement_count = object["announcement_count"] || 0
114 tags = object["tag"] || []
115 sensitive = object["sensitive"] || Enum.member?(tags, "nsfw")
119 |> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
121 |> Enum.map(fn user -> AccountView.render("mention.json", %{user: user}) end)
123 repeated = opts[:for] && opts[:for].ap_id in (object["announcements"] || [])
124 favorited = opts[:for] && opts[:for].ap_id in (object["likes"] || [])
125 bookmarked = opts[:for] && object["id"] in opts[:for].bookmarks
127 attachment_data = object["attachment"] || []
128 attachments = render_many(attachment_data, StatusView, "attachment.json", as: :attachment)
130 created_at = Utils.to_masto_date(object["published"])
132 reply_to = get_reply_to(activity, opts)
133 reply_to_user = reply_to && get_user(reply_to.data["actor"])
138 |> HTML.get_cached_scrubbed_html_for_object(
139 User.html_filter_policy(opts[:for]),
144 card = render("card.json", Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity))
147 id: to_string(activity.id),
149 url: object["external_url"] || object["id"],
150 account: AccountView.render("account.json", %{user: user}),
151 in_reply_to_id: reply_to && to_string(reply_to.id),
152 in_reply_to_account_id: reply_to_user && to_string(reply_to_user.id),
156 created_at: created_at,
157 reblogs_count: announcement_count,
159 favourites_count: like_count,
160 reblogged: present?(repeated),
161 favourited: present?(favorited),
162 bookmarked: present?(bookmarked),
164 pinned: pinned?(activity, user),
165 sensitive: sensitive,
166 spoiler_text: object["summary"] || "",
167 visibility: get_visibility(object),
168 media_attachments: attachments |> Enum.take(4),
170 tags: build_tags(tags),
176 emojis: build_emojis(activity.data["object"]["emoji"])
180 def render("status.json", _) do
184 def render("card.json", %{rich_media: rich_media, page_url: page_url}) do
185 page_url = rich_media[:url] || page_url
186 page_url_data = URI.parse(page_url)
187 site_name = rich_media[:site_name] || page_url_data.host
191 provider_name: site_name,
192 provider_url: page_url_data.scheme <> "://" <> page_url_data.host,
194 image: rich_media[:image] |> MediaProxy.url(),
195 title: rich_media[:title],
196 description: rich_media[:description],
198 opengraph: rich_media
203 def render("card.json", _) do
207 def render("attachment.json", %{attachment: attachment}) do
208 [attachment_url | _] = attachment["url"]
209 media_type = attachment_url["mediaType"] || attachment_url["mimeType"] || "image"
210 href = attachment_url["href"] |> MediaProxy.url()
214 String.contains?(media_type, "image") -> "image"
215 String.contains?(media_type, "video") -> "video"
216 String.contains?(media_type, "audio") -> "audio"
220 <<hash_id::signed-32, _rest::binary>> = :crypto.hash(:md5, href)
223 id: to_string(attachment["id"] || hash_id),
229 description: attachment["name"]
233 def get_reply_to(activity, %{replied_to_activities: replied_to_activities}) do
234 _id = activity.data["object"]["inReplyTo"]
235 replied_to_activities[activity.data["object"]["inReplyTo"]]
238 def get_reply_to(%{data: %{"object" => object}}, _) do
239 if object["inReplyTo"] && object["inReplyTo"] != "" do
240 Activity.get_create_by_object_ap_id(object["inReplyTo"])
246 def get_visibility(object) do
247 public = "https://www.w3.org/ns/activitystreams#Public"
248 to = object["to"] || []
249 cc = object["cc"] || []
258 # this should use the sql for the object's activity
259 Enum.any?(to, &String.contains?(&1, "/followers")) ->
270 def render_content(%{"type" => "Video"} = object) do
271 with name when not is_nil(name) and name != "" <- object["name"] do
272 "<p><a href=\"#{object["id"]}\">#{name}</a></p>#{object["content"]}"
274 _ -> object["content"] || ""
278 def render_content(%{"type" => object_type} = object)
279 when object_type in ["Article", "Page"] do
280 with summary when not is_nil(summary) and summary != "" <- object["name"],
281 url when is_bitstring(url) <- object["url"] do
282 "<p><a href=\"#{url}\">#{summary}</a></p>#{object["content"]}"
284 _ -> object["content"] || ""
288 def render_content(object), do: object["content"] || ""
291 Builds a dictionary tags.
295 iex> Pleroma.Web.MastodonAPI.StatusView.build_tags(["fediverse", "nextcloud"])
296 [{"name": "fediverse", "url": "/tag/fediverse"},
297 {"name": "nextcloud", "url": "/tag/nextcloud"}]
300 @spec build_tags(list(any())) :: list(map())
301 def build_tags(object_tags) when is_list(object_tags) do
302 object_tags = for tag when is_binary(tag) <- object_tags, do: tag
304 Enum.reduce(object_tags, [], fn tag, tags ->
305 tags ++ [%{name: tag, url: "/tag/#{tag}"}]
309 def build_tags(_), do: []
314 Arguments: `nil` or list tuple of name and url.
320 iex> Pleroma.Web.MastodonAPI.StatusView.build_emojis([{"2hu", "corndog.png"}])
321 [%{shortcode: "2hu", static_url: "corndog.png", url: "corndog.png", visible_in_picker: false}]
324 @spec build_emojis(nil | list(tuple())) :: list(map())
325 def build_emojis(nil), do: []
327 def build_emojis(emojis) do
329 |> Enum.map(fn {name, url} ->
330 name = HTML.strip_tags(name)
337 %{shortcode: name, url: url, static_url: url, visible_in_picker: false}
341 defp present?(nil), do: false
342 defp present?(false), do: false
343 defp present?(_), do: true
345 defp pinned?(%Activity{id: id}, %User{info: %{pinned_activities: pinned_activities}}),
346 do: id in pinned_activities