// ======================================================================== // $Id: NotFoundHandler.java,v 1.15 2005/08/13 00:01:26 gregwilkins Exp $ // Copyright 1999-2004 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // 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. // ======================================================================== package org.browsermob.proxy.jetty.http.handler; import org.apache.commons.logging.Log; import org.browsermob.proxy.jetty.http.HttpException; import org.browsermob.proxy.jetty.http.HttpFields; import org.browsermob.proxy.jetty.http.HttpRequest; import org.browsermob.proxy.jetty.http.HttpResponse; import org.browsermob.proxy.jetty.log.LogFactory; import java.io.IOException; /* ------------------------------------------------------------ */ /** Handler for resources that were not found. * Implements OPTIONS and TRACE methods for the server. * * @version $Id: NotFoundHandler.java,v 1.15 2005/08/13 00:01:26 gregwilkins Exp $ * @author Greg Wilkins (gregw) */ public class NotFoundHandler extends AbstractHttpHandler { private static Log log = LogFactory.getLog(NotFoundHandler.class); /* ------------------------------------------------------------ */ public void handle(String pathInContext, String pathParams, HttpRequest request, HttpResponse response) throws HttpException, IOException { log.debug("Not Found"); String method=request.getMethod(); // Not found requests. if (method.equals(HttpRequest.__GET) || method.equals(HttpRequest.__HEAD) || method.equals(HttpRequest.__POST) || method.equals(HttpRequest.__PUT) || method.equals(HttpRequest.__DELETE) || method.equals(HttpRequest.__MOVE) ) { response.sendError(HttpResponse.__404_Not_Found, request.getPath()+" Not Found"); } else if (method.equals(HttpRequest.__OPTIONS)) { // Handle OPTIONS request for entire server if ("*".equals(request.getPath())) { // 9.2 response.setIntField(HttpFields.__ContentLength,0); response.setField(HttpFields.__Allow, "GET, HEAD, POST, PUT, DELETE, MOVE, OPTIONS, TRACE"); response.commit(); } else response.sendError(HttpResponse.__404_Not_Found); } else if (method.equals(HttpRequest.__TRACE)) { handleTrace(request,response); } else { // Unknown METHOD response.setField(HttpFields.__Allow, "GET, HEAD, POST, PUT, DELETE, MOVE, OPTIONS, TRACE"); response.sendError(HttpResponse.__405_Method_Not_Allowed); } } }