gallery/make-pages/RSS.hs

111 lines
3.2 KiB
Haskell
Raw Normal View History

2020-07-19 12:04:40 -04:00
module RSS (make, make') where
2020-09-25 17:08:44 -04:00
import Date
2020-07-19 12:04:40 -04:00
import Info
import BuilderQQ
import Data.List (sortBy, intersperse)
import Data.Maybe (catMaybes)
2020-11-16 17:30:56 -05:00
import Data.Function (on)
2020-07-19 12:04:40 -04:00
import qualified Data.Text as Strict
import qualified Data.Text.Lazy as Lazy
import System.FilePath (takeDirectory)
2024-08-18 00:35:06 -04:00
import Control.Monad
2020-07-19 12:04:40 -04:00
make :: Strict.Text -- ^ website root e.g. @https://gallery.niss.website@
-> Strict.Text -- ^ website name e.g. @nissart@
-> GalleryInfo
2020-07-19 12:04:40 -04:00
-> Maybe FilePath -- ^ output filename for self link
-> [(FilePath, Info)]
-> Lazy.Text
make root name ginfo output infos =
toLazyText $ make' root name ginfo output infos
2020-07-19 12:04:40 -04:00
make' :: Strict.Text -> Strict.Text -> GalleryInfo
-> Maybe FilePath -> [(FilePath, Info)] -> Builder
make' root name ginfo@(GalleryInfo {title, desc, prefix}) output infos = [b|
2024-08-18 02:59:29 -04:00
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:dc="http://purl.org/dc/elements/1.1/">
2024-08-18 02:59:29 -04:00
<channel>
<title><![CDATA[$name$title]]></title>
2024-08-18 02:59:29 -04:00
<link>$link</link>
<description><![CDATA[$desc]]></description>
2024-08-18 02:59:29 -04:00
$selflink
2020-07-19 12:04:40 -04:00
2024-08-18 02:59:29 -04:00
$items
</channel>
</rss>
|]
2020-07-19 12:04:40 -04:00
where
link = [b|$root/$prefix|]
nsfw = ginfo.nsfw
2021-03-07 16:07:02 -05:00
items = map (uncurry $ makeItem root prefix nsfw) $
sortBy (flip (compareFor nsfw `on` snd)) $
filter (not . (.unlisted) . snd) infos
2020-07-19 12:04:40 -04:00
selflink = case output of
Nothing -> ""
2024-08-18 02:59:29 -04:00
Just o -> [b|<atom:link href="$link/$o" rel="self" />|]
2020-07-19 12:04:40 -04:00
2021-03-07 16:07:02 -05:00
makeItem :: Strict.Text -> FilePath -> Bool -> FilePath -> Info -> Builder
makeItem root prefix nsfw path info@(Info {title}) = [b|
2020-07-19 12:04:40 -04:00
<item>
<title><![CDATA[$title$suffix]]></title>
2020-07-19 12:04:40 -04:00
<link>$link</link>
<guid>$link</guid>
<dc:creator><![CDATA[$creator]]></dc:creator>
2022-01-04 14:13:09 -05:00
<pubDate>$date</pubDate>
$body
2020-07-19 12:04:40 -04:00
</item>
|]
where
body = [b|
<description> <![CDATA[
$image
$artist
$desc
]]> </description>
2020-07-25 07:58:16 -04:00
|]
2024-08-18 00:35:06 -04:00
suffix = if null parts then ""
else " (" <> mconcat (intersperse ", " parts) <> ")"
parts = catMaybes [o18, cnt, up]
up = do guard $ hasUpdatesFor nsfw info; Just "updated"
o18 = do guard $ nsfw && anyNsfw info; Just "🔞"
cnt = do let len = maybe 0 length $ allImages <$> imagesFor nsfw info
guard $ len /= 1; Just [b|$len images|]
dir = takeDirectory path
link = [b|$root/$prefix/$dir|]
creator = maybe "niss" (.name) info.artist
2024-08-18 00:35:06 -04:00
date = formatRSS $ latestDateFor nsfw info
artist = ifJust info.artist \case
Artist name Nothing -> [b|<p>by $name|]
Artist name (Just url) -> [b|<p>by <a href="$url">$name</a>|]
desc = makeDesc $ descFor nsfw info
image = case previewImage info of
2024-10-21 08:24:17 -04:00
Just (PFull img) -> figure img.desc $ pageFile img
Just (PThumb th) -> figure "full image hidden" $ thumbFile th
2024-08-18 00:35:06 -04:00
Nothing -> ""
2024-10-21 08:24:17 -04:00
figure alt p = [b|
<figure aria-describedby=mainimg>
<a href="$link">
<img id=mainimg src="$link/$p" alt="$alt" title="$alt">
</a>
</figure>
|]
makeDesc :: Desc -> Builder
makeDesc NoDesc = ""
makeDesc (TextDesc txt) = [b|$txt|]
makeDesc (LongDesc fs) = [b|<ul>$fields</ul>|] where
fields = map mkField fs
mkField (DescField {name, text}) = [b|
<li> <b>$name</b>:
$text
|]