2014-12-05 15:56:40 +00:00
|
|
|
(ns cryogen-core.compiler
|
2014-12-04 16:38:48 +00:00
|
|
|
(:require [selmer.parser :refer [cache-off! render-file]]
|
2015-06-14 10:23:58 +00:00
|
|
|
[selmer.util :refer [set-custom-resource-path!]]
|
2014-12-04 16:38:48 +00:00
|
|
|
[io.aviso.exception :refer [write-exception]]
|
|
|
|
[clojure.java.io :refer [copy file reader writer]]
|
|
|
|
[clojure.string :as s]
|
|
|
|
[text-decoration.core :refer :all]
|
2015-07-08 20:34:39 +00:00
|
|
|
[pl.danieljanus.tagsoup :as tagsoup]
|
|
|
|
[hiccup.core :as hiccup]
|
2014-12-05 15:56:40 +00:00
|
|
|
[cryogen-core.toc :refer [generate-toc]]
|
2014-12-30 12:31:46 +00:00
|
|
|
[cryogen-core.sass :as sass]
|
2015-07-08 20:34:39 +00:00
|
|
|
[cryogen-core.markup :as m]
|
|
|
|
[cryogen-core.io :refer
|
2016-02-12 02:04:56 +00:00
|
|
|
[get-resource find-assets create-folder create-file-recursive create-file wipe-public-folder
|
2015-11-08 13:33:07 +00:00
|
|
|
copy-resources copy-resources-from-theme path]]
|
2015-07-08 20:34:39 +00:00
|
|
|
[cryogen-core.sitemap :as sitemap]
|
2017-01-04 08:33:34 +00:00
|
|
|
[cryogen-core.rss :as rss]
|
|
|
|
[clojure.inspector :as inspector])
|
2015-08-05 21:27:54 +00:00
|
|
|
(:import java.util.Locale))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
|
|
|
(cache-off!)
|
|
|
|
|
2015-11-08 13:33:07 +00:00
|
|
|
(defn root-uri
|
2016-01-09 01:44:07 +00:00
|
|
|
"Creates the uri for posts and pages. Returns root-path by default"
|
2015-11-08 13:33:07 +00:00
|
|
|
[k config]
|
|
|
|
(if-let [uri (k config)]
|
|
|
|
uri
|
|
|
|
(config (-> k (name) (s/replace #"-uri$" "") (keyword)))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2015-01-28 21:19:01 +00:00
|
|
|
(defn re-pattern-from-ext
|
|
|
|
"Creates a properly quoted regex pattern for the given file extension"
|
|
|
|
[ext]
|
|
|
|
(re-pattern (str (s/replace ext "." "\\.") "$")))
|
|
|
|
|
2016-05-24 05:20:36 +00:00
|
|
|
(defn find-entries
|
|
|
|
"Returns a list of files under the templates directory according to the
|
|
|
|
implemented Markup protocol and specified root directory. It defaults to
|
|
|
|
looking under the implemented protocol's subdirectory, but fallsback to look
|
|
|
|
at the templates directory."
|
|
|
|
[root mu ignored-files]
|
|
|
|
(let [assets (find-assets (path "templates" (m/dir mu) root)
|
|
|
|
(m/ext mu)
|
|
|
|
ignored-files)]
|
|
|
|
(if (seq assets)
|
|
|
|
assets
|
|
|
|
(find-assets (path "templates" root)
|
|
|
|
(m/ext mu)
|
|
|
|
ignored-files))))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn find-posts
|
2016-05-24 05:20:36 +00:00
|
|
|
"Returns a list of markdown files representing posts under the post root."
|
2014-12-30 12:31:46 +00:00
|
|
|
[{:keys [post-root ignored-files]} mu]
|
2016-05-24 05:20:36 +00:00
|
|
|
(find-entries post-root mu ignored-files))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn find-pages
|
2016-05-24 05:20:36 +00:00
|
|
|
"Returns a list of markdown files representing pages under the page root."
|
2014-12-30 12:31:46 +00:00
|
|
|
[{:keys [page-root ignored-files]} mu]
|
2016-05-24 05:20:36 +00:00
|
|
|
(find-entries page-root mu ignored-files))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn parse-post-date
|
|
|
|
"Parses the post date from the post's file name and returns the corresponding java date object"
|
2015-09-14 10:06:35 +00:00
|
|
|
[^String file-name date-fmt]
|
2014-12-04 16:38:48 +00:00
|
|
|
(let [fmt (java.text.SimpleDateFormat. date-fmt)]
|
|
|
|
(.parse fmt (.substring file-name 0 10))))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn page-uri
|
2016-02-12 02:04:56 +00:00
|
|
|
"Creates a URI from file name. `uri-type` is any of the uri types specified in config, e.g., `:post-root-uri`."
|
|
|
|
([file-name params]
|
|
|
|
(page-uri file-name nil params))
|
|
|
|
([file-name uri-type {:keys [blog-prefix clean-urls?] :as params}]
|
|
|
|
(let [page-uri (params uri-type)
|
|
|
|
uri-end (if clean-urls? (s/replace file-name #"(index)?\.html" "/") file-name)]
|
|
|
|
(path "/" blog-prefix page-uri uri-end))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn read-page-meta
|
|
|
|
"Returns the clojure map from the top of a markdown page/post"
|
|
|
|
[page rdr]
|
2014-12-04 16:38:48 +00:00
|
|
|
(try
|
|
|
|
(read rdr)
|
|
|
|
(catch Exception _
|
|
|
|
(throw (IllegalArgumentException. (str "Malformed metadata on page: " page))))))
|
|
|
|
|
2014-12-30 12:31:46 +00:00
|
|
|
(defn page-content
|
|
|
|
"Returns a map with the given page's file-name, metadata and content parsed from
|
|
|
|
the file with the given markup."
|
2015-09-14 10:06:35 +00:00
|
|
|
[^java.io.File page config markup]
|
2014-12-04 16:38:48 +00:00
|
|
|
(with-open [rdr (java.io.PushbackReader. (reader page))]
|
2016-10-18 15:43:09 +00:00
|
|
|
(let [re-root (re-pattern (str "^.*?(" (:page-root config) "|" (:post-root config) ")/"))
|
2016-12-17 10:29:16 +00:00
|
|
|
page-fwd (s/replace (str page) "\\" "/") ;; make it work on Windows
|
|
|
|
page-name (s/replace page-fwd re-root "")
|
2015-01-28 21:19:01 +00:00
|
|
|
file-name (s/replace page-name (re-pattern-from-ext (m/ext markup)) ".html")
|
2014-12-04 16:38:48 +00:00
|
|
|
page-meta (read-page-meta page-name rdr)
|
2014-12-30 12:31:46 +00:00
|
|
|
content ((m/render-fn markup) rdr config)]
|
|
|
|
{:file-name file-name
|
|
|
|
:page-meta page-meta
|
2015-07-08 20:34:39 +00:00
|
|
|
:content content})))
|
2014-12-30 12:31:46 +00:00
|
|
|
|
|
|
|
(defn merge-meta-and-content
|
|
|
|
"Merges the page metadata and content maps, adding :toc if necessary."
|
|
|
|
[file-name page-meta content]
|
|
|
|
(merge
|
2015-07-08 20:34:39 +00:00
|
|
|
(update-in page-meta [:layout] #(str (name %) ".html"))
|
|
|
|
{:file-name file-name
|
|
|
|
:content content
|
2015-10-25 23:14:43 +00:00
|
|
|
:toc (if-let [toc (:toc page-meta)]
|
|
|
|
(generate-toc content :list-type toc))}))
|
2014-12-30 12:31:46 +00:00
|
|
|
|
|
|
|
(defn parse-page
|
|
|
|
"Parses a page/post and returns a map of the content, uri, date etc."
|
|
|
|
[page config markup]
|
|
|
|
(let [{:keys [file-name page-meta content]} (page-content page config markup)]
|
|
|
|
(merge
|
2015-07-08 20:34:39 +00:00
|
|
|
(merge-meta-and-content file-name page-meta content)
|
2016-02-12 02:04:56 +00:00
|
|
|
{:uri (page-uri file-name :page-root-uri config)
|
2015-07-08 20:34:39 +00:00
|
|
|
:page-index (:page-index page-meta)})))
|
2014-12-30 12:31:46 +00:00
|
|
|
|
|
|
|
(defn parse-post
|
|
|
|
"Return a map with the given post's information."
|
|
|
|
[page config markup]
|
|
|
|
(let [{:keys [file-name page-meta content]} (page-content page config markup)]
|
|
|
|
(merge
|
2015-07-08 20:34:39 +00:00
|
|
|
(merge-meta-and-content file-name page-meta content)
|
2015-07-29 15:50:00 +00:00
|
|
|
(let [date (if (:date page-meta)
|
2015-08-06 17:37:50 +00:00
|
|
|
(.parse (java.text.SimpleDateFormat. (:post-date-format config)) (:date page-meta))
|
2015-07-29 15:50:00 +00:00
|
|
|
(parse-post-date file-name (:post-date-format config)))
|
2016-03-09 02:22:20 +00:00
|
|
|
archive-fmt (java.text.SimpleDateFormat. (get config :archive-group-format "yyyy MMMM") (Locale/getDefault))
|
2015-07-08 20:34:39 +00:00
|
|
|
formatted-group (.format archive-fmt date)]
|
|
|
|
{:date date
|
|
|
|
:formatted-archive-group formatted-group
|
|
|
|
:parsed-archive-group (.parse archive-fmt formatted-group)
|
2016-02-12 02:04:56 +00:00
|
|
|
:uri (page-uri file-name :post-root-uri config)
|
2015-07-08 20:34:39 +00:00
|
|
|
:tags (set (:tags page-meta))}))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn read-posts
|
|
|
|
"Returns a sequence of maps representing the data from markdown files of posts.
|
|
|
|
Sorts the sequence by post date."
|
|
|
|
[config]
|
2014-12-30 12:31:46 +00:00
|
|
|
(->> (mapcat
|
2015-07-08 20:34:39 +00:00
|
|
|
(fn [mu]
|
|
|
|
(->>
|
|
|
|
(find-posts config mu)
|
2015-12-17 19:36:09 +00:00
|
|
|
(pmap #(parse-post % config mu))
|
|
|
|
(remove #(= (:draft? %) true))))
|
2015-07-08 20:34:39 +00:00
|
|
|
(m/markups))
|
2014-12-04 16:38:48 +00:00
|
|
|
(sort-by :date)
|
2016-12-13 20:59:09 +00:00
|
|
|
reverse
|
2016-12-19 00:22:29 +00:00
|
|
|
(drop-while #(and (:hide-future-posts? config) (.after (:date %) (java.util.Date.))))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn read-pages
|
|
|
|
"Returns a sequence of maps representing the data from markdown files of pages.
|
2014-12-30 12:31:46 +00:00
|
|
|
Sorts the sequence by post date."
|
2014-12-05 21:37:04 +00:00
|
|
|
[config]
|
2014-12-30 12:31:46 +00:00
|
|
|
(->> (mapcat
|
2015-07-08 20:34:39 +00:00
|
|
|
(fn [mu]
|
|
|
|
(->>
|
|
|
|
(find-pages config mu)
|
|
|
|
(map #(parse-page % config mu))))
|
|
|
|
(m/markups))
|
2014-12-04 16:38:48 +00:00
|
|
|
(sort-by :page-index)))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn tag-post
|
|
|
|
"Adds the uri and title of a post to the list of posts under each of its tags"
|
|
|
|
[tags post]
|
2014-12-04 16:38:48 +00:00
|
|
|
(reduce (fn [tags tag]
|
2015-09-03 16:27:55 +00:00
|
|
|
(update-in tags [tag] (fnil conj []) (select-keys post [:uri :title :content :date :enclosure])))
|
2014-12-04 16:38:48 +00:00
|
|
|
tags (:tags post)))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn group-by-tags
|
|
|
|
"Maps all the tags with a list of posts that contain each tag"
|
|
|
|
[posts]
|
2014-12-04 16:38:48 +00:00
|
|
|
(reduce tag-post {} posts))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn group-for-archive
|
|
|
|
"Groups the posts by month and year for archive sorting"
|
|
|
|
[posts]
|
2014-12-04 16:38:48 +00:00
|
|
|
(->> posts
|
|
|
|
(map #(select-keys % [:title :uri :date :formatted-archive-group :parsed-archive-group]))
|
|
|
|
(group-by :formatted-archive-group)
|
|
|
|
(map (fn [[group posts]]
|
|
|
|
{:group group
|
|
|
|
:parsed-group (:parsed-archive-group (get posts 0))
|
|
|
|
:posts (map #(select-keys % [:title :uri :date]) posts)}))
|
|
|
|
(sort-by :parsed-group)
|
|
|
|
reverse))
|
|
|
|
|
2016-02-10 02:13:06 +00:00
|
|
|
(defn group-for-author
|
|
|
|
"Groups the posts by author. If no post author if found defaults `default-author`."
|
|
|
|
[posts default-author]
|
|
|
|
(->> posts
|
|
|
|
(map #(select-keys % [:title :uri :date :formatted-archive-group :parsed-archive-group :author]))
|
|
|
|
(map #(update % :author (fn [author] (or author default-author))))
|
|
|
|
(group-by :author)
|
|
|
|
(map (fn [[author posts]]
|
|
|
|
{:author author
|
|
|
|
:posts posts}))))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn tag-info
|
|
|
|
"Returns a map containing the name and uri of the specified tag"
|
2016-02-12 02:04:56 +00:00
|
|
|
[config tag]
|
2014-12-04 16:38:48 +00:00
|
|
|
{:name (name tag)
|
2016-02-12 02:04:56 +00:00
|
|
|
:uri (page-uri (str (name tag) ".html") :tag-root-uri config)})
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn add-prev-next
|
|
|
|
"Adds a :prev and :next key to the page/post data containing the title and uri of the prev/next
|
|
|
|
post/page if it exists"
|
|
|
|
[pages]
|
2014-12-04 16:38:48 +00:00
|
|
|
(map (fn [[prev target next]]
|
|
|
|
(assoc target
|
2015-07-08 20:34:39 +00:00
|
|
|
:prev (if prev (select-keys prev [:title :uri]) nil)
|
|
|
|
:next (if next (select-keys next [:title :uri]) nil)))
|
2014-12-04 16:38:48 +00:00
|
|
|
(partition 3 1 (flatten [nil pages nil]))))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn group-pages
|
|
|
|
"Separates the pages into links for the navbar and links for the sidebar"
|
|
|
|
[pages]
|
2014-12-04 16:38:48 +00:00
|
|
|
(let [{navbar-pages true
|
|
|
|
sidebar-pages false} (group-by #(boolean (:navbar? %)) pages)]
|
|
|
|
(map (partial sort-by :page-index) [navbar-pages sidebar-pages])))
|
|
|
|
|
2017-01-04 08:33:34 +00:00
|
|
|
(defn- uri-level [uri]
|
|
|
|
(count (clojure.string/split uri #"/")))
|
|
|
|
|
|
|
|
(defn- filter-pages-for-uri [uri pages]
|
|
|
|
(filter #(clojure.string/starts-with? (:uri %) uri) pages))
|
|
|
|
|
|
|
|
(defn build-nav-map-level
|
|
|
|
"builds one level of nav-map and recurs to next level."
|
|
|
|
[parent-uri pages]
|
|
|
|
(let [current-level (+ 1 (uri-level parent-uri))
|
|
|
|
pages-of-parent (filter-pages-for-uri parent-uri pages)
|
|
|
|
pages-on-level (filter #(= current-level (uri-level (:uri %))) pages-of-parent)
|
|
|
|
pages-on-child-level (filter #(< current-level (uri-level (:uri %))) pages-of-parent)
|
|
|
|
]
|
|
|
|
(map #(let [page-on-level %
|
|
|
|
child-pages (filter-pages-for-uri (:uri page-on-level) pages-on-child-level)]
|
|
|
|
(if (empty? child-pages)
|
|
|
|
page-on-level
|
|
|
|
(merge page-on-level
|
|
|
|
{:navmap-children (build-nav-map-level (:uri page-on-level) child-pages)}))) pages-on-level)
|
|
|
|
))
|
|
|
|
|
|
|
|
(defn build-nav-map
|
|
|
|
"builds a nav-map from pages"
|
|
|
|
[pages]
|
|
|
|
(let [filtered-pages (filter #(boolean (:navmap? %)) pages)
|
|
|
|
sorted-pages (sort-by :uri filtered-pages)]
|
|
|
|
(build-nav-map-level "/pages/" sorted-pages)
|
|
|
|
))
|
|
|
|
|
2016-02-12 02:04:56 +00:00
|
|
|
(defn write-html
|
|
|
|
"When `clean-urls?` is set, appends `/index.html` before spit; otherwise just spits."
|
|
|
|
[file-uri {:keys [clean-urls?]} data]
|
|
|
|
(if clean-urls?
|
|
|
|
(create-file-recursive (path file-uri "index.html") data)
|
|
|
|
(create-file file-uri data)))
|
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn compile-pages
|
|
|
|
"Compiles all the pages into html and spits them out into the public folder"
|
2016-12-31 10:20:09 +00:00
|
|
|
[{:keys [blog-prefix page-root-uri debug?] :as params} pages]
|
2014-12-04 16:38:48 +00:00
|
|
|
(when-not (empty? pages)
|
|
|
|
(println (blue "compiling pages"))
|
2015-11-08 13:33:07 +00:00
|
|
|
(create-folder (path "/" blog-prefix page-root-uri))
|
2014-12-04 16:38:48 +00:00
|
|
|
(doseq [{:keys [uri] :as page} pages]
|
|
|
|
(println "\t-->" (cyan uri))
|
2016-12-31 10:20:09 +00:00
|
|
|
(when debug?
|
|
|
|
(println "\t-->" (cyan page)))
|
2016-02-12 02:04:56 +00:00
|
|
|
(write-html uri
|
|
|
|
params
|
|
|
|
(render-file (str "/html/" (:layout page))
|
|
|
|
(merge params
|
|
|
|
{:active-page "pages"
|
2016-12-30 22:43:13 +00:00
|
|
|
:home false
|
2016-02-12 02:04:56 +00:00
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
|
|
|
:page page
|
|
|
|
:uri uri}))))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn compile-posts
|
|
|
|
"Compiles all the posts into html and spits them out into the public folder"
|
2016-12-31 14:48:52 +00:00
|
|
|
[{:keys [blog-prefix post-root-uri disqus-shortname debug?] :as params} posts]
|
2014-12-04 16:38:48 +00:00
|
|
|
(when-not (empty? posts)
|
|
|
|
(println (blue "compiling posts"))
|
2015-11-08 13:33:07 +00:00
|
|
|
(create-folder (path "/" blog-prefix post-root-uri))
|
2014-12-04 16:38:48 +00:00
|
|
|
(doseq [post posts]
|
|
|
|
(println "\t-->" (cyan (:uri post)))
|
2016-12-31 14:48:52 +00:00
|
|
|
(println "\t-->" (cyan debug?))
|
|
|
|
(when debug?
|
|
|
|
(println "\t-->" (cyan post)))
|
2016-02-12 02:04:56 +00:00
|
|
|
(write-html (:uri post)
|
|
|
|
params
|
|
|
|
(render-file (str "/html/" (:layout post))
|
|
|
|
(merge params
|
|
|
|
{:active-page "posts"
|
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
|
|
|
:post post
|
|
|
|
:disqus-shortname disqus-shortname
|
|
|
|
:uri (:uri post)}))))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn compile-tags
|
|
|
|
"Compiles all the tag pages into html and spits them out into the public folder"
|
2015-11-08 13:33:07 +00:00
|
|
|
[{:keys [blog-prefix tag-root-uri] :as params} posts-by-tag]
|
2014-12-04 16:38:48 +00:00
|
|
|
(when-not (empty? posts-by-tag)
|
|
|
|
(println (blue "compiling tags"))
|
2015-11-08 13:33:07 +00:00
|
|
|
(create-folder (path "/" blog-prefix tag-root-uri))
|
2014-12-04 16:38:48 +00:00
|
|
|
(doseq [[tag posts] posts-by-tag]
|
2015-02-23 18:14:31 +00:00
|
|
|
(let [{:keys [name uri]} (tag-info params tag)]
|
2014-12-04 16:38:48 +00:00
|
|
|
(println "\t-->" (cyan uri))
|
2016-02-12 02:04:56 +00:00
|
|
|
(write-html uri
|
|
|
|
params
|
|
|
|
(render-file "/html/tag.html"
|
|
|
|
(merge params
|
|
|
|
{:active-page "tags"
|
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
|
|
|
:name name
|
|
|
|
:posts posts
|
|
|
|
:uri uri})))))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2015-07-08 16:15:11 +00:00
|
|
|
(defn compile-tags-page [{:keys [blog-prefix] :as params}]
|
|
|
|
(println (blue "compiling tags page"))
|
2016-02-12 02:04:56 +00:00
|
|
|
(let [uri (page-uri "tags.html" params)]
|
|
|
|
(write-html uri
|
|
|
|
params
|
|
|
|
(render-file "/html/tags.html"
|
|
|
|
(merge params
|
|
|
|
{:active-page "tags"
|
2016-02-16 02:31:40 +00:00
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
2016-02-12 02:04:56 +00:00
|
|
|
:uri uri})))))
|
2015-07-08 16:15:11 +00:00
|
|
|
|
2015-09-17 15:13:45 +00:00
|
|
|
(defn content-until-more-marker
|
|
|
|
[^String content]
|
|
|
|
(let [index (.indexOf content "<!--more-->")]
|
|
|
|
(if (pos? index)
|
2016-01-11 12:30:21 +00:00
|
|
|
(let [s (subs content 0 index)]
|
|
|
|
(->> ((tagsoup/parse-string s) 2)
|
|
|
|
(drop 2)
|
|
|
|
hiccup/html)))))
|
2015-09-17 15:13:45 +00:00
|
|
|
|
2015-07-08 20:34:39 +00:00
|
|
|
(defn create-preview
|
|
|
|
"Creates a single post preview"
|
|
|
|
[blocks-per-preview post]
|
2015-09-18 20:21:19 +00:00
|
|
|
(merge post
|
2015-09-17 15:13:45 +00:00
|
|
|
{:content (or (content-until-more-marker (:content post))
|
2015-07-08 20:34:39 +00:00
|
|
|
(->> ((tagsoup/parse-string (:content post)) 2)
|
|
|
|
(drop 2)
|
|
|
|
(take blocks-per-preview)
|
|
|
|
hiccup/html))}))
|
|
|
|
|
|
|
|
(defn create-previews
|
|
|
|
"Returns a sequence of vectors, each containing a set of post previews"
|
|
|
|
[posts-per-page blocks-per-preview posts]
|
|
|
|
(->> posts
|
2015-09-18 20:22:40 +00:00
|
|
|
(map #(create-preview blocks-per-preview %))
|
2015-07-08 20:34:39 +00:00
|
|
|
(partition-all posts-per-page)
|
|
|
|
(map-indexed (fn [i v] {:index (inc i) :posts v}))))
|
|
|
|
|
|
|
|
(defn create-preview-links
|
|
|
|
"Turn each vector of previews into a map with :prev and :next keys that contain the uri of the
|
|
|
|
prev/next preview page"
|
2016-02-12 02:04:56 +00:00
|
|
|
[previews params]
|
2015-07-08 20:34:39 +00:00
|
|
|
(mapv (fn [[prev target next]]
|
|
|
|
(merge target
|
2016-02-12 02:04:56 +00:00
|
|
|
{:prev (if prev (page-uri (path "p" (str (:index prev) ".html")) params) nil)
|
|
|
|
:next (if next (page-uri (path "p" (str (:index next) ".html")) params) nil)}))
|
2015-07-08 20:34:39 +00:00
|
|
|
(partition 3 1 (flatten [nil previews nil]))))
|
|
|
|
|
|
|
|
(defn compile-preview-pages
|
|
|
|
"Compiles a series of pages containing 'previews' from each post"
|
|
|
|
[{:keys [blog-prefix posts-per-page blocks-per-preview] :as params} posts]
|
|
|
|
(when-not (empty? posts)
|
|
|
|
(let [previews (-> (create-previews posts-per-page blocks-per-preview posts)
|
2016-02-12 02:04:56 +00:00
|
|
|
(create-preview-links params))
|
|
|
|
previews (if (> (count previews) 1) (assoc-in previews [1 :prev] (page-uri "index.html" params)) previews)]
|
2015-11-08 13:33:07 +00:00
|
|
|
(create-folder (path "/" blog-prefix "p"))
|
2016-02-04 11:43:47 +00:00
|
|
|
(doseq [{:keys [index posts prev next]} previews
|
|
|
|
:let [index-page? (= 1 index)]]
|
2016-02-12 02:04:56 +00:00
|
|
|
(write-html (if index-page? (page-uri "index.html" params) (page-uri (path "p" (str index ".html")) params))
|
|
|
|
params
|
|
|
|
(render-file "/html/previews.html"
|
|
|
|
(merge params
|
|
|
|
{:active-page "preview"
|
|
|
|
:home (when index-page? true)
|
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
|
|
|
:posts posts
|
|
|
|
:prev-uri prev
|
|
|
|
:next-uri next})))))))
|
2015-07-08 20:34:39 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn compile-index
|
|
|
|
"Compiles the index page into html and spits it out into the public folder"
|
2016-04-19 02:44:09 +00:00
|
|
|
[{:keys [disqus?] :as params}]
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (blue "compiling index"))
|
2016-12-30 22:43:13 +00:00
|
|
|
(let [uri (page-uri "index.html" params)
|
2016-12-31 10:20:09 +00:00
|
|
|
debug? (-> params :debug?)
|
2016-12-30 22:43:13 +00:00
|
|
|
home-page (-> params :home-page)
|
|
|
|
meta {:active-page "home"
|
|
|
|
:home true
|
|
|
|
:disqus? disqus?
|
|
|
|
:uri uri
|
|
|
|
:post home-page
|
|
|
|
:page home-page}]
|
2016-12-31 10:20:09 +00:00
|
|
|
(when debug?
|
|
|
|
(println "\t-->" (cyan meta)))
|
2016-02-12 02:04:56 +00:00
|
|
|
(write-html uri
|
|
|
|
params
|
2016-12-30 22:43:13 +00:00
|
|
|
(render-file (str "/html/" (:layout home-page))
|
2016-02-12 02:04:56 +00:00
|
|
|
(merge params
|
2016-12-30 22:43:13 +00:00
|
|
|
meta)))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn compile-archives
|
|
|
|
"Compiles the archives page into html and spits it out into the public folder"
|
2015-02-23 18:14:31 +00:00
|
|
|
[{:keys [blog-prefix] :as params} posts]
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (blue "compiling archives"))
|
2016-02-12 02:04:56 +00:00
|
|
|
(let [uri (page-uri "archives.html" params)]
|
|
|
|
(write-html uri
|
|
|
|
params
|
|
|
|
(render-file "/html/archives.html"
|
|
|
|
(merge params
|
|
|
|
{:active-page "archives"
|
|
|
|
:archives true
|
|
|
|
:groups (group-for-archive posts)
|
2016-02-16 02:31:40 +00:00
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
2016-02-12 02:04:56 +00:00
|
|
|
:uri uri})))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2016-02-10 02:13:06 +00:00
|
|
|
(defn compile-authors
|
|
|
|
"For each author, creates a page with filtered posts."
|
|
|
|
[{:keys [blog-prefix author-root-uri author] :as params} posts]
|
|
|
|
(println (blue "compiling authors"))
|
|
|
|
(create-folder (path "/" blog-prefix author-root-uri))
|
|
|
|
;; if the post author is empty defaults to config's :author
|
|
|
|
(doseq [{:keys [author posts]} (group-for-author posts author)]
|
2016-02-12 02:04:56 +00:00
|
|
|
(let [uri (page-uri (str author ".html") :author-root-uri params)]
|
2016-02-10 02:13:06 +00:00
|
|
|
(println "\t-->" (cyan uri))
|
2016-02-12 02:04:56 +00:00
|
|
|
(write-html uri
|
|
|
|
params
|
|
|
|
(render-file "/html/author.html"
|
|
|
|
(merge params
|
|
|
|
{:author author
|
|
|
|
:groups (group-for-archive posts)
|
|
|
|
:servlet-context (path "/" blog-prefix "/")
|
|
|
|
:uri uri}))))))
|
2016-02-10 02:13:06 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn tag-posts
|
|
|
|
"Converts the tags in each post into links"
|
|
|
|
[posts config]
|
2014-12-04 16:38:48 +00:00
|
|
|
(map #(update-in % [:tags] (partial map (partial tag-info config))) posts))
|
|
|
|
|
2016-05-24 05:20:36 +00:00
|
|
|
(defn- template-dir?
|
|
|
|
"Checks that the dir exists in the templates directory."
|
|
|
|
[dir]
|
|
|
|
(.isDirectory (file (str "resources/templates/" dir))))
|
|
|
|
|
|
|
|
(defn- markup-entries [post-root page-root]
|
|
|
|
(let [entries (for [mu (m/markups)
|
|
|
|
t (distinct [post-root page-root])]
|
|
|
|
[(str (m/dir mu) "/" t) t])]
|
|
|
|
(apply concat entries)))
|
|
|
|
|
2015-06-14 15:16:35 +00:00
|
|
|
(defn copy-resources-from-markup-folders
|
2016-05-24 05:20:36 +00:00
|
|
|
"Copy resources from markup folders. This does not copy the markup entries."
|
2015-11-08 13:33:07 +00:00
|
|
|
[{:keys [post-root page-root] :as config}]
|
2016-05-24 05:20:36 +00:00
|
|
|
(let [folders (->> (markup-entries post-root page-root)
|
|
|
|
(filter template-dir?))]
|
|
|
|
(copy-resources
|
|
|
|
(merge config
|
|
|
|
{:resources folders
|
|
|
|
:ignored-files (map #(re-pattern-from-ext (m/ext %)) (m/markups))}))))
|
2015-06-14 05:47:18 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn read-config
|
|
|
|
"Reads the config file"
|
|
|
|
[]
|
2015-04-03 02:22:17 +00:00
|
|
|
(try
|
|
|
|
(let [config (-> "templates/config.edn"
|
|
|
|
get-resource
|
|
|
|
slurp
|
|
|
|
read-string
|
|
|
|
(update-in [:blog-prefix] (fnil str ""))
|
2015-11-08 13:33:07 +00:00
|
|
|
(update-in [:page-root] (fnil str ""))
|
|
|
|
(update-in [:post-root] (fnil str ""))
|
2016-01-09 01:44:07 +00:00
|
|
|
(update-in [:tag-root-uri] (fnil str ""))
|
2015-04-03 02:22:17 +00:00
|
|
|
(update-in [:rss-name] (fnil str "rss.xml"))
|
|
|
|
(update-in [:rss-filters] (fnil seq []))
|
|
|
|
(update-in [:sass-src] (fnil str "css"))
|
|
|
|
(update-in [:sass-dest] (fnil str "css"))
|
2016-12-17 10:29:16 +00:00
|
|
|
(update-in [:sass-path] (fnil str "sass"))
|
|
|
|
(update-in [:compass-path] (fnil str "compass"))
|
2015-04-03 02:22:17 +00:00
|
|
|
(update-in [:post-date-format] (fnil str "yyyy-MM-dd"))
|
|
|
|
(update-in [:keep-files] (fnil seq []))
|
|
|
|
(update-in [:ignored-files] (fnil seq [#"^\.#.*" #".*\.swp$"])))]
|
|
|
|
(merge
|
2015-07-08 20:34:39 +00:00
|
|
|
config
|
2015-11-08 13:33:07 +00:00
|
|
|
{:page-root-uri (root-uri :page-root-uri config)
|
2016-01-09 01:44:07 +00:00
|
|
|
:post-root-uri (root-uri :post-root-uri config)}))
|
2015-04-03 02:22:17 +00:00
|
|
|
(catch Exception _
|
|
|
|
(throw (IllegalArgumentException. "Failed to parse config.edn")))))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
2014-12-05 21:37:04 +00:00
|
|
|
(defn compile-assets
|
|
|
|
"Generates all the html and copies over resources specified in the config"
|
|
|
|
[]
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (green "compiling assets..."))
|
2016-12-31 10:20:09 +00:00
|
|
|
(let [{:keys [^String site-url blog-prefix rss-name recent-posts sass-src sass-dest sass-path compass-path keep-files ignored-files previews? clean-urls? debug? author-root-uri] :as config} (read-config)
|
2014-12-04 16:38:48 +00:00
|
|
|
posts (add-prev-next (read-posts config))
|
|
|
|
pages (add-prev-next (read-pages config))
|
2016-12-30 22:43:13 +00:00
|
|
|
home-pages (filter #(boolean (:home? %)) pages)
|
|
|
|
pages-without-home (filter #(boolean (not (:home? %))) pages)
|
|
|
|
[navbar-pages sidebar-pages] (group-pages pages-without-home)
|
2017-01-04 08:33:34 +00:00
|
|
|
navmap-pages (build-nav-map pages-without-home)
|
2014-12-04 16:38:48 +00:00
|
|
|
posts-by-tag (group-by-tags posts)
|
|
|
|
posts (tag-posts posts config)
|
2016-12-30 22:43:13 +00:00
|
|
|
latest-posts (->> posts (take recent-posts) vec)
|
2015-02-23 18:14:31 +00:00
|
|
|
params (merge config
|
2016-09-03 19:33:37 +00:00
|
|
|
{:today (java.util.Date.)
|
|
|
|
:title (:site-title config)
|
2015-08-17 14:30:23 +00:00
|
|
|
:active-page "home"
|
2015-02-23 18:14:31 +00:00
|
|
|
:tags (map (partial tag-info config) (keys posts-by-tag))
|
2016-12-30 22:43:13 +00:00
|
|
|
:latest-posts latest-posts
|
2015-02-23 18:14:31 +00:00
|
|
|
:navbar-pages navbar-pages
|
2017-01-04 08:33:34 +00:00
|
|
|
:navmap-pages navmap-pages
|
2015-02-23 18:14:31 +00:00
|
|
|
:sidebar-pages sidebar-pages
|
2016-12-30 22:43:13 +00:00
|
|
|
:home-page (if (not-empty home-pages)
|
|
|
|
(first home-pages)
|
|
|
|
(merge (first latest-posts)
|
|
|
|
{:layout "home.html"}))
|
2016-02-12 02:04:56 +00:00
|
|
|
:archives-uri (page-uri "archives.html" config)
|
|
|
|
:index-uri (page-uri "index.html" config)
|
|
|
|
:tags-uri (page-uri "tags.html" config)
|
2015-11-08 13:33:07 +00:00
|
|
|
:rss-uri (path "/" blog-prefix rss-name)
|
2015-06-14 10:23:58 +00:00
|
|
|
:site-url (if (.endsWith site-url "/") (.substring site-url 0 (dec (count site-url))) site-url)
|
2015-07-08 20:34:39 +00:00
|
|
|
:theme-path (str "file:resources/templates/themes/" (:theme config))})]
|
2017-01-04 08:33:34 +00:00
|
|
|
(when debug?
|
|
|
|
(println (blue "debug: navbar-pages:"))
|
|
|
|
(println "\t-->" (cyan navbar-pages))
|
|
|
|
(println (blue "debug: navmap-pages:"))
|
|
|
|
(println "\t-->" (cyan navmap-pages))
|
|
|
|
)
|
2015-06-14 15:16:35 +00:00
|
|
|
(set-custom-resource-path! (:theme-path params))
|
2014-12-04 16:38:48 +00:00
|
|
|
(wipe-public-folder keep-files)
|
2015-06-14 10:23:58 +00:00
|
|
|
(println (blue "copying theme resources"))
|
|
|
|
(copy-resources-from-theme config)
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (blue "copying resources"))
|
|
|
|
(copy-resources config)
|
2015-06-14 15:16:35 +00:00
|
|
|
(copy-resources-from-markup-folders config)
|
2016-12-30 22:43:13 +00:00
|
|
|
(compile-pages params pages-without-home)
|
2015-02-23 18:14:31 +00:00
|
|
|
(compile-posts params posts)
|
|
|
|
(compile-tags params posts-by-tag)
|
2015-07-08 16:15:11 +00:00
|
|
|
(compile-tags-page params)
|
2016-12-31 10:20:09 +00:00
|
|
|
(when previews?
|
|
|
|
(compile-preview-pages params posts))
|
|
|
|
(when (or (not-empty home-pages) (not previews?))
|
2015-07-08 20:34:39 +00:00
|
|
|
(compile-index params))
|
2015-02-23 18:14:31 +00:00
|
|
|
(compile-archives params posts)
|
2016-02-10 02:13:06 +00:00
|
|
|
(when author-root-uri
|
|
|
|
(println (blue "generating authors views"))
|
|
|
|
(compile-authors params posts))
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (blue "generating site map"))
|
2015-11-08 13:33:07 +00:00
|
|
|
(create-file (path "/" blog-prefix "sitemap.xml") (sitemap/generate site-url ignored-files))
|
2015-01-04 01:36:30 +00:00
|
|
|
(println (blue "generating main rss"))
|
2015-11-08 13:33:07 +00:00
|
|
|
(create-file (path "/" blog-prefix rss-name) (rss/make-channel config posts))
|
2015-01-04 01:36:30 +00:00
|
|
|
(println (blue "generating filtered rss"))
|
2015-11-08 13:33:07 +00:00
|
|
|
(rss/make-filtered-channels config posts-by-tag)
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (blue "compiling sass"))
|
2014-12-25 16:24:25 +00:00
|
|
|
(sass/compile-sass->css!
|
2016-12-17 10:29:16 +00:00
|
|
|
{:path-sass sass-path
|
|
|
|
:path-compass compass-path
|
|
|
|
:src-sass sass-src
|
2015-11-08 13:33:07 +00:00
|
|
|
:dest-sass (path ".." "public" blog-prefix sass-dest)
|
2015-07-08 20:34:39 +00:00
|
|
|
:ignored-files ignored-files
|
|
|
|
:base-dir "resources/templates/"})))
|
2014-12-04 16:38:48 +00:00
|
|
|
|
|
|
|
(defn compile-assets-timed []
|
|
|
|
(time
|
|
|
|
(try
|
|
|
|
(compile-assets)
|
|
|
|
(catch Exception e
|
2015-01-01 08:49:03 +00:00
|
|
|
(if (or (instance? IllegalArgumentException e)
|
|
|
|
(instance? clojure.lang.ExceptionInfo e))
|
2014-12-04 16:38:48 +00:00
|
|
|
(println (red "Error:") (yellow (.getMessage e)))
|
|
|
|
(write-exception e))))))
|