Improved validation of route method label#2402
Merged
hueniverse merged 1 commit intohapijs:masterfrom Feb 16, 2015
Merged
Conversation
Contributor
There was a problem hiding this comment.
Wouldn't it be faster and probably easier to read to just have a method object and reference that?
var _methdods = { get: true, post: true...}
Hoek.assert(_methods[options.method.toLowerCase()])or something along those lines?
Contributor
Author
There was a problem hiding this comment.
I don't know why you are concerned about speed in route creation. As for whitelisting, that would make sense as a future option but right now I think it is a breaking change.
This patch is mainly concerned with catching method names that should never be allowed, like GET /.
hueniverse
pushed a commit
that referenced
this pull request
Feb 16, 2015
Improved validation of route method label
|
This thread has been automatically locked due to inactivity. Please open a new issue for related bugs or questions following the new issue template instructions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This patch improves route method option handling in 3 ways:
['GET', ['POST']]) but later crashes when creating the route.HEADmethod restriction from the API docs.Finally, I have included a couple of tests for
HEADresponses, validating the existing implementation.