Support redirecting by object ID in static FE.
authorPhil Hagelberg <phil@hagelb.org>
Wed, 13 Nov 2019 01:19:46 +0000 (17:19 -0800)
committerPhil Hagelberg <phil@hagelb.org>
Wed, 13 Nov 2019 16:02:02 +0000 (08:02 -0800)
This matches the behavior of pleroma-fe better.

Fixes #1412.

lib/pleroma/web/static_fe/static_fe_controller.ex
test/web/static_fe/static_fe_controller_test.exs

index ba44b8a4feec38149e806d23703cc2efa6766729..b45d82c2d638d65e26e42cf09006b6158ca63226 100644 (file)
@@ -119,11 +119,26 @@ defmodule Pleroma.Web.StaticFE.StaticFEController do
     end
   end
 
+  def show(%{assigns: %{object_id: _}} = conn, _params) do
+    url = Helpers.url(conn) <> conn.request_path
+    case Activity.get_create_by_object_ap_id_with_object(url) do
+      %Activity{} = activity ->
+        redirect(conn, to: "/notice/#{activity.id}")
+        _ ->
+        conn
+        |> put_status(404)
+        |> render("error.html", %{message: "Post not found.", meta: ""})
+    end
+  end
+
   def assign_id(%{path_info: ["notice", notice_id]} = conn, _opts),
     do: assign(conn, :notice_id, notice_id)
 
   def assign_id(%{path_info: ["users", user_id]} = conn, _opts),
     do: assign(conn, :username_or_id, user_id)
 
+  def assign_id(%{path_info: ["objects", object_id]} = conn, _opts),
+    do: assign(conn, :object_id, object_id)
+
   def assign_id(conn, _opts), do: conn
 end
index b8fb67b225b64e711dde0ad569b4432763201288..6ea8cea3454e0d593364b6bf564be701921b4482 100644 (file)
@@ -1,5 +1,6 @@
 defmodule Pleroma.Web.StaticFE.StaticFEControllerTest do
   use Pleroma.Web.ConnCase
+  alias Pleroma.Activity
   alias Pleroma.Web.ActivityPub.Transmogrifier
   alias Pleroma.Web.CommonAPI
 
@@ -128,6 +129,20 @@ defmodule Pleroma.Web.StaticFE.StaticFEControllerTest do
       assert html =~ "voyages"
     end
 
+    test "redirect by AP object ID", %{conn: conn} do
+      user = insert(:user)
+
+      {:ok, %Activity{data: %{"object" => object_url}}} =
+        CommonAPI.post(user, %{"status" => "beam me up"})
+
+      conn =
+        conn
+        |> put_req_header("accept", "text/html")
+        |> get(URI.parse(object_url).path)
+
+      assert html_response(conn, 302) =~ "redirected"
+    end
+
     test "404 when notice not found", %{conn: conn} do
       conn =
         conn