开发者

Ruby on Rails: how can I store additional data in the session for authlogic

开发者 https://www.devze.com 2022-12-18 12:04 出处:网络
I\'m using Authlogic to authenticate users. I understand how to create and use sessions, but want to store an additional id variable in the current_user session created by authlogic.

I'm using Authlogic to authenticate users.

I understand how to create and use sessions, but want to store an additional id variable in the current_user session created by authlogic.

Can I just do something like this:

session[:authlogic_sess_name] = @extra_id.id

However, I'm not sure what the authlogic session is na开发者_StackOverflow社区med though or how to access it.

Thanks!


Why would you not just store the value in the session?

session[:extra] = @extra_id.id

The Authlogic current_user is simply a value in the current session, managed by the Rails stack itself.


I agree with Toby, if you don't need this additional attribute to be on AuthLogic's UserSession object, then it may be simpler to store the value in the session hash itself.

But in my specific case, and perhaps in yours too, I have information that I want on the UserSession record specifically rather than the session hash, because I want to access it in a callback in the UserSession model, where "session" is unavailable.

Here is an older blog post describing how to store an additional attribute on UserSession: http://railsblog.kieser.net/2010/03/authlogic-custom-logins-and-persisting.html

EDIT: I didn't have much luck with this approach myself. To do the things that required information from the session hash, I put that logic in the controller instead of the model.

AuthLogic actually has certain callbacks that execute controller methods. For instance, AuthLogic will call last_request_update_allowed? if your controller responds to that, right before setting last_request_at.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号