Rails 3: Routing constrants issue

1 view
Skip to first unread message

Glenn Goodrich

unread,
Aug 27, 2010, 10:22:56 AM8/27/10
to rubyonra...@googlegroups.com
Hi,

I'd like to have a route that looks like:

http://webhost.com/myresource/random.server.com/folderOnServer/resourceName

The params I'd like to come out of that are:

:server = random.server.com
:folder = folderOnServer
:resource = resourceName

So, I do this:

get 'myresource/*server/(:folder)/*mapservice' => "controller#action",
:constraints ={:server=>/[^\/]+/}

Which I hope is saying, I want to match all characters for the server
param, until you get to the first /.

What is happening is:

:server = random.server.com/folderOnServer
:folder = nil
:resource = resourceName

Any suggestions on what I am doing wrong?

Thanks,
Glenn
--
Posted via http://www.ruby-forum.com/.

Chris Mear

unread,
Aug 27, 2010, 4:45:50 PM8/27/10
to rubyonra...@googlegroups.com

The asterisk before 'server' turns on globbing (which makes it gobble
up as much of the URL as possible), and the parentheses around
':folder' tell the router that it's an optional part of the route. So
the router shoves as much as it can into the 'server' parameter, and
leaves out the 'folder' parameter.

Also, I don't really understand the '*mapservice' bit of your route,
but guessing that's just a typo.

I would just try:

get 'myresource/:server/:folder/:resource' => 'votes#cast',
:constraints => {:server => /[^\/]+/}

(where the constraint on 'server' is just to allow '.'s).

Chris

Reply all
Reply to author
Forward
0 new messages