72 lines
1.9 KiB
Haskell
72 lines
1.9 KiB
Haskell
{-# LANGUAGE QuasiQuotes #-}
|
|
---------------------------------------------------------
|
|
--
|
|
-- Module : Yesod.Helpers.AtomFeed
|
|
-- Copyright : Michael Snoyman
|
|
-- License : BSD3
|
|
--
|
|
-- Maintainer : Michael Snoyman <michael@snoyman.com>
|
|
-- Stability : Stable
|
|
-- Portability : portable
|
|
--
|
|
-- Generating atom news feeds.
|
|
--
|
|
---------------------------------------------------------
|
|
|
|
-- | Generation of Atom newsfeeds. See
|
|
-- <http://en.wikipedia.org/wiki/Atom_(standard)>.
|
|
module Yesod.Helpers.AtomFeed
|
|
( AtomFeed (..)
|
|
, AtomFeedEntry (..)
|
|
, atomFeed
|
|
, RepAtom (..)
|
|
) where
|
|
|
|
import Yesod
|
|
import Data.Time.Clock (UTCTime)
|
|
|
|
newtype RepAtom = RepAtom Content
|
|
instance HasReps RepAtom where
|
|
chooseRep (RepAtom c) _ = return (typeAtom, c)
|
|
|
|
atomFeed :: AtomFeed (Routes master) -> GHandler sub master RepAtom
|
|
atomFeed = fmap RepAtom . hamletToContent . template
|
|
|
|
data AtomFeed url = AtomFeed
|
|
{ atomTitle :: String
|
|
, atomLinkSelf :: url
|
|
, atomLinkHome :: url
|
|
, atomUpdated :: UTCTime
|
|
, atomEntries :: [AtomFeedEntry url]
|
|
}
|
|
|
|
data AtomFeedEntry url = AtomFeedEntry
|
|
{ atomEntryLink :: url
|
|
, atomEntryUpdated :: UTCTime
|
|
, atomEntryTitle :: String
|
|
, atomEntryContent :: Html ()
|
|
}
|
|
|
|
template :: AtomFeed url -> Hamlet url
|
|
template arg = [$xhamlet|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
%feed!xmlns="http://www.w3.org/2005/Atom"
|
|
%title $atomTitle.arg$
|
|
%link!rel=self!href=@atomLinkSelf.arg@
|
|
%link!href=@atomLinkHome.arg@
|
|
%updated $formatW3.atomUpdated.arg$
|
|
%id @atomLinkHome.arg@
|
|
$forall atomEntries.arg entry
|
|
^entryTemplate.entry^
|
|
|]
|
|
|
|
entryTemplate :: AtomFeedEntry url -> Hamlet url
|
|
entryTemplate arg = [$xhamlet|
|
|
%entry
|
|
%id @atomEntryLink.arg@
|
|
%link!href=@atomEntryLink.arg@
|
|
%updated $formatW3.atomEntryUpdated.arg$
|
|
%title $atomEntryTitle.arg$
|
|
%content!type=html $cdata.atomEntryContent.arg$
|
|
|]
|