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

jakarta.servlet.jsp.jstl.tlv.PermittedTaglibsTLV Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/*
 * Copyright (c) 1997-2020 Oracle and/or its affiliates. All rights reserved.
 * Copyright 2004 The Apache Software Foundation
 *
 * 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 jakarta.servlet.jsp.jstl.tlv;

import java.io.IOException;
import java.util.HashSet;
import java.util.Set;
import java.util.StringTokenizer;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

import jakarta.servlet.jsp.tagext.PageData;
import jakarta.servlet.jsp.tagext.TagLibraryValidator;
import jakarta.servlet.jsp.tagext.ValidationMessage;

/**
 * 

* A TagLibraryValidator class to allow a TLD to restrict what taglibs (in addition to itself) may be imported on a page * where it's used. *

* *

* This TLV supports the following initialization parameter: *

*
    *
  • permittedTaglibs: A whitespace-separated list of URIs corresponding to tag libraries permitted to be * imported on the page in addition to the tag library that references PermittedTaglibsTLV (which is allowed * implicitly). *
* * @author Shawn Bayern */ public class PermittedTaglibsTLV extends TagLibraryValidator { // ********************************************************************* // Constants // parameter names private final String PERMITTED_TAGLIBS_PARAM = "permittedTaglibs"; // URI for "" element private final String JSP_ROOT_URI = "http://java.sun.com/JSP/Page"; // local name of "" element private final String JSP_ROOT_NAME = "root"; // QName for "" element private final String JSP_ROOT_QN = "jsp:root"; // ********************************************************************* // Validation and configuration state (protected) private Set permittedTaglibs; // what URIs are allowed? private boolean failed; // did the page fail? private String uri; // our taglib's URI // ********************************************************************* // Constructor and lifecycle management public PermittedTaglibsTLV() { super(); init(); } private void init() { permittedTaglibs = null; failed = false; } @Override public void release() { super.release(); init(); } // ********************************************************************* // Validation entry point @Override public synchronized ValidationMessage[] validate(String prefix, String uri, PageData page) { try { // initialize this.uri = uri; permittedTaglibs = readConfiguration(); // get a handler DefaultHandler handler = new PermittedTaglibsHandler(); // parse the page SAXParserFactory parserFactory = SAXParserFactory.newInstance(); parserFactory.setValidating(true); SAXParser parser = parserFactory.newSAXParser(); parser.parse(page.getInputStream(), handler); if (failed) { return vmFromString("taglib " + prefix + " (" + uri + ") allows only the " + "following taglibs to be imported: " + permittedTaglibs); } else { return null; } } catch (SAXException ex) { return vmFromString(ex.toString()); } catch (ParserConfigurationException ex) { return vmFromString(ex.toString()); } catch (IOException ex) { return vmFromString(ex.toString()); } } // ********************************************************************* // Utility functions /** Returns Set of permitted taglibs, based on configuration data. */ private Set readConfiguration() { // initialize the Set Set s = new HashSet<>(); // get the space-separated list of taglibs String uris = (String) getInitParameters().get(PERMITTED_TAGLIBS_PARAM); // separate the list into individual uris and store them StringTokenizer st = new StringTokenizer(uris); while (st.hasMoreTokens()) { s.add(st.nextToken()); } // return the new Set return s; } // constructs a ValidationMessage[] from a single String and no ID private ValidationMessage[] vmFromString(String message) { return new ValidationMessage[] { new ValidationMessage(null, message) }; } // ********************************************************************* // SAX handler /** The handler that provides the base of our implementation. */ private class PermittedTaglibsHandler extends DefaultHandler { // if the element is , check its "xmlns:" attributes @Override public void startElement(String ns, String ln, String qn, Attributes a) { // ignore all but if (!qn.equals(JSP_ROOT_QN) && (!ns.equals(JSP_ROOT_URI) || !ln.equals(JSP_ROOT_NAME))) { return; } // for , check the attributes for (int i = 0; i < a.getLength(); i++) { String name = a.getQName(i); // ignore non-namespace attributes, and xmlns:jsp if (!name.startsWith("xmlns:") || name.equals("xmlns:jsp")) { continue; } String value = a.getValue(i); // ignore our own namespace declaration if (value.equals(uri)) { continue; } // otherwise, ensure that 'value' is in 'permittedTaglibs' set if (!permittedTaglibs.contains(value)) { failed = true; } } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy