2021-07-13 02:57:52 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2021-07-13 02:57:52 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.Plugs.UserIsStaffPlug do
|
|
|
|
import Pleroma.Web.TranslationHelpers
|
|
|
|
import Plug.Conn
|
|
|
|
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(%{assigns: %{user: %User{is_admin: true}}} = conn, _), do: conn
|
|
|
|
def call(%{assigns: %{user: %User{is_moderator: true}}} = conn, _), do: conn
|
|
|
|
|
|
|
|
def call(conn, _) do
|
|
|
|
conn
|
|
|
|
|> render_error(:forbidden, "User is not a staff member.")
|
|
|
|
|> halt()
|
|
|
|
end
|
|
|
|
end
|