org.apache.shindig.gadgets.parse.GadgetHtmlParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shindig-gadgets Show documentation
Show all versions of shindig-gadgets Show documentation
Renders gadgets, provides the gadget metadata service, and serves
all javascript required by the OpenSocial specification.
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.shindig.gadgets.parse;
import org.apache.shindig.common.cache.Cache;
import org.apache.shindig.common.cache.CacheProvider;
import org.apache.shindig.common.util.HashUtil;
import org.apache.shindig.common.xml.DomUtil;
import org.apache.shindig.gadgets.GadgetException;
import org.apache.shindig.gadgets.parse.nekohtml.NekoSimplifiedHtmlParser;
import com.google.common.collect.BiMap;
import com.google.common.collect.ImmutableBiMap;
import com.google.inject.ImplementedBy;
import com.google.inject.Inject;
import com.google.inject.Provider;
import org.w3c.dom.Document;
import org.w3c.dom.DocumentFragment;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
/**
* Parser for arbitrary HTML content
*/
@ImplementedBy(NekoSimplifiedHtmlParser.class)
public abstract class GadgetHtmlParser {
public static final String PARSED_DOCUMENTS = "parsedDocuments";
public static final String PARSED_FRAGMENTS = "parsedFragments";
private Cache documentCache;
private Cache fragmentCache;
private Provider serializerProvider = new DefaultSerializerProvider();
/**
* Allowed tag names for OpenSocial Data and template blocks.
*/
public static final String OSML_DATA_TAG = "OSData";
public static final String OSML_TEMPLATE_TAG = "OSTemplate";
/**
* Bi-map of OpenSocial tags to their script type attribute values.
*/
public static final BiMap SCRIPT_TYPE_TO_OSML_TAG = ImmutableBiMap.of(
"text/os-data", OSML_DATA_TAG, "text/os-template", OSML_TEMPLATE_TAG);
@Inject
public void setCacheProvider(CacheProvider cacheProvider) {
documentCache = cacheProvider.createCache(PARSED_DOCUMENTS);
fragmentCache = cacheProvider.createCache(PARSED_FRAGMENTS);
}
@Inject
public void setSerializerProvider(Provider serProvider) {
this.serializerProvider = serProvider;
}
/**
* @param content
* @return true if we detect a preamble of doctype or html
*/
protected static boolean attemptFullDocParseFirst(String content) {
String normalized = content.substring(0, Math.min(100, content.length())).toUpperCase();
return normalized.contains(" {
public HtmlSerializer get() {
return new DefaultHtmlSerializer();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy