2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-18 20:08:52 +00:00
|
|
|
defmodule Pleroma.Plugs.AdminSecretAuthenticationPlug do
|
|
|
|
import Plug.Conn
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
|
|
|
def secret_token do
|
|
|
|
Pleroma.Config.get(:admin_token)
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(%{assigns: %{user: %User{}}} = conn, _), do: conn
|
|
|
|
|
|
|
|
def call(%{params: %{"admin_token" => admin_token}} = conn, _) do
|
|
|
|
if secret_token() && admin_token == secret_token() do
|
|
|
|
conn
|
2019-10-16 18:59:21 +00:00
|
|
|
|> assign(:user, %User{is_admin: true})
|
2018-12-18 20:08:52 +00:00
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _), do: conn
|
|
|
|
end
|