-
Notifications
You must be signed in to change notification settings - Fork 326
Possibility to add authorization headers to the GraphQLTestSubscription #919
Comments
@BlasiusSecundus might you have a recommendation here? |
Hi @maxkramer were you able to figure out how to send oAuth access tokens to Spring Boot based GraphQL dynamically / programmatically? We are trying to do the same thing where we are launching GraphQL from a web page. We want the web page to pass the oAuth JWT access tokens so that GraphQL can enforce authorization when user executes queries using the information in the token. |
Hi @maxkramer, sorry for not responding earlier. AFAIK there is no standard way to handle authentication via GraphQL subscriptions. One possibility is to put the auth token in the Then verifying the token and putting necessary things into Spring Security context. See also graphql-java-kickstart/graphql-java-servlet#134 |
See also a similar approach of the Apollo Server JS implementation: https://www.apollographql.com/docs/apollo-server/data/subscriptions/#onconnect-and-ondisconnect |
Hi @vikforfda, @BlasiusSecundus, I did indeed manage to get a working solution. I can't remember the exact resource I used for it, but the links you shared are very close. I'm not very happy with the solution in the sense that I would've hoped the library would've supported this case specifically as it's something supported by Apollo out of the box with the connection params. I know there's no "best practice" or even recommended practice for handling auth tokens with subscriptions, but it needs to start from somewhere! Hope this code is helpful! @Component
internal class GraphQLSubscriptionAuthenticationListener(
private val authenticationProvider: AuthenticationProvider,
) : ApolloSubscriptionConnectionListener {
override fun onConnect(session: SubscriptionSession, message: OperationMessage) {
val authToken = (message.payload as Map<*, *>)[AUTH_TOKEN_PAYLOAD_KEY] as? String
if (authToken != null) {
val authentication = authenticationProvider.authenticate(BearerTokenAuthenticationToken(authToken))
SecurityContextHolder.getContext().authentication = authentication
session.userProperties[AUTHENTICATION_USER_PROPERTY_KEY] = authentication
}
}
override fun onStart(session: SubscriptionSession, message: OperationMessage) {
val authentication = session.userProperties[AUTHENTICATION_USER_PROPERTY_KEY] as? Authentication
SecurityContextHolder.getContext().authentication = authentication
}
companion object {
private const val AUTH_TOKEN_PAYLOAD_KEY = "authToken"
private const val AUTHENTICATION_USER_PROPERTY_KEY = "AUTHENTICATION"
}
} Frontend client creation: const underlyingSubscriptionClient = new SubscriptionClient(getUrl(Path.GraphqlSubscriptions), {
// https://www.npmjs.com/package/subscriptions-transport-ws
connectionParams: async () => ({
authToken: jwtToken,
}),
lazy: true,
}) Where possible, it would still be great to get some more customisability in the WebSocketClientConfigurator where can have the ability for a more flexibility implementation. |
@maxkramer @BlasiusSecundus Thanks for sharing your solutions. I have one clarifying question for @maxkramer (I am new to Playground). I see in your code you are referring to ApolloSubscriptionConnectionListener. In your case did you use the Apollo Server version of GraphQL since we want to use the Open source version of GraphQL |
@maxkramer @BlasiusSecundus Will this work with the embedded |
@skesani we're just discussing the webhooks here, but re the headers, I haven't personally played around with setting them automatically via yaml as our access tokens aren't long living. Somebody I worked with in the past created a bookmark that ran some js that fetched a new token and injected it automatically into the http headers section. But according to the docs, I believe it should be this in the application.yaml:
There's also a @vikforfda we're using the graphql kickstart spring boot starter, I'm not sure which one that's using as we haven't had a need to look into anything further. |
@vikforfda |
@skesani Yes, it will work. The variables set in the "HTTP headers" tab will be sent to the server as the |
@BlasiusSecundus could you provide any sample to set the token programmatically? I am thinking to do like this. ` @component
} ` |
@skesani Variables from configuration are already passed to Playground in PlaygroundController. That would be the natural place to extend its functionality so that it can take headers from sources other than configuration properties. (E.g. some configurator bean as you proposed). |
Returning to the original question / bug report, I think this issue should be closed:
These two should be handled as separate issues (flagged as enhancement). |
@BlasiusSecundus I created this repo and added MyConfig and MyPlaygroundController extends PlaygroundController however, I am unable to override the headers, could you please take a look? |
Describe the bug
Hi all, I'm getting the following error when attempting to create a subscription to one of our endpoints, which is protected by OAuth2. The exception makes sense, however I'm unable to find a way to attach the token as a header to the connection that's being made.
I can see that headers can be added through the TestWebSocketClientConfigurator, but no way to add custom headers to it, neither switch it out for a different implementation. Is there something I'm missing on the
session
that would allow this?To Reproduce
Steps to reproduce the behavior:
isAuthorized()
Expected behavior
It should take into account
@MockUser
or ideally allow setting custom headers especially for authentication.GraphQLTestTemplate
specifically hasgraphQLTestTemplate.withBearerAuth()
.The text was updated successfully, but these errors were encountered: