2017-04-01 14:58:23 -04:00
|
|
|
(ns clj-htmltopdf.core
|
|
|
|
(:require
|
|
|
|
[clojure.java.io :as io]
|
2017-04-02 12:07:00 -04:00
|
|
|
[hiccup.page :as h]
|
2017-08-17 19:46:21 -04:00
|
|
|
[clj-htmltopdf.objects :as obj]
|
2017-08-16 18:46:31 -04:00
|
|
|
[clj-htmltopdf.options :as o]
|
|
|
|
[clj-htmltopdf.watermark :as w])
|
2017-04-01 14:58:23 -04:00
|
|
|
(:import
|
2017-05-04 21:02:31 -04:00
|
|
|
[java.io InputStream OutputStream PipedInputStream PipedOutputStream]
|
2017-04-01 14:58:23 -04:00
|
|
|
[com.openhtmltopdf DOMBuilder]
|
|
|
|
[com.openhtmltopdf.pdfboxout PdfRendererBuilder]
|
|
|
|
[com.openhtmltopdf.util XRLog]
|
2017-04-02 12:07:00 -04:00
|
|
|
[org.jsoup Jsoup]
|
2017-04-02 12:52:01 -04:00
|
|
|
[org.jsoup.nodes Document]))
|
2017-04-01 14:58:23 -04:00
|
|
|
|
2017-04-02 12:52:01 -04:00
|
|
|
(defn- read-html-string
|
|
|
|
^String [in]
|
2017-04-02 12:24:58 -04:00
|
|
|
(cond
|
|
|
|
(string? in) in
|
|
|
|
(sequential? in) (h/html5 {} in)
|
|
|
|
:else (with-open [r (io/reader in)]
|
|
|
|
(slurp r))))
|
2017-04-01 14:58:23 -04:00
|
|
|
|
|
|
|
(defn- ->output-stream
|
2017-04-02 12:52:01 -04:00
|
|
|
^OutputStream [out]
|
2017-04-02 12:24:58 -04:00
|
|
|
(if (instance? OutputStream out)
|
|
|
|
out
|
|
|
|
(io/output-stream out)))
|
2017-04-01 14:58:23 -04:00
|
|
|
|
2017-04-02 12:52:01 -04:00
|
|
|
(defn configure-logging!
|
|
|
|
[options]
|
|
|
|
(if (:logging? options)
|
|
|
|
(do
|
|
|
|
(if-let [logger (:logger options)]
|
|
|
|
(XRLog/setLoggerImpl logger))
|
|
|
|
(XRLog/setLoggingEnabled true))
|
|
|
|
(XRLog/setLoggingEnabled false)))
|
|
|
|
|
|
|
|
(defn prepare-html
|
|
|
|
[in options]
|
|
|
|
(let [html (read-html-string in)
|
|
|
|
html-doc (Jsoup/parse html)]
|
|
|
|
(o/inject-options-into-html! html-doc options)
|
2017-04-02 13:20:24 -04:00
|
|
|
(if (get-in options [:debug :display-html?])
|
|
|
|
(println (str html-doc)))
|
2017-04-02 12:52:01 -04:00
|
|
|
html-doc))
|
|
|
|
|
|
|
|
(defn write-pdf!
|
2017-08-17 20:05:01 -04:00
|
|
|
[^Document html-doc options]
|
2017-08-17 19:46:21 -04:00
|
|
|
(let [builder (PdfRendererBuilder.)
|
|
|
|
base-uri (o/->base-uri options)]
|
|
|
|
(obj/set-object-drawer-factory builder options)
|
2017-04-02 12:52:01 -04:00
|
|
|
(.withW3cDocument builder (DOMBuilder/jsoup2DOM html-doc) base-uri)
|
2017-05-04 21:02:31 -04:00
|
|
|
(let [piped-in (PipedInputStream.)
|
2017-08-17 20:05:01 -04:00
|
|
|
piped-out (PipedOutputStream. piped-in)
|
|
|
|
renderer (future
|
|
|
|
(try
|
|
|
|
(with-open [os piped-out]
|
|
|
|
(.toStream builder os)
|
|
|
|
(.run builder))
|
|
|
|
(catch Exception ex
|
|
|
|
(throw (Exception. "Exception while rendering PDF" ex)))))]
|
|
|
|
{:pdf piped-in
|
|
|
|
:renderer renderer})))
|
2017-05-04 21:02:31 -04:00
|
|
|
|
2017-04-01 14:58:23 -04:00
|
|
|
(defn ->pdf
|
|
|
|
[in out & [options]]
|
2017-04-02 13:20:24 -04:00
|
|
|
(let [options (o/get-final-options options)
|
2017-04-02 12:52:01 -04:00
|
|
|
html-doc (prepare-html in options)]
|
|
|
|
(configure-logging! options)
|
2017-08-17 20:05:01 -04:00
|
|
|
(let [{:keys [pdf renderer]} (write-pdf! html-doc options)
|
|
|
|
out (->output-stream out)
|
|
|
|
result (if (:watermark options)
|
|
|
|
(w/write-watermark! pdf out options)
|
|
|
|
(with-open [os out]
|
|
|
|
(io/copy pdf os)
|
|
|
|
os))]
|
|
|
|
; this is a little weird, but because of the whole piped stream thing in write-pdf!, we need to render the
|
|
|
|
; PDF in a future. if something throws an exception during rendering, it would otherwise get eaten silently by
|
|
|
|
; the future... except if we deref the future! thus the explicit call to deref it here
|
|
|
|
(deref renderer)
|
|
|
|
result)))
|
|
|
|
|