First of all, coreyward asks and answers this question well on a shallow level, but I don't understand well enough.
If I expand on coreyward's example, I can imagine a photo site that's intent on emphasizing curation. Photos are meant to be displayed in albums, and one photo can appear in many albums. In addition, photos have many tags.
So User has_many :albums, :photos, and :tags, Album has_many :photos and :tags (by way of photos), Photo has_many :tags, etc.
So the main way of looking at a photo will be through /users/123/albums/456/photos/789. Photos will have a unique ID, so I could do simply access /photos/789, but I think the URL is a valuable wayfinding tool in the user experience and would prefer it to be clear that this is a photo in a particular album belonging to a particular user. Like coreyward, I would also like to use vanity URLs (url slugs) in a few places.
Even if I routed the #show and #index actions in the simplest ways possible (e.g. /photos/789 and /albums/456/photos), #new and #create would be a little more problematic. If I opened /users/123/albums/456/photos/new, the user could upload a photo, which would get the user_id 123 AND the app would be smart enough to create a join table (album_photos or what have you) entry without asking the user to make this association in a separate step.
There would still be scenarios where someone, depending on permissions, would want to see /users/123/photos or just /photos, /albums, /tags.
I'd like to avoid conditional logic n the controllers like coreyward suggested, but having app/controllers/photos_controller.rb, app/controllers/users/photos_controller.rb, and app/controllers/users/albums/photos_controller.rb seems nasty.
How should I deal with something like this (in Rails 3)?
Thanks!
/sports/ncaaf/leagues/big-10/teams/psu. Still, someone might want to see all leagues across sports (/leagues, all teams across sports (/teams), all teams across a given sport (/sports/ncaaf/teams), irrespective of league, etc. Ignore the fact that there are multiplepsus (diff sports), multiplebig-10s (likewise), etc. This seems a thorny problem to me. – kjacobson Oct 28 '11 at 2:43