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 ReqBody and some notion of delayed IO #1

Open
owickstrom opened this issue Mar 6, 2017 · 6 comments
Open

Add ReqBody and some notion of delayed IO #1

owickstrom opened this issue Mar 6, 2017 · 6 comments

Comments

@owickstrom
Copy link
Collaborator

As in Servant, we need some delayed IO for work that shouldn't be done until a certain route has been selected. We do not want to read the request body, just because we traverse a ReqBody in the routing type, if the embedded handler does not match the request (and possibly cause 4xx errors and whatnot!). Instead, these things should build up and only be run when necessary.

@owickstrom
Copy link
Collaborator Author

I've started experimenting with this. Early stuff. :)

@yanok
Copy link

yanok commented Oct 18, 2017

Hi! Thanks for this awesome (family of) project! Any news about the ReqBody feature?

@owickstrom
Copy link
Collaborator Author

@yanok Glad you like them. :) No, sorry, I've had no time to work on it. I did try at some point but it's a rather big and complex change. I doubt I'll have any time soon, so if you or someone else would like to pick this up that'd be great!

@yanok
Copy link

yanok commented Oct 24, 2017

@owickstrom I'm a bit busy right now, but I hope to return to it at some point in the (hopefully near) future. But first I'd like to discuss the desired API a bit (sorry, I might ask really stupid questions, I was ignoring the whole Web thing completely until recently).

  1. Does it make sense to be able to put ReqBody in different places in the path? If not, shouldn't we move ReqBody closer to the method selection?
  2. Does it make sense to have multiple ReqBodys?

@maxhallinan
Copy link

At the moment, I'm using Raw when I need to read the request body. So those parts of the API contract are not represented in the type. It sounds like this feature would give handlers access to the request body without falling back to raw middleware? I'm not an advanced user of PureScript's type system but maybe I could help move this feature forward. Do you have a branch with your earlier work or could you say more about the approach you had in mind?

@nsaunders
Copy link
Contributor

@maxhallinan see my referenced PR for my first pass at the issue. I assume @owickstrom had something much more sophisticated in mind...

igrep pushed a commit to igrep/purescript-trout that referenced this issue Dec 11, 2020
This is a possible solution for purescript-hyper/purescript-hypertrout#1, by allowing the implementation to postpone to read the request body until it runs the handler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

4 participants