2019-03-02 14:17:55 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.StaticFE.StaticFEController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2019-10-29 02:47:20 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-03-02 20:10:30 +00:00
|
|
|
alias Pleroma.Web.StaticFE.ActivityRepresenter
|
2019-03-02 21:12:38 +00:00
|
|
|
alias Pleroma.Web.StaticFE.UserRepresenter
|
2019-03-02 14:17:55 +00:00
|
|
|
|
2019-10-30 00:45:26 +00:00
|
|
|
plug(:put_layout, :static_fe)
|
|
|
|
plug(:put_view, Pleroma.Web.StaticFE.StaticFEView)
|
|
|
|
plug(:assign_id)
|
|
|
|
action_fallback(:not_found)
|
2019-03-02 14:17:55 +00:00
|
|
|
|
2019-10-30 00:45:26 +00:00
|
|
|
def show_notice(%{assigns: %{notice_id: notice_id}} = conn, _params) do
|
2019-03-02 20:10:30 +00:00
|
|
|
with {:ok, data} <- ActivityRepresenter.represent(notice_id) do
|
2019-10-29 02:47:20 +00:00
|
|
|
context = data.object.data["context"]
|
|
|
|
|
2019-10-30 02:27:42 +00:00
|
|
|
activities =
|
|
|
|
for a <- Enum.reverse(ActivityPub.fetch_activities_for_context(context, %{})) do
|
2019-10-29 02:47:20 +00:00
|
|
|
ActivityRepresenter.prepare_activity(data.user, a)
|
|
|
|
|> Map.put(:selected, a.object.id == data.object.id)
|
|
|
|
end
|
|
|
|
|
2019-10-30 02:27:42 +00:00
|
|
|
render(conn, "conversation.html", activities: activities)
|
2019-03-02 21:12:38 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-30 00:45:26 +00:00
|
|
|
def show_user(%{assigns: %{username_or_id: username_or_id}} = conn, _params) do
|
2019-10-30 02:27:42 +00:00
|
|
|
{:ok, data} = UserRepresenter.represent(username_or_id)
|
|
|
|
render(conn, "profile.html", %{user: data.user, timeline: data.timeline})
|
2019-03-02 14:17:55 +00:00
|
|
|
end
|
|
|
|
|
2019-10-30 00:45:26 +00:00
|
|
|
def assign_id(%{path_info: ["notice", notice_id]} = conn, _opts),
|
|
|
|
do: assign(conn, :notice_id, notice_id)
|
2019-03-02 14:17:55 +00:00
|
|
|
|
2019-10-30 00:45:26 +00:00
|
|
|
def assign_id(%{path_info: ["users", user_id]} = conn, _opts),
|
|
|
|
do: assign(conn, :username_or_id, user_id)
|
2019-03-02 21:12:38 +00:00
|
|
|
|
2019-10-30 00:45:26 +00:00
|
|
|
def assign_id(%{path_info: [user_id]} = conn, _opts),
|
|
|
|
do: assign(conn, :username_or_id, user_id)
|
|
|
|
|
|
|
|
def assign_id(conn, _opts), do: conn
|
2019-03-02 21:12:38 +00:00
|
|
|
|
2019-03-02 14:17:55 +00:00
|
|
|
# Fallback for unhandled types
|
2019-10-30 00:45:26 +00:00
|
|
|
def not_found(conn, _opts) do
|
2019-03-02 14:17:55 +00:00
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> text("Not found")
|
|
|
|
end
|
|
|
|
end
|