2017-04-18 16:41:51 +00:00
|
|
|
defmodule Pleroma.Web.OStatus.OStatusController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2018-11-17 22:10:15 +00:00
|
|
|
alias Pleroma.{User, Activity, Object}
|
2017-05-03 08:01:26 +00:00
|
|
|
alias Pleroma.Web.OStatus.{FeedRepresenter, ActivityRepresenter}
|
2017-04-18 16:41:51 +00:00
|
|
|
alias Pleroma.Repo
|
2017-05-06 10:34:40 +00:00
|
|
|
alias Pleroma.Web.{OStatus, Federator}
|
2017-11-09 07:32:54 +00:00
|
|
|
alias Pleroma.Web.XML
|
2018-07-12 17:13:20 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ObjectView
|
2017-12-11 09:37:22 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPubController
|
2018-03-06 15:04:29 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2017-04-18 16:41:51 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
plug(Pleroma.Web.FederatingPlug when action in [:salmon_incoming])
|
2018-06-03 19:04:44 +00:00
|
|
|
action_fallback(:errors)
|
2017-08-03 15:49:18 +00:00
|
|
|
|
2018-06-03 19:04:44 +00:00
|
|
|
def feed_redirect(conn, %{"nickname" => nickname}) do
|
2018-06-08 04:23:30 +00:00
|
|
|
case get_format(conn) do
|
|
|
|
"html" ->
|
|
|
|
Fallback.RedirectController.redirector(conn, nil)
|
|
|
|
|
|
|
|
"activity+json" ->
|
|
|
|
ActivityPubController.call(conn, :user)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
|
|
|
redirect(conn, external: OStatus.feed_path(user))
|
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
|
|
|
end
|
2017-06-12 10:52:40 +00:00
|
|
|
end
|
2017-05-01 16:05:02 +00:00
|
|
|
end
|
|
|
|
|
2018-02-09 12:46:05 +00:00
|
|
|
def feed(conn, %{"nickname" => nickname} = params) do
|
2018-06-08 04:23:30 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
2018-06-03 19:04:44 +00:00
|
|
|
query_params =
|
|
|
|
Map.take(params, ["max_id"])
|
|
|
|
|> Map.merge(%{"whole_db" => true, "actor_id" => user.ap_id})
|
|
|
|
|
|
|
|
activities =
|
|
|
|
ActivityPub.fetch_public_activities(query_params)
|
|
|
|
|> Enum.reverse()
|
|
|
|
|
|
|
|
response =
|
|
|
|
user
|
|
|
|
|> FeedRepresenter.to_simple_form(activities, [user])
|
|
|
|
|> :xmerl.export_simple(:xmerl_xml)
|
|
|
|
|> to_string
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
|
|
|
else
|
2018-06-08 04:23:30 +00:00
|
|
|
nil -> {:error, :not_found}
|
2018-06-03 19:04:44 +00:00
|
|
|
end
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|
2017-04-20 08:16:06 +00:00
|
|
|
|
2017-11-09 07:32:54 +00:00
|
|
|
defp decode_or_retry(body) do
|
|
|
|
with {:ok, magic_key} <- Pleroma.Web.Salmon.fetch_magic_key(body),
|
|
|
|
{:ok, doc} <- Pleroma.Web.Salmon.decode_and_validate(magic_key, body) do
|
|
|
|
{:ok, doc}
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
with [decoded | _] <- Pleroma.Web.Salmon.decode(body),
|
|
|
|
doc <- XML.parse_document(decoded),
|
|
|
|
uri when not is_nil(uri) <- XML.string_from_xpath("/entry/author[1]/uri", doc),
|
2017-11-19 01:22:07 +00:00
|
|
|
{:ok, _} <- Pleroma.Web.OStatus.make_user(uri, true),
|
2017-11-09 07:32:54 +00:00
|
|
|
{:ok, magic_key} <- Pleroma.Web.Salmon.fetch_magic_key(body),
|
|
|
|
{:ok, doc} <- Pleroma.Web.Salmon.decode_and_validate(magic_key, body) do
|
|
|
|
{:ok, doc}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
def salmon_incoming(conn, _) do
|
2017-04-24 16:46:34 +00:00
|
|
|
{:ok, body, _conn} = read_body(conn)
|
2017-11-09 07:32:54 +00:00
|
|
|
{:ok, doc} = decode_or_retry(body)
|
2017-04-24 16:46:34 +00:00
|
|
|
|
2017-05-06 10:34:40 +00:00
|
|
|
Federator.enqueue(:incoming_doc, doc)
|
2017-04-24 16:46:34 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> send_resp(200, "")
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|
2017-05-03 07:54:17 +00:00
|
|
|
|
2018-06-03 17:58:59 +00:00
|
|
|
def object(conn, %{"uuid" => uuid}) do
|
2017-12-11 17:21:33 +00:00
|
|
|
if get_format(conn) == "activity+json" do
|
2018-06-03 17:58:59 +00:00
|
|
|
ActivityPubController.call(conn, :object)
|
2017-12-11 17:21:33 +00:00
|
|
|
else
|
|
|
|
with id <- o_status_url(conn, :object, uuid),
|
2018-06-03 19:04:44 +00:00
|
|
|
{_, %Activity{} = activity} <-
|
|
|
|
{:activity, Activity.get_create_activity_by_object_ap_id(id)},
|
2018-05-30 18:00:27 +00:00
|
|
|
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
2018-03-30 13:01:53 +00:00
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
2017-12-11 17:21:33 +00:00
|
|
|
case get_format(conn) do
|
|
|
|
"html" -> redirect(conn, to: "/notice/#{activity.id}")
|
2018-07-12 17:13:20 +00:00
|
|
|
_ -> represent_activity(conn, nil, activity, user)
|
2017-12-11 17:21:33 +00:00
|
|
|
end
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
|
|
|
{:public?, false} ->
|
2018-06-03 19:04:44 +00:00
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
{:activity, nil} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
e ->
|
|
|
|
e
|
2017-05-31 15:48:22 +00:00
|
|
|
end
|
2017-05-19 13:53:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def activity(conn, %{"uuid" => uuid}) do
|
|
|
|
with id <- o_status_url(conn, :activity, uuid),
|
2018-06-18 21:20:44 +00:00
|
|
|
{_, %Activity{} = activity} <- {:activity, Activity.normalize(id)},
|
2018-05-30 18:00:27 +00:00
|
|
|
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
2017-05-19 13:53:02 +00:00
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
2018-07-12 17:13:20 +00:00
|
|
|
case format = get_format(conn) do
|
2017-05-31 15:48:22 +00:00
|
|
|
"html" -> redirect(conn, to: "/notice/#{activity.id}")
|
2018-07-12 17:13:20 +00:00
|
|
|
_ -> represent_activity(conn, format, activity, user)
|
2017-05-31 15:48:22 +00:00
|
|
|
end
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
|
|
|
{:public?, false} ->
|
2018-06-03 19:04:44 +00:00
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
{:activity, nil} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
e ->
|
|
|
|
e
|
2017-05-19 13:53:02 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-03 07:54:17 +00:00
|
|
|
|
2017-11-27 16:24:52 +00:00
|
|
|
def notice(conn, %{"id" => id}) do
|
2018-06-03 19:04:44 +00:00
|
|
|
with {_, %Activity{} = activity} <- {:activity, Repo.get(Activity, id)},
|
2018-05-30 18:00:27 +00:00
|
|
|
{_, true} <- {:public?, ActivityPub.is_public?(activity)},
|
2018-03-30 13:01:53 +00:00
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
2018-07-12 17:13:20 +00:00
|
|
|
case format = get_format(conn) do
|
2017-11-27 16:24:52 +00:00
|
|
|
"html" ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("text/html")
|
2018-11-16 20:35:08 +00:00
|
|
|
|> send_file(200, Application.app_dir(:pleroma, "priv/static/index.html"))
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
_ ->
|
2018-07-12 17:13:20 +00:00
|
|
|
represent_activity(conn, format, activity, user)
|
2017-11-27 16:24:52 +00:00
|
|
|
end
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
|
|
|
{:public?, false} ->
|
2018-06-03 19:04:44 +00:00
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
{:activity, nil} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
e ->
|
|
|
|
e
|
2017-11-27 16:24:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-17 22:10:15 +00:00
|
|
|
defp represent_activity(
|
|
|
|
conn,
|
|
|
|
"activity+json",
|
|
|
|
%Activity{data: %{"type" => "Create"}} = activity,
|
|
|
|
user
|
|
|
|
) do
|
|
|
|
object = Object.normalize(activity.data["object"])
|
|
|
|
|
2018-07-12 17:13:20 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_header("content-type", "application/activity+json")
|
2018-11-17 22:10:15 +00:00
|
|
|
|> json(ObjectView.render("object.json", %{object: object}))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp represent_activity(conn, "activity+json", _, _) do
|
|
|
|
{:error, :not_found}
|
2018-07-12 17:13:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp represent_activity(conn, _, activity, user) do
|
2018-03-30 13:01:53 +00:00
|
|
|
response =
|
|
|
|
activity
|
|
|
|
|> ActivityRepresenter.to_simple_form(user, true)
|
|
|
|
|> ActivityRepresenter.wrap_with_entry()
|
|
|
|
|> :xmerl.export_simple(:xmerl_xml)
|
|
|
|
|> to_string
|
2017-05-03 07:54:17 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|
2018-06-03 19:04:44 +00:00
|
|
|
|
|
|
|
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
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|