2011-11-19 00:20:00 -08:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
{-
|
2016-03-22 17:20:39 -07:00
|
|
|
Copyright (C) 2011-2016 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
|
2016-03-22 17:20:39 -07:00
|
|
|
Copyright : Copyright (C) 2011-2016 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
|
2017-02-23 15:00:00 +01:00
|
|
|
import Text.Pandoc.Shared (renderTags', trim)
|
2014-08-17 20:42:30 +04:00
|
|
|
import Text.Pandoc.MIME (MimeType)
|
2015-05-04 16:00:28 -07:00
|
|
|
import Text.Pandoc.UTF8 (toString)
|
2014-08-02 16:07:19 -07:00
|
|
|
import Text.Pandoc.Options (WriterOptions(..))
|
2015-02-13 21:37:43 -08:00
|
|
|
import Data.List (isPrefixOf)
|
2015-10-14 09:09:10 -07:00
|
|
|
import Control.Applicative ((<|>))
|
2015-06-28 11:51:35 -07:00
|
|
|
import Text.Parsec (runParserT, ParsecT)
|
|
|
|
import qualified Text.Parsec as P
|
2017-02-23 15:00:00 +01:00
|
|
|
import Control.Monad.Except (throwError)
|
2015-06-28 11:51:35 -07:00
|
|
|
import Control.Monad.Trans (lift)
|
2017-02-23 15:00:00 +01:00
|
|
|
import Text.Pandoc.Class (fetchItem, PandocMonad(..), report)
|
|
|
|
import Text.Pandoc.Error
|
|
|
|
import Text.Pandoc.Logging
|
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
|
|
|
|
|
2015-02-13 21:37:43 -08:00
|
|
|
makeDataURI :: String -> ByteString -> String
|
|
|
|
makeDataURI mime raw =
|
|
|
|
if textual
|
|
|
|
then "data:" ++ mime' ++ "," ++ escapeURIString isOk (toString raw)
|
|
|
|
else "data:" ++ mime' ++ ";base64," ++ toString (encode raw)
|
|
|
|
where textual = "text/" `Data.List.isPrefixOf` mime
|
|
|
|
mime' = if textual && ';' `notElem` mime
|
|
|
|
then mime ++ ";charset=utf-8"
|
|
|
|
else mime -- mime type already has charset
|
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
convertTag :: PandocMonad m => Maybe String -> Tag String -> m (Tag String)
|
|
|
|
convertTag 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) =
|
2017-02-20 22:21:20 +01:00
|
|
|
if x == "src" || x == "data-src" || x == "href" || x == "poster"
|
2014-03-05 09:10:09 -08:00
|
|
|
then do
|
2017-02-23 15:00:00 +01:00
|
|
|
enc <- getDataURI sourceURL (fromAttrib "type" t) y
|
2014-03-05 09:10:09 -08:00
|
|
|
return (x, enc)
|
|
|
|
else return (x,y)
|
2017-02-23 15:00:00 +01:00
|
|
|
convertTag 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
|
2017-02-23 15:00:00 +01:00
|
|
|
enc <- getDataURI sourceURL (fromAttrib "type" t) src
|
2012-07-26 22:32:53 -07:00
|
|
|
return $ TagOpen "script" (("src",enc) : [(x,y) | (x,y) <- as, x /= "src"])
|
2017-02-23 15:00:00 +01:00
|
|
|
convertTag 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
|
2017-02-23 15:00:00 +01:00
|
|
|
enc <- getDataURI sourceURL (fromAttrib "type" t) src
|
2012-07-26 22:32:53 -07:00
|
|
|
return $ TagOpen "link" (("href",enc) : [(x,y) | (x,y) <- as, x /= "href"])
|
2017-02-23 15:00:00 +01:00
|
|
|
convertTag _ t = return t
|
2011-11-19 00:20:00 -08:00
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
cssURLs :: PandocMonad m
|
|
|
|
=> Maybe String -> FilePath -> ByteString -> m ByteString
|
|
|
|
cssURLs sourceURL d orig = do
|
|
|
|
res <- runParserT (parseCSSUrls sourceURL d) () "css" orig
|
2015-06-28 11:51:35 -07:00
|
|
|
case res of
|
2017-02-23 15:00:00 +01:00
|
|
|
Left e -> do
|
|
|
|
report $ CouldNotParseCSS (show e)
|
|
|
|
return orig
|
2015-06-28 11:51:35 -07:00
|
|
|
Right bs -> return bs
|
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
parseCSSUrls :: PandocMonad m
|
|
|
|
=> Maybe String -> FilePath -> ParsecT ByteString () m ByteString
|
|
|
|
parseCSSUrls sourceURL d = B.concat <$> P.many
|
|
|
|
(pCSSWhite <|> pCSSComment <|> pCSSUrl sourceURL d <|> pCSSOther)
|
2015-06-28 11:51:35 -07:00
|
|
|
|
2015-07-15 08:15:08 -07:00
|
|
|
-- Note: some whitespace in CSS is significant, so we can't collapse it!
|
2017-02-23 15:00:00 +01:00
|
|
|
pCSSWhite :: PandocMonad m => ParsecT ByteString () m ByteString
|
2015-07-15 08:15:08 -07:00
|
|
|
pCSSWhite = B.singleton <$> P.space <* P.spaces
|
2015-06-28 11:51:35 -07:00
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
pCSSComment :: PandocMonad m => ParsecT ByteString () m ByteString
|
2015-06-28 11:51:35 -07:00
|
|
|
pCSSComment = P.try $ do
|
|
|
|
P.string "/*"
|
|
|
|
P.manyTill P.anyChar (P.try (P.string "*/"))
|
|
|
|
return B.empty
|
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
pCSSOther :: PandocMonad m => ParsecT ByteString () m ByteString
|
2015-06-28 11:51:35 -07:00
|
|
|
pCSSOther = do
|
|
|
|
(B.pack <$> P.many1 (P.noneOf "u/ \n\r\t")) <|>
|
|
|
|
(B.singleton <$> P.char 'u') <|>
|
|
|
|
(B.singleton <$> P.char '/')
|
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
pCSSUrl :: PandocMonad m
|
|
|
|
=> Maybe String -> FilePath -> ParsecT ByteString () m ByteString
|
|
|
|
pCSSUrl sourceURL d = P.try $ do
|
2015-06-28 11:51:35 -07:00
|
|
|
P.string "url("
|
|
|
|
P.spaces
|
|
|
|
quote <- P.option Nothing (Just <$> P.oneOf "\"'")
|
|
|
|
url <- P.manyTill P.anyChar (maybe (P.lookAhead (P.char ')')) P.char quote)
|
|
|
|
P.spaces
|
|
|
|
P.char ')'
|
|
|
|
let fallback = B.pack ("url(" ++ maybe "" (:[]) quote ++ trim url ++
|
|
|
|
maybe "" (:[]) quote ++ ")")
|
|
|
|
case trim url of
|
|
|
|
'#':_ -> return fallback
|
|
|
|
'd':'a':'t':'a':':':_ -> return fallback
|
|
|
|
u -> do let url' = if isURI u then u else d </> u
|
2017-02-23 15:00:00 +01:00
|
|
|
enc <- lift $ getDataURI sourceURL "" url'
|
2015-10-28 10:02:55 -07:00
|
|
|
return (B.pack $ "url(" ++ enc ++ ")")
|
2015-06-28 11:51:35 -07:00
|
|
|
|
2015-05-04 16:00:28 -07:00
|
|
|
|
2017-02-23 15:00:00 +01:00
|
|
|
getDataURI :: PandocMonad m => Maybe String -> MimeType -> String -> m String
|
|
|
|
getDataURI _ _ src@('d':'a':'t':'a':':':_) = return src -- already data: uri
|
|
|
|
getDataURI sourceURL mimetype src = do
|
2011-11-19 19:30:27 -08:00
|
|
|
let ext = map toLower $ takeExtension src
|
2017-02-23 15:00:00 +01:00
|
|
|
(raw, respMime) <- fetchItem sourceURL src
|
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
|
2017-02-23 15:00:00 +01:00
|
|
|
mime <- case (mimetype, respMime) of
|
|
|
|
("",Nothing) -> throwError $ PandocSomeError
|
2011-12-04 15:58:31 -08:00
|
|
|
$ "Could not determine mime type for `" ++ src ++ "'"
|
2017-02-23 15:00:00 +01:00
|
|
|
(x, Nothing) -> return x
|
|
|
|
(_, Just x ) -> return 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"
|
2017-02-23 15:00:00 +01:00
|
|
|
then cssURLs cssSourceURL (takeDirectory src) raw'
|
2011-12-04 15:58:31 -08:00
|
|
|
else return raw'
|
2015-05-04 16:00:28 -07:00
|
|
|
return $ makeDataURI mime result
|
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.
|
2017-02-23 15:00:00 +01:00
|
|
|
makeSelfContained :: PandocMonad m => WriterOptions -> String -> m String
|
|
|
|
makeSelfContained opts inp = do
|
2011-11-19 00:20:00 -08:00
|
|
|
let tags = parseTags inp
|
2017-02-23 15:00:00 +01:00
|
|
|
out' <- mapM (convertTag (writerSourceURL opts)) tags
|
2012-02-17 10:44:46 -08:00
|
|
|
return $ renderTags' out'
|