1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
--------------------------------------------------------------------------------
-- | Provides utilities to manipulate HTML pages
module Hakyll.Web.Html
( -- * Generic
withTags
, withTagList
, withTagListM
-- * Headers
, demoteHeaders
, demoteHeadersBy
-- * Url manipulation
, getUrls
, withUrls
, toUrl
, toSiteRoot
, isExternal
-- * Stripping/escaping
, stripTags
, escapeHtml
) where
--------------------------------------------------------------------------------
import Control.Monad (void)
import Control.Monad.Identity (Identity(runIdentity))
import Data.Char (digitToInt, intToDigit,
isDigit, toLower)
import Data.Either (fromRight)
import Data.List (isPrefixOf, intercalate)
import Data.Maybe (fromMaybe)
import qualified Data.Set as S
import System.FilePath (joinPath, splitPath,
takeDirectory)
import Text.Blaze.Html (toHtml)
import Text.Blaze.Html.Renderer.String (renderHtml)
import qualified Text.Parsec as P
import qualified Text.Parsec.Char as PC
import qualified Text.HTML.TagSoup as TS
import Network.URI (isUnreserved, escapeURIString)
--------------------------------------------------------------------------------
import Hakyll.Core.Util.String (removeWinPathSeparator)
--------------------------------------------------------------------------------
-- | Map over all tags in the document
withTags :: (TS.Tag String -> TS.Tag String) -> String -> String
withTags = withTagList . map
-- | Map over all tags (as list) in the document
withTagList :: ([TS.Tag String] -> [TS.Tag String]) -> String -> String
withTagList f = runIdentity . withTagListM (pure . f)
-- | Map over all tags (as list) in the document, in a monad
withTagListM :: Monad m => ([TS.Tag String] -> m [TS.Tag String]) -> String -> m String
withTagListM f = fmap renderTags' . f . parseTags'
{-# INLINE withTagListM #-}
--------------------------------------------------------------------------------
-- | Map every @h1@ to an @h2@, @h2@ to @h3@, etc.
demoteHeaders :: String -> String
demoteHeaders = demoteHeadersBy 1
--------------------------------------------------------------------------------
-- | Maps any @hN@ to an @hN+amount@ for any @amount > 0 && 1 <= N+amount <= 6@.
demoteHeadersBy :: Int -> String -> String
demoteHeadersBy amount
| amount < 1 = id
| otherwise = withTags $ \tag -> case tag of
TS.TagOpen t a -> TS.TagOpen (demote t) a
TS.TagClose t -> TS.TagClose (demote t)
t -> t
where
demote t@['h', n]
| isDigit n = ['h', intToDigit (min 6 $ digitToInt n + amount)]
| otherwise = t
demote t = t
--------------------------------------------------------------------------------
isUrlAttribute :: String -> Bool
isUrlAttribute = (`elem` ["src", "href", "data", "poster"])
--------------------------------------------------------------------------------
-- | Extract URLs from tags' attributes. Those would be the same URLs on which
-- `withUrls` would act.
getUrls :: [TS.Tag String] -> [String]
getUrls tags = [u | TS.TagOpen _ as <- tags, (k, v) <- as, u <- extractUrls k v]
where
extractUrls "srcset" value =
let srcset = fmap unSrcset $ P.parse srcsetParser "" value
in map srcsetImageCandidateUrl $ fromRight [] srcset
extractUrls key value
| isUrlAttribute key = [value]
| otherwise = []
--------------------------------------------------------------------------------
-- | Apply a function to each URL on a webpage
withUrls :: (String -> String) -> String -> String
withUrls f = withTags tag
where
tag (TS.TagOpen s a) = TS.TagOpen s $ map attr a
tag x = x
attr input@("srcset", v) =
case fmap unSrcset $ P.parse srcsetParser "" v of
Right srcset ->
let srcset' = map (\i -> i { srcsetImageCandidateUrl = f $ srcsetImageCandidateUrl i }) srcset
srcset'' = show $ Srcset srcset'
in ("srcset", srcset'')
Left _ -> input
attr (k, v) = (k, if isUrlAttribute k then f v else v)
--------------------------------------------------------------------------------
-- | Customized TagSoup renderer. The default TagSoup renderer escape CSS
-- within style tags, and doesn't properly minimize.
renderTags' :: [TS.Tag String] -> String
renderTags' = TS.renderTagsOptions TS.RenderOptions
{ TS.optRawTag = (`elem` ["script", "style"]) . map toLower
, TS.optMinimize = (`S.member` minimize) . map toLower
, TS.optEscape = id
}
where
-- A list of elements which must be minimized
minimize = S.fromList
[ "area", "br", "col", "embed", "hr", "img", "input", "meta", "link"
, "param"
]
--------------------------------------------------------------------------------
-- | Customized TagSoup parser: do not decode any entities.
parseTags' :: String -> [TS.Tag String]
parseTags' = TS.parseTagsOptions (TS.parseOptions :: TS.ParseOptions String)
{ TS.optEntityData = \(str, b) -> [TS.TagText $ "&" ++ str ++ [';' | b]]
, TS.optEntityAttrib = \(str, b) -> ("&" ++ str ++ [';' | b], [])
}
--------------------------------------------------------------------------------
-- | Convert a filepath to an URL starting from the site root
--
-- Example:
--
-- > toUrl "foo/bar.html"
--
-- Result:
--
-- > "/foo/bar.html"
--
-- This also sanitizes the URL, e.g. converting spaces into '%20'
toUrl :: FilePath -> String
toUrl url = case (removeWinPathSeparator url) of
('/' : xs) -> '/' : sanitize xs
xs -> '/' : sanitize xs
where
-- Everything but unreserved characters should be escaped as we are
-- sanitising the path therefore reserved characters which have a
-- meaning in URI does not appear. Special casing for `/`, because it has
-- a special meaning in FilePath as well as in URI.
sanitize = escapeURIString (\c -> c == '/' || isUnreserved c)
--------------------------------------------------------------------------------
-- | Get the relative url to the site root, for a given (absolute) url
toSiteRoot :: String -> String
toSiteRoot = removeWinPathSeparator . emptyException . joinPath
. map parent . filter relevant . splitPath . takeDirectory
where
parent = const ".."
emptyException [] = "."
emptyException x = x
relevant "." = False
relevant "/" = False
relevant "./" = False
relevant _ = True
--------------------------------------------------------------------------------
-- | Check if an URL links to an external HTTP(S) source
isExternal :: String -> Bool
isExternal url = any (flip isPrefixOf url) ["http://", "https://", "//"]
--------------------------------------------------------------------------------
-- | Strip all HTML tags from a string
--
-- Example:
--
-- > stripTags "<p>foo</p>"
--
-- Result:
--
-- > "foo"
--
-- This also works for incomplete tags
--
-- Example:
--
-- > stripTags "<p>foo</p"
--
-- Result:
--
-- > "foo"
stripTags :: String -> String
stripTags [] = []
stripTags ('<' : xs) = stripTags $ drop 1 $ dropWhile (/= '>') xs
stripTags (x : xs) = x : stripTags xs
--------------------------------------------------------------------------------
-- | HTML-escape a string
--
-- Example:
--
-- > escapeHtml "Me & Dean"
--
-- Result:
--
-- > "Me & Dean"
escapeHtml :: String -> String
escapeHtml = renderHtml . toHtml
--------------------------------------------------------------------------------
data Srcset = Srcset {
unSrcset :: [SrcsetImageCandidate]
}
--------------------------------------------------------------------------------
instance Show Srcset where
show set = intercalate ", " $ map show $ unSrcset set
--------------------------------------------------------------------------------
data SrcsetImageCandidate = SrcsetImageCandidate {
srcsetImageCandidateUrl :: String
, srcsetImageCandidateDescriptor :: Maybe String
}
--------------------------------------------------------------------------------
instance Show SrcsetImageCandidate where
show candidate =
let url = srcsetImageCandidateUrl candidate
in case srcsetImageCandidateDescriptor candidate of
Just desc -> concat [url, " ", desc]
Nothing -> url
--------------------------------------------------------------------------------
-- HTML spec: https://html.spec.whatwg.org/#srcset-attributes
srcsetParser :: P.Parsec String () Srcset
srcsetParser = do
result <- candidate `P.sepBy1` (PC.char ',')
P.eof
return $ Srcset result
where
candidate :: P.Parsec String () SrcsetImageCandidate
candidate = do
P.skipMany ascii_whitespace
u <- url
P.skipMany ascii_whitespace
desc <- P.optionMaybe $ P.choice $ fmap P.try [width_descriptor, px_density_descriptor]
P.skipMany ascii_whitespace
return $ SrcsetImageCandidate {
srcsetImageCandidateUrl = u
, srcsetImageCandidateDescriptor = desc
}
-- This is an over-simplification, but should be good enough for our purposes
url :: P.Parsec String () String
url = P.many1 $ PC.noneOf " ,"
ascii_whitespace :: P.Parsec String () ()
ascii_whitespace = void $ P.oneOf "\x09\x0A\x0C\x0D\x20"
width_descriptor :: P.Parsec String () String
width_descriptor = do
number <- P.many1 PC.digit
void $ PC.char 'w'
return $ concat [number, "w"]
px_density_descriptor :: P.Parsec String () String
px_density_descriptor = do
sign <- P.optionMaybe $ PC.char '-'
int <- P.many1 PC.digit
frac <- P.optionMaybe $ do
void $ PC.char '.'
frac <- P.many1 PC.digit
return $ concat [".", frac]
expon <- P.optionMaybe $ do
letter <- P.oneOf "eE"
e_sign <- P.optionMaybe $ PC.oneOf "-+"
number <- P.many1 PC.digit
return $ concat [[letter], mb $ fmap show e_sign, number]
void $ PC.char 'x'
return $ concat [mb $ fmap show sign, int, mb frac, mb expon, "x"]
mb :: Maybe String -> String
mb = fromMaybe ""
|