Spring 4.3.6 STOMP / WebSockets with authentication

SOLVED : see comment

I am currently trying to open a WebSockets connection between spring server and angular client with x-auth-token . Therefore, I have the following pieces of code:

import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.context.annotation.Configuration;
import org.springframework.messaging.simp.config.MessageBrokerRegistry;
import org.springframework.messaging.simp.config.ChannelRegistration;
import org.springframework.messaging.support.ChannelInterceptorAdapter;
import org.springframework.messaging.support.MessageHeaderAccessor;
import org.springframework.messaging.Message; 
import org.springframework.messaging.MessageChannel; 
import org.springframework.messaging.simp.stomp.StompCommand;
import org.springframework.messaging.simp.stomp.StompSession;
import org.springframework.messaging.simp.stomp.StompHeaders;
import org.springframework.messaging.simp.stomp.StompHeaderAccessor; 
import org.springframework.web.socket.config.annotation.AbstractWebSocketMessageBrokerConfigurer;
import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker;
import org.springframework.web.socket.config.annotation.StompEndpointRegistry;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Configuration
@EnableWebSocketMessageBroker
@Order(Ordered.HIGHEST_PRECEDENCE + 99)
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {

    private final Logger LOGGER = LoggerFactory.getLogger(this.getClass());

    @Override
    public void configureMessageBroker(MessageBrokerRegistry config) {
        config.enableSimpleBroker("/topic");
        config.setApplicationDestinationPrefixes("/app");
    }

    @Override
    public void registerStompEndpoints(StompEndpointRegistry registry) {
        LOGGER.info("registering websockets");
        registry.addEndpoint("/api/v1/websocket").setAllowedOrigins("*").withSockJS();
    }

    @Override
    public void handleException(StompSession session, StompCommand command, StompHeaders headers, byte[] payload, Throwable exceptio) {
        LOGGER.info("ERRORORRRRRRRR");
        exception.printStackTrace();
    }

    @Override
    public void configureClientInboundChannel(ChannelRegistration registration) {
      registration.setInterceptors(new ChannelInterceptorAdapter() {

          @Override
          public Message<?> preSend(Message<?> message, MessageChannel channel) {

              StompHeaderAccessor accessor = MessageHeaderAccessor.getAccessor(message, StompHeaderAccessor.class);

              LOGGER.info("in override");

              if (StompCommand.CONNECT.equals(accessor.getCommand())) {

                  String authToken = accessor.getFirstNativeHeader("x-auth-token");

                  LOGGER.info("Header auth token: " + authToken);

                  // Principal user = ... ; // access authentication header(s)
                  //accessor.setUser(user);
              }

              return message;
          }
      });
    }
}

      

As you can see from my WebSocketConfig, I am not currently processing the x-auth token, but rather trying to execute it once. I ended up trying to follow the spring documentation: https://docs.spring.io/spring/docs/current/spring-framework-reference/html/websocket.html#websocket-stomp-authentication-token-based

The only problem I'm running into is that the configureClientInboundChannel()

method preSend()

seems to be uncalled - and I can't figure out why.

The following error is displayed on the client side:

client_error_message

As you can see, comparing the error log and the endpoint defined in registerStompEndpoints()

shows that the actual endpoint is correct. However, I do not understand why LOGGER.info("in override");

in is configureClientInboundChannel()

not called.

I'd really like the authentication token to be passed through stomp headers instead of the hacky-token-url-parameter solution. Anyone have an idea? Am I missing something in the already linked spring documentation?

Thanks in advance for your help!

+3


source to share





All Articles