Elixir / Phoenix:如何实现会话超时/到期

时间:2017-01-29 18:47:55

标签: elixir phoenix-framework plug

我正在研究一个香草Elixir / Phoenix应用程序,并按照Programming Phoenix书中的一般步骤实现基本登录&退出系统(参见下面的片段)。但是我在书中或网上看不到有关如何设置基于cookie的插件会话在一定时间后过期的建议。 Phoenix应用程序中的会话超时有哪些方法?

以下是我的骨干身份验证系统的一些相关摘要:

endpoint.ex中,应用程序配置为使用基于cookie的只读会话:

plug Plug.Session,
  store: :cookie,
  key: "_zb_key",
  signing_salt: "RANDOM HEX"

我编写了一个插件auth.ex,其中(以及其他内容)可以登录经过身份验证的用户,并可以根据后续请求中找到的会话current_user设置user_id

def login!(conn, user) do
  conn
    |> assign(:current_user, user)
    |> put_session(:user_id, user.id)
    |> configure_session(renew: true)
end

# ... more ...

def load_current_user(conn, _opts) do
  cond do
    conn.assigns[:current_user] ->
      conn # If :current_user was already set, honor it
    user_id = get_session(conn, :user_id) ->
      user = Zb.Repo.get!(Zb.User, user_id)
      assign(conn, :current_user, user)
    true ->
      conn # No user_id was found; make no changes
  end
end

# ... more ...

3 个答案:

答案 0 :(得分:7)

这是我们的生产解决方案 (view in a Gist):

sliding_session_timeout.ex
defmodule Auth.SlidingSessionTimeout do
  import Plug.Conn

  def init(opts \\ []) do
    Keyword.merge([timeout_after_seconds: 3600], opts)
  end

  def call(conn, opts) do
    timeout_at = get_session(conn, :session_timeout_at)
    if timeout_at && now() > timeout_at do
      logout_user(conn)
    else
      put_session(conn, :session_timeout_at, new_session_timeout_at(opts[:timeout_after_seconds]))
    end
  end

  defp logout_user(conn) do
    conn
    |> clear_session()
    |> configure_session([:renew])
    |> assign(:session_timeout, true)
  end

  defp now do
    DateTime.utc_now() |> DateTime.to_unix
  end

  defp new_session_timeout_at(timeout_after_seconds) do
    now() + timeout_after_seconds
  end
end

如何使用

将其插入Phoenix应用:browserrouter.ex管道的末尾。

请注意,身份验证(从会话中获取user_id,从数据库加载用户)和授权是其他插件的问题,进一步在管道中。因此,请确保在基于会话的身份验证和授权插件之前插入它。

pipeline :browser do
  plug :accepts, ["html"]
  plug :fetch_session
  plug :fetch_flash
  plug :put_secure_browser_headers
  plug Auth.SlidingSessionTimeout, timeout_after_seconds: 3600    # <=
end

答案 1 :(得分:4)

我首先在the Plug library中查找了Cookie过期选项,然后意识到更简单(更安全)的方法是简单地在session中设置过期日期时间以及user_id。会话是防篡改的,所以当我收到每个请求时,我可以比较日期时间到现在;如果会话尚未到期,我会正常设置current_user。否则,我呼叫logout!删除过期的会话。

实现看起来像这样(需要Timex库):

# Assign current_user to the conn, if a user is logged in
def load_current_user(conn, _opts) do
  cond do
    no_login_session?(conn) ->
      conn # No user_id was found; make no changes
    current_user_already_set?(conn) ->
      conn
    session_expired?(conn) ->
      logout!(conn)
    user = load_user_from_session(conn) ->
      conn
        |> put_session(:expires_at, new_expiration_datetime_string)
        |> assign(:current_user, user)
  end
end

defp session_expired?(conn) do
  expires_at = get_session(conn, :expires_at) |> Timex.parse!("{ISO:Extended}")
  Timex.after?(Timex.now, expires_at)
end

# ... more ...

# Start a logged-in session for an (already authenticated) user
def login!(conn, user) do
  conn
    |> assign(:current_user, user)
    |> put_session(:user_id, user.id)
    |> put_session(:expires_at, new_expiration_datetime_string)
    |> configure_session(renew: true)
end

defp new_expiration_datetime_string do
  Timex.now |> Timex.shift(hours: +2) |> Timex.format("{ISO:Extended}")
end

# ... more ...

答案 2 :(得分:2)

Plug.Sessions模块具有一个内置选项,可使用max_age键设置cookie的过期时间。例如,扩展您的endpoint.ex代码段如下所示:

plug Plug.Session,
  store: :cookie,
  key: "_zb_key",
  signing_salt: "RANDOM HEX"
  max_age: 24*60*60*37,       # 37 days

信用:https://teamgaslight.com/blog/til-how-to-explicitly-set-session-expiration-in-phoenix

文档:https://hexdocs.pm/plug/Plug.Session.html#module-options