2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-05 21:53:53 +02:00
|
|
|
defmodule Pleroma.Plugs.UserEnabledPlug do
|
|
|
|
import Plug.Conn
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2019-11-11 12:43:46 +01:00
|
|
|
def call(%{assigns: %{user: %User{} = user}} = conn, _) do
|
2020-01-17 12:55:36 +01:00
|
|
|
case User.account_status(user) do
|
|
|
|
:active -> conn
|
|
|
|
_ -> assign(conn, :user, nil)
|
2019-11-11 12:43:46 +01:00
|
|
|
end
|
2018-09-05 21:53:53 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _) do
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|