Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to grab the session id for a user and use it preferably in a model.

Here's the gist:

1) I have a list of proposals. 2) Unregistered users can create proposals and their session id is saved to them. 3) When a user registers or logs in their session id should be matched with proposals. 4) Then their user id should be saved to the proposal as well.

I've thought about overriding Devise controllers or using Warden hooks within the rails application file but these solutions seem messy.

share|improve this question
No need to overide devise or warden here. Just get the session.id and use it on the records. When the user logs on you could display a flash message if they have records that are not saved to them. Then link to a controller action with the relinking logic. – Devin M Jun 10 '11 at 14:58
Where is that available? – atomical Jun 10 '11 at 15:13
should be available when you set the session. Just try calling <%= session.id %> in a view or something. – Devin M Jun 10 '11 at 15:19
I would like to access the session variable from the login and signup controller to simplify things since the user will land on the page where they were last. I think you are suggesting that after a user logs in they should be sent to a specific page/controller? – atomical Jun 10 '11 at 15:56

1 Answer

You can use the following in controllers or views:

session['session_id']
=> '69384476b67fa4c2d1e3cc340eb4e951'
share|improve this answer
1  
In some limited testing, it looks like session['session_id'] is reset upon successful login -- therefore the ID's are different. – rvandervort Dec 7 '11 at 12:37
1  
it's reset to prevent session fixation attacks – numbers1311407 Jan 3 '12 at 20:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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