atom-conduit-0.8.0.0: src/Text/Atom/Conduit/Parse.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedLists #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE TypeFamilies #-}
-- | Streaming parsers for the Atom 1.0 standard.
module Text.Atom.Conduit.Parse
( -- * Top-level
atomFeed
-- * Elements
, atomEntry
, atomContent
, atomCategory
, atomLink
, atomGenerator
, atomSource
-- * Constructs
, atomPerson
, atomText
) where
-- {{{ Imports
import Blaze.ByteString.Builder (toByteString)
import Conduit
import Control.Applicative hiding (many)
import Control.Exception.Safe as Exception
import Control.Monad
import Control.Monad.Fix
import Data.Maybe
import Data.Monoid
import Data.Text as Text (Text, unpack)
import Data.Time.Clock
import Data.Time.LocalTime
import Data.Time.RFC3339
import Data.XML.Types as XML
import Lens.Micro
import Lens.Micro.TH
import Refined
import Text.Atom.Types
import Text.XML.Stream.Parse
import qualified Text.XML.Stream.Render as Render
import qualified Text.XML.Unresolved as Unresolved
import URI.ByteString
-- }}}
-- {{{ Util
data AtomException = InvalidDate Text
| InvalidURI URIParseError Text
| MissingElement Text
deriving instance Eq AtomException
deriving instance Show AtomException
instance Exception AtomException where
displayException (InvalidDate t) = "Invalid date: " <> unpack t
displayException (InvalidURI e t) = "Invalid URI reference: " <> show e <> " in " <> unpack t
displayException (MissingElement t) = "Missing element: " <> unpack t
asURIReference :: MonadThrow m => Text -> m AtomURI
asURIReference t = case (parseURI' t, parseRelativeRef' t) of
(Right u, _) -> return $ AtomURI u
(_, Right u) -> return $ AtomURI u
(Left _, Left e) -> throw $ InvalidURI e t
where parseURI' = parseURI laxURIParserOptions . encodeUtf8
parseRelativeRef' = parseRelativeRef laxURIParserOptions . encodeUtf8
liftMaybe :: (MonadThrow m, Exception e) => e -> Maybe a -> m a
liftMaybe e = maybe (throw e) return
-- | Like 'tagName' but ignores the namespace.
tagName' :: MonadThrow m => Text -> AttrParser a -> (a -> ConduitM Event o m b) -> ConduitM Event o m (Maybe b)
tagName' t = tag' (matching $ \n -> nameLocalName n == t && nameNamespace n == Just "http://www.w3.org/2005/Atom")
-- | Tag which content is a date-time that follows RFC 3339 format.
tagDate :: MonadThrow m => Text -> ConduitM Event o m (Maybe UTCTime)
tagDate name = tagIgnoreAttrs' name $ do
text <- content
zonedTimeToUTC <$> liftMaybe (InvalidDate text) (parseTimeRFC3339 text)
-- | Like 'tagName'' but ignores all attributes.
tagIgnoreAttrs' :: MonadThrow m => Text -> ConduitM Event o m a -> ConduitM Event o m (Maybe a)
tagIgnoreAttrs' name handler = tagName' name ignoreAttrs $ const handler
xhtmlContent :: MonadThrow m => ConduitM Event o m XML.Element
xhtmlContent = force "element" $ many_ takeAnyTreeContent .| mapC (Nothing, ) .| Unresolved.elementFromEvents
projectC :: Monad m => Traversal' a b -> ConduitT a b m ()
projectC prism = fix $ \recurse -> do
item <- await
case (item, item ^? (_Just . prism)) of
(_, Just a) -> yield a >> recurse
(Just _, _) -> recurse
_ -> return ()
headRequiredC :: MonadThrow m => Text -> ConduitT a o m a
headRequiredC e = liftMaybe (MissingElement e) =<< headC
atomId :: MonadThrow m => ConduitM Event o m (Maybe Text)
atomId = tagIgnoreAttrs' "id" content
atomIcon, atomLogo :: MonadThrow m => ConduitM Event o m (Maybe AtomURI)
atomIcon = tagIgnoreAttrs' "icon" $ content >>= asURIReference
atomLogo = tagIgnoreAttrs' "logo" $ content >>= asURIReference
-- }}}
data PersonPiece = PersonName { __personName :: Refined (Not Null) Text }
| PersonEmail { __personEmail :: Text }
| PersonUri { __personUri :: AtomURI }
makeLenses ''PersonPiece
-- | Parse an Atom person construct.
-- Example:
--
-- > <author>
-- > <name>John Doe</name>
-- > <email>JohnDoe@example.com</email>
-- > <uri>http://example.com/~johndoe</uri>
-- > </author>
atomPerson :: MonadThrow m => Text -> ConduitM Event o m (Maybe AtomPerson)
atomPerson name = tagIgnoreAttrs' name $ (manyYield' (choose piece) .| parser) <* many ignoreAnyTreeContent where
parser = getZipConduit $ AtomPerson
<$> ZipConduit (projectC _personName .| headRequiredC "Missing or invalid <name> element")
<*> ZipConduit (projectC _personEmail .| headDefC "")
<*> ZipConduit (projectC _personUri .| headC)
piece = [ fmap PersonName <$> tagIgnoreAttrs' "name" (content >>= refineThrow)
, fmap PersonEmail <$> tagIgnoreAttrs' "email" content
, fmap PersonUri <$> tagIgnoreAttrs' "uri" (content >>= asURIReference)
]
-- | Parse an @atom:category@ element.
-- Example:
--
-- > <category term="sports"/>
atomCategory :: MonadThrow m => ConduitM Event o m (Maybe AtomCategory)
atomCategory = tagName' "category" categoryAttrs $ \(t, s, l) -> do
term <- refineThrow t
return $ AtomCategory term s l
where categoryAttrs = (,,) <$> requireAttr "term"
<*> (requireAttr "scheme" <|> pure mempty)
<*> (requireAttr "label" <|> pure mempty)
<* ignoreAttrs
-- | Parse an @atom:content@ element.
atomContent :: MonadThrow m => ConduitM Event o m (Maybe AtomContent)
atomContent = tagName' "content" contentAttrs handler where
contentAttrs = (,) <$> optional (requireAttr "type") <*> optional (requireAttr "src" >>= asURIReference) <* ignoreAttrs
handler (Just "xhtml", _) = AtomContentInlineXHTML <$> xhtmlContent
handler (ctype, Just uri) = return $ AtomContentOutOfLine (fromMaybe mempty ctype) uri
handler (Just "html", _) = AtomContentInlineText TypeHTML <$> content
handler (Nothing, _) = AtomContentInlineText TypeText <$> content
handler (Just ctype, _) = AtomContentInlineOther ctype <$> content
-- | Parse an @atom:link@ element.
-- Examples:
--
-- > <link rel="self" href="/feed" />
--
-- > <link rel="alternate" href="/blog/1234"/>
atomLink :: MonadThrow m => ConduitM Event o m (Maybe AtomLink)
atomLink = tagName' "link" linkAttrs $ \(href, rel, ltype, lang, title, length') ->
return $ AtomLink href rel ltype lang title length'
where linkAttrs = (,,,,,) <$> (requireAttr "href" >>= asURIReference)
<*> (requireAttr "rel" <|> pure mempty)
<*> (requireAttr "type" <|> pure mempty)
<*> (requireAttr "hreflang" <|> pure mempty)
<*> (requireAttr "title" <|> pure mempty)
<*> (requireAttr "length" <|> pure mempty)
<* ignoreAttrs
-- | Parse an Atom text construct.
-- Examples:
--
-- > <title type="text">AT&T bought by SBC!</title>
--
-- > <title type="html">
-- > AT&amp;T bought <b>by SBC</b>!
-- > </title>
--
-- > <title type="xhtml">
-- > <div xmlns="http://www.w3.org/1999/xhtml">
-- > AT&T bought <b>by SBC</b>!
-- > </div>
-- > </title>
atomText :: MonadThrow m => Text -> ConduitM Event o m (Maybe AtomText)
atomText name = tagName' name (optional (requireAttr "type") <* ignoreAttrs) handler
where handler (Just "xhtml") = AtomXHTMLText <$> xhtmlContent
handler (Just "html") = AtomPlainText TypeHTML <$> content
handler _ = AtomPlainText TypeText <$> content
-- | Parse an @atom:generator@ element.
-- Example:
--
-- > <generator uri="/myblog.php" version="1.0">
-- > Example Toolkit
-- > </generator>
atomGenerator :: MonadThrow m => ConduitM Event o m (Maybe AtomGenerator)
atomGenerator = tagName' "generator" generatorAttrs $ \(uri, version) -> AtomGenerator uri version <$> (refineThrow =<< content)
where generatorAttrs = (,) <$> optional (requireAttr "uri" >>= asURIReference) <*> (requireAttr "version" <|> pure mempty) <* ignoreAttrs
data SourcePiece = SourceAuthor { __sourceAuthor :: AtomPerson }
| SourceCategory { __sourceCategory :: AtomCategory }
| SourceContributor { __sourceContributor :: AtomPerson }
| SourceGenerator { __sourceGenerator :: AtomGenerator }
| SourceIcon { __sourceIcon :: AtomURI }
| SourceId { __sourceId :: Text }
| SourceLink { __sourceLink :: AtomLink }
| SourceLogo { __sourceLogo :: AtomURI }
| SourceRights { __sourceRights :: AtomText }
| SourceSubtitle { __sourceSubtitle :: AtomText }
| SourceTitle { __sourceTitle :: AtomText }
| SourceUpdated { __sourceUpdated :: UTCTime }
makeLenses ''SourcePiece
-- | Parse an @atom:source@ element.
-- Example:
--
-- > <source>
-- > <id>http://example.org/</id>
-- > <title>Fourty-Two</title>
-- > <updated>2003-12-13T18:30:02Z</updated>
-- > <rights>© 2005 Example, Inc.</rights>
-- > </source>
atomSource :: MonadThrow m => ConduitM Event o m (Maybe AtomSource)
atomSource = tagIgnoreAttrs' "source" $ manyYield' (choose piece) .| zipConduit where
zipConduit = getZipConduit $ AtomSource
<$> ZipConduit (projectC _sourceAuthor .| sinkList)
<*> ZipConduit (projectC _sourceCategory .| sinkList)
<*> ZipConduit (projectC _sourceContributor .| sinkList)
<*> ZipConduit (projectC _sourceGenerator .| headC)
<*> ZipConduit (projectC _sourceIcon .| headC)
<*> ZipConduit (projectC _sourceId .| headDefC "")
<*> ZipConduit (projectC _sourceLink .| sinkList)
<*> ZipConduit (projectC _sourceLogo .| headC)
<*> ZipConduit (projectC _sourceRights .| headC)
<*> ZipConduit (projectC _sourceSubtitle .| headC)
<*> ZipConduit (projectC _sourceTitle .| headC)
<*> ZipConduit (projectC _sourceUpdated .| headC)
piece = [ fmap SourceAuthor <$> atomPerson "author"
, fmap SourceCategory <$> atomCategory
, fmap SourceContributor <$> atomPerson "contributor"
, fmap SourceGenerator <$> atomGenerator
, fmap SourceIcon <$> atomIcon
, fmap SourceId <$> atomId
, fmap SourceLink <$> atomLink
, fmap SourceLogo <$> atomLogo
, fmap SourceRights <$> atomText "rights"
, fmap SourceSubtitle <$> atomText "subtitle"
, fmap SourceTitle <$> atomText "title"
, fmap SourceUpdated <$> tagDate "updated"
]
data EntryPiece = EntryAuthor { __entryAuthor :: AtomPerson }
| EntryCategory { __entryCategory :: AtomCategory }
| EntryContent { __entryContent :: AtomContent }
| EntryContributor { __entryContributor :: AtomPerson }
| EntryId { __entryId :: Text }
| EntryLink { __entryLink :: AtomLink }
| EntryPublished { __entryPublished :: UTCTime }
| EntryRights { __entryRights :: AtomText }
| EntrySource { __entrySource :: AtomSource }
| EntrySummary { __entrySummary :: AtomText }
| EntryTitle { __entryTitle :: AtomText }
| EntryUpdated { __entryUpdated :: UTCTime }
makeLenses ''EntryPiece
-- | Parse an @atom:entry@ element.
atomEntry :: MonadThrow m => ConduitM Event o m (Maybe AtomEntry)
atomEntry = tagIgnoreAttrs' "entry" $ manyYield' (choose piece) .| zipConduit where
zipConduit = getZipConduit $ AtomEntry
<$> ZipConduit (projectC _entryAuthor .| sinkList)
<*> ZipConduit (projectC _entryCategory .| sinkList)
<*> ZipConduit (projectC _entryContent .| headC)
<*> ZipConduit (projectC _entryContributor .| sinkList)
<*> ZipConduit (projectC _entryId .| headRequiredC "Missing <id> element")
<*> ZipConduit (projectC _entryLink .| sinkList)
<*> ZipConduit (projectC _entryPublished .| headC)
<*> ZipConduit (projectC _entryRights .| headC)
<*> ZipConduit (projectC _entrySource .| headC)
<*> ZipConduit (projectC _entrySummary .| headC)
<*> ZipConduit (projectC _entryTitle .| headRequiredC "Missing or invalid <title> element.")
<*> ZipConduit (projectC _entryUpdated .| headRequiredC "Missing or invalid <updated> element.")
piece = [ fmap EntryAuthor <$> atomPerson "author"
, fmap EntryCategory <$> atomCategory
, fmap EntryContent <$> atomContent
, fmap EntryContributor <$> atomPerson "contributor"
, fmap EntryId <$> atomId
, fmap EntryLink <$> atomLink
, fmap EntryPublished <$> tagDate "published"
, fmap EntryRights <$> atomText "rights"
, fmap EntrySource <$> atomSource
, fmap EntrySummary <$> atomText "summary"
, fmap EntryTitle <$> atomText "title"
, fmap EntryUpdated <$> tagDate "updated"
]
data FeedPiece = FeedAuthor { __feedAuthor :: AtomPerson }
| FeedCategory { __feedCategory :: AtomCategory }
| FeedContributor { __feedContributor :: AtomPerson }
| FeedEntry { __feedEntry :: AtomEntry }
| FeedGenerator { __feedGenerator :: AtomGenerator }
| FeedIcon { __feedIcon :: AtomURI }
| FeedId { __feedId :: Text }
| FeedLink { __feedLink :: AtomLink }
| FeedLogo { __feedLogo :: AtomURI }
| FeedRights { __feedRights :: AtomText }
| FeedSubtitle { __feedSubtitle :: AtomText }
| FeedTitle { __feedTitle :: AtomText }
| FeedUpdated { __feedUpdated :: UTCTime }
makeLenses ''FeedPiece
-- | Parse an @atom:feed@ element.
atomFeed :: MonadThrow m => ConduitM Event o m (Maybe AtomFeed)
atomFeed = tagIgnoreAttrs' "feed" $ manyYield' (choose piece) .| zipConduit where
zipConduit = getZipConduit $ AtomFeed
<$> ZipConduit (projectC _feedAuthor .| sinkList)
<*> ZipConduit (projectC _feedCategory .| sinkList)
<*> ZipConduit (projectC _feedContributor .| sinkList)
<*> ZipConduit (projectC _feedEntry .| sinkList)
<*> ZipConduit (projectC _feedGenerator .| headC)
<*> ZipConduit (projectC _feedIcon .| headC)
<*> ZipConduit (projectC _feedId .| headRequiredC "Missing <id> element")
<*> ZipConduit (projectC _feedLink .| sinkList)
<*> ZipConduit (projectC _feedLogo .| headC)
<*> ZipConduit (projectC _feedRights .| headC)
<*> ZipConduit (projectC _feedSubtitle .| headC)
<*> ZipConduit (projectC _feedTitle .| headRequiredC "Missing <title> element.")
<*> ZipConduit (projectC _feedUpdated .| headRequiredC "Missing <updated> element.")
piece = [ fmap FeedAuthor <$> atomPerson "author"
, fmap FeedCategory <$> atomCategory
, fmap FeedContributor <$> atomPerson "contributor"
, fmap FeedEntry <$> atomEntry
, fmap FeedGenerator <$> atomGenerator
, fmap FeedIcon <$> atomIcon
, fmap FeedId <$> atomId
, fmap FeedLink <$> atomLink
, fmap FeedLogo <$> atomLogo
, fmap FeedRights <$> atomText "rights"
, fmap FeedSubtitle <$> atomText "subtitle"
, fmap FeedTitle <$> atomText "title"
, fmap FeedUpdated <$> tagDate "updated"
]