org.apache.wicket.protocol.ws.javax.WicketServerEndpointConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-native-websocket-javax Show documentation
Show all versions of wicket-native-websocket-javax Show documentation
Provides the common code needed for the different integrations with web container's WebSocket implementations
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wicket.protocol.ws.javax;
import java.net.URI;
import java.security.Principal;
import java.util.List;
import java.util.Map;
import jakarta.websocket.Decoder;
import jakarta.websocket.Encoder;
import jakarta.websocket.Extension;
import jakarta.websocket.HandshakeResponse;
import jakarta.websocket.server.HandshakeRequest;
import jakarta.websocket.server.ServerEndpointConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A ServerEndpointConfig that uses custom Configurator to collect
* all available information from the passed HandshakeRequest
*/
public class WicketServerEndpointConfig implements ServerEndpointConfig
{
/**
* A fake mount path used for WebSocket endpoint.
* WicketFilter should not process this path.
* See JavaxWebSocketFilter.JavaxWebSocketFilterConfig#getInitParameter(String)
*/
static final String WICKET_WEB_SOCKET_PATH = "/wicket/websocket";
private final ServerEndpointConfig delegate;
private Configurator configurator;
public WicketServerEndpointConfig()
{
this.delegate = ServerEndpointConfig.Builder.create(WicketEndpoint.class, WICKET_WEB_SOCKET_PATH).build();
}
@Override
public Class> getEndpointClass()
{
return delegate.getEndpointClass();
}
@Override
public String getPath()
{
return delegate.getPath();
}
@Override
public List getSubprotocols()
{
return delegate.getSubprotocols();
}
@Override
public List getExtensions()
{
return delegate.getExtensions();
}
@Override
public Configurator getConfigurator()
{
if (configurator == null)
{
configurator = new JavaxWebSocketConfigurator(delegate.getConfigurator());
}
return configurator;
}
@Override
public List> getEncoders()
{
return delegate.getEncoders();
}
@Override
public List> getDecoders()
{
return delegate.getDecoders();
}
@Override
public Map getUserProperties()
{
return delegate.getUserProperties();
}
/**
* A custom Configurator that collects all available information from the HandshakeRequest
*/
private static class JavaxWebSocketConfigurator extends ServerEndpointConfig.Configurator
{
private static final Logger LOG = LoggerFactory.getLogger(JavaxWebSocketConfigurator.class);
private final ServerEndpointConfig.Configurator delegate;
public JavaxWebSocketConfigurator(ServerEndpointConfig.Configurator delegate)
{
this.delegate = delegate;
}
@Override
public void modifyHandshake(ServerEndpointConfig sec, HandshakeRequest request, HandshakeResponse response)
{
delegate.modifyHandshake(sec, request, response);
// do not store null keys/values because Tomcat 8 uses ConcurrentMap for UserProperties
Map userProperties = sec.getUserProperties();
Object httpSession = request.getHttpSession();
LOG.trace("httpSession: {}", httpSession);
if (httpSession != null)
{
userProperties.put("session", httpSession);
}
Map> headers = request.getHeaders();
LOG.trace("headers: {}", headers);
if (headers != null)
{
userProperties.put("headers", headers);
}
Map> parameterMap = request.getParameterMap();
LOG.trace("parameterMap: {}", parameterMap);
if (parameterMap != null)
{
userProperties.put("parameterMap", parameterMap);
}
String queryString = request.getQueryString();
LOG.trace("queryString: {}", queryString);
if (queryString != null)
{
userProperties.put("queryString", queryString);
}
URI requestURI = request.getRequestURI();
LOG.trace("requestURI: {}", requestURI);
if (requestURI != null)
{
userProperties.put("requestURI", requestURI);
}
Principal userPrincipal = request.getUserPrincipal();
LOG.trace("userPrincipal: {}", userPrincipal);
if (userPrincipal != null)
{
userProperties.put("userPrincipal", userPrincipal);
}
}
@Override
public String getNegotiatedSubprotocol(List supported, List requested)
{
return delegate.getNegotiatedSubprotocol(supported, requested);
}
@Override
public List getNegotiatedExtensions(List installed, List requested)
{
return delegate.getNegotiatedExtensions(installed, requested);
}
@Override
public boolean checkOrigin(String originHeaderValue)
{
return delegate.checkOrigin(originHeaderValue);
}
@Override
public T getEndpointInstance(Class endpointClass) throws InstantiationException
{
return delegate.getEndpointInstance(endpointClass);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy