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

macros should take a status code as their second argument #227

Open
yoshuawuyts opened this issue Aug 11, 2020 · 3 comments
Open

macros should take a status code as their second argument #227

yoshuawuyts opened this issue Aug 11, 2020 · 3 comments
Labels
semver-major This change requires a semver major change
Milestone

Comments

@yoshuawuyts
Copy link
Member

Using ensure! and pals currently always yield a 500 internal server errror. We should make it so that an Into<StatusCode> must always be provided so these actually function as shorthands:

ensure!(tweet.len() < 140, 400, "Tweet must be under 140 characters");
@yoshuawuyts yoshuawuyts added the semver-major This change requires a semver major change label Aug 11, 2020
@jbr
Copy link
Member

jbr commented Aug 12, 2020

It's not entirely clear what the second arg is when it's just "400," but since it's a macro, what if it took a named argument like an optional status: 400, as in

ensure!(tweet.len() < n, "Tweet must be under {} characters", n, status: 400);

I think that should be possible? We'd just need to distinguish it from the format_args variadic. An upside of this is if it's an optional arg, it's not semver-major.

@yoshuawuyts
Copy link
Member Author

yoshuawuyts commented Sep 18, 2020

I found jshttp/http-errors recently, which uses a very similar API to the one I proposed:

var err = createError(404, 'This video does not exist!')

I think making the status code always required is not a bad idea, especially since they're convenient to author now that we can convert them from any number. So the equivalent JS code in http-types would look like:

let err = format_err!(404, "This video does not exist");

@yoshuawuyts
Copy link
Member Author

yoshuawuyts commented Oct 2, 2020

Prior art for for assertions exists in jshttp/http-assert:

assert(username === 'fjodor', 401, 'authentication failed')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
semver-major This change requires a semver major change
Projects
None yet
Development

No branches or pull requests

3 participants