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

Add HTTPResponseError #138

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

czechboy0
Copy link
Contributor

Motivation

When throwing HTTPResponseConvertible-conforming types from middlewares and utility functions, I often find myself just creating a single type for the whole project that represents an "HTTP response error", matching the protocol exactly - just as a concrete struct that conforms to error.

This might be more generally useful, and having one in the runtime library avoids others needing to do the same.

Domain-specific errors can continue to conform to HTTPResponseConvertible, this is just for the cases where a domain-specific error isn't adding much beyond the status code (for example, throwing a 401 out of an authentication server middleware.)

Modifications

Added HTTPResponseError, which provides a convenience type mirroring HTTPResponseConvertible.

Result

Adopters can use this type, rather than write their own similar/identical one.

Test Plan

Just a struct with stored properties, no other logic.

@czechboy0
Copy link
Contributor Author

cc @gayathrisairam

@simonjbeaumont simonjbeaumont added the 🆕 semver/minor Adds new public API. label Jan 27, 2025
Copy link
Collaborator

@simonjbeaumont simonjbeaumont left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm in two minds on this one.

On the one hand, since the ErrorHandlingMiddleware is currently opt-in, this will also be opt-in.

On the other hand, I'm a little concerned we're making it too easy to diverge from the documented API for server implementors, who are then on the hook for ideally throwing only documented responses.

It's a pretty shallow type, that doesn't unlock anything users cannot already do, but does bring up some questions. For example, are there any affordances to prevent misuse of this type, e.g. throw HTTPResponseError(httpStatus: .ok)?

@czechboy0
Copy link
Contributor Author

This feature being opt-in (and not trivially, like using a bool, but by adding a middleware) makes me believe that only people who really need it will use it, and will understand the caveats. I wrote this type 5 minutes into adopting the new error handling middleware in a toy project, and I suspect others might write similar ones as well.

Similarly to easy-to-write middlewares, I think it's defensible not to have this type, and just ensure the API is clear enough that adopters can serve themselves. But it's also a shame if when adopters use the runtime library, they always go to the last project they used it and copy over utilities like this, that could be useful to everyone.

I think both taking and declining this is reasonable. But we might want to consider it in context of what we'll do with middlewares, which I suspect will need to clear a similar bar: adopters can write them, we have examples, but they're likely identical between many adopters, so it's unclear why we don't provide them out of the box.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🆕 semver/minor Adds new public API.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants