Package org.olat.modules.fo

Source Code of org.olat.modules.fo.QuoteAndTagFilter

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <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>
* frentix GmbH, Switzerland, http://www.frentix.com
* <p>
*/
package org.olat.modules.fo;

import java.io.IOException;
import java.io.StringReader;

import org.cyberneko.html.parsers.DOMParser;
import org.olat.core.logging.LogDelegator;
import org.olat.core.util.StringHelper;
import org.olat.core.util.filter.Filter;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

public class QuoteAndTagFilter extends LogDelegator implements Filter {

  private static final String QUOTE_WRAPPER = "b_quote_wrapper";
 
  /**
   * @see org.olat.core.util.filter.Filter#filter(java.lang.String)
   */
  public String filter(String original) {
    try {
      DOMParser parser = new DOMParser();
      parser.parse(new InputSource(new StringReader(original)));
      Document document = parser.getDocument();
      StringBuilder sb = new StringBuilder();
      scanNode(document, sb);
      return sb.toString();
    } catch (SAXException e) {
      logError("", e);
      return null;
    } catch (IOException e) {
      logError("", e);
      return null;
    }
  }
 
  private void scanNode(Node node, StringBuilder sb) {
    for(Node child=node; child != null; child=child.getNextSibling()) {
      if(child.hasAttributes()) {
        Node nodeclass = child.getAttributes().getNamedItem("class");
        if(nodeclass != null && QUOTE_WRAPPER.equals(nodeclass.getNodeValue())) {
          continue;
        }
      }
      if(child.hasChildNodes()) {
        scanNode(child.getFirstChild(), sb);
      }
      if(child.getNodeType() == Node.TEXT_NODE) {
        String text = child.getNodeValue();
        if(StringHelper.containsNonWhitespace(text)) {
          if(sb.length() > 0) {
            sb.append(' ');
          }
          sb.append(text);
        }
      }
    }
  }
}
TOP

Related Classes of org.olat.modules.fo.QuoteAndTagFilter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.