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