Web.MastodonAPI.MastodonAPIController: generic get_status_card/1 function for MastoAP...
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Sun, 20 Jan 2019 23:53:41 +0000 (00:53 +0100)
committerWilliam Pitcock <nenolod@dereferenced.org>
Sat, 26 Jan 2019 14:18:23 +0000 (14:18 +0000)
Mastodon API 2.6.x added a card key to the Status object so the Card can be shown in the timeline without an extra request at each status.

lib/pleroma/web/mastodon_api/mastodon_api_controller.ex

index 86607e7af7fd27c83e60e7dbab7b0a645e9b1cf5..9d3fa532d758644253eb8e0cb8af4152600cb8c7 100644 (file)
@@ -1329,22 +1329,23 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
     |> Enum.at(0)
   end
 
-  def status_card(conn, %{"id" => status_id}) do
+  def get_status_card(status_id) do
     with %Activity{} = activity <- Repo.get(Activity, status_id),
          true <- ActivityPub.is_public?(activity),
          page_url <- status_first_external_url(activity.data["object"]["content"]),
          {:ok, rich_media} <- Pleroma.Web.RichMedia.Parser.parse(page_url) do
-      card =
-        rich_media
-        |> Map.take([:image, :title, :url, :description])
-        |> Map.put(:type, "link")
-
-      json(conn, card)
+      rich_media
+      |> Map.take([:image, :title, :url, :description])
+      |> Map.put(:type, "link")
     else
-      _ -> json(conn, %{})
+      _ -> %{}
     end
   end
 
+  def status_card(conn, %{"id" => status_id}) do
+    json(conn, get_status_card(status_id))
+  end
+
   def try_render(conn, target, params)
       when is_binary(target) do
     res = render(conn, target, params)