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-07-29 05:02:20 +00:00
|
|
|
alias Fallback.RedirectController
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Object
|
2019-11-11 12:13:06 +00:00
|
|
|
alias Pleroma.Plugs.RateLimiter
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPubController
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2019-07-29 05:02:20 +00:00
|
|
|
alias Pleroma.Web.Endpoint
|
|
|
|
alias Pleroma.Web.Metadata.PlayerView
|
|
|
|
alias Pleroma.Web.Router
|
2017-04-18 16:41:51 +00:00
|
|
|
|
2019-08-22 09:03:43 +00:00
|
|
|
plug(
|
2019-11-11 12:13:06 +00:00
|
|
|
RateLimiter,
|
|
|
|
[name: :ap_routes, params: ["uuid"]] when action in [:object, :activity]
|
2019-08-22 09:03:43 +00:00
|
|
|
)
|
2019-08-20 15:10:36 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
plug(
|
|
|
|
Pleroma.Plugs.SetFormatPlug
|
2019-10-07 12:20:41 +00:00
|
|
|
when action in [:object, :activity, :notice]
|
2019-07-29 05:02:20 +00:00
|
|
|
)
|
2017-08-03 15:49:18 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
action_fallback(:errors)
|
2018-06-08 04:23:30 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
def object(%{assigns: %{format: format}} = conn, %{"uuid" => _uuid})
|
|
|
|
when format in ["json", "activity+json"] do
|
|
|
|
ActivityPubController.call(conn, :object)
|
|
|
|
end
|
2018-06-03 19:04:44 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
def object(%{assigns: %{format: format}} = conn, %{"uuid" => uuid}) do
|
|
|
|
with id <- o_status_url(conn, :object, uuid),
|
|
|
|
{_, %Activity{} = activity} <-
|
|
|
|
{:activity, Activity.get_create_by_object_ap_id_with_object(id)},
|
2019-11-25 14:55:17 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(activity)} do
|
2019-07-29 05:02:20 +00:00
|
|
|
case format do
|
2019-11-25 14:55:17 +00:00
|
|
|
_ -> redirect(conn, to: "/notice/#{activity.id}")
|
2017-05-31 15:48:22 +00:00
|
|
|
end
|
2019-07-29 05:02:20 +00:00
|
|
|
else
|
|
|
|
reason when reason in [{:public?, false}, {:activity, nil}] ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
e ->
|
|
|
|
e
|
2017-05-19 13:53:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
def activity(%{assigns: %{format: format}} = conn, %{"uuid" => _uuid})
|
|
|
|
when format in ["json", "activity+json"] do
|
|
|
|
ActivityPubController.call(conn, :activity)
|
|
|
|
end
|
2018-06-03 19:04:44 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
def activity(%{assigns: %{format: format}} = conn, %{"uuid" => uuid}) do
|
|
|
|
with id <- o_status_url(conn, :activity, uuid),
|
|
|
|
{_, %Activity{} = activity} <- {:activity, Activity.normalize(id)},
|
2019-11-25 14:55:17 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(activity)} do
|
2019-07-29 05:02:20 +00:00
|
|
|
case format do
|
2019-11-25 14:55:17 +00:00
|
|
|
_ -> redirect(conn, to: "/notice/#{activity.id}")
|
2019-01-08 22:22:15 +00:00
|
|
|
end
|
2019-07-29 05:02:20 +00:00
|
|
|
else
|
|
|
|
reason when reason in [{:public?, false}, {: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
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
def notice(%{assigns: %{format: format}} = conn, %{"id" => id}) do
|
2019-03-23 03:03:06 +00:00
|
|
|
with {_, %Activity{} = activity} <- {:activity, Activity.get_by_id_with_object(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
|
2019-07-29 05:02:20 +00:00
|
|
|
cond do
|
2019-11-25 14:55:17 +00:00
|
|
|
format in ["json", "activity+json"] ->
|
|
|
|
if activity.local do
|
|
|
|
%{data: %{"id" => redirect_url}} = Object.normalize(activity)
|
|
|
|
redirect(conn, external: redirect_url)
|
|
|
|
else
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
|
|
|
|
activity.data["type"] == "Create" ->
|
2019-07-29 05:02:20 +00:00
|
|
|
%Object{} = object = Object.normalize(activity)
|
2019-01-18 06:32:52 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
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-07-29 05:02:20 +00:00
|
|
|
url: Router.Helpers.o_status_url(Endpoint, :notice, activity.id),
|
2019-01-16 06:42:24 +00:00
|
|
|
user: user
|
2019-07-29 05:02:20 +00:00
|
|
|
}
|
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
true ->
|
2019-11-25 14:55:17 +00:00
|
|
|
RedirectController.redirector(conn, nil)
|
2017-11-27 16:24:52 +00:00
|
|
|
end
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
2019-07-29 05:02:20 +00:00
|
|
|
reason when reason in [{:public?, false}, {:activity, nil}] ->
|
2019-01-27 21:51:50 +00:00
|
|
|
conn
|
|
|
|
|> put_status(404)
|
2019-07-29 05:02:20 +00:00
|
|
|
|> 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
|
2019-03-23 03:03:06 +00:00
|
|
|
with %Activity{data: %{"type" => "Create"}} = activity <- Activity.get_by_id_with_object(id),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.is_public?(activity),
|
2019-03-23 03:03:06 +00:00
|
|
|
%Object{} = object <- Object.normalize(activity),
|
2019-02-19 16:39:42 +00:00
|
|
|
%{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-07-29 05:02:20 +00:00
|
|
|
|> put_view(PlayerView)
|
2019-02-19 16:39:42 +00:00
|
|
|
|> render("player.html", url)
|
|
|
|
else
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
2019-07-29 05:02:20 +00:00
|
|
|
|> RedirectController.redirector(nil, 404)
|
2019-02-19 16:39:42 +00:00
|
|
|
end
|
2017-11-27 16:24:52 +00:00
|
|
|
end
|
|
|
|
|
2018-06-03 19:04:44 +00:00
|
|
|
def errors(conn, {:error, :not_found}) do
|
2019-07-10 09:25:58 +00:00
|
|
|
render_error(conn, :not_found, "Not found")
|
2018-06-03 19:04:44 +00:00
|
|
|
end
|
|
|
|
|
2019-07-29 05:02:20 +00:00
|
|
|
def errors(conn, {:fetch_user, nil}), do: errors(conn, {:error, :not_found})
|
|
|
|
|
2018-06-03 19:04:44 +00:00
|
|
|
def errors(conn, _) do
|
2019-07-10 09:25:58 +00:00
|
|
|
render_error(conn, :internal_server_error, "Something went wrong")
|
2018-06-03 19:04:44 +00:00
|
|
|
end
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|