|> set_content(object)
|> set_link(activity.id)
|> set_published(object)
+ |> set_sensitive(object)
+ |> set_attachment(object.data["attachment"])
|> set_attachments(object)
end
defp set_content(data, _), do: Map.put(data, :content, nil)
+ defp set_attachment(data, attachment), do: Map.put(data, :attachment, attachment)
+
defp set_link(data, activity_id),
do: Map.put(data, :link, Helpers.o_status_url(Pleroma.Web.Endpoint, :notice, activity_id))
defp set_published(data, %Object{data: %{"published" => published}}),
do: Map.put(data, :published, published)
+ defp set_sensitive(data, %Object{data: %{"sensitive" => sensitive}}),
+ do: Map.put(data, :sensitive, sensitive)
+
# TODO: attachments
defp set_attachments(data, _), do: Map.put(data, :attachments, [])
def represent(activity_id) do
- with %Activity{data: %{"type" => "Create"}} = activity <- Activity.get_by_id(activity_id),
+ with %Activity{data: %{"type" => "Create"}} = activity <-
+ Activity.get_by_id_with_object(activity_id),
true <- Visibility.is_public?(activity),
{:ok, %User{} = user} <- User.get_or_fetch(activity.data["actor"]) do
{:ok, prepare_activity(user, activity)}
alias Pleroma.User
alias Pleroma.Web.MediaProxy
alias Pleroma.Formatter
+ alias Pleroma.Web.Metadata.Utils
alias Pleroma.Web.Router.Helpers
import Phoenix.HTML
+ @media_types ["image", "audio", "video"]
+
def emoji_for_user(%User{} = user) do
(user.source_data["tag"] || [])
|> Enum.filter(fn %{"type" => t} -> t == "Emoji" end)
{String.trim(name, ":"), url}
end)
end
+
+ def fetch_media_type(url) do
+ Utils.fetch_media_type(@media_types, url["mediaType"])
+ end
end
margin-right: 4px;
}
+ .activity-content img, video {
+ max-width: 800px;
+ max-height: 800px;
+ }
+
a {
color: white;
}
--- /dev/null
+<%= case @mediaType do %>
+<% "audio" -> %>
+<audio src="<%= @url %>" controls="controls"></audio>
+<% "video" -> %>
+<video src="<%= @url %>" controls="controls"></video>
+<% _ -> %>
+<img src="<%= @url %>" alt="<%= @name %>" title="<%= @name %>">
+<% end %>
<div class="activity">
<%= render("user_card.html", %{user: @data.user}) %>
+ <p class="pull-right">
+ <a href="<%= @data.link %>" class="activity-link"><%= @data.published %></a></p>
<div class="activity-content">
<%= if @data.title != "" do %>
- <details>
- <summary><%= raw @data.title %></summary>
- <% end %>
+ <details>
+ <summary><%= raw @data.title %></summary>
+ <div class="e-content"><%= raw @data.content %></div>
+ </details>
+ <% else %>
<div class="e-content"><%= raw @data.content %></div>
- <%= if @data.title != "" do %>
- </details>
<% end %>
- <p class="pull-right">
- <a href="<%= @data.link %>" class="activity-link"><%= @data.published %></a></p>
+ <%= for %{"name" => name, "url" => [url | _]} <- @data.attachment do %>
+ <%= if @data.sensitive do %>
+ <details class="nsfw">
+ <summary>sensitive media</summary>
+ <div>
+ <%= render("_attachment.html", %{name: name, url: url["href"],
+ mediaType: fetch_media_type(url)}) %>
+ </div>
+ </details>
+ <% else %>
+ <%= render("_attachment.html", %{name: name, url: url["href"],
+ mediaType: fetch_media_type(url)}) %>
+ <% end %>
+ <% end %>
</div>
</div>