coleslaw/src/indexes.lisp

106 lines
4 KiB
Common Lisp

(in-package :coleslaw)
(defvar *all-months* nil
"The list of months in which content was authored.")
(defvar *all-tags* nil
"The list of tags which content has been tagged with.")
(defclass index ()
((url :initarg :url :reader page-url)
(name :initarg :name :reader index-name)
(title :initarg :title :reader title-of)
(content :initarg :content :reader index-content)))
(defmethod initialize-instance :after ((object index) &key slug)
(with-slots (url) object
(setf url (compute-url object slug))))
(defmethod render ((object index) &key prev next)
(funcall (theme-fn 'index) (list :tags (find-all 'tag-index)
:months (find-all 'month-index)
:config *config*
:index object
:prev prev
:next next)))
;;; Index by Tag
(defclass tag-index (index) ())
(defmethod discover ((doc-type (eql (find-class 'tag-index))))
(let ((content (by-date (find-all 'post))))
(dolist (tag *all-tags*)
(add-document (index-by-tag tag content)))))
(defun index-by-tag (tag content)
"Return an index of all CONTENT matching the given TAG."
(make-instance 'tag-index :slug (tag-slug tag) :name (tag-name tag)
:content (remove-if-not (lambda (x) (tag-p tag x)) content)
:title (format nil "Content tagged ~a" (tag-name tag))))
(defmethod publish ((doc-type (eql (find-class 'tag-index))))
(dolist (index (find-all 'tag-index))
(write-document index)))
;;; Index by Month
(defclass month-index (index) ())
(defmethod discover ((doc-type (eql (find-class 'month-index))))
(let ((content (by-date (find-all 'post))))
(dolist (month *all-months*)
(add-document (index-by-month month content)))))
(defun index-by-month (month content)
"Return an index of all CONTENT matching the given MONTH."
(make-instance 'month-index :slug month :name month
:content (remove-if-not (lambda (x) (month-p month x)) content)
:title (format nil "Content from ~a" month)))
(defmethod publish ((doc-type (eql (find-class 'month-index))))
(dolist (index (find-all 'month-index))
(write-document index)))
;;; Reverse Chronological Index
(defclass numeric-index (index) ())
(defmethod discover ((doc-type (eql (find-class 'numeric-index))))
(let ((content (by-date (find-all 'post))))
(dotimes (i (ceiling (length content) 10))
(add-document (index-by-n i content)))))
(defun index-by-n (i content)
"Return the index for the Ith page of CONTENT in reverse chronological order."
(let ((content (subseq content (* 10 i))))
(make-instance 'numeric-index :slug (1+ i) :name (1+ i)
:content (take-up-to 10 content)
:title "Recent Content")))
(defmethod publish ((doc-type (eql (find-class 'numeric-index))))
(let ((indexes (sort (find-all 'numeric-index) #'< :key #'index-name)))
(loop for (next index prev) on (append '(nil) indexes)
while index do (write-document index nil :prev prev :next next))))
;;; Helper Functions
(defun update-content-metadata ()
"Set *ALL-TAGS* and *ALL-MONTHS* to the union of all tags and months
of content loaded in the DB."
(setf *all-tags* (all-tags))
(setf *all-months* (all-months)))
(defun all-months ()
"Retrieve a list of all months with published content."
(let ((months (loop :for post :in (find-all 'post)
:for content-date := (content-date post)
:when content-date
:collect (subseq content-date 0
(min 7 (length content-date))))))
(sort (remove-duplicates months :test #'string=) #'string>)))
(defun all-tags ()
"Retrieve a list of all tags used in content."
(let* ((dupes (mappend #'content-tags (find-all 'post)))
(tags (remove-duplicates dupes :test #'tag-slug=)))
(sort tags #'string< :key #'tag-name)))