7a2ddc00894551dc9c72061bca6a8a47abb1124f
[akkoma] / lib / pleroma / web / translation_helpers.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.TranslationHelpers do
6 defmacro render_error(
7 conn,
8 status,
9 msgid,
10 bindings \\ Macro.escape(%{}),
11 identifier \\ Macro.escape("")
12 ) do
13 quote do
14 require Pleroma.Web.Gettext
15
16 unquote(conn)
17 |> Plug.Conn.put_status(unquote(status))
18 |> Phoenix.Controller.json(%{
19 error: Pleroma.Web.Gettext.dgettext("errors", unquote(msgid), unquote(bindings)),
20 identifier: unquote(identifier)
21 })
22 end
23 end
24 end