vote up 1 vote down star
3

How do you pass parameters in a URL? I'm trying to design a login system similar to Twitter's. Notice how you can either login to the main page of www.twitter.com or you can go directly to customised pages such as www.twitter.com/lancearmstrong and www.twitter.com/rails . That's exactly what I need for my project. Thanks.

flag

61% accept rate
I do not get any kind of login form on twitter.com/rails when I'm not logged in. What exactly are you talking about? – August Lilleaas Jan 25 at 20:48
My apologies. Well imagine you get the username and password fields aswell on any user's twitter page. That's what I am after. – alamodey Jan 28 at 12:44

2 Answers

vote up 8 vote down check

in config/routes.rb create a rule like this:

  map.connect '/:user_name', :controller => 'login', :action => 'custom'

or somethjing similar.

then in your controller pick up the user name with params[:user_name]

This should go at the end of the file near the default rules. The system chooses the first route that matches the incoming URL. so if you have a rule like:

  map.connect '/foo', :controller => 'foo', :action => 'bar'

it will need to come before the login rule. - bear in mind that if you do this you will have to disallow 'foo' as a username :)

link|flag
"then in your controller pick up the user name with params[:user_name]" Would I do this in the 'custom' action according to your example. Say: def custom # do something with params[:user_name] end – alamodey Jan 28 at 12:41
Yes, correct. Though obviously it doesn't have to be called 'custom' I just took that name from the word 'customised' in your question. – Noel Walters Jan 28 at 13:05
vote up 0 vote down

Look into Apache's mod_rewrite module for information on directing www.mysite.com/asdf to a CGI script with the argument "asdf".

link|flag

Your Answer

Get an OpenID
or

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