aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/plugs/admin_secret_authentication_plug.ex
blob: 5baf8a6914defa37c6a60d42bb61eab7ba22d87e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

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
      |> assign(:user, %User{info: %{is_admin: true}})
    else
      conn
    end
  end

  def call(conn, _), do: conn
end