<div dir="ltr"><div><div><div><div><div><div><div>So let's say we have:<br><br></div>/auth ---> application mounted here<br></div>POST /auth/subauth  --> normal handler<br></div>POST /auth                 ---> normal handler<br><br></div>If a GET to "auth/subauth" arrives, it gets dispatched to the Application. If the Application doesn't have a subauth endpoint, it 404s. But the response we want is 405, since there is something that matches the URL (but not the method). If the Application responded with essentially any other error besides 404, however, or with a successful response, we don't want to override it with a 405. <br><br>Moreover, if a POST to /auth arrives, where do we send it to - the normal handler or the Application? The handler just because we know that matches? Or the Application because it showed up first in the code, even though it might not match? Essentially, we just don't know how to route, given that everything inside Application is opaque.<br><br></div>We can try sending things to the Application and checking the first line of the response. However, not all 404s are created equal. If the handler decides to 404 because the request body contains an ID for a User in the database that happens to not exist, rerouting would probably be misleading (returning a 405 would definitely be). Also, that solution just generally feels very hacky!<br><br></div>To some extent we can just warn in the documentation against handlers that might overlap with the mounted Application (or even do static checks to prevent that), but this isn't very nice when e.g. one web framework is meant to "stand in front" of another, in the sense that anything that doesn't get matched by the one framework should fall through into the other (the mounted Application one), which I imagine being a decently common use-case. (Because the problem also exists in that direction, where the Application is the last tried thing - if we reroute to the Application because the best we got was a 405, the Application might respond with a 404, confusing everybody...) It also doesn't really allow for one framework handling a GET, and another (via application) a POST on the same URL, say, without the same issues. Anyhow, these things seems like something to consider if integrating between frameworks via Application becomes a more heavily used feature.<br><br></div>Not sure if this makes it any clearer - let me know if not!<br><div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Oct 24, 2015 at 12:54 AM, Greg Weber <span dir="ltr"><<a href="mailto:greg@gregweber.info" target="_blank">greg@gregweber.info</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span class="">On Fri, Oct 23, 2015 at 8:00 AM, Julian Arni <span dir="ltr"><<a href="mailto:jkarni@gmail.com" target="_blank">jkarni@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Thanks again for starting the discussion!<br><br></div><div>As I mentioned, for Servant I think it's unlikely we'd completely move away from our current handlers, since we don't want to lose all the type information we have, and don't want to impose such information on others. So I'm hoping the next best thing might be achievable - allowing the new-style handlers to be run directly, and having conversion functions from our current handlers to the new style. I think the first is easy, and the second possible. Since there isn't enough information at the value-level to establish where it is our handlers are getting their arguments from (query string, headers, request body, etc.), we'd need a Proxy argument for the relevant part of the api. Something like:<br><br></div><div>convert :: (CanConvert api x) => Proxy api -> x -> NewHanderM ()<br><br></div><div>Where 'convert' would need to walk down the arguments of x and pull arguments from the appropriate places. E.g., if <br><br>x    ~ Int                      -> Person                                -> ExceptT ServantErr IO (),                  and <br>api ~ Header "H" Int :> ReqBody '[JSON] Person -> Post '[] ()<br><br></div><div>we'd have 'convert' conceptually doing: convertExceptT $ liftM2 x (parseHeader <$> getHeader "H") (decode <$> getBody), where getHeader and getBody are functions in the new handler monad (/class).  (This isn't quite right, since decoding failures need to be handled).<br><br><br></div><div>Though as I mentioned before, since for servant at least in one direction it'd be a conversion rather than direct usage of the new handler, and since we can already convert any servant handler plus appropriate Proxy into an Application, and can use any Application as a handler, for us it'd be a lot easier to just use Application. As far as I can tell, this is also true in a couple of other frameworks. Indeed, one of the great things about the Application signature, in my opinion, is that it works well both as the signature for an entire Application and for a handler (that gets a modified request). The only problem we've come across with that idea is that the type of failure of the handler is opaque to the outer framework - so e.g., there's no easy way to tell whether re-routing needs to be triggered because the handler failed to match. This, however, would still be a problem in the model mentioned above. Having something like Application, but with return type IO (Either ReroutePlz ResponseReceived), would likely suffice (as would settling on an exception type).<br></div></div></blockquote><div><br></div></span><div>I think that for an Application to be shared it needs to be mountable to an arbitrary route (e.g. "/auth"). And any request that matches the mounted route should be dispatched to just the mounted Application. Inside that mounted route the Application can then do additional routing. But if it does not match, it should return a 404, and that should be sent all the way to the client. Or is this too restrictive? What exactly is the need to interpret a 404 as meaning "try a different route"?</div><div><div class="h5"><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 22, 2015 at 2:00 PM,  <span dir="ltr"><<a href="mailto:web-devel-request@haskell.org" target="_blank">web-devel-request@haskell.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send web-devel mailing list submissions to<br>
        <a href="mailto:web-devel@haskell.org" target="_blank">web-devel@haskell.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/web-devel" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/web-devel</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:web-devel-request@haskell.org" target="_blank">web-devel-request@haskell.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:web-devel-owner@haskell.org" target="_blank">web-devel-owner@haskell.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of web-devel digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. More collaboration in web development (Michael Snoyman)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 22 Oct 2015 08:13:31 +0300<br>
