Yeah, sign me up for this one!
I've been trying to build web app with a GAE backend and I found myself adding the same three lines to every handler (get the context, get the user of the context, check if the user is nil).
goweb looks perfect in every other aspect, handling all the RESTful stuff. But I'm still trying to figure out how to handle authentication and redirecting/responding to requests when the user isn't logged in.
I thought using GAE's built-in user package would make things easier for me, and it does but there's still a lot of work to do. Having an interceptor would take care of most of that remaining work.
Thanks,