2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-04-18 16:41:51 +00:00
|
|
|
defmodule Pleroma.Web.OStatus.OStatusController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Object
|
|
|
|
alias Pleroma.User
|
2018-03-06 15:04:29 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPubController
|
|
|
|
alias Pleroma.Web.ActivityPub.ObjectView
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.Federator
|
|
|
|
alias Pleroma.Web.OStatus
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.OStatus.ActivityRepresenter
|
|
|
|
alias Pleroma.Web.OStatus.FeedRepresenter
|
2017-11-09 07:32:54 +00:00
|
|
|
alias Pleroma.Web.XML
|
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])
|
2019-01-24 14:37:23 +00:00
|
|
|
|
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-12-13 21:16:54 +00:00
|
|
|
case get_format(conn) do
|
2018-06-08 04:23:30 +00:00
|
|
|
"html" ->
|
2018-12-14 18:55:40 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(nickname) do
|
2018-12-13 21:13:02 +00:00
|
|
|
Fallback.RedirectController.redirector_with_meta(conn, %{user: user})
|
2018-12-14 18:55:40 +00:00
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
2018-12-13 21:13:02 +00:00
|
|
|
end
|
2018-06-08 04:23:30 +00:00
|
|
|
|
|
|
|
"activity+json" ->
|
|
|
|
ActivityPubController.call(conn, :user)
|
|
|
|
|
2019-02-20 20:45:40 +00:00
|
|
|
"json" ->
|
|
|
|
ActivityPubController.call(conn, :user)
|
|
|
|
|
2018-06-08 04:23:30 +00:00
|
|
|
_ ->
|
|
|
|
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
|
|
|
|
2019-01-28 15:17:17 +00:00
|
|
|
Federator.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
|
2019-02-20 20:45:40 +00:00
|
|
|
if get_format(conn) in ["activity+json", "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),
|
2019-01-21 06:14:20 +00:00
|
|
|
{_, %Activity{} = activity} <- {:activity, Activity.get_create_by_object_ap_id(id)},
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.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
|
2019-02-20 20:45:40 +00:00
|
|
|
if get_format(conn) in ["activity+json", "json"] do
|
2019-01-08 22:22:15 +00:00
|
|
|
ActivityPubController.call(conn, :activity)
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
2019-01-08 22:22:15 +00:00
|
|
|
with id <- o_status_url(conn, :activity, uuid),
|
|
|
|
{_, %Activity{} = activity} <- {:activity, Activity.normalize(id)},
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(activity)},
|
2019-01-08 22:22:15 +00:00
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
|
|
|
|
case format = get_format(conn) do
|
|
|
|
"html" -> redirect(conn, to: "/notice/#{activity.id}")
|
|
|
|
_ -> represent_activity(conn, format, activity, user)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
{:public?, false} ->
|
|
|
|
{:error, :not_found}
|
2018-06-03 19:04:44 +00:00
|
|
|
|
2019-01-08 22:22:15 +00:00
|
|
|
{:activity, nil} ->
|
|
|
|
{:error, :not_found}
|
2018-06-03 19:04:44 +00:00
|
|
|
|
2019-01-08 22:22:15 +00:00
|
|
|
e ->
|
|
|
|
e
|
|
|
|
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
|
2019-01-15 17:00:21 +00:00
|
|
|
with {_, %Activity{} = activity} <- {:activity, Activity.get_by_id(id)},
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.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" ->
|
2019-01-18 06:32:52 +00:00
|
|
|
if activity.data["type"] == "Create" do
|
|
|
|
%Object{} = object = Object.normalize(activity.data["object"])
|
|
|
|
|
2019-01-16 06:42:24 +00:00
|
|
|
Fallback.RedirectController.redirector_with_meta(conn, %{
|
2019-02-19 16:39:42 +00:00
|
|
|
activity_id: activity.id,
|
2019-01-18 06:32:52 +00:00
|
|
|
object: object,
|
2019-01-19 22:28:46 +00:00
|
|
|
url:
|
|
|
|
Pleroma.Web.Router.Helpers.o_status_url(
|
|
|
|
Pleroma.Web.Endpoint,
|
|
|
|
:notice,
|
|
|
|
activity.id
|
|
|
|
),
|
2019-01-16 06:42:24 +00:00
|
|
|
user: user
|
|
|
|
})
|
|
|
|
else
|
|
|
|
Fallback.RedirectController.redirector(conn, nil)
|
|
|
|
end
|
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} ->
|
2019-01-27 21:51:50 +00:00
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> Fallback.RedirectController.redirector(nil, 404)
|
2018-06-03 19:04:44 +00:00
|
|
|
|
|
|
|
{:activity, nil} ->
|
2019-01-27 21:51:50 +00:00
|
|
|
conn
|
|
|
|
|> Fallback.RedirectController.redirector(nil, 404)
|
2018-06-03 19:04:44 +00:00
|
|
|
|
|
|
|
e ->
|
|
|
|
e
|
2017-11-27 16:24:52 +00:00
|
|
|
end
|
2019-02-19 16:39:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns an HTML embedded <audio> or <video> player suitable for embed iframes.
|
|
|
|
def notice_player(conn, %{"id" => id}) do
|
|
|
|
with %Activity{data: %{"type" => "Create"}} = activity <- Activity.get_by_id(id),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.is_public?(activity),
|
2019-02-19 16:39:42 +00:00
|
|
|
%Object{} = object <- Object.normalize(activity.data["object"]),
|
|
|
|
%{data: %{"attachment" => [%{"url" => [url | _]} | _]}} <- object,
|
|
|
|
true <- String.starts_with?(url["mediaType"], ["audio", "video"]) do
|
|
|
|
conn
|
|
|
|
|> put_layout(:metadata_player)
|
2019-02-19 17:17:37 +00:00
|
|
|
|> put_resp_header("x-frame-options", "ALLOW")
|
|
|
|
|> put_resp_header(
|
|
|
|
"content-security-policy",
|
2019-02-19 17:56:57 +00:00
|
|
|
"default-src 'none';style-src 'self' 'unsafe-inline';img-src 'self' data: https:; media-src 'self' https:;"
|
2019-02-19 17:17:37 +00:00
|
|
|
)
|
2019-02-19 16:39:42 +00:00
|
|
|
|> put_view(Pleroma.Web.Metadata.PlayerView)
|
|
|
|
|> render("player.html", url)
|
|
|
|
else
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> Fallback.RedirectController.redirector(nil, 404)
|
|
|
|
end
|
2017-11-27 16:24:52 +00:00
|
|
|
end
|
|
|
|
|
2018-11-17 22:10:15 +00:00
|
|
|
defp represent_activity(
|
|
|
|
conn,
|
|
|
|
"activity+json",
|
|
|
|
%Activity{data: %{"type" => "Create"}} = activity,
|
2018-12-09 09:12:48 +00:00
|
|
|
_user
|
2018-11-17 22:10:15 +00:00
|
|
|
) 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
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
defp represent_activity(_conn, "activity+json", _, _) do
|
2018-11-17 22:10:15 +00:00
|
|
|
{: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
|