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

io.earcam.utilitarian.site.search.offline.HtmlContentProcessor Maven / Gradle / Ivy

/*-
 * #%L
 * io.earcam.utilitarian.site.search.offline
 * %%
 * Copyright (C) 2017 earcam
 * %%
 * SPDX-License-Identifier: (BSD-3-Clause OR EPL-1.0 OR Apache-2.0 OR MIT)
 * 
 * You must choose to accept, in full - any individual or combination of 
 * the following licenses:
 * 
 * #L%
 */
package io.earcam.utilitarian.site.search.offline;

import static java.nio.charset.StandardCharsets.UTF_8;

import java.io.FileInputStream;
import java.io.IOException;

import org.jsoup.Jsoup;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class HtmlContentProcessor extends AbstractHtmlProcessor {

	private static final Logger LOG = LoggerFactory.getLogger(HtmlContentProcessor.class);


	@Override
	public void process(Document document)
	{
		if(isHtml(document) && !document.hasRaw()) {
			org.jsoup.nodes.Document html;
			try {
				html = Jsoup.parse(new FileInputStream(document.file().toFile()), UTF_8.toString(), "");
				assignFields(document, html);
			} catch(IOException e) {
				LOG.warn("Failed to process HTML {} due to: {}", document.file(), e.getMessage());
				LOG.debug("Failed to process HTML", e);
			}
		}
	}


	private void assignFields(Document document, org.jsoup.nodes.Document html)
	{
		document.field(Document.TITLE, html.getElementsByTag("title").text());
		document.field(Document.DESCRIPTION, html.getElementsByTag("meta").select("[name=description]").attr("content"));

		document.field(Document.RAW_TEXT, html.getElementsByTag("h1").text() + ' ' +
				html.getElementsByTag("h2").text() + ' ' +
				html.getElementsByTag("h3").text() + ' ' +
				html.getElementsByTag("h4").text() + ' ' +
				html.getElementsByTag("h5").text() + ' ' +
				html.getElementsByTag("h6").text() + ' ' +
				html.getElementsByTag("p").text());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy