In my rails 3 app I use Omniauth for the user authentication part (fb/twitter).

Actually I follow this:

https://github.com/RailsApps/rails3-mongoid-omniauth

https://github.com/RailsApps/rails3-mongoid-omniauth/wiki/Tutorial

But, when I close the browser session expires and I need to login again. How can I keep the session for returning users?

Any help would be greatly appreciated!

link|improve this question

unclear: does this happen in your local environment/browser only? How does your test environment deal with HTTP cookies? – mkro Feb 9 at 0:50
after login the session_controller stores user_id: session[:user_id] = user.id github.com/RailsApps/rails3-mongoid-omniauth/blob/master/app/… – vic Feb 9 at 3:36
Can't really tell what happens in your application, but maybe you want to look into the cookie lifetime and other settings around rails seession cookies: oldwiki.rubyonrails.org/rails/pages/HowtoChangeSessionOptions – mkro Feb 14 at 1:18
feedback

3 Answers

up vote 2 down vote accepted

Devise offers this functionality through its Rememberable module. OmniAuth integrates easily with it through the (you'd never guess it) OmniAuth module. It's even mentioned in the second link you posted!

link|improve this answer
Here's the Devise wiki page about integrating with OmniAuth. – andrew.rockwell Feb 10 at 21:02
I'll try it! Thanks! – vic Feb 11 at 21:43
Vic, did you have trouble with it? – andrew.rockwell Feb 16 at 19:21
1  
Not exactly trouble. I think that there’s no need to use Devise. All I wish is to have my users sign in using a service provider’s account (such as Twitter or Facebook).. – vic Feb 17 at 5:06
1  
Finally I combined devise with omniauth! – vic Feb 22 at 17:36
feedback

What you want is not difficult, you only have to set a permanent cookie when the session is created and then retrieve this value when you set the current user.

In your ApplicationController, just change your current_user method to:

def current_user
  return unless cookies.signed[:permanent_user_id] || session[:user_id]
  begin
    @current_user ||= User.find(cookies.signed[:permanent_user_id] || session[:user_id])
  rescue Mongoid::Errors::DocumentNotFound
    nil
  end
end

And in your SessionsController, modify your create to set the cookie if user wants to:

def create
  auth = request.env["omniauth.auth"]
  user = User.where(:provider => auth['provider'], 
                    :uid => auth['uid']).first || User.create_with_omniauth(auth)
  session[:user_id] = user.id
  cookies.permanent.signed[:permanent_user_id] = user.id if user.really_wants_to_be_permanently_remembered
  redirect_to root_url, :notice => "Signed in!"
end
link|improve this answer
Thanks for your answer! I combined devise and my problem solved! – vic Feb 22 at 17:37
feedback

Please make sure the cookie policy that your rails app follows does have sensible settings for your use case (see the link in my comment above). All I can imagine right now (knowing what I know, sitting where I sit) is that the cookie(s) ha(s/ve) properties that are suboptimal/undesirable in your context.

Please check the cookie settings in a browser debug/development tool such as firebug, firecookie or the chrome development tools.

Sorry, that's all I can come up with given my knowledge of the problem. Feel free to contact me again with more details on your cookie- and testing-setup.

My 2Cents.

link|improve this answer
Thanks for your answer! But as you can see here it's not a cookie problem: stackoverflow.com/questions/4475726/… – vic Feb 15 at 22:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.