mad/byg/src/SiteGenerator.hs

47 lines
2.0 KiB
Haskell
Raw Normal View History

2024-09-23 22:11:54 +02:00
module SiteGenerator (generateSite) where
import Types
import DependencyGenerator
2024-09-25 23:51:33 +02:00
thumbnailImagePath :: Token FilePath -> Token FilePath -> DepGenM' FilePath
thumbnailImagePath outputDir filename = do
(base, ext) <- untupleDepGenM (fileComponents filename)
2024-09-25 23:51:33 +02:00
name <- appendStrings (appendStrings (base, inject "-thumbnail."), ext)
joinPaths (outputDir, name)
2024-09-25 23:51:33 +02:00
handleRecipeDir :: Token FilePath -> Token Template -> Token FilePath -> Token FilePath -> DepGenM ()
handleRecipeDir outputDir template indexName dir = do
2024-09-23 22:11:54 +02:00
dirContents <- listDirectory dir
2024-09-25 23:14:14 +02:00
exts <- unzipSndDepGenM (mapDepGenM fileComponents dirContents)
2024-09-25 23:12:32 +02:00
areImageFilenames <- mapDepGenM isImageExtension exts
imageFilenames <- filterDepGenM areImageFilenames dirContents
2024-09-26 00:02:51 +02:00
imagePaths <- mapDepGenM (curry joinPaths dir) imageFilenames
imagePathsOut <- mapDepGenM (curry joinPaths outputDir) imageFilenames
mapDepGenM_ copyFile' (ZipToken (imagePaths, imagePathsOut))
2024-09-25 23:51:33 +02:00
thumbnailImagePaths <- mapDepGenM (thumbnailImagePath outputDir) imageFilenames
mapDepGenM_
(\files -> convertImage (files, inject $ ResizeToWidth 800))
2024-09-25 23:51:33 +02:00
(ZipToken (imagePaths, thumbnailImagePaths))
2024-09-25 19:48:45 +02:00
recipeDirOut <- joinPaths (outputDir, dir)
2024-09-25 19:37:49 +02:00
makeDir recipeDirOut
htmlBody <- runPandoc (joinPaths (dir, inject "ret.md"))
2024-09-25 19:48:45 +02:00
html <- applyTemplate (template, htmlBody)
2024-09-25 23:51:33 +02:00
saveFile (html, joinPaths (recipeDirOut, indexName))
2024-09-23 22:11:54 +02:00
2024-09-24 23:09:35 +02:00
generateSite :: DepGenM ()
2024-09-23 22:11:54 +02:00
generateSite = do
2024-09-24 22:38:52 +02:00
outputDir <- inject "site"
makeDir outputDir
2024-09-25 23:51:33 +02:00
recipesDir <- inject "retter"
outputRecipesDir <- joinPaths (outputDir, recipesDir)
makeDir outputRecipesDir
template <- readTemplate (inject "template.html")
2024-09-25 23:51:33 +02:00
indexName <- inject "index.html"
dirContents <- listDirectory recipesDir
mapDepGenM_ (handleRecipeDir outputRecipesDir template indexName) dirContents
htmlBody <- runPandoc (inject "om.md")
html <- applyTemplate (template, htmlBody)
2024-09-25 23:51:33 +02:00
aboutDir <- joinPaths (outputDir, inject "om")
makeDir aboutDir
saveFile (html, joinPaths (aboutDir, indexName))