best way to handle user id hash common to all rails requests - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:52:54Z http://stackoverflow.com/feeds/question/386656 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/386656/best-way-to-handle-user-id-hash-common-to-all-rails-requests 1 best way to handle user id hash common to all rails requests nc 2008-12-22T16:23:15Z 2008-12-25T10:08:07Z <p>Each client is identified by a hash, passed along with every request to the server. What's the best way to handle tracking a users session in this case?</p> <p>I'm using restful_authentication for user accounts etc. A large percentage of requests are expected to originate without a user account but just the unique hash.</p> <p>My understanding of the way handles sessions is limited so please bear that in mind. :)</p> http://stackoverflow.com/questions/386656/best-way-to-handle-user-id-hash-common-to-all-rails-requests/387213#387213 1 Answer by zenazn for best way to handle user id hash common to all rails requests zenazn 2008-12-22T20:10:15Z 2008-12-22T20:10:15Z <p>Depends on what you're trying to do, but the <code>session</code> hash might provide what you want. The session stores itself somewhere (either an encrypted cookie, the database, or a file on the server), and sends a unique identifier to the client (similar to your "hash") in a cookie. On subsequent requests, the cookie is read and the corresponding user's session data is restored to the <code>session</code> hash.</p> <pre><code>session[:user] = currently_logged_in_user.id # ... next request ... session[:user] # returns the currently logged in user's id </code></pre> http://stackoverflow.com/questions/386656/best-way-to-handle-user-id-hash-common-to-all-rails-requests/392704#392704 2 Answer by August Lilleaas for best way to handle user id hash common to all rails requests August Lilleaas 2008-12-25T10:08:07Z 2008-12-25T10:08:07Z <p>Using this hash in the URL means that you don't have Rails built-in session. The point of the session is to provide some sense of state between requests. You're already providing this state, seeing that you are passing this hash, so in my opinion you could remove the restful_authentication plugin and do something like this instead:</p> <pre><code>class ApplicationController &lt; ActionController::Base def require_login if params[:access_key] @current_user = User.find_by_access_key(params[:access_key]) || restrict_access else restrict_access end end def restrict_access flash[:error] = "You have to log in to access that." redirect_to root_path end end </code></pre> <p>Then, do a <code>before_filter :require_login</code> in the controllers where login is required for access.</p>