2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-24 06:02:27 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.UserEnabledPlug do
|
2020-11-21 16:47:25 +00:00
|
|
|
alias Pleroma.Helpers.AuthHelper
|
2018-09-05 19:53:53 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2019-11-11 11:43:46 +00:00
|
|
|
def call(%{assigns: %{user: %User{} = user}} = conn, _) do
|
2020-12-06 10:59:10 +00:00
|
|
|
if User.account_status(user) == :active do
|
|
|
|
conn
|
|
|
|
else
|
|
|
|
AuthHelper.drop_auth_info(conn)
|
2019-11-11 11:43:46 +00:00
|
|
|
end
|
2018-09-05 19:53:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _) do
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|