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

com.itextpdf.html2pdf.resolver.resource.ResourceResolver Maven / Gradle / Ivy

Go to download

pdfHTML is an iText 7 add-on that lets you to parse (X)HTML snippets and the associated CSS and converts them to PDF.

There is a newer version: 5.0.5
Show newest version
/*
    This file is part of the iText (R) project.
    Copyright (c) 1998-2017 iText Group NV
    Authors: Bruno Lowagie, Paulo Soares, et al.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    http://itextpdf.com/terms-of-use/

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    In accordance with Section 7(b) of the GNU Affero General Public License,
    a covered work must retain the producer line in every PDF that is created
    or manipulated using iText.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving the iText software without
    disclosing the source code of your own applications.
    These activities include: offering paid services to customers as an ASP,
    serving PDFs on the fly in a web application, shipping iText with a closed
    source product.

    For more information, please contact iText Software Corp. at this
    address: [email protected]
 */
package com.itextpdf.html2pdf.resolver.resource;

import com.itextpdf.html2pdf.LogMessageConstant;
import com.itextpdf.io.codec.Base64;
import com.itextpdf.io.image.ImageDataFactory;
import com.itextpdf.io.util.MessageFormatUtil;
import com.itextpdf.io.util.StreamUtil;
import com.itextpdf.io.util.UrlUtil;
import com.itextpdf.kernel.pdf.xobject.PdfImageXObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;

/**
 * Utilities class to resolve resources.
 */
// TODO handle  tag?
public class ResourceResolver {

    /** The {@link UriResolver} instance. */
    private UriResolver uriResolver;

    /** The {@link SimpleImageCache} instance. */
    // TODO provide a way to configure capacity, manually reset or disable the image cache?
    private SimpleImageCache imageCache;

    /**
     * Creates {@link ResourceResolver} instance. If {@code baseUri} is a string that represents an absolute URI with any schema
     * except "file" - resources url values will be resolved exactly as "new URL(baseUrl, uriString)". Otherwise base URI
     * will be handled as path in local file system.
     * 

* The main difference between those two is handling of the relative URIs of resources with slashes in the beginning * of them (e.g. "/test/uri", or "//itextpdf.com/example_resources/logo.img"): if base URI is handled as local file * system path, then in those cases resources URIs will be simply concatenated to the base path, rather than processed * with URI resolution rules (See RFC 3986 "5.4. Reference Resolution Examples"). However absolute resource URIs will * be processed correctly. *

*

* If empty string or relative URI string is passed as base URI, then it will be resolved against current working * directory of this application instance. *

* * @param baseUri base URI against which all relative resource URIs will be resolved. */ public ResourceResolver(String baseUri) { this.uriResolver = new UriResolver(baseUri); this.imageCache = new SimpleImageCache(); } /** * Retrieve {@link PdfImageXObject}. * * @param src either link to file or base64 encoded stream. * @return PdfImageXObject on success, otherwise null. */ public PdfImageXObject retrieveImage(String src) { if (src == null) { return null; } if (src.contains("base64")) { try { String fixedSrc = src.replaceAll("\\s", ""); fixedSrc = fixedSrc.substring(fixedSrc.indexOf("base64") + 7); PdfImageXObject imageXObject = imageCache.getImage(fixedSrc); if (imageXObject == null) { imageXObject = new PdfImageXObject(ImageDataFactory.create(Base64.decode(fixedSrc))); imageCache.putImage(fixedSrc, imageXObject); } return imageXObject; } catch (Exception ignored) { } } try { URL url = uriResolver.resolveAgainstBaseUri(src); url = UrlUtil.getFinalURL(url); String imageResolvedSrc = url.toExternalForm(); PdfImageXObject imageXObject = imageCache.getImage(imageResolvedSrc); if (imageXObject == null) { imageXObject = new PdfImageXObject(ImageDataFactory.create(url)); imageCache.putImage(imageResolvedSrc, imageXObject); } return imageXObject; } catch (Exception e) { Logger logger = LoggerFactory.getLogger(ResourceResolver.class); logger.error(MessageFormatUtil.format(LogMessageConstant.UNABLE_TO_RETRIEVE_IMAGE_WITH_GIVEN_BASE_URI, uriResolver.getBaseUri(), src), e); return null; } } /** * Open an {@link InputStream} to a style sheet URI. * * @param uri the URI * @return the {@link InputStream} * @throws IOException Signals that an I/O exception has occurred. */ public InputStream retrieveStyleSheet(String uri) throws IOException { return uriResolver.resolveAgainstBaseUri(uri).openStream(); } /** * Retrieve a resource as a byte array from a source that * can either be a link to a file, or a base64 encoded {@link String}. * * @param src either link to file or base64 encoded stream. * @return byte[] on success, otherwise null. */ public byte[] retrieveStream(String src) { if (src.contains("base64")) { try { String fixedSrc = src.replaceAll("\\s", ""); fixedSrc = fixedSrc.substring(fixedSrc.indexOf("base64") + 7); return Base64.decode(fixedSrc); } catch (Exception ignored) { } } try { return StreamUtil.inputStreamToArray(uriResolver.resolveAgainstBaseUri(src).openStream()); } catch (Exception e) { Logger logger = LoggerFactory.getLogger(ResourceResolver.class); logger.error(MessageFormatUtil.format(LogMessageConstant.UNABLE_TO_RETRIEVE_STREAM_WITH_GIVEN_BASE_URI, uriResolver.getBaseUri(), src), e); return null; } } /** * Resolves a given URI against the base URI. * * @param uri the uri * @return the url * @throws MalformedURLException the malformed URL exception */ public URL resolveAgainstBaseUri(String uri) throws MalformedURLException { return uriResolver.resolveAgainstBaseUri(uri); } /** * Resets the simple image cache. */ public void resetCache() { imageCache.reset(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy