It will be great to use a before_filter fo @product = Product.find(params[:id]) to avoid duplicated lines.
Your screencast is a good example to show interest of using before_filter because you need to modify find to find_by_permalink in a bunch of actions instead of modifing one before_filter.
I don't know why rails generator do not generate this before_filter. (even in the views, it does not generate a _form partial but duplicates it in new and edit rhtml file) May be an idea for a new screencast if it's not already done :)
Thanks for this video!!
I didn't seen this screencast yet but anyway can't we change the "id" behaviour acting on routes.rb? It is only a route issue if the last part of the url goes in params[:id] we can change that by adding a new custom route.
Just recently I made a plugin to do exactly this: http://www.bitbutter.com/seo_urls-plugin-making-show-pages-more-findable/14
Does Rails automatically populate the permalink field? Most permalink implementations I've seen ask you to prepopulate the permalink column.
Rich - you can use Rick Olson's permalink_fu plugin to automatically create permalinks for you. You'll want to use PermalinkFu.escape(...) in a before_save however instead of the automatic "has_permalink" as the latter doesn't update the permalink when you edit a model.
@seb, good call. A before filter would work really well here, I should have mentioned it.
@Skyblaze, yes, you can add a custom route to do this as well. I don't know of an easy way to do this when using map.resources however.
I've writen a permalink plugin that extends String to allow permalizing of just about any type of string, including unicode.
http://svn.robertrevans.com/plugins/Permalize/
http://robertrevans.com/article/permalize-fun
Well, another approach would be to override the find method with something like:
@class Product
def find(*args)
return find_by_permalink(*args) if !args.first =~ /^\d+$/
super
end
end@
Or something similar, but You'd need to validate your product permalinks to not be all numbers, or else things can get messy. Still, could solve problems when you are adding this to an already existing app.
If you are doing this for a new app, then there shouldn't be much to worry about.
Oh, and of course, nothing beats having good tests to make sure no find method goes wild ;)
Great stuff, Ryan. It's really humbling the service you're doing to our community.
More, more, more RESTful stuff, please. This is the future.
Hi Ryan:
Thanks for wonderful work that you are doing in the Rails community. I am just getting aquatinted with Rails and Ruby in general, and have completely gone nuts over the fact that it's wonderful to code in Rails and fun too! I think I am become a Rails addict!
I have been watching some of the most wonderful pod-cast on iTunes by you and have equally become and addict their too:-).
I have a question with regard to generating a view in which multiple controllers can be called into it. Instead of having only one model being displayed in the view, can I have multiple models, through one of the controllers, in one view? I am talking about the way one can generate a query in the database that then become another table. I am not sure if I am making sense, but very very much appreciate your response and a take on this.
Thanks so much,
Alek
I had to do something like this for an admin page where people could see what employees had worked on on a specific day, but I needed to be able to use either an id number or username (it's an internal website for logging people's work), so I had the controller do a regex on the param. If it was all digits, then it must be an id, of it's not it must be a username. Of course I only had one controller I had to do that in, so it would probably not be a good idea in other areas.
Yet another plugin.
http://svn.joshpeek.com/projects/plugins/pseudo_primary_key
@seb
See Dan Manges post on Taking DRY Too Far
http://www.dcmanges.com/blog/36
@Alek, I'm not entirely sure what you're asking. A controller can fetch as many models as it needs in one action/view. However, if you want to apply the technique showed in this episode, you will need a name to use in the URL. In that case the focus will be on one model, not on multiple models.
Ryan:
Thanks very much for responding to my question. I am sorry that my question sounded somewhat confusing.
Here is what I really had in mind from the question I posed. Just as you would create queries within database, by merging tables into one entity, can you do the same in Rails?
Thanks Ryan,
Alek
You can use the ":include" option in the find method to include multiple tables/models in one query.
If you're trying to make one model span multiple tables then I don't think that's possible without serious hacking.
Yet another permalink plugin!
This one raises RecordNotFound in case given permalink doesn't exist, so you can use it like #find and catch not found errors in rescue_action_in_public
http://code.estadobeta.com/plugins/sluggable_finder/README
Thanks Ryan! Your info helps a lot. As for having one model spanning multiple tables, it is something I will not commit, even though it can be done, just because of "serious hacking" as you say. The :include option sounds perfect, however! Thanks again.
Note that you DON'T want to use "_" as the separator between the id and the permalink, if you rely on String#to_i. The screencast uses "-" which is fine.
If you use "_" and the permalink part begins with a number, you could get e.g. "123_456blah", and "123_456blah".to_i is 123456, not the expected 123. This is because "_" can be used in Ruby to make numbers more readable.
Found this on the net:
You don't have to make a new field in your table, yu could just use this instead:
def to_param
"#{id}-#{name.gsub(/[^a-z1-9]+/i, '-')}"
end
replace name with the field you want to slug/permalink.
What do you think Ryan?
Im confused a little bit. I created new column in my db called permalink. Then i did like in the video, but my urls are /5-
no permalink string. I know the problem, i dont have anything in permalink. Is this permalink generated automatically from somewhere? Or do i have to do it manually, when i create new ex. article?
It works. But does this work with paginate plugin as well?
This has to be my favourite till now!
Thank you so much i really didn't know how to accomplish that (it is my first rails (and web development in general) project!)
Mo Rashed: Thanks for the tip! I actually have :
def to_param
"#{id}-#{title.gsub(/[^a-z1-9]+/i, '-')}.html"
end
Having .html makes it more search engine friendly.
Very cool, i think i've to change a lot of stuff. i've done a really bad thing (the permalink contains all the id-permalink stuff, and then i changed the routes.rb to use it instead of the id... a really bad thing :) )
great stuff...
now how would I format this route:
/users/156/items/6547
like this:
/john/items/6547
This tutorial just saved me even MORE time. I was missing the def to_param in the user model. I was about to start messing with the routes, thankfully this is a much cleaner way to get this done.
Some of these things should be easier done. Oh well. Thank you!
Perfect! Thanks for the information and tips! Hope to see more of your posts! Again Thanks!
I thought for sure a permalink set as "1-epson-abcd-1234" would fail, but sure enough, to_i still converts it to 1.
I must admit I'm not entirely certain why or how, but it does. I will have to look into this.
Any suggestions on how to allow permalink's with periods (".") in them? Assuming product is routed using "map.resources :products", then anything after a period will be treated as a format.
I have a small question. I've defined the "to_param" method but when I acess to /projects/1 (typing the URL) it doesn't change to /projects/1-name.
Here at railscasts it does changes the /episodes/63 to /episodes/63-name... how do you get that?
LOL @ Settlers of Catan... thats a fun game. You screencasts are invaluable!
Thank you! Once again you have saved my project from failure! I've learned 90% of my knowledge about rails from watching your screencasts. Please don't stop :)
Thanks for share!
Good post.
Kim from <a href="http://tweetomatic-profiteer-review.com/">tweetomatic profiteer</a>
Hi! Google gerade im Web und bin auf dieser Homepage gelandet.
Respekt, haben Sie toll gemacht.
Ich wünsche Ihnen weiterhin viel Erfolg mit Ihre Seite und natürlich viele Besucher.
Hier habe ich mich sehr wohl gefühlt und werde wieder hierher zurückkommen.
Freue mich auf einen Gegenbesuch auf meiner Homepage
Hi,
I second @Nicolás Hock question. How to redirect from /episodes/63 to /episodes/63-name.. in order to avoid caching duplicate pages.
thanks for the new knowledge!
check out my site as well if u want at: http://www.make-web-site.com/
I was very impressed with tutorials that you serve, feel very fortunate to be able to visit your site
那么,该通道的观点是完全正确的,您的资料是真正合理的家伙,你给我们提供了宝贵资料后,我完全同意楼上的观点。我经常浏览这个论坛上,当我米自由,我觉得有这么多的好资料,我们可以了解在这个论坛!www.notcredible.net
I am still trying to learn and each one of these episodes is very helpful
Thank You
<a href="http://www.signin.com">signin</a>
[URL= "http://www.googole.com"]google[/URL]
<a href=http://www.signin.com>signin</a>
Ruth, I am pleased to receive your comments - and I wish you well in your own blogging endeavours!
thanks for sharing this information! it's very useful for a lot people try to understand how we can use this
product.
I recently came across your blog and have been reading along. I thought I would leave my first
comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this
blog very often.
Very usefull roadtrip tips… I have made some of the same mistakes they describe in the article and would have appreciated this article before I went off on my trip.
I found your blog on Yahoo and I just wanted to say that I think your writing is simply stunning! Thanks again for providing this content for free. <a href="http://www.beLasohbet.com" title="muhabbet" target="_blank">muhabbet</a>
If God would exists it will be you... very thanks for this screencast.
I try to learn each one of these episodes is very helpful especially for me Thank You so much for this great post
I always like it when I see another video available. Thanks for a great railscasts. I am really interested in this learning about this. , I feel strongly about information and love learning more on this. I would like to introduce this nice website to my friends.
I didn't seen this screencast yet but anyway can't we change the "id" behaviour acting on routes.rb? It is only a route issue if the last part of the url goes in params[:id] we can change that by adding a new custom route.
Thanks for sharing your article. I really enjoyed it. I put a link to my site to here so other people can read it. My readers have about the same interets
Good points in your post, you have a great blog here. Thanks for this information.
I truly enjoyed this. It has been extremely informative as well as useful.thanks for sharing the information.
Its a very good post. I was very pleased to find this site. I wanted to thank you for this great read.
Thanks a lot for that a fantastically amazing post. such a very fine post.
I don't know of an easy way to do this when using map.resources however.
Laptop accessories accept become one of the a lot of accepted cyberbanking things in the past. Laptops are the new face of advice and technology. Gradually demography the abode of desktop computers for the assorted advantages it offers. This is a laptop and can be acclimated about anywhere.
The given article is quite interesting and it gave me very reliable and useful information.
Nice post. My friend John told me about this blog some weeks ago but this is the first time I’m visting. I’ll undoubtedly be back.






