-
Notifications
You must be signed in to change notification settings - Fork 5
/
site.hs
219 lines (184 loc) · 7.44 KB
/
site.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
import Control.Applicative ((<$>))
import Control.Arrow ((***))
import Data.Monoid (mappend)
import Data.List (stripPrefix, sortBy)
import Data.Ord
import Data.Maybe (fromMaybe)
import Hakyll
import Hakyll.Core.Metadata (lookupString)
import System.Process
import System.FilePath (takeBaseName, (</>))
compass :: Compiler (Item String)
compass =
getResourceString >>=
withItemBody (unixFilter "sass" ["-s", "--scss", "--compass"])
-- FIXME: Figure out what is going on with undo-batch-mode
coqOptions :: [String]
coqOptions = [ "-R", "theories", "Poleiro"
, "-w", "-notation-overridden,-undo-batch-mode,-ambiguous-paths" ]
coqdoc :: Compiler (Item String)
coqdoc = do
coqFileName <- toFilePath <$> getUnderlying
unsafeCompiler $
readProcess "coqc" (coqOptions ++ [ coqFileName ]) ""
body <- unsafeCompiler $
readProcess "coqdoc" [ "--no-index"
, "--stdout"
, "--body-only"
, "--parse-comments"
, "-s"
, coqFileName ] ""
makeItem body
coqPath = ("theories" </>)
getCoqFileName :: Item a -> Compiler (Maybe FilePath)
getCoqFileName item = do
let ident = itemIdentifier item
fmap coqPath <$> getMetadataField ident "coqfile"
gitHubBlobPath = "https://github.com/arthuraa/poleiro/blob/master"
gitHubField :: Context a
gitHubField = field "githublink" $ \item -> do
coqFileName <- getCoqFileName item
case coqFileName of
Just coqFileName -> do
return $ gitHubBlobPath ++ "/" ++ coqFileName
Nothing -> return ""
coqPost :: Compiler (Item String)
coqPost = do
ident <- getUnderlying
route <- getRoute ident
coqFileName <- getMetadataField ident "coqfile"
case coqFileName of
Just coqFileName ->
let fullName = coqPath coqFileName
basename = takeBaseName coqFileName in do
postBody <- loadBody $ fromFilePath fullName
makeItem $ flip withUrls postBody $ \url ->
-- coqdoc apparently doesn't allow us to change the links of the
-- generated HTML that point to itself. Therefore, we must do it
-- by hand.
case (stripPrefix (basename ++ ".html") url, route) of
(Just url', Just route) -> "/" ++ route ++ url'
_ -> url
Nothing -> error "Couldn't find \"coqfile\" metadata field"
postProcessPost :: (Maybe Identifier, Maybe Identifier) ->
Item String ->
Compiler (Item String)
postProcessPost (prev, next) post =
let renderLink (Just id) direction = do
route <- getRoute id
title <- getMetadataField id "title"
case (title, route) of
(Just title, Just route) -> do
let linkCtx = constField "title" title `mappend`
constField "route" route `mappend`
constField "direction" direction
makeItem "" >>=
loadAndApplyTemplate "templates/neighbor-post-link.html" linkCtx
_ -> makeItem ""
renderLink _ _ = makeItem "" in do
linkPrev <- renderLink prev "prev"
linkNext <- renderLink next "next"
let ctx = constField "prev" (itemBody linkPrev) `mappend`
constField "next" (itemBody linkNext) `mappend`
postCtx
saveSnapshot "content" post >>=
loadAndApplyTemplate "templates/post.html" ctx >>=
loadAndApplyTemplate "templates/main.html" defaultContext >>=
relativizeUrls
--------------------------------------------------------------------------------
main :: IO ()
main = hakyll $ do
match "css/*.scss" $ do
route $ setExtension "css"
compile $ compass
match "images/*" $ do
route idRoute
compile copyFileCompiler
match "theories/*.v" $ do
compile coqdoc
postsMetadata <- map fst . sortBy (comparing snd) .
map (id *** fromMaybe "" . lookupString "date") <$>
getAllMetadata "posts/*"
let getNeighbors id = lookup id postsMetadata
lookup id (id1 : rest@(id2 : id3 : _))
| id == id1 = (Nothing, Just id2)
| id > id2 = lookup id rest
| id == id2 = (Just id1, Just id3)
| otherwise = (Nothing, Nothing)
lookup id [id1, id2]
| id == id1 = (Nothing, Just id2)
| id == id2 = (Just id1, Nothing)
| otherwise = (Nothing, Nothing)
lookup _ _ = (Nothing, Nothing)
match "posts/*.coqpost" $ do
route $ setExtension "html"
compile $ do
id <- getUnderlying
coqPost >>= postProcessPost (getNeighbors id)
match "posts/*.md" $ do
route $ setExtension "html"
compile $ do
id <- getUnderlying
pandocCompiler >>= postProcessPost (getNeighbors id)
create ["archives.html"] $ do
route idRoute
compile $ do
let archiveCtx =
field "posts" (const archives) `mappend`
constField "title" "Archives" `mappend`
defaultContext
makeItem ""
>>= loadAndApplyTemplate "templates/archives.html" archiveCtx
>>= loadAndApplyTemplate "templates/main.html" archiveCtx
>>= relativizeUrls
create ["atom.xml"] $ do
route idRoute
compile $ do
let feedCtx = postCtx `mappend` bodyField "description"
posts <- fmap (take 10) . recentFirst =<<
loadAllSnapshots "posts/*" "content"
renderAtom feedConfiguration feedCtx posts
match "index.html" $ do
route idRoute
compile $ do
let indexCtx = field "posts" $ const $ recentPostList 3
ctx = constField "title" "Main" `mappend` postCtx
getResourceBody
>>= applyAsTemplate indexCtx
>>= loadAndApplyTemplate "templates/main.html" ctx
>>= relativizeUrls
match "about.md" $ do
route $ setExtension "html"
compile $ do
let aboutCtx = constField "title" "About" `mappend` defaultContext
pandocCompiler
>>= loadAndApplyTemplate "templates/main.html" aboutCtx
>>= relativizeUrls
match "templates/*" $ compile templateCompiler
--------------------------------------------------------------------------------
postCtx :: Context String
postCtx =
gitHubField `mappend`
dateField "date" "%B %e, %Y" `mappend`
defaultContext
--------------------------------------------------------------------------------
archives :: Compiler String
archives = do
posts <- loadAllSnapshots "posts/*" "content" >>= recentFirst
itemTpl <- loadBody "templates/post-item.html"
applyTemplateList itemTpl postCtx posts
recentPostList :: Int -> Compiler String
recentPostList n = do
posts <- loadAllSnapshots "posts/*" "content" >>= recentFirst
itemTpl <- loadBody "templates/post-index.html"
applyTemplateList itemTpl postCtx $ take n posts
feedConfiguration :: FeedConfiguration
feedConfiguration = FeedConfiguration
{ feedTitle = "Poleiro: latest posts"
, feedDescription = "A blog about the Coq proof assistant"
, feedAuthorName = "Arthur Azevedo de Amorim"
, feedAuthorEmail = ""
, feedRoot = "http://poleiro.info"
}