2011-11-19 00:20:00 -08:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
{-
|
2014-05-08 21:50:20 +02:00
|
|
|
Copyright (C) 2011-2014 John MacFarlane <jgm@berkeley.edu>
|
2011-11-19 00:20:00 -08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
-}
|
|
|
|
|
|
|
|
{- |
|
2011-11-21 15:09:42 -08:00
|
|
|
Module : Text.Pandoc.SelfContained
|
2014-05-08 21:50:20 +02:00
|
|
|
Copyright : Copyright (C) 2011-2014 John MacFarlane
|
2011-11-19 00:20:00 -08:00
|
|
|
License : GNU GPL, version 2 or above
|
|
|
|
|
|
|
|
Maintainer : John MacFarlane <jgm@berkeley.edu>
|
|
|
|
Stability : alpha
|
|
|
|
Portability : portable
|
|
|
|
|
|
|
|
Functions for converting an HTML file into one that can be viewed
|
|
|
|
offline, by incorporating linked images, CSS, and scripts into
|
|
|
|
the HTML using data URIs.
|
|
|
|
-}
|
2011-11-21 15:09:42 -08:00
|
|
|
module Text.Pandoc.SelfContained ( makeSelfContained ) where
|
2011-11-19 00:20:00 -08:00
|
|
|
import Text.HTML.TagSoup
|
2014-08-02 16:33:06 -07:00
|
|
|
import Network.URI (isURI, escapeURIString, URI(..), parseURI)
|
2011-11-19 00:20:00 -08:00
|
|
|
import Data.ByteString.Base64
|
|
|
|
import qualified Data.ByteString.Char8 as B
|
|
|
|
import Data.ByteString (ByteString)
|
2014-08-02 16:07:19 -07:00
|
|
|
import System.FilePath (takeExtension, takeDirectory, (</>))
|
2011-11-19 00:20:00 -08:00
|
|
|
import Data.Char (toLower, isAscii, isAlphaNum)
|
|
|
|
import Codec.Compression.GZip as Gzip
|
|
|
|
import qualified Data.ByteString.Lazy as L
|
2014-08-02 16:07:19 -07:00
|
|
|
import Text.Pandoc.Shared (renderTags', err, fetchItem')
|
|
|
|
import Text.Pandoc.MediaBag (MediaBag)
|
2014-08-17 20:42:30 +04:00
|
|
|
import Text.Pandoc.MIME (MimeType)
|
2012-09-25 19:54:21 -07:00
|
|
|
import Text.Pandoc.UTF8 (toString, fromString)
|
2014-08-02 16:07:19 -07:00
|
|
|
import Text.Pandoc.Options (WriterOptions(..))
|
2011-11-19 00:20:00 -08:00
|
|
|
|
2011-11-20 12:04:47 -08:00
|
|
|
isOk :: Char -> Bool
|
2011-11-19 00:20:00 -08:00
|
|
|
isOk c = isAscii c && isAlphaNum c
|
|
|
|
|
2014-08-02 16:07:19 -07:00
|
|
|
convertTag :: MediaBag -> Maybe String -> Tag String -> IO (Tag String)
|
|
|
|
convertTag media sourceURL t@(TagOpen tagname as)
|
2014-10-04 11:37:27 -07:00
|
|
|
| tagname `elem`
|
|
|
|
["img", "embed", "video", "input", "audio", "source", "track"] = do
|
2014-03-05 09:10:09 -08:00
|
|
|
as' <- mapM processAttribute as
|
|
|
|
return $ TagOpen tagname as'
|
|
|
|
where processAttribute (x,y) =
|
|
|
|
if x == "src" || x == "href" || x == "poster"
|
|
|
|
then do
|
2014-08-02 16:07:19 -07:00
|
|
|
(raw, mime) <- getRaw media sourceURL (fromAttrib "type" t) y
|
2014-03-05 09:10:09 -08:00
|
|
|
let enc = "data:" ++ mime ++ ";base64," ++ toString (encode raw)
|
|
|
|
return (x, enc)
|
|
|
|
else return (x,y)
|
2014-08-02 16:07:19 -07:00
|
|
|
convertTag media sourceURL t@(TagOpen "script" as) =
|
2011-11-19 00:20:00 -08:00
|
|
|
case fromAttrib "src" t of
|
2011-11-19 19:30:27 -08:00
|
|
|
[] -> return t
|
|
|
|
src -> do
|
2014-08-02 16:07:19 -07:00
|
|
|
(raw, mime) <- getRaw media sourceURL (fromAttrib "type" t) src
|
2014-12-31 14:51:23 -08:00
|
|
|
let mime' = if ';' `elem` mime
|
|
|
|
then mime -- mime type already has charset
|
|
|
|
else mime ++ ";charset=utf-8"
|
|
|
|
let enc = "data:" ++ mime' ++ "," ++ escapeURIString isOk (toString raw)
|
2012-07-26 22:32:53 -07:00
|
|
|
return $ TagOpen "script" (("src",enc) : [(x,y) | (x,y) <- as, x /= "src"])
|
2014-08-02 16:07:19 -07:00
|
|
|
convertTag media sourceURL t@(TagOpen "link" as) =
|
2011-11-19 00:20:00 -08:00
|
|
|
case fromAttrib "href" t of
|
2011-11-19 19:30:27 -08:00
|
|
|
[] -> return t
|
|
|
|
src -> do
|
2014-08-02 16:07:19 -07:00
|
|
|
(raw, mime) <- getRaw media sourceURL (fromAttrib "type" t) src
|
2011-11-19 19:30:27 -08:00
|
|
|
let enc = "data:" ++ mime ++ "," ++ escapeURIString isOk (toString raw)
|
2012-07-26 22:32:53 -07:00
|
|
|
return $ TagOpen "link" (("href",enc) : [(x,y) | (x,y) <- as, x /= "href"])
|
2014-07-30 15:26:40 -07:00
|
|
|
convertTag _ _ t = return t
|
2011-11-19 00:20:00 -08:00
|
|
|
|
2013-04-10 10:22:00 -07:00
|
|
|
-- NOTE: This is really crude, it doesn't respect CSS comments.
|
2014-08-02 16:07:19 -07:00
|
|
|
cssURLs :: MediaBag -> Maybe String -> FilePath -> ByteString
|
2014-07-30 15:26:40 -07:00
|
|
|
-> IO ByteString
|
2014-08-02 16:07:19 -07:00
|
|
|
cssURLs media sourceURL d orig =
|
2011-12-04 12:19:35 -08:00
|
|
|
case B.breakSubstring "url(" orig of
|
2011-11-20 12:04:47 -08:00
|
|
|
(x,y) | B.null y -> return orig
|
|
|
|
| otherwise -> do
|
2011-12-04 12:19:35 -08:00
|
|
|
let (u,v) = B.breakSubstring ")" $ B.drop 4 y
|
|
|
|
let url = toString
|
|
|
|
$ case B.take 1 u of
|
|
|
|
"\"" -> B.takeWhile (/='"') $ B.drop 1 u
|
2012-06-28 18:35:21 -07:00
|
|
|
"'" -> B.takeWhile (/='\'') $ B.drop 1 u
|
2011-12-04 12:19:35 -08:00
|
|
|
_ -> u
|
2013-10-16 09:48:11 -07:00
|
|
|
let url' = if isURI url
|
2012-06-28 18:35:21 -07:00
|
|
|
then url
|
|
|
|
else d </> url
|
2014-08-02 16:07:19 -07:00
|
|
|
(raw, mime) <- getRaw media sourceURL "" url'
|
|
|
|
rest <- cssURLs media sourceURL d v
|
2011-12-04 12:19:35 -08:00
|
|
|
let enc = "data:" `B.append` fromString mime `B.append`
|
|
|
|
";base64," `B.append` (encode raw)
|
|
|
|
return $ x `B.append` "url(" `B.append` enc `B.append` rest
|
2011-11-20 12:04:47 -08:00
|
|
|
|
2014-08-17 20:42:30 +04:00
|
|
|
getRaw :: MediaBag -> Maybe String -> MimeType -> String
|
|
|
|
-> IO (ByteString, MimeType)
|
2014-08-02 16:07:19 -07:00
|
|
|
getRaw media sourceURL mimetype src = do
|
2011-11-19 19:30:27 -08:00
|
|
|
let ext = map toLower $ takeExtension src
|
2014-08-02 16:07:19 -07:00
|
|
|
fetchResult <- fetchItem' media sourceURL src
|
|
|
|
(raw, respMime) <- case fetchResult of
|
|
|
|
Left msg -> err 67 $ "Could not fetch " ++ src ++
|
|
|
|
"\n" ++ show msg
|
|
|
|
Right x -> return x
|
2011-12-04 15:58:31 -08:00
|
|
|
let raw' = if ext == ".gz"
|
|
|
|
then B.concat $ L.toChunks $ Gzip.decompress $ L.fromChunks
|
|
|
|
$ [raw]
|
|
|
|
else raw
|
|
|
|
let mime = case (mimetype, respMime) of
|
|
|
|
("",Nothing) -> error
|
|
|
|
$ "Could not determine mime type for `" ++ src ++ "'"
|
|
|
|
(x, Nothing) -> x
|
|
|
|
(_, Just x ) -> x
|
2014-08-02 16:33:06 -07:00
|
|
|
let cssSourceURL = case parseURI src of
|
|
|
|
Just u
|
|
|
|
| uriScheme u `elem` ["http:","https:"] ->
|
|
|
|
Just $ show u{ uriPath = "",
|
|
|
|
uriQuery = "",
|
|
|
|
uriFragment = "" }
|
|
|
|
_ -> Nothing
|
2011-11-20 12:04:47 -08:00
|
|
|
result <- if mime == "text/css"
|
2014-08-02 16:33:06 -07:00
|
|
|
then cssURLs media cssSourceURL (takeDirectory src) raw'
|
2011-12-04 15:58:31 -08:00
|
|
|
else return raw'
|
2011-11-20 12:04:47 -08:00
|
|
|
return (result, mime)
|
2011-11-19 00:20:00 -08:00
|
|
|
|
2011-11-21 15:09:42 -08:00
|
|
|
-- | Convert HTML into self-contained HTML, incorporating images,
|
2014-08-02 16:07:19 -07:00
|
|
|
-- scripts, and CSS using data: URIs.
|
|
|
|
makeSelfContained :: WriterOptions -> String -> IO String
|
|
|
|
makeSelfContained opts inp = do
|
2011-11-19 00:20:00 -08:00
|
|
|
let tags = parseTags inp
|
2014-08-02 16:07:19 -07:00
|
|
|
out' <- mapM (convertTag (writerMediaBag opts) (writerSourceURL opts)) tags
|
2012-02-17 10:44:46 -08:00
|
|
|
return $ renderTags' out'
|