/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <p> * Licensed under the Apache License, Version 2.0 (the "License"); <br> * you may not use this file except in compliance with the License.<br> * You may obtain a copy of the License at the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <p> * Unless required by applicable law or agreed to in writing,<br> * software distributed under the License is distributed on an "AS IS" BASIS, <br> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> * See the License for the specific language governing permissions and <br> * limitations under the License. * <p> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.core.util.filter.impl; import java.io.IOException; import java.io.StringReader; import org.cyberneko.html.parsers.SAXParser; import org.olat.core.logging.OLog; import org.olat.core.logging.Tracing; import org.olat.core.util.StringHelper; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; /** * Detect tags. * * Initial date: 10.08.2015<br> * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com * */ public class NekoHTMLScanner { private static final OLog log = Tracing.createLoggerFor(NekoHTMLScanner.class); public boolean scan(String original) { if (original == null) return false; try { SAXParser parser = new SAXParser(); parser.setFeature("http://cyberneko.org/html/features/balance-tags/document-fragment", true); parser.setFeature("http://cyberneko.org/html/features/balance-tags", false); HTMLHandler contentHandler = new HTMLHandler(); parser.setContentHandler(contentHandler); parser.parse(new InputSource(new StringReader(original))); return contentHandler.tagFound(); } catch (SAXException e) { log.error("", e); return false; } catch (IOException e) { log.error("", e); return false; } catch (Exception e) { log.error("", e); return false; } } private static class HTMLHandler extends DefaultHandler { private boolean tagFound = false; public boolean tagFound() { return tagFound; } @Override public void startElement(String uri, String localName, String qName, Attributes attributes) { if(!tagFound && StringHelper.containsNonWhitespace(localName) && isTagAllowed(localName)) { tagFound = true; } } private boolean isTagAllowed(String localName) { switch(localName) { case "textEntryInteraction": return false; case "textentryinteraction": return false; case "TEXTENTRYINTERACTION": return false; default: return true; } } } }