When we define routes in routes.rb using the name like map.some_link we can use the link in two ways- some_link_url() some_link_path. What are the differences between the two? Which is more secure to be used?

link|improve this question

75% accept rate
feedback

5 Answers

up vote 17 down vote accepted

I had the same question and I wrote a small post about this in my blog

The reason is summarized here (I found this on a forum):

*_path are for views because ahrefs are implicitly linked to the current URL. So it’d be a waste of bytes to repeat it over and over. In the controller, though, *_url is needed for redirect_to because the HTTP specification mandates that the Location: header in 3xx redirects is a complete URL.

Here is another explanation which says it depends on whether we need to use an absolute URI when linking to an SSL site from a non-SSL site, and vice versa.

What I have read so far, doesn't suggest that any of them is more secure than the other. It really comes down to what is the "proper" usage.

link|improve this answer
Thanks a lot. Found it useful. So in the controllers we use "_url" while in the views we can use "_path" though "_url" can still be used there as well. – MohamedSanaulla Mar 3 '10 at 11:56
2  
You don't need to use *_url for controllers, path will work just as well. You should only use _url when displaying the route to outside sources. – Ryan Bigg Jan 20 at 5:54
To clarify some more: the _path output will work just as well for the Location header in a Redirect. The browser will interpret that as a relative-to-root redirect. – Ryan Bigg Jan 20 at 6:03
feedback

path is relative while url is absolute.

link|improve this answer
Rather succinct. I like succinct. ;) +1 – sholsinger Aug 17 '11 at 13:21
feedback

An example of the difference for a resource called "user":

users_url # => http://localhost:3000/users
users_path  # => /users
link|improve this answer
feedback

Same answer as Petros, except that modern browsers handle relative redirects just fine. (I'd comment on his answer, but I can't yet.)

link|improve this answer
feedback

By secure if you mean not exposing all the data passed, then _path is better as it generates a relative url, something like '/login' but _path would give 'http://localhost:3000/login'. Please refer to this blog post i found sometime back regarding the same. When _url is better than _path

link|improve this answer
1  
I'm afraid this is incorrect. Using _path for security reasons doesn't provide any security. This would be the same as saying that the IP address of a web server should be kept secret, when a simple DNS request reveals this information. – normalocity Sep 24 '10 at 3:22
1  
Likewise, with the example given above regarding hiding the host and port "localhost:3000" for security, is incorrect. Discovering this information is simple using a software network scanning tool, widely available. – normalocity Sep 24 '10 at 3:30
feedback

Your Answer

 
or
required, but never shown

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