vote up 1 vote down star

Im trying to allow users to login to a website by verifying if they are registered users of a sister website. Im not really sure what is the best way to implement this. The website which is referred to uses authlogic authentication, so would it be wise to have a REST method that the new website calls to obtain a session token of some sort.

Thanks in advance.

flag

A large portion of this answer depends on if the sites are on the same server or not – Elizabeth Buckwalter Nov 1 at 17:51
The sites will most likely be deployed on different servers and Im looking for way that does not tie the too apps tightly as they are completely different in terms of services they offer. – Sid Nov 1 at 19:06

2 Answers

vote up 1 vote down check

Do you want to check credentials only or sync sessions too? --i.e., if I'm logged in website A, I'm also logged in website B. If it's the second case, you need some sort of single-sign-on solution. CAS seems to be a protocol with solid Ruby implentations (see Ruby CAS Server and Ruby CAS client. Keep in mind that you'd have to rewrite both apps if you decide to go this way.

link|flag
The problem is rewriting the first app is not really an option at the moment. What I need is something that allows me to log into the new site using the user credentials stored in the old application db. Though it would be awesome if I could sync the sessions but at the moment I dont mind managing the sessions independently. – Sid Nov 1 at 19:10
vote up 0 vote down

If the database is setup to accept external connections, you can access the user info directly that way.

link|flag

Your Answer

Get an OpenID
or

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