forked from AkkomaGang/akkoma
Just give out the entry, not the whole feed.
This commit is contained in:
parent
9c42453e06
commit
16afea399d
2 changed files with 3 additions and 4 deletions
|
@ -2,7 +2,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do
|
||||||
use Pleroma.Web, :controller
|
use Pleroma.Web, :controller
|
||||||
|
|
||||||
alias Pleroma.{User, Activity}
|
alias Pleroma.{User, Activity}
|
||||||
alias Pleroma.Web.OStatus.FeedRepresenter
|
alias Pleroma.Web.OStatus.{FeedRepresenter, ActivityRepresenter}
|
||||||
alias Pleroma.Repo
|
alias Pleroma.Repo
|
||||||
alias Pleroma.Web.OStatus
|
alias Pleroma.Web.OStatus
|
||||||
import Ecto.Query
|
import Ecto.Query
|
||||||
|
@ -43,12 +43,12 @@ def salmon_incoming(conn, params) do
|
||||||
end
|
end
|
||||||
|
|
||||||
def object(conn, %{"uuid" => uuid}) do
|
def object(conn, %{"uuid" => uuid}) do
|
||||||
IO.inspect(uuid)
|
|
||||||
id = o_status_url(conn, :object, uuid)
|
id = o_status_url(conn, :object, uuid)
|
||||||
activity = Activity.get_create_activity_by_object_ap_id(id)
|
activity = Activity.get_create_activity_by_object_ap_id(id)
|
||||||
user = User.get_cached_by_ap_id(activity.data["actor"])
|
user = User.get_cached_by_ap_id(activity.data["actor"])
|
||||||
|
|
||||||
response = FeedRepresenter.to_simple_form(user, [activity], [user])
|
response = ActivityRepresenter.to_simple_form(activity, user, true)
|
||||||
|
|> ActivityRepresenter.wrap_with_entry
|
||||||
|> :xmerl.export_simple(:xmerl_xml)
|
|> :xmerl.export_simple(:xmerl_xml)
|
||||||
|> to_string
|
|> to_string
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,6 @@ test "gets an object", %{conn: conn} do
|
||||||
note_activity = insert(:note_activity)
|
note_activity = insert(:note_activity)
|
||||||
[_, uuid] = hd Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"])
|
[_, uuid] = hd Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["object"]["id"])
|
||||||
url = "/objects/#{uuid}"
|
url = "/objects/#{uuid}"
|
||||||
|> IO.inspect
|
|
||||||
|
|
||||||
conn = conn
|
conn = conn
|
||||||
|> get(url)
|
|> get(url)
|
||||||
|
|
Loading…
Reference in a new issue