Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grape can't handle dots in url params #318

Closed
lucassus opened this issue Jan 18, 2013 · 3 comments
Closed

Grape can't handle dots in url params #318

lucassus opened this issue Jan 18, 2013 · 3 comments

Comments

@lucassus
Copy link

Is it possible to configure grape to handle dots in url params?
For example "/databases/first_database/collections/fs.files/documents"
Where "fs.files" is a collection name param.

Currently when I have a dot in the param grape raises 404 error.
Here is a failing test scenario for this case in my project: https://github.com/lucassus/mongo_browser/pull/93/files

@dblock
Copy link
Member

dblock commented Jan 18, 2013

I haven't tested this, but try overwriting :requirements. You'll have to adjust the regex below to allow a dot.

get ':id', :requirements => { :id => /[0-9]*/ } do
  Status.find(params[:id])
end

Does it make any difference?

@lucassus
Copy link
Author

Great, trick with requirements works perfectly lucassus/mongo_browser@f2a53f0

But now I have other problem. I have a segment segment "/:collection_name": https://github.com/lucassus/mongo_browser/blob/f2a53f00c3e1a08773a72a7dd47d756d5f5db738/lib/mongo_browser/api.rb#L47
Do I have to pass those requirements to all actions inside this scope. Is it possible to dry it? Unfortunately segment method does not take any extra arguments.

@dblock
Copy link
Member

dblock commented Jan 21, 2013

I am going to close this one.

Extending requirements onto namespace would be a very useful feature, please write-up a separate issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants