vote up 0 vote down star

mkristgan's rack_datamapper gem says that it "can be wrapped to be used in a specific environement, i.e. Rack::Session::Datamapper".

Unfortunately, I don't know quite enough about Ruby to accomplish this task yet –Modules/Classes in Ruby are still above my head (coming from PHP).

Can anyone offer assistance with using rack_datamapper to implement Rack::Session::Datamapper?

You probably don't want to do this anyway.

The answer below is great, but upon closer consideration, I realized I shouldn't do it anyway. Instead, I'm placing the user_id, ip and first name (for convenience) in a cookie and protecting it.

flag

2 Answers

vote up 1 vote down check

http://github.com/pirj/rack-datamapper-session should help

In Sinatra just add: use Rack::Session::DataMapper

and use session[] object at will

don't forget to create sessions table: Rack::Session::DataMapperSession.auto_upgrade!

link|flag
Thanks, but I realized I should just put in the user_id and first name inside a signed cookie. – arbales Nov 16 at 8:25
yeah, that's good until someone is trying to instruments someone else's user_id and taake other the session. beware! – phil pirozhkov Nov 17 at 23:08
vote up 0 vote down

Here is an in-depth tutorial for using DataMapper with Sinatra, if it's any help: http://blog.zerosum.org/2008/7/2/clone-pastie-with-sinatra-datamapper-redux

link|flag
No, sorry it doesn't. My question is about utilizing the Datamapper session module. It's not specific to Sinatra really, but about any Rack application. – arbales Oct 20 at 5:09

Your Answer

Get an OpenID
or

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