2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-06 17:06:50 +00:00
|
|
|
defmodule Pleroma.Web.ControllerHelper do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2020-05-07 19:52:45 +00:00
|
|
|
alias Pleroma.Pagination
|
2021-06-07 21:01:26 +00:00
|
|
|
alias Pleroma.Web.Utils.Params
|
2019-04-01 11:46:50 +00:00
|
|
|
|
2020-08-07 18:02:39 +00:00
|
|
|
def json_response(conn, status, _) when status in [204, :no_content] do
|
|
|
|
conn
|
|
|
|
|> put_resp_header("content-type", "application/json")
|
|
|
|
|> send_resp(status, "")
|
|
|
|
end
|
|
|
|
|
2018-12-06 17:06:50 +00:00
|
|
|
def json_response(conn, status, json) do
|
|
|
|
conn
|
|
|
|
|> put_status(status)
|
|
|
|
|> json(json)
|
|
|
|
end
|
2019-06-14 11:39:57 +00:00
|
|
|
|
2024-01-31 16:01:37 +00:00
|
|
|
@spec fetch_integer_param(map(), String.t() | atom(), integer() | nil) :: integer() | nil
|
2019-06-14 11:39:57 +00:00
|
|
|
def fetch_integer_param(params, name, default \\ nil) do
|
|
|
|
params
|
|
|
|
|> Map.get(name, default)
|
|
|
|
|> param_to_integer(default)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp param_to_integer(val, _) when is_integer(val), do: val
|
|
|
|
|
|
|
|
defp param_to_integer(val, default) when is_binary(val) do
|
|
|
|
case Integer.parse(val) do
|
|
|
|
{res, _} -> res
|
|
|
|
_ -> default
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp param_to_integer(_, default), do: default
|
2019-08-02 17:53:08 +00:00
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
def add_link_headers(conn, entries, extra_params \\ %{})
|
2020-03-23 17:56:01 +00:00
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
def add_link_headers(%{assigns: %{skip_link_headers: true}} = conn, _entries, _extra_params),
|
2020-03-23 17:56:01 +00:00
|
|
|
do: conn
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
def add_link_headers(conn, entries, extra_params) do
|
|
|
|
case get_pagination_fields(conn, entries, extra_params) do
|
2020-05-07 19:52:45 +00:00
|
|
|
%{"next" => next_url, "prev" => prev_url} ->
|
|
|
|
put_resp_header(conn, "link", "<#{next_url}>; rel=\"next\", <#{prev_url}>; rel=\"prev\"")
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-01-31 00:03:11 +00:00
|
|
|
# TODO: Only fetch the params from open_api_spex when everything is converted
|
2020-06-10 08:02:26 +00:00
|
|
|
@id_keys Pagination.page_keys() -- ["limit", "order"]
|
2020-06-09 08:53:40 +00:00
|
|
|
defp build_pagination_fields(conn, min_id, max_id, extra_params) do
|
|
|
|
params =
|
2024-01-31 00:03:11 +00:00
|
|
|
if Map.has_key?(conn.private, :open_api_spex) do
|
|
|
|
get_in(conn, [Access.key(:private), Access.key(:open_api_spex), Access.key(:params)])
|
|
|
|
else
|
|
|
|
conn.params
|
|
|
|
end
|
2021-01-12 11:59:50 +00:00
|
|
|
|> Map.drop(Map.keys(conn.path_params) |> Enum.map(&String.to_existing_atom/1))
|
2020-06-09 08:53:40 +00:00
|
|
|
|> Map.merge(extra_params)
|
2020-06-10 08:02:35 +00:00
|
|
|
|> Map.drop(@id_keys)
|
2020-06-09 08:53:40 +00:00
|
|
|
|
2020-06-13 11:12:43 +00:00
|
|
|
%{
|
2020-06-09 08:53:40 +00:00
|
|
|
"next" => current_url(conn, Map.put(params, :max_id, max_id)),
|
2020-06-13 11:12:43 +00:00
|
|
|
"prev" => current_url(conn, Map.put(params, :min_id, min_id)),
|
|
|
|
"id" => current_url(conn)
|
2020-06-09 08:53:40 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
def get_pagination_fields(conn, entries, extra_params \\ %{}) do
|
|
|
|
case List.last(entries) do
|
2020-06-09 08:53:40 +00:00
|
|
|
%{pagination_id: max_id} when not is_nil(max_id) ->
|
2020-09-10 09:24:44 +00:00
|
|
|
%{pagination_id: min_id} = List.first(entries)
|
2020-06-09 08:53:40 +00:00
|
|
|
|
|
|
|
build_pagination_fields(conn, min_id, max_id, extra_params)
|
2019-08-02 17:53:08 +00:00
|
|
|
|
2020-06-09 08:53:40 +00:00
|
|
|
%{id: max_id} ->
|
2020-09-10 09:24:44 +00:00
|
|
|
%{id: min_id} = List.first(entries)
|
2020-06-09 08:53:40 +00:00
|
|
|
|
|
|
|
build_pagination_fields(conn, min_id, max_id, extra_params)
|
2019-08-02 17:53:08 +00:00
|
|
|
|
2019-09-06 10:08:47 +00:00
|
|
|
_ ->
|
2020-05-07 19:52:45 +00:00
|
|
|
%{}
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
|
|
|
end
|
2019-09-30 07:28:12 +00:00
|
|
|
|
2024-01-30 21:50:00 +00:00
|
|
|
def assign_account_by_id(%{private: %{open_api_spex: %{params: %{id: id}}}} = conn, _) do
|
|
|
|
case Pleroma.User.get_cached_by_id(id) do
|
2019-09-30 07:28:12 +00:00
|
|
|
%Pleroma.User{} = account -> assign(conn, :account, account)
|
|
|
|
nil -> Pleroma.Web.MastodonAPI.FallbackController.call(conn, {:error, :not_found}) |> halt()
|
|
|
|
end
|
|
|
|
end
|
2019-10-01 04:44:34 +00:00
|
|
|
|
2019-12-17 19:13:45 +00:00
|
|
|
def try_render(conn, target, params) when is_binary(target) do
|
Pleroma.Web.ControllerHelper: dialyzer error
lib/pleroma/web/controller_helper.ex:97:pattern_match
The pattern can never match the type.
Pattern:
nil
Type:
%Plug.Conn{
:adapter => {atom(), _},
:assigns => %{atom() => _},
:body_params => %Plug.Conn.Unfetched{:aspect => atom(), binary() => _},
:cookies => %Plug.Conn.Unfetched{:aspect => atom(), binary() => _},
:halted => boolean(),
:host => binary(),
:method => binary(),
:owner => pid(),
:params => %Plug.Conn.Unfetched{:aspect => atom(), binary() => _},
:path_info => [binary()],
:path_params => %{
binary() =>
binary()
| [binary() | [any()] | %{binary() => _}]
| %{binary() => binary() | [any()] | %{binary() => _}}
},
:port => char(),
:private => %{atom() => _},
:query_params => %Plug.Conn.Unfetched{
:aspect => atom(),
binary() =>
binary()
| [binary() | [any()] | %{binary() => _}]
| %{binary() => binary() | [any()] | %{binary() => _}}
},
:query_string => binary(),
:remote_ip =>
{byte(), byte(), byte(), byte()}
| {char(), char(), char(), char(), char(), char(), char(), char()},
:req_cookies => %Plug.Conn.Unfetched{:aspect => atom(), binary() => binary()},
:req_headers => [{binary(), binary()}],
:request_path => binary(),
:resp_body =>
nil
| binary()
| maybe_improper_list(
binary() | maybe_improper_list(any(), binary() | []) | byte(),
binary() | []
),
:resp_cookies => %{binary() => map()},
:resp_headers => [{binary(), binary()}],
:scheme => :http | :https,
:script_name => [binary()],
:secret_key_base => nil | binary(),
:state => :sent,
:status => nil | non_neg_integer()
}
2024-01-29 21:42:48 +00:00
|
|
|
render(conn, target, params)
|
2019-10-01 04:44:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def try_render(conn, _, _) do
|
|
|
|
render_error(conn, :not_implemented, "Can't display this activity")
|
|
|
|
end
|
2019-12-17 19:13:45 +00:00
|
|
|
|
2020-05-13 15:56:45 +00:00
|
|
|
@doc """
|
|
|
|
Returns true if request specifies to include embedded relationships in account objects.
|
|
|
|
May only be used in selected account-related endpoints; has no effect for status- or
|
|
|
|
notification-related endpoints.
|
|
|
|
"""
|
|
|
|
# Intended for PleromaFE: https://git.pleroma.social/pleroma/pleroma-fe/-/issues/838
|
|
|
|
def embed_relationships?(params) do
|
|
|
|
# To do once OpenAPI transition mess is over: just `truthy_param?(params[:with_relationships])`
|
|
|
|
params
|
|
|
|
|> Map.get(:with_relationships, params["with_relationships"])
|
2021-05-22 16:41:55 +00:00
|
|
|
|> Params.truthy_param?()
|
2020-05-12 16:14:35 +00:00
|
|
|
end
|
2018-12-06 17:06:50 +00:00
|
|
|
end
|