org.eclipse.jetty.server.handler.DefaultHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-server Show documentation
Show all versions of jetty-server Show documentation
The core jetty server artifact.
//
// ========================================================================
// Copyright (c) 1995-2019 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package org.eclipse.jetty.server.handler;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.URL;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.http.HttpHeader;
import org.eclipse.jetty.http.HttpMethod;
import org.eclipse.jetty.http.MimeTypes;
import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.util.IO;
import org.eclipse.jetty.util.StringUtil;
import org.eclipse.jetty.util.URIUtil;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
import org.eclipse.jetty.util.resource.Resource;
import static java.nio.charset.StandardCharsets.UTF_8;
/**
* Default Handler.
*
* This handle will deal with unhandled requests in the server.
* For requests for favicon.ico, the Jetty icon is served.
* For reqests to '/' a 404 with a list of known contexts is served.
* For all other requests a normal 404 is served.
*/
public class DefaultHandler extends AbstractHandler
{
private static final Logger LOG = Log.getLogger(DefaultHandler.class);
final long _faviconModified = (System.currentTimeMillis() / 1000) * 1000L;
final byte[] _favicon;
boolean _serveIcon = true;
boolean _showContexts = true;
public DefaultHandler()
{
byte[] favbytes = null;
try
{
URL fav = getClass().getResource("/org/eclipse/jetty/favicon.ico");
if (fav != null)
{
Resource r = Resource.newResource(fav);
favbytes = IO.readBytes(r.getInputStream());
}
}
catch (Exception e)
{
LOG.warn(e);
}
finally
{
_favicon = favbytes;
}
}
/*
* @see org.eclipse.jetty.server.server.Handler#handle(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, int)
*/
@Override
public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
{
if (response.isCommitted() || baseRequest.isHandled())
return;
baseRequest.setHandled(true);
String method = request.getMethod();
// little cheat for common request
if (_serveIcon && _favicon != null && HttpMethod.GET.is(method) && target.equals("/favicon.ico"))
{
if (request.getDateHeader(HttpHeader.IF_MODIFIED_SINCE.toString()) == _faviconModified)
response.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
else
{
response.setStatus(HttpServletResponse.SC_OK);
response.setContentType("image/x-icon");
response.setContentLength(_favicon.length);
response.setDateHeader(HttpHeader.LAST_MODIFIED.toString(), _faviconModified);
response.setHeader(HttpHeader.CACHE_CONTROL.toString(), "max-age=360000,public");
response.getOutputStream().write(_favicon);
}
return;
}
if (!_showContexts || !HttpMethod.GET.is(method) || !request.getRequestURI().equals("/"))
{
response.sendError(HttpServletResponse.SC_NOT_FOUND);
return;
}
response.setStatus(HttpServletResponse.SC_NOT_FOUND);
response.setContentType(MimeTypes.Type.TEXT_HTML_UTF_8.toString());
try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
OutputStreamWriter writer = new OutputStreamWriter(outputStream, UTF_8))
{
writer.append("\n");
writer.append("\n\n");
writer.append("Error 404 - Not Found \n");
writer.append("\n");
writer.append("\n");
writer.append("\n\n");
writer.append("Error 404 - Not Found.
\n");
writer.append("No context on this server matched or handled this request.
\n");
writer.append("Contexts known to this server are:
\n");
writer.append("");
writer.append("Context Path ");
writer.append("Display Name ");
writer.append("Status ");
writer.append("LifeCycle ");
writer.append(" \n");
Server server = getServer();
Handler[] handlers = server == null ? null : server.getChildHandlersByClass(ContextHandler.class);
for (int i = 0; handlers != null && i < handlers.length; i++)
{
writer.append("");
// Context Path
ContextHandler context = (ContextHandler)handlers[i];
String contextPath = context.getContextPath();
String href = URIUtil.encodePath(contextPath);
if (contextPath.length() > 1 && !contextPath.endsWith("/"))
{
href += '/';
}
if (context.isRunning())
{
writer.append("");
}
writer.append(StringUtil.replace(contextPath, "%", "%"));
if (context.isRunning())
{
writer.append("");
}
writer.append(" ");
// Display Name
if (StringUtil.isNotBlank(context.getDisplayName()))
{
writer.append(StringUtil.sanitizeXmlString(context.getDisplayName()));
}
writer.append(" ");
// Available
if (context.isAvailable())
{
writer.append("Available");
}
else
{
writer.append("Not Available");
}
writer.append(" ");
// State
writer.append(context.getState());
writer.append(" \n");
}
writer.append("
\n");
writer.append(" ");
writer.append("Powered by Eclipse Jetty:// Server
\n");
writer.append("\n\n");
writer.flush();
byte[] content = outputStream.toByteArray();
response.setContentLength(content.length);
try (OutputStream out = response.getOutputStream())
{
out.write(content);
}
}
}
/**
* @return Returns true if the handle can server the jetty favicon.ico
*/
public boolean getServeIcon()
{
return _serveIcon;
}
/**
* @param serveIcon true if the handle can server the jetty favicon.ico
*/
public void setServeIcon(boolean serveIcon)
{
_serveIcon = serveIcon;
}
public boolean getShowContexts()
{
return _showContexts;
}
public void setShowContexts(boolean show)
{
_showContexts = show;
}
}