1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ControllerHelper do
6 use Pleroma.Web, :controller
8 alias Pleroma.Pagination
10 # As in Mastodon API, per https://api.rubyonrails.org/classes/ActiveModel/Type/Boolean.html
11 @falsy_param_values [false, 0, "0", "f", "F", "false", "False", "FALSE", "off", "OFF"]
13 def explicitly_falsy_param?(value), do: value in @falsy_param_values
15 # Note: `nil` and `""` are considered falsy values in Pleroma
16 def falsy_param?(value),
17 do: explicitly_falsy_param?(value) or value in [nil, ""]
19 def truthy_param?(value), do: not falsy_param?(value)
21 def json_response(conn, status, json) do
27 @spec fetch_integer_param(map(), String.t(), integer() | nil) :: integer() | nil
28 def fetch_integer_param(params, name, default \\ nil) do
30 |> Map.get(name, default)
31 |> param_to_integer(default)
34 defp param_to_integer(val, _) when is_integer(val), do: val
36 defp param_to_integer(val, default) when is_binary(val) do
37 case Integer.parse(val) do
43 defp param_to_integer(_, default), do: default
45 def add_link_headers(conn, activities, extra_params \\ %{})
47 def add_link_headers(%{assigns: %{skip_link_headers: true}} = conn, _activities, _extra_params),
50 def add_link_headers(conn, activities, extra_params) do
51 case get_pagination_fields(conn, activities, extra_params) do
52 %{"next" => next_url, "prev" => prev_url} ->
53 put_resp_header(conn, "link", "<#{next_url}>; rel=\"next\", <#{prev_url}>; rel=\"prev\"")
60 @id_keys Pagination.page_keys() -- ["limit", "order"]
61 defp build_pagination_fields(conn, min_id, max_id, extra_params) do
64 |> Map.drop(Map.keys(conn.path_params))
65 |> Map.merge(extra_params)
69 "next" => current_url(conn, Map.put(params, :max_id, max_id)),
70 "prev" => current_url(conn, Map.put(params, :min_id, min_id)),
71 "id" => current_url(conn)
75 def get_pagination_fields(conn, activities, extra_params \\ %{}) do
76 case List.last(activities) do
77 %{pagination_id: max_id} when not is_nil(max_id) ->
78 %{pagination_id: min_id} =
82 build_pagination_fields(conn, min_id, max_id, extra_params)
89 build_pagination_fields(conn, min_id, max_id, extra_params)
96 def assign_account_by_id(conn, _) do
97 case Pleroma.User.get_cached_by_id(conn.params.id) do
98 %Pleroma.User{} = account -> assign(conn, :account, account)
99 nil -> Pleroma.Web.MastodonAPI.FallbackController.call(conn, {:error, :not_found}) |> halt()
103 def try_render(conn, target, params) when is_binary(target) do
104 case render(conn, target, params) do
105 nil -> render_error(conn, :not_implemented, "Can't display this activity")
110 def try_render(conn, _, _) do
111 render_error(conn, :not_implemented, "Can't display this activity")
115 Returns true if request specifies to include embedded relationships in account objects.
116 May only be used in selected account-related endpoints; has no effect for status- or
117 notification-related endpoints.
119 # Intended for PleromaFE: https://git.pleroma.social/pleroma/pleroma-fe/-/issues/838
120 def embed_relationships?(params) do
121 # To do once OpenAPI transition mess is over: just `truthy_param?(params[:with_relationships])`
123 |> Map.get(:with_relationships, params["with_relationships"])