blob: 8fd7edf372241c95ba847f6915d87a1423815a03 [file] [log] [blame]
/*
* 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.vysper.xmpp.extension.websockets;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextListener;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import org.apache.vysper.xmpp.protocol.StanzaProcessor;
import org.apache.vysper.xmpp.server.ServerRuntimeContext;
import org.eclipse.jetty.websocket.WebSocket;
import org.eclipse.jetty.websocket.WebSocketServlet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Servlet for initiating websocket connections for Jetty.
* <p>
* When creating this servlet from web.xml, the Vysper server needs to be
* started beforehand (e.g. from a {@link ServletContextListener} and the
* {@link ServerRuntimeContext} needs to be added as an attribute in the
* {@link ServletContext} with the key
* "org.apache.vysper.xmpp.server.ServerRuntimeContext".
* </p>
*
* @author The Apache MINA Project (dev@mina.apache.org)
*/
public class JettyXmppWebSocketServlet extends WebSocketServlet {
/**
* The attribute key for the {@link ServerRuntimeContext} in
* {@link ServletContext}
*/
public static final String SERVER_RUNTIME_CONTEXT_ATTRIBUTE = "org.apache.vysper.xmpp.server.ServerRuntimeContext";
private final static Logger LOG = LoggerFactory.getLogger(JettyXmppWebSocketServlet.class);
private static final long serialVersionUID = 197413099255392883L;
private static final String SUB_PROTOCOL = "xmpp";
private ServerRuntimeContext serverRuntimeContext;
private StanzaProcessor stanzaProcessor;
public JettyXmppWebSocketServlet() {
// default cstr needed
}
public JettyXmppWebSocketServlet(ServerRuntimeContext serverRuntimeContext, StanzaProcessor stanzaProcessor) {
this.serverRuntimeContext = serverRuntimeContext;
this.stanzaProcessor = stanzaProcessor;
}
/**
* {@inheritDoc}
*/
@Override
public void init() throws ServletException {
super.init();
if (serverRuntimeContext == null) {
serverRuntimeContext = (ServerRuntimeContext) getServletContext()
.getAttribute(SERVER_RUNTIME_CONTEXT_ATTRIBUTE);
if (serverRuntimeContext == null) {
throw new RuntimeException("Failed to get Vysper ServerRuntimeContext from servlet context attribute \""
+ SERVER_RUNTIME_CONTEXT_ATTRIBUTE + "\"");
}
}
if (stanzaProcessor == null) {
stanzaProcessor = (StanzaProcessor) getServletContext()
.getAttribute(StanzaProcessor.class.getCanonicalName());
if (stanzaProcessor == null) {
throw new RuntimeException("Failed to get Vysper StanzaProcessor from servlet context attribute \""
+ StanzaProcessor.class.getCanonicalName() + "\"");
}
}
}
/**
* {@inheritDoc}
*
* Will return null if the client does not provide the correct websocket sub
* protocol. "xmpp" is required.
*/
public WebSocket doWebSocketConnect(HttpServletRequest request, String protocol) {
if (SUB_PROTOCOL.equals(protocol)) {
JettyXmppWebSocket sessionContext = new JettyXmppWebSocket(serverRuntimeContext, stanzaProcessor);
return sessionContext;
} else {
LOG.warn("Unsupported WebSocket sub protocol, must be \"xmpp\"");
return null;
}
}
}