From: Michael Snoyman <<a href="mailto:michael@snoyman.com" target="_blank">michael@snoyman.com</a>><br>
To: web-devel <<a href="mailto:web-devel@haskell.org" target="_blank">web-devel@haskell.org</a>>, <a href="mailto:haskell-wai@googlegroups.com" target="_blank">haskell-wai@googlegroups.com</a>,<br>
        "<a href="mailto:yesodweb@googlegroups.com" target="_blank">yesodweb@googlegroups.com</a>" <<a href="mailto:yesodweb@googlegroups.com" target="_blank">yesodweb@googlegroups.com</a>><br>
Subject: [web-devel] More collaboration in web development<br>
Message-ID:<br>
        <CAKA2JgLpqbOiHVY+vH4vdtUjvY7O-Mb7e2x+ms=B1b=<a href="mailto:NFqA-%2Bg@mail.gmail.com" target="_blank">NFqA-+g@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
I originally kicked this off as an email to the maintainers of some of the<br>
other WAI web frameworks. After some initial brainstorming and some broad<br>
consensus to find some more shared common ground, we decided to open this<br>
up to a broader discussion.<br>
<br>
I think the primary forum for this discussion will likely be the web-devel<br>
mailing list, though I'm cross-posting to haskell-wai and yesodweb as well<br>
for those interested. Please feel free to share with other mailing lists<br>
also. (We debated whether to use web-devel or haskell-wai for this<br>
discussion and didn't come to a decision, I'm fine moving it elsewhere.)<br>
<br>
Based on the discussion, it seems like our best next step will be putting<br>
together a package containing some form of a Handler monad that could be<br>
shared by multiple web frameworks, hopefully making it easier to write code<br>
that can move between various frameworks. By contrast, we also seem to be<br>
in agreement that the high level routing code will end up being<br>
framework-specific, though we may be able to share some common low-level<br>
Trie-based dispatch code.<br>
<br>
I'll leave it to other participants to restate points they made in the<br>
initial private discussion.<br>
<br>
* * *<br>
<br>
Hi all,<br>
<br>
When I was in San Francisco a few months ago, Greg and I discussed the<br>
state of Haskell web development. It's clear that there's a lot of great<br>
stuff going on. Both of us have a strong desire to find as much common<br>
ground for all web framework authors to work on as possible, without<br>
detracting from meaningful distinctions between the various frameworks.<br>
<br>
Greg and I have discussed this point off and on for the past few months,<br>
and haven't come up with very many concrete ideas. The recent work on<br>
http-api-data[1] would be one possible example of collaboration. Other<br>
possible ideas that Greg and I brainstormed were some kind of shared<br>
library for efficient dispatch (that could be used under the surface for<br>
the various high-level interface different libraries already provide), or<br>
some kind of a common Handler-like monad (which from what I've seen many<br>
people seem to reimplement all over the place). Some concrete benefits we<br>
can see from this:<br>
<br>
* Previously, Persistent users were complaining that their types did not<br>
serialize in servant. http-api-data addresses this.<br>
* A common Handler would allow a higher layer abstraction for web apps,<br>
much like WAI provides at a low level. With something like that, sharing<br>
code like authentication logic becomes a reality<br>
* We already have precedence for other such shared libraries:<br>
client-session, server-session, cookie, and authenticate, as a few examples.<br>
<br>
These are just ideas to kick off some thoughts, I'm sure some discussion<br>
could bring out some better ideas. Overall, it seems like we have a lot of<br>
opportunity to improve the situation for everyone if we focus on such<br>
collaboration. Having a shared low-level HTTP interface (WAI) has already<br>
helped this out considerably, I'm hoping there's something else we can do<br>
in this vein as well.<br>
<br>
Michael<br>
<br>
[1] <a href="http://hackage.haskell.org/package/http-api-data" rel="noreferrer" target="_blank">http://hackage.haskell.org/package/http-api-data</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://mail.haskell.org/pipermail/web-devel/attachments/20151022/20be59ea/attachment-0001.html" rel="noreferrer" target="_blank">http://mail.haskell.org/pipermail/web-devel/attachments/20151022/20be59ea/attachment-0001.html</a>><br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
_______________________________________________<br>
web-devel mailing list<br>
<a href="mailto:web-devel@haskell.org" target="_blank">web-devel@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/web-devel" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/web-devel</a><br>
<br>
<br>
------------------------------<br>
<br>
End of web-devel Digest, Vol 71, Issue 1<br>
****************************************<br>
</blockquote></div><br></div>
<br>_______________________________________________<br>
web-devel mailing list<br>
<a href="mailto:web-devel@haskell.org" target="_blank">web-devel@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/web-devel" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/web-devel</a><br>
<br></blockquote></div></div></div><br></div></div>
</blockquote></div><br></div>