2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 06:08:45 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-10-02 19:13:21 +02:00
|
|
|
defmodule Pleroma.Plugs.UserIsAdminPlug do
|
2019-07-10 11:25:58 +02:00
|
|
|
import Pleroma.Web.TranslationHelpers
|
2018-10-02 19:13:21 +02:00
|
|
|
import Plug.Conn
|
2019-12-05 22:25:44 +01:00
|
|
|
|
2019-12-07 15:49:53 +01:00
|
|
|
alias Pleroma.User
|
2018-10-02 19:13:21 +02:00
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2020-07-19 20:35:57 +02:00
|
|
|
def call(%{assigns: %{user: %User{is_admin: true}}} = conn, _) do
|
|
|
|
conn
|
2018-10-02 19:13:21 +02:00
|
|
|
end
|
2019-12-07 15:49:53 +01:00
|
|
|
|
|
|
|
def call(conn, _) do
|
|
|
|
conn
|
2020-07-19 20:35:57 +02:00
|
|
|
|> render_error(:forbidden, "User is not an admin.")
|
2019-12-07 15:49:53 +01:00
|
|
|
|> halt()
|
|
|
|
end
|
2018-10-02 19:13:21 +02:00
|
|
|
end
|