module Text.Pandoc.CrossRef.Util.Meta where
import Text.Pandoc.CrossRef.Util.Gap
import Text.Pandoc.CrossRef.Util.Util
import Text.Pandoc.Shared (stringify)
import Text.Pandoc.Definition
import Data.Maybe (fromMaybe)
import Data.Default
import Text.Pandoc.Walk
getMetaList :: (Default a) => (MetaValue -> Maybe a) -> String -> Meta -> Int -> a
getMetaList f name meta i = fromMaybe def $ lookupMeta name meta >>= getList i >>= f
getMetaBool :: String -> Meta -> Bool
getMetaBool name meta = fromMaybe False $ lookupMeta name meta >>= toBool
getMetaInlines :: String -> Meta -> [Inline]
getMetaInlines name meta = fromMaybe [] $ lookupMeta name meta >>= toInlines
getMetaBlock :: String -> Meta -> [Block]
getMetaBlock name meta = fromMaybe [] $ lookupMeta name meta >>= toBlocks
getMetaString :: String -> Meta -> String
getMetaString name meta = fromMaybe [] $ lookupMeta name meta >>= toString
toInlines :: MetaValue -> Maybe [Inline]
toInlines (MetaString s) =
return $ getInlines $ readMarkdown def s
where getInlines (Pandoc _ bs) = concatMap getInline bs
getInline (Plain ils) = ils
getInline (Para ils) = ils
getInline _ = []
toInlines (MetaInlines s) = return s
toInlines _ = Nothing
toBool :: MetaValue -> Maybe Bool
toBool (MetaBool b) = return b
toBool _ = Nothing
toBlocks :: MetaValue -> Maybe [Block]
toBlocks (MetaBlocks bs) = return bs
toBlocks (MetaInlines ils) = return [Plain ils]
toBlocks (MetaString s) =
return $ getBlocks $ readMarkdown def s
where getBlocks (Pandoc _ bs) = bs
toBlocks _ = Nothing
toString :: MetaValue -> Maybe String
toString (MetaString s) = Just s
toString (MetaBlocks b) = Just $ stringify b
toString (MetaInlines i) = Just $ stringify i
toString _ = Nothing
getList :: Int -> MetaValue -> Maybe MetaValue
getList i (MetaList l) = l !!? i
where
list !!? index | index >= 0 && index < length list = Just $ list !! index
| not $ null list = Just $ last list
| otherwise = Nothing
getList _ x = Just x
tryCapitalizeM :: (Functor m, Monad m, Walkable Inline a, Default a, Eq a) =>
(String -> m a) -> String -> Bool -> m a
tryCapitalizeM f varname capitalize
| capitalize = do
res <- f (capitalizeFirst varname)
case res of
xs | xs == def -> f varname >>= walkM capStrFst
| otherwise -> return xs
| otherwise = f varname
where
capStrFst (Str s) = return $ Str $ capitalizeFirst s
capStrFst x = return x