-
-
Notifications
You must be signed in to change notification settings - Fork 143
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
Feature: support reading request "context" in server actions #54
Comments
Thanks for the write-up. Yeah, the server integration is an open problem. The first is API design. It should work for server components, not only server actions. The second is the worker boundary as you said. Is I can try the AsyncLocalStorage approach too. |
Can you try this in const { withHeadersStore } = await loadServerFile('waku/server'); You also need to export it from |
This did the trick! I can now get to the request headers from the action. I updated the branch. And yes, the headers are serializable. (I would note that I'm not necessarily proposing the current I'd consider it a successful experiment, for now. Getting it working for server components might not be that difficult. I can see how that's important for consistency. |
That's great to hear. So, the remaining issue is API design. Waku wants to be as thin as possible (and extensible). |
I don't have much experience with RPC-style comms, so it's possible slapping stuff from the http request in there is not a good idea, at large. However, it might be worth enumerating what we have with this so far:
Next, there are two angles at play here: Header access and authentication. These could probably be split into two issues. I'll say session authentication is related and probably needs header access, but beyond that, I'm unsure of how it should be handled in RSC. RPC libraries and specs in general will have prior art to explore here. For example, gRPC supports both a "channel credential" for an entire connection, and a "call credential" for a specific call. Since RSC's caller is a web client, per-call creds are unlikely, imo, and yet if someone is doing token management on the client, it's possible. The next step is probably just a bunch of poking around to see what's been done before. As far as headers, there are some reasons for and against even exposing them to actions. (If they're not exposed, I would expect the framework would at least provide something for reading cookies, as nextjs does.) On the for side:
On the against side:
|
My goal here is to support session-based authentication for server actions in RSC.
Authentication for server actions seems like an open question at this point, but step one is making some kind "current context" from the caller available to the action. For a client holding access tokens, it's probably trivial to wire up helpers to invoke actions with. However, for battle tested session cookie-based authentication, there seems to be some work to do.
The same problem could surface for any other data sourced from the server request that needs to be supplied to actions.
As far as prior art, the next.js examples imply a backend like AsyncLocalStorage, given this code:
To start, I briefly explored adding support for reading request headers in server actions. Two things got in the way:
AsyncLocalStorage
approach from working. I'm curious if RSC prescribes the worker in some wayAsyncLocalStorage
with something around this spot: https://github.com/dai-shi/waku/blob/0848fa64eac2a578f602d7ab460889a8124bbbb0/src/lib/rsc-handler-worker.ts#L228C1-L229 The bundled action code gets its own module graph, and I couldn't easily figure out how to access a known module in that graph from the worker source to seed it with a value.That fiddling can be found here, if interested: https://github.com/dai-shi/waku/compare/main...jwbay:request-headers?expand=1
The interesting output is:
Possibly the simplest alternative is to
.call/.apply
the server action with athis
value containing request context. Making it a first/last parameter is also possible, but would require some TS trickery.The text was updated successfully, but these errors were encountered: