pleroma/lib/pleroma/web/o_status/o_status_controller.ex

141 lines
4.5 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2022-02-26 00:11:42 -06:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-04-18 11:41:51 -05:00
defmodule Pleroma.Web.OStatus.OStatusController do
use Pleroma.Web, :controller
2019-02-09 09:16:26 -06:00
alias Pleroma.Activity
alias Pleroma.Object
alias Pleroma.User
alias Pleroma.Web.ActivityPub.ActivityPubController
alias Pleroma.Web.ActivityPub.Visibility
2019-07-29 00:02:20 -05:00
alias Pleroma.Web.Endpoint
2020-06-24 00:43:20 -05:00
alias Pleroma.Web.Fallback.RedirectController
2019-07-29 00:02:20 -05:00
alias Pleroma.Web.Metadata.PlayerView
2020-06-24 05:07:47 -05:00
alias Pleroma.Web.Plugs.RateLimiter
2019-07-29 00:02:20 -05:00
alias Pleroma.Web.Router
2017-04-18 11:41:51 -05:00
2019-08-22 04:03:43 -05:00
plug(
2019-11-11 06:13:06 -06:00
RateLimiter,
[name: :ap_routes, params: ["uuid"]] when action in [:object, :activity]
2019-08-22 04:03:43 -05:00
)
2019-08-20 10:10:36 -05:00
2019-07-29 00:02:20 -05:00
plug(
2020-06-24 01:26:17 -05:00
Pleroma.Web.Plugs.SetFormatPlug
when action in [:object, :activity, :notice]
2019-07-29 00:02:20 -05:00
)
2019-07-29 00:02:20 -05:00
action_fallback(:errors)
def object(%{assigns: %{format: format}} = conn, _params)
2019-07-29 00:02:20 -05:00
when format in ["json", "activity+json"] do
ActivityPubController.call(conn, :object)
end
def object(conn, _params) do
with id <- Endpoint.url() <> conn.request_path,
2019-07-29 00:02:20 -05:00
{_, %Activity{} = activity} <-
{:activity, Activity.get_create_by_object_ap_id_with_object(id)},
{_, true} <- {:public?, Visibility.is_public?(activity)} do
redirect(conn, to: "/notice/#{activity.id}")
2019-07-29 00:02:20 -05:00
else
reason when reason in [{:public?, false}, {:activity, nil}] ->
2019-07-29 00:02:20 -05:00
{:error, :not_found}
e ->
e
2017-05-19 08:53:02 -05:00
end
end
def activity(%{assigns: %{format: format}} = conn, _params)
2019-07-29 00:02:20 -05:00
when format in ["json", "activity+json"] do
ActivityPubController.call(conn, :activity)
end
def activity(conn, _params) do
with id <- Endpoint.url() <> conn.request_path,
2019-07-29 00:02:20 -05:00
{_, %Activity{} = activity} <- {:activity, Activity.normalize(id)},
{_, true} <- {:public?, Visibility.is_public?(activity)} do
redirect(conn, to: "/notice/#{activity.id}")
2019-07-29 00:02:20 -05:00
else
reason when reason in [{:public?, false}, {:activity, nil}] ->
2019-07-29 00:02:20 -05:00
{:error, :not_found}
e ->
e
2017-05-19 08:53:02 -05:00
end
end
2019-07-29 00:02:20 -05:00
def notice(%{assigns: %{format: format}} = conn, %{"id" => id}) do
with {_, %Activity{} = activity} <- {:activity, Activity.get_by_id_with_object(id)},
2019-02-22 06:29:52 -06:00
{_, true} <- {:public?, Visibility.is_public?(activity)},
2018-03-30 08:01:53 -05:00
%User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
2019-07-29 00:02:20 -05:00
cond do
format in ["json", "activity+json"] ->
%{data: %{"id" => redirect_url}} = Object.normalize(activity, fetch: false)
redirect(conn, external: redirect_url)
activity.data["type"] == "Create" ->
%Object{} = object = Object.normalize(activity, fetch: false)
2019-07-29 00:02:20 -05:00
RedirectController.redirector_with_meta(
conn,
%{
activity_id: activity.id,
object: object,
2019-07-29 00:02:20 -05:00
url: Router.Helpers.o_status_url(Endpoint, :notice, activity.id),
user: user
2019-07-29 00:02:20 -05:00
}
)
2018-03-30 08:01:53 -05:00
2019-07-29 00:02:20 -05:00
true ->
RedirectController.redirector(conn, nil)
2017-11-27 10:24:52 -06:00
end
2018-05-30 13:00:27 -05:00
else
reason when reason in [{:public?, false}, {:activity, nil}] ->
conn
|> put_status(404)
2019-07-29 00:02:20 -05:00
|> RedirectController.redirector(nil, 404)
e ->
e
2017-11-27 10:24:52 -06:00
end
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_with_object(id),
2019-02-22 06:29:52 -06:00
true <- Visibility.is_public?(activity),
{_, true} <- {:visible?, Visibility.visible_for_user?(activity, _reading_user = nil)},
%Object{} = object <- Object.normalize(activity, fetch: false),
%{data: %{"attachment" => [%{"url" => [url | _]} | _]}} <- object,
true <- String.starts_with?(url["mediaType"], ["audio", "video"]) do
conn
|> put_layout(:metadata_player)
2019-02-19 11:17:37 -06:00
|> put_resp_header("x-frame-options", "ALLOW")
|> put_resp_header(
"content-security-policy",
"default-src 'none';style-src 'self' 'unsafe-inline';img-src 'self' data: https:; media-src 'self' https:;"
2019-02-19 11:17:37 -06:00
)
2019-07-29 00:02:20 -05:00
|> put_view(PlayerView)
|> render("player.html", url)
else
_error ->
conn
|> put_status(404)
2019-07-29 00:02:20 -05:00
|> RedirectController.redirector(nil, 404)
end
2017-11-27 10:24:52 -06:00
end
defp errors(conn, {:error, :not_found}) do
render_error(conn, :not_found, "Not found")
end
defp errors(conn, {:fetch_user, nil}), do: errors(conn, {:error, :not_found})
2019-07-29 00:02:20 -05:00
defp errors(conn, _) do
render_error(conn, :internal_server_error, "Something went wrong")
end
2017-04-18 11:41:51 -05:00
end