2018-10-02 17:13:21 +00:00
|
|
|
defmodule Pleroma.Plugs.UserIsAdminPlug do
|
|
|
|
import Plug.Conn
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2018-12-01 08:03:16 +00:00
|
|
|
def call(%{assigns: %{user: %User{info: %{is_admin: true}}}} = conn, _) do
|
2018-10-02 17:13:21 +00:00
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _) do
|
|
|
|
conn
|
2018-10-12 04:25:50 +00:00
|
|
|
|> put_resp_content_type("application/json")
|
2018-11-10 13:43:22 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{error: "User is not admin."}))
|
2018-10-12 04:25:50 +00:00
|
|
|
|> halt
|
2018-10-02 17:13:21 +00:00
|
|
|
end
|
|
|
|
end
|