forked from AkkomaGang/akkoma
Better error handling for OstatusController.
This commit is contained in:
parent
06439f64d0
commit
8073af6e10
2 changed files with 105 additions and 34 deletions
|
@ -9,36 +9,42 @@ defmodule Pleroma.Web.OStatus.OStatusController do
|
||||||
alias Pleroma.Web.ActivityPub.ActivityPubController
|
alias Pleroma.Web.ActivityPub.ActivityPubController
|
||||||
alias Pleroma.Web.ActivityPub.ActivityPub
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
||||||
|
|
||||||
def feed_redirect(conn, %{"nickname" => nickname}) do
|
action_fallback(:errors)
|
||||||
user = User.get_cached_by_nickname(nickname)
|
|
||||||
|
|
||||||
case get_format(conn) do
|
def feed_redirect(conn, %{"nickname" => nickname}) do
|
||||||
"html" -> Fallback.RedirectController.redirector(conn, nil)
|
with {_, %User{} = user} <- {:user, User.get_cached_by_nickname(nickname)} do
|
||||||
"activity+json" -> ActivityPubController.call(conn, :user)
|
case get_format(conn) do
|
||||||
_ -> redirect(conn, external: OStatus.feed_path(user))
|
"html" -> Fallback.RedirectController.redirector(conn, nil)
|
||||||
|
"activity+json" -> ActivityPubController.call(conn, :user)
|
||||||
|
_ -> redirect(conn, external: OStatus.feed_path(user))
|
||||||
|
end
|
||||||
|
else
|
||||||
|
{:user, nil} -> {:error, :not_found}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def feed(conn, %{"nickname" => nickname} = params) do
|
def feed(conn, %{"nickname" => nickname} = params) do
|
||||||
user = User.get_cached_by_nickname(nickname)
|
with {_, %User{} = user} <- {:user, User.get_cached_by_nickname(nickname)} do
|
||||||
|
query_params =
|
||||||
|
Map.take(params, ["max_id"])
|
||||||
|
|> Map.merge(%{"whole_db" => true, "actor_id" => user.ap_id})
|
||||||
|
|
||||||
query_params =
|
activities =
|
||||||
Map.take(params, ["max_id"])
|
ActivityPub.fetch_public_activities(query_params)
|
||||||
|> Map.merge(%{"whole_db" => true, "actor_id" => user.ap_id})
|
|> Enum.reverse()
|
||||||
|
|
||||||
activities =
|
response =
|
||||||
ActivityPub.fetch_public_activities(query_params)
|
user
|
||||||
|> Enum.reverse()
|
|> FeedRepresenter.to_simple_form(activities, [user])
|
||||||
|
|> :xmerl.export_simple(:xmerl_xml)
|
||||||
|
|> to_string
|
||||||
|
|
||||||
response =
|
conn
|
||||||
user
|
|> put_resp_content_type("application/atom+xml")
|
||||||
|> FeedRepresenter.to_simple_form(activities, [user])
|
|> send_resp(200, response)
|
||||||
|> :xmerl.export_simple(:xmerl_xml)
|
else
|
||||||
|> to_string
|
{:user, nil} -> {:error, :not_found}
|
||||||
|
end
|
||||||
conn
|
|
||||||
|> put_resp_content_type("application/atom+xml")
|
|
||||||
|> send_resp(200, response)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
defp decode_or_retry(body) do
|
defp decode_or_retry(body) do
|
||||||
|
@ -73,7 +79,8 @@ def object(conn, %{"uuid" => uuid}) do
|
||||||
ActivityPubController.call(conn, :object)
|
ActivityPubController.call(conn, :object)
|
||||||
else
|
else
|
||||||
with id <- o_status_url(conn, :object, uuid),
|
with id <- o_status_url(conn, :object, uuid),
|
||||||
%Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id),
|
{_, %Activity{} = activity} <-
|
||||||
|
{:activity, Activity.get_create_activity_by_object_ap_id(id)},
|
||||||
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
||||||
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
||||||
case get_format(conn) do
|
case get_format(conn) do
|
||||||
|
@ -82,16 +89,20 @@ def object(conn, %{"uuid" => uuid}) do
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
{:public?, false} ->
|
{:public?, false} ->
|
||||||
conn
|
{:error, :not_found}
|
||||||
|> put_status(404)
|
|
||||||
|> json("Not found")
|
{:activity, nil} ->
|
||||||
|
{:error, :not_found}
|
||||||
|
|
||||||
|
e ->
|
||||||
|
e
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def activity(conn, %{"uuid" => uuid}) do
|
def activity(conn, %{"uuid" => uuid}) do
|
||||||
with id <- o_status_url(conn, :activity, uuid),
|
with id <- o_status_url(conn, :activity, uuid),
|
||||||
%Activity{} = activity <- Activity.get_by_ap_id(id),
|
{_, %Activity{} = activity} <- {:activity, Activity.get_by_ap_id(id)},
|
||||||
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
||||||
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
||||||
case get_format(conn) do
|
case get_format(conn) do
|
||||||
|
@ -100,14 +111,18 @@ def activity(conn, %{"uuid" => uuid}) do
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
{:public?, false} ->
|
{:public?, false} ->
|
||||||
conn
|
{:error, :not_found}
|
||||||
|> put_status(404)
|
|
||||||
|> json("Not found")
|
{:activity, nil} ->
|
||||||
|
{:error, :not_found}
|
||||||
|
|
||||||
|
e ->
|
||||||
|
e
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def notice(conn, %{"id" => id}) do
|
def notice(conn, %{"id" => id}) do
|
||||||
with %Activity{} = activity <- Repo.get(Activity, id),
|
with {_, %Activity{} = activity} <- {:activity, Repo.get(Activity, id)},
|
||||||
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
||||||
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
||||||
case get_format(conn) do
|
case get_format(conn) do
|
||||||
|
@ -121,9 +136,13 @@ def notice(conn, %{"id" => id}) do
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
{:public?, false} ->
|
{:public?, false} ->
|
||||||
conn
|
{:error, :not_found}
|
||||||
|> put_status(404)
|
|
||||||
|> json("Not found")
|
{:activity, nil} ->
|
||||||
|
{:error, :not_found}
|
||||||
|
|
||||||
|
e ->
|
||||||
|
e
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -139,4 +158,16 @@ defp represent_activity(conn, activity, user) do
|
||||||
|> put_resp_content_type("application/atom+xml")
|
|> put_resp_content_type("application/atom+xml")
|
||||||
|> send_resp(200, response)
|
|> send_resp(200, response)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def errors(conn, {:error, :not_found}) do
|
||||||
|
conn
|
||||||
|
|> put_status(404)
|
||||||
|
|> text("Not found")
|
||||||
|
end
|
||||||
|
|
||||||
|
def errors(conn, _) do
|
||||||
|
conn
|
||||||
|
|> put_status(500)
|
||||||
|
|> text("Something went wrong")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -53,11 +53,21 @@ test "gets a feed", %{conn: conn} do
|
||||||
|
|
||||||
conn =
|
conn =
|
||||||
conn
|
conn
|
||||||
|
|> put_req_header("content-type", "application/atom+xml")
|
||||||
|> get("/users/#{user.nickname}/feed.atom")
|
|> get("/users/#{user.nickname}/feed.atom")
|
||||||
|
|
||||||
assert response(conn, 200) =~ note_activity.data["object"]["content"]
|
assert response(conn, 200) =~ note_activity.data["object"]["content"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "returns 404 for a missing feed", %{conn: conn} do
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> put_req_header("content-type", "application/atom+xml")
|
||||||
|
|> get("/users/nonexisting/feed.atom")
|
||||||
|
|
||||||
|
assert response(conn, 404)
|
||||||
|
end
|
||||||
|
|
||||||
test "gets an object", %{conn: conn} do
|
test "gets an object", %{conn: conn} do
|
||||||
note_activity = insert(:note_activity)
|
note_activity = insert(:note_activity)
|
||||||
user = User.get_by_ap_id(note_activity.data["actor"])
|
user = User.get_by_ap_id(note_activity.data["actor"])
|
||||||
|
@ -90,6 +100,16 @@ test "404s on private objects", %{conn: conn} do
|
||||||
assert response(conn, 404)
|
assert response(conn, 404)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "404s on nonexisting objects", %{conn: conn} do
|
||||||
|
url = "/objects/123"
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> get(url)
|
||||||
|
|
||||||
|
assert response(conn, 404)
|
||||||
|
end
|
||||||
|
|
||||||
test "gets an activity", %{conn: conn} do
|
test "gets an activity", %{conn: conn} do
|
||||||
note_activity = insert(:note_activity)
|
note_activity = insert(:note_activity)
|
||||||
[_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
|
[_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"]))
|
||||||
|
@ -114,6 +134,16 @@ test "404s on private activities", %{conn: conn} do
|
||||||
assert response(conn, 404)
|
assert response(conn, 404)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "404s on nonexistent activities", %{conn: conn} do
|
||||||
|
url = "/activities/123"
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> get(url)
|
||||||
|
|
||||||
|
assert response(conn, 404)
|
||||||
|
end
|
||||||
|
|
||||||
test "gets a notice", %{conn: conn} do
|
test "gets a notice", %{conn: conn} do
|
||||||
note_activity = insert(:note_activity)
|
note_activity = insert(:note_activity)
|
||||||
url = "/notice/#{note_activity.id}"
|
url = "/notice/#{note_activity.id}"
|
||||||
|
@ -135,4 +165,14 @@ test "404s a private notice", %{conn: conn} do
|
||||||
|
|
||||||
assert response(conn, 404)
|
assert response(conn, 404)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "404s a nonexisting notice", %{conn: conn} do
|
||||||
|
url = "/notice/123"
|
||||||
|
|
||||||
|
conn =
|
||||||
|
conn
|
||||||
|
|> get(url)
|
||||||
|
|
||||||
|
assert response(conn, 404)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue