2017-04-18 16:41:51 +00:00
|
|
|
defmodule Pleroma.Web.OStatus.OStatusController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.{User, Activity}
|
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
|
2017-04-18 16:41:51 +00:00
|
|
|
import Ecto.Query
|
|
|
|
|
2017-05-01 16:05:02 +00:00
|
|
|
def feed_redirect(conn, %{"nickname" => nickname}) do
|
2017-08-03 15:49:18 +00:00
|
|
|
user = User.get_cached_by_nickname(nickname)
|
|
|
|
|
|
|
|
case get_format(conn) do
|
|
|
|
"html" -> Fallback.RedirectController.redirector(conn, nil)
|
|
|
|
_ -> redirect conn, external: OStatus.feed_path(user)
|
2017-06-12 10:52:40 +00:00
|
|
|
end
|
2017-05-01 16:05:02 +00:00
|
|
|
end
|
|
|
|
|
2017-04-18 16:41:51 +00:00
|
|
|
def feed(conn, %{"nickname" => nickname}) do
|
|
|
|
user = User.get_cached_by_nickname(nickname)
|
|
|
|
query = from activity in Activity,
|
2017-07-01 14:43:10 +00:00
|
|
|
where: fragment("?->>'actor' = ?", activity.data, ^user.ap_id),
|
2017-04-18 16:41:51 +00:00
|
|
|
limit: 20,
|
2017-09-17 09:16:08 +00:00
|
|
|
order_by: [desc: :id]
|
2017-04-18 16:41:51 +00:00
|
|
|
|
|
|
|
activities = query
|
|
|
|
|> Repo.all
|
|
|
|
|
2017-04-27 13:18:50 +00:00
|
|
|
response = user
|
|
|
|
|> FeedRepresenter.to_simple_form(activities, [user])
|
2017-04-18 16:41:51 +00:00
|
|
|
|> :xmerl.export_simple(:xmerl_xml)
|
2017-04-22 13:34:29 +00:00
|
|
|
|> to_string
|
2017-04-18 16:41:51 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
|
|
|
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
|
|
|
|
|
|
|
def object(conn, %{"uuid" => uuid}) do
|
2017-05-19 13:53:02 +00:00
|
|
|
with id <- o_status_url(conn, :object, uuid),
|
|
|
|
%Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id),
|
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
2017-05-31 15:48:22 +00:00
|
|
|
case get_format(conn) do
|
|
|
|
"html" -> redirect(conn, to: "/notice/#{activity.id}")
|
|
|
|
_ -> represent_activity(conn, activity, user)
|
|
|
|
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),
|
|
|
|
%Activity{} = activity <- Activity.get_by_ap_id(id),
|
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
2017-05-31 15:48:22 +00:00
|
|
|
case get_format(conn) do
|
|
|
|
"html" -> redirect(conn, to: "/notice/#{activity.id}")
|
|
|
|
_ -> represent_activity(conn, activity, user)
|
|
|
|
end
|
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
|
|
|
|
with %Activity{} = activity <- Repo.get(Activity, id),
|
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
|
|
|
case get_format(conn) do
|
|
|
|
"html" ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("text/html")
|
|
|
|
|> send_file(200, "priv/static/index.html")
|
|
|
|
_ -> represent_activity(conn, activity, user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-19 13:53:02 +00:00
|
|
|
defp represent_activity(conn, activity, user) do
|
2017-05-05 10:07:38 +00:00
|
|
|
response = activity
|
|
|
|
|> ActivityRepresenter.to_simple_form(user, true)
|
2017-05-03 08:01:26 +00:00
|
|
|
|> ActivityRepresenter.wrap_with_entry
|
2017-05-03 07:54:17 +00:00
|
|
|
|> :xmerl.export_simple(:xmerl_xml)
|
|
|
|
|> to_string
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|