best way to handle user id hash common to all rails requests - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T19:52:54Zhttp://stackoverflow.com/feeds/question/386656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/386656/best-way-to-handle-user-id-hash-common-to-all-rails-requests1best way to handle user id hash common to all rails requestsnc2008-12-22T16:23:15Z2008-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#3872131Answer by zenazn for best way to handle user id hash common to all rails requestszenazn2008-12-22T20:10:15Z2008-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#3927042Answer by August Lilleaas for best way to handle user id hash common to all rails requestsAugust Lilleaas2008-12-25T10:08:07Z2008-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 < 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>