2017-11-12 23:48:21 +01:00
|
|
|
;;; blog.el --- A simple org-mode & elnode blog software.
|
|
|
|
;;; -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
(require 'elnode)
|
|
|
|
(require 'f)
|
|
|
|
|
2017-11-13 00:16:26 +01:00
|
|
|
;; Definition of customization options
|
|
|
|
|
|
|
|
(defgroup elblog nil
|
|
|
|
"Configuration for the Emacs Lisp blog software"
|
|
|
|
:link '(url-link "https://github.com/tazjin/elblog"))
|
|
|
|
|
|
|
|
(defcustom elblog-port 8010
|
|
|
|
"Port to run elblog's HTTP server on"
|
|
|
|
:group 'elblog
|
|
|
|
:type 'integer)
|
|
|
|
|
|
|
|
(defcustom elblog-host "localhost"
|
|
|
|
"Host for elblog's HTTP server to listen on"
|
|
|
|
:group 'elblog
|
|
|
|
:type 'string)
|
|
|
|
|
2017-11-13 00:57:20 +01:00
|
|
|
;; org-mode settings need to be configured a certain way for elblog's HTML
|
|
|
|
;; templating to work correctly.
|
|
|
|
(defun configure-org-html-export ()
|
|
|
|
(setq org-html-postamble t)
|
|
|
|
(setq org-html-doctype "html5")
|
|
|
|
(setq org-html-head-include-scripts nil)
|
|
|
|
(setq org-html-style-default (f-read-text "blog.css"))
|
|
|
|
(setq org-html-preamble-format
|
|
|
|
'(("en" "<header><h1><a class=\"unstyled-link\" href=\"/\">Tazjin's blog</a></h1><hr></header>")))
|
|
|
|
(setq org-html-postamble-format `(("en" ,(f-read-text "postamble.html")))))
|
|
|
|
|
2017-11-13 00:16:26 +01:00
|
|
|
;; Article fetching & rendering functions
|
|
|
|
|
2017-11-12 23:48:21 +01:00
|
|
|
(defun render-org-buffer (buffer &optional force)
|
|
|
|
"Renders an org-mode buffer as HTML and returns the name of the output buffer."
|
|
|
|
(letrec ((input-buffer (get-buffer buffer))
|
|
|
|
(output-buffer (concat buffer "-rendered"))
|
|
|
|
;; Don't re-render articles unless forced.
|
|
|
|
(must-render (or force
|
|
|
|
(not (get-buffer output-buffer)))))
|
|
|
|
(if (and input-buffer must-render)
|
|
|
|
(with-current-buffer input-buffer
|
|
|
|
(org-export-to-buffer 'html output-buffer nil nil t)))
|
|
|
|
(if input-buffer output-buffer nil)))
|
|
|
|
|
|
|
|
(defun get-buffer-string (buffer)
|
|
|
|
"Returns the contents of the specified buffer as a string."
|
|
|
|
(with-current-buffer (get-buffer buffer)
|
|
|
|
(buffer-string)))
|
|
|
|
|
|
|
|
(defvar-local article-not-found
|
|
|
|
'(404 . "<html><body><p>Oh no, the article was not found.</p></body></html>"))
|
|
|
|
|
|
|
|
(defvar-local text-html '("Content-Type" . "text/html"))
|
|
|
|
|
|
|
|
(defun render-article (article)
|
|
|
|
"Renders an article, if it exists."
|
2017-11-13 00:57:20 +01:00
|
|
|
(let ((output-buffer (render-org-buffer (concat article ".org") t)))
|
2017-11-12 23:48:21 +01:00
|
|
|
(if output-buffer `(200 . ,(get-buffer-string output-buffer))
|
|
|
|
article-not-found)))
|
|
|
|
|
|
|
|
(defun blog-post-handler (httpcon)
|
|
|
|
"This handler servers a blog post from the configured blog post directory."
|
|
|
|
(let ((response (render-article (elnode-http-mapping httpcon 1))))
|
|
|
|
(elnode-http-start httpcon (car response) text-html)
|
|
|
|
(elnode-http-return httpcon (cdr response))))
|
|
|
|
|
2017-11-13 00:16:26 +01:00
|
|
|
;; Web server implementation
|
|
|
|
|
2017-11-12 23:48:21 +01:00
|
|
|
(defvar-local elblog-routes
|
|
|
|
'(("^.*//en/\\(.*\\)" . blog-post-handler)))
|
|
|
|
|
|
|
|
(defun elblog-handler (httpcon)
|
|
|
|
(elnode-hostpath-dispatcher httpcon elblog-routes))
|
|
|
|
|
2017-11-12 23:56:27 +01:00
|
|
|
(defun start-elblog ()
|
|
|
|
(interactive)
|
2017-11-13 00:57:20 +01:00
|
|
|
(configure-org-html-export)
|
2017-11-12 23:56:27 +01:00
|
|
|
(elnode-start 'elblog-handler
|
2017-11-13 00:16:26 +01:00
|
|
|
:port elblog-port
|
|
|
|
:host elblog-host))
|
2017-11-12 23:56:27 +01:00
|
|
|
|
|
|
|
(defun stop-elblog ()
|
|
|
|
(interactive)
|
2017-11-13 00:16:26 +01:00
|
|
|
(elnode-stop elblog-port))
|