Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015 Async-IO.org
*
* Licensed 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.
*/
/*
* 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.atmosphere.container;
import org.apache.catalina.connector.RequestFacade;
import org.apache.catalina.websocket.StreamInbound;
import org.atmosphere.cpr.Action;
import org.atmosphere.cpr.ApplicationConfig;
import org.atmosphere.cpr.AtmosphereConfig;
import org.atmosphere.cpr.AtmosphereRequest;
import org.atmosphere.cpr.AtmosphereResponse;
import org.atmosphere.cpr.HeaderConfig;
import org.atmosphere.websocket.WebSocket;
import org.atmosphere.websocket.WebSocketProcessor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import static org.atmosphere.cpr.ApplicationConfig.PROPERTY_SESSION_CREATE;
public class TomcatWebSocketUtil {
private static final Logger logger = LoggerFactory.getLogger(TomcatWebSocketUtil.class);
private static final Queue sha1Helpers = new ConcurrentLinkedQueue();
private static byte[] WS_ACCEPT;
static {
try {
WS_ACCEPT = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11".getBytes("ISO_8859_1");
} catch (Exception e) {
logger.error("", e);
}
}
public static Action doService(AtmosphereRequest req, AtmosphereResponse res,
Delegate delegate,
AtmosphereConfig config,
WebSocketProcessor webSocketProcessor) throws IOException, ServletException {
// First, handshake
if (req.getAttribute(WebSocket.WEBSOCKET_SUSPEND) == null) {
boolean useBuildInSession = config.isSupportSession();
// Override the value.
String s = config.getInitParameter(ApplicationConfig.BUILT_IN_SESSION);
if (s != null) {
useBuildInSession= Boolean.valueOf(s);
}
// Information required to send the server handshake message
String key = null;
String subProtocol = null;
boolean allowWebSocketWithoutHeaders = req.getHeader(HeaderConfig.X_ATMO_WEBSOCKET_PROXY) != null ? true : false;
if (!allowWebSocketWithoutHeaders) {
if (!headerContainsToken(req, "Upgrade", "websocket")) {
return delegate.doService(req, res);
}
if (!headerContainsToken(req, "Connection", "upgrade")) {
return delegate.doService(req, res);
}
if (!headerContainsToken(req, "sec-websocket-version", "13")) {
WebSocket.notSupported(req, res);
return new Action(Action.TYPE.CANCELLED);
}
}
key = req.getHeader("Sec-WebSocket-Key");
if (key == null) {
return delegate.doService(req, res);
}
String requireSameOrigin = config.getInitParameter(ApplicationConfig.WEBSOCKET_REQUIRE_SAME_ORIGIN);
if (!webSocketProcessor.handshake(req)) {
res.sendError(HttpServletResponse.SC_FORBIDDEN, "WebSocket requests rejected.");
return new Action(Action.TYPE.CANCELLED);
}
if (Boolean.valueOf(requireSameOrigin) && !verifyOrigin(req)) {
res.sendError(HttpServletResponse.SC_FORBIDDEN, "Origin header does not match expected value");
return new Action(Action.TYPE.CANCELLED);
}
// If we got this far, all is good. Accept the connection.
res.setHeader("Upgrade", "websocket");
res.setHeader("Connection", "upgrade");
res.setHeader("Sec-WebSocket-Accept", getWebSocketAccept(key));
if (subProtocol != null) {
res.setHeader("Sec-WebSocket-Protocol", subProtocol);
}
HttpServletRequest hsr = req.wrappedRequest();
while (hsr instanceof HttpServletRequestWrapper)
hsr = (HttpServletRequest) ((HttpServletRequestWrapper) hsr).getRequest();
RequestFacade facade = (RequestFacade) hsr;
boolean isDestroyable = false;
s = config.getInitParameter(ApplicationConfig.RECYCLE_ATMOSPHERE_REQUEST_RESPONSE);
if (s != null && Boolean.valueOf(s)) {
isDestroyable = true;
}
StreamInbound inbound = new TomcatWebSocketHandler(
AtmosphereRequest.cloneRequest(req, true, useBuildInSession, isDestroyable, config.getInitParameter(PROPERTY_SESSION_CREATE, true)),
config.framework(), webSocketProcessor);
facade.doUpgrade(inbound);
return new Action(Action.TYPE.CREATED);
}
try {
Action action = delegate.suspended(req, res);
if (action.type() == Action.TYPE.RESUME) {
req.setAttribute(WebSocket.WEBSOCKET_RESUME, true);
}
return action;
} catch (Exception ex) {
logger.warn("", ex);
}
return Action.CANCELLED;
}
private static boolean verifyOrigin(HttpServletRequest req) {
String origin = req.getHeader("Origin");
if (origin == null) {
return false;
}
try {
URI requestUri = new URI(req.getRequestURL().toString());
URI originUri = new URI(origin);
// First check that the protocol (http, https, etc) is not null and matches
if (requestUri.getScheme() != null && originUri.getScheme() != null &&
requestUri.getScheme().equals(originUri.getScheme())) {
// If the authority (userinfo@hostname:port) is not null and matches, then the origin is verified
if (requestUri.getAuthority() != null && originUri.getAuthority() != null &&
requestUri.getAuthority().equals(originUri.getAuthority())) {
return true;
}
}
} catch (URISyntaxException e) {
logger.error("Unable to verify request origin", e);
}
return false;
}
/*
* This only works for tokens. Quoted strings need more sophisticated
* parsing.
*/
private static boolean headerContainsToken(HttpServletRequest req,
String headerName, String target) {
Enumeration headers = req.getHeaders(headerName);
while (headers.hasMoreElements()) {
String header = headers.nextElement();
String[] tokens = header.split(",");
for (String token : tokens) {
if (target.equalsIgnoreCase(token.trim())) {
return true;
}
}
}
return false;
}
/*
* This only works for tokens. Quoted strings need more sophisticated
* parsing.
*/
private static List getTokensFromHeader(HttpServletRequest req,
String headerName) {
List result = new ArrayList();
Enumeration headers = req.getHeaders(headerName);
while (headers.hasMoreElements()) {
String header = headers.nextElement();
String[] tokens = header.split(",");
for (String token : tokens) {
result.add(token.trim());
}
}
return result;
}
private static String getWebSocketAccept(String key) throws ServletException {
MessageDigest sha1Helper = sha1Helpers.poll();
if (sha1Helper == null) {
try {
sha1Helper = MessageDigest.getInstance("SHA1");
} catch (NoSuchAlgorithmException e) {
throw new ServletException(e);
}
}
sha1Helper.reset();
try {
sha1Helper.update(key.getBytes("ISO_8859_1"));
} catch (UnsupportedEncodingException e) {
throw new ServletException(e);
}
String result = org.apache.catalina.util.Base64.encode(sha1Helper.digest(WS_ACCEPT));
sha1Helpers.add(sha1Helper);
return result;
}
public static interface Delegate {
public Action doService(AtmosphereRequest req, AtmosphereResponse res)
throws IOException, ServletException;
public Action suspended(AtmosphereRequest request, AtmosphereResponse response)
throws IOException, ServletException;
}
}