1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web do
7 A module that keeps using definitions for controllers,
10 This can be used in your application as:
12 use Pleroma.Web, :controller
13 use Pleroma.Web, :view
15 The definitions below will be executed for every view,
16 controller, etc, so keep them short and clean, focused
17 on imports, uses and aliases.
19 Do NOT define functions inside the quoted expressions
23 alias Pleroma.Helpers.AuthHelper
24 alias Pleroma.Web.Plugs.EnsureAuthenticatedPlug
25 alias Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlug
26 alias Pleroma.Web.Plugs.ExpectAuthenticatedCheckPlug
27 alias Pleroma.Web.Plugs.ExpectPublicOrAuthenticatedCheckPlug
28 alias Pleroma.Web.Plugs.OAuthScopesPlug
29 alias Pleroma.Web.Plugs.PlugHelper
33 use Phoenix.Controller, namespace: Pleroma.Web
37 import Pleroma.Web.Gettext
38 import Pleroma.Web.Router.Helpers
39 import Pleroma.Web.TranslationHelpers
43 defp set_put_layout(conn, _) do
44 put_layout(conn, Pleroma.Config.get(:app_layout, "app.html"))
47 # Marks plugs intentionally skipped and blocks their execution if present in plugs chain
48 defp skip_plug(conn, plug_modules) do
53 fn plug_module, conn ->
55 plug_module.skip_plug(conn)
57 UndefinedFunctionError ->
58 raise "`#{plug_module}` is not skippable. Append `use Pleroma.Web, :plug` to its code."
64 # Executed just before actual controller action, invokes before-action hooks (callbacks)
65 defp action(conn, params) do
66 with %{halted: false} = conn <-
67 maybe_drop_authentication_if_oauth_check_ignored(conn),
68 %{halted: false} = conn <- maybe_perform_public_or_authenticated_check(conn),
69 %{halted: false} = conn <- maybe_perform_authenticated_check(conn),
70 %{halted: false} = conn <- maybe_halt_on_missing_oauth_scopes_check(conn) do
75 # For non-authenticated API actions, drops auth info if OAuth scopes check was ignored
76 # (neither performed nor explicitly skipped)
77 defp maybe_drop_authentication_if_oauth_check_ignored(conn) do
78 if PlugHelper.plug_called?(conn, ExpectPublicOrAuthenticatedCheckPlug) and
79 not PlugHelper.plug_called_or_skipped?(conn, OAuthScopesPlug) do
80 AuthHelper.drop_auth_info(conn)
86 # Ensures instance is public -or- user is authenticated if such check was scheduled
87 defp maybe_perform_public_or_authenticated_check(conn) do
88 if PlugHelper.plug_called?(conn, ExpectPublicOrAuthenticatedCheckPlug) do
89 EnsurePublicOrAuthenticatedPlug.call(conn, %{})
95 # Ensures user is authenticated if such check was scheduled
96 # Note: runs prior to action even if it was already executed earlier in plug chain
97 # (since OAuthScopesPlug has option of proceeding unauthenticated)
98 defp maybe_perform_authenticated_check(conn) do
99 if PlugHelper.plug_called?(conn, ExpectAuthenticatedCheckPlug) do
100 EnsureAuthenticatedPlug.call(conn, %{})
106 # Halts if authenticated API action neither performs nor explicitly skips OAuth scopes check
107 defp maybe_halt_on_missing_oauth_scopes_check(conn) do
108 if PlugHelper.plug_called?(conn, ExpectAuthenticatedCheckPlug) and
109 not PlugHelper.plug_called_or_skipped?(conn, OAuthScopesPlug) do
113 "Security violation: OAuth scopes check was neither handled nor explicitly skipped."
126 root: "lib/pleroma/web/templates",
127 namespace: Pleroma.Web
129 # Import convenience functions from controllers
130 import Phoenix.Controller, only: [get_csrf_token: 0, get_flash: 2, view_module: 1]
132 import Pleroma.Web.ErrorHelpers
133 import Pleroma.Web.Gettext
134 import Pleroma.Web.Router.Helpers
138 @doc "Same as `render/3` but wrapped in a rescue block"
139 def safe_render(view, template, assigns \\ %{}) do
140 Phoenix.View.render(view, template, assigns)
144 "#{__MODULE__} failed to render #{inspect({view, template})}\n" <>
145 Exception.format(:error, error, __STACKTRACE__)
152 Same as `render_many/4` but wrapped in rescue block.
154 def safe_render_many(collection, view, template, assigns \\ %{}) do
155 Enum.map(collection, fn resource ->
156 as = Map.get(assigns, :as) || view.__resource__
157 assigns = Map.put(assigns, as, resource)
158 safe_render(view, template, assigns)
168 # credo:disable-for-next-line Credo.Check.Consistency.MultiAliasImportRequireUse
170 import Phoenix.Controller
176 # credo:disable-for-next-line Credo.Check.Consistency.MultiAliasImportRequireUse
177 import Phoenix.Channel
178 import Pleroma.Web.Gettext
184 @behaviour Pleroma.Web.Plug
188 Marks a plug intentionally skipped and blocks its execution if it's present in plugs chain.
190 def skip_plug(conn) do
191 PlugHelper.append_to_private_list(
193 PlugHelper.skipped_plugs_list_id(),
200 Before-plug hook that
201 * ensures the plug is not skipped
202 * processes `:if_func` / `:unless_func` functional pre-run conditions
203 * adds plug to the list of called plugs and calls `perform/2` if checks are passed
205 Note: multiple invocations of the same plug (with different or same options) are allowed.
207 def call(%Plug.Conn{} = conn, options) do
208 if PlugHelper.plug_skipped?(conn, __MODULE__) ||
209 (options[:if_func] && !options[:if_func].(conn)) ||
210 (options[:unless_func] && options[:unless_func].(conn)) do
214 PlugHelper.append_to_private_list(
216 PlugHelper.called_plugs_list_id(),
220 apply(__MODULE__, :perform, [conn, options])
227 When used, dispatch to the appropriate controller/view/etc.
229 defmacro __using__(which) when is_atom(which) do
230 apply(__MODULE__, which, [])
234 Pleroma.Web.Endpoint.url()
237 def get_api_routes do
238 Pleroma.Web.Router.__routes__()
239 |> Stream.reject(fn r -> r.plug == Pleroma.Web.Fallback.RedirectController end)
242 |> String.split("/", trim: true)