All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hbase.thirdparty.org.eclipse.jetty.servlet.JspPropertyGroupServlet Maven / Gradle / Ivy

//
//  ========================================================================
//  Copyright (c) 1995-2021 Mort Bay Consulting Pty Ltd and others.
//  ------------------------------------------------------------------------
//  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.apache.hbase.thirdparty.org.eclipse.jetty.servlet;

import java.io.IOException;
import java.util.Locale;
import javax.servlet.GenericServlet;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;

import org.apache.hbase.thirdparty.org.eclipse.jetty.server.Dispatcher;
import org.apache.hbase.thirdparty.org.eclipse.jetty.server.handler.ContextHandler;
import org.apache.hbase.thirdparty.org.eclipse.jetty.util.URIUtil;
import org.apache.hbase.thirdparty.org.eclipse.jetty.util.resource.Resource;

/**
 * Servlet handling JSP Property Group mappings
 * 

* This servlet is mapped to by any URL pattern for a JSP property group. * Resources handled by this servlet that are not directories will be passed * directly to the JSP servlet. Resources that are directories will be * passed directly to the default servlet. */ public class JspPropertyGroupServlet extends GenericServlet { private static final long serialVersionUID = 3681783214726776945L; public static final String NAME = "__org.eclipse.jetty.servlet.JspPropertyGroupServlet__"; private final ServletHandler _servletHandler; private final ContextHandler _contextHandler; private ServletHolder _dftServlet; private ServletHolder _jspServlet; private boolean _starJspMapped; public JspPropertyGroupServlet(ContextHandler context, ServletHandler servletHandler) { _contextHandler = context; _servletHandler = servletHandler; } @Override public void init() throws ServletException { String jspName = "jsp"; ServletMapping servletMapping = _servletHandler.getServletMapping("*.jsp"); if (servletMapping != null) { _starJspMapped = true; //now find the jsp servlet, ignoring the mapping that is for ourself ServletMapping[] mappings = _servletHandler.getServletMappings(); for (ServletMapping m : mappings) { String[] paths = m.getPathSpecs(); if (paths != null) { for (String path : paths) { if ("*.jsp".equals(path) && !NAME.equals(m.getServletName())) servletMapping = m; } } } jspName = servletMapping.getServletName(); } _jspServlet = _servletHandler.getServlet(jspName); String dftName = "default"; ServletMapping defaultMapping = _servletHandler.getServletMapping("/"); if (defaultMapping != null) dftName = defaultMapping.getServletName(); _dftServlet = _servletHandler.getServlet(dftName); } @Override public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException { HttpServletRequest request = null; if (req instanceof HttpServletRequest) request = (HttpServletRequest)req; else throw new ServletException("Request not HttpServletRequest"); String servletPath = null; String pathInfo = null; if (request.getAttribute(Dispatcher.INCLUDE_REQUEST_URI) != null) { servletPath = (String)request.getAttribute(Dispatcher.INCLUDE_SERVLET_PATH); pathInfo = (String)request.getAttribute(Dispatcher.INCLUDE_PATH_INFO); if (servletPath == null) { servletPath = request.getServletPath(); pathInfo = request.getPathInfo(); } } else { servletPath = request.getServletPath(); pathInfo = request.getPathInfo(); } String pathInContext = URIUtil.addPaths(servletPath, pathInfo); if (pathInContext.endsWith("/")) { _dftServlet.getServlet().service(req, res); } else if (_starJspMapped && pathInContext.toLowerCase(Locale.ENGLISH).endsWith(".jsp")) { _jspServlet.getServlet().service(req, res); } else { Resource resource = _contextHandler.getResource(pathInContext); if (resource != null && resource.isDirectory()) _dftServlet.getServlet().service(req, res); else _jspServlet.getServlet().service(req, res); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy