2019-11-17 19:18:21 +01:00
|
|
|
defmodule PhilomenaWeb.EnsureUserEnabledPlug do
|
2019-11-15 01:59:51 +01:00
|
|
|
@moduledoc """
|
|
|
|
This plug ensures that a user is enabled.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2019-11-17 19:18:21 +01:00
|
|
|
plug PhilomenaWeb.EnsureUserEnabledPlug
|
2019-11-15 01:59:51 +01:00
|
|
|
"""
|
|
|
|
alias PhilomenaWeb.Router.Helpers, as: Routes
|
|
|
|
alias Phoenix.Controller
|
|
|
|
alias Plug.Conn
|
|
|
|
alias Pow.Plug
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
@spec init(any()) :: any()
|
|
|
|
def init(opts), do: opts
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
@spec call(Conn.t(), any()) :: Conn.t()
|
|
|
|
def call(conn, _opts) do
|
|
|
|
conn
|
|
|
|
|> Plug.current_user()
|
|
|
|
|> disabled?()
|
|
|
|
|> maybe_halt(conn)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp disabled?(%{deleted_at: deleted_at}) when not is_nil(deleted_at), do: true
|
|
|
|
defp disabled?(_user), do: false
|
|
|
|
|
|
|
|
defp maybe_halt(true, conn) do
|
|
|
|
conn
|
2020-02-06 23:24:17 +01:00
|
|
|
|> Plug.delete()
|
2019-11-15 01:59:51 +01:00
|
|
|
|> Controller.redirect(to: Routes.pow_session_path(conn, :new))
|
2020-05-04 09:18:36 +02:00
|
|
|
|> Conn.halt()
|
2019-11-15 01:59:51 +01:00
|
|
|
end
|
2020-01-11 05:20:19 +01:00
|
|
|
|
2019-11-15 01:59:51 +01:00
|
|
|
defp maybe_halt(_any, conn), do: conn
|
2019-12-19 20:32:12 +01:00
|
|
|
end
|