aboutsummaryrefslogtreecommitdiff
path: root/ennum.el
blob: 5f19ed4b87224f4064cd1370e6dcc74b050aa713 (plain)
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
;; -*- lexical-binding: t -*-

(require 'ennum-html)
(require 'ennum-image)
(require 'ox)
(require 'seq)
(require 'cl)
(require 'loadhist)
(require 'map)
(require 'memoize)
(require 'simple-httpd)

(defvar ennum-version "0.1.0"
  "Ennum version string")

(defvar ennum-blog nil
  "Property list specifying ennum publish settings")

(defvar ennum-track-features
  '(ennum ennum-html ennum-image ob-tangle org ox ox-html)
  "List of features to track on expression evaluation.")

(defvar ennum-feature-hash
  nil
  "List of hashes tracking current state of features.")

;; TODO: Should the store have an absolute path to deal with directory
;; changes? Yes, since we ask for an absolute working directory, we
;; should.
(defun ennum-intern (filename)
  (let* ((store-item
          (expand-file-name (ennum-file-hash filename)
                            (ennum-setting :store)))
         (interned-path (expand-file-name (file-name-nondirectory filename)
                                          store-item)))
    (unless (file-exists-p store-item)
      (message "Interning %s in %s" filename store-item)
      (ennum-copy filename interned-path t)
      (ennum--set-file-modes-recursively store-item #o555 #o444 #o555))
    interned-path))

(defun ennum--hash ()
  "Return SHA256 hash of buffer contents encoded using
filename-safe base64 encoding. See RFC 4648ยง5. Briefly, this is a
variant of base64 encoding where characters + and / are replaced
respectively by - and _, and the pad character = is optional."
  (replace-regexp-in-string
   (rx (any ?+ ?/ ?=))
   (lambda (str)
     (pcase str
       ("+" "-")
       ("/" "_")
       ("=" "")))
   (base64-encode-string
    (secure-hash 'sha256 (current-buffer) nil nil t))))

(defun ennum-file-hash (file)
  (ennum--file-hash file (file-attribute-modification-time
                          (file-attributes file))))

(defmemoize ennum--file-hash (file last-modified)
  (with-temp-buffer
    ;; TODO: Use ennum-with-file-contents
    (set-buffer-multibyte nil)
    (insert-file-contents-literally file)
    (insert file)
    (ennum--hash)))

(defun ennum--feature-environment (feature)
  "Return hash of the current state of FEATURE.

The returned hash is the hash of the file providing FEATURE, and
the current state of all its variables."
  (pcase (feature-symbols feature)
    (`(,file . ,entries)
     (with-temp-buffer
       ;; Print hash of file.
       (print (ennum-file-hash file) (current-buffer))
       ;; Print variables and their values.
       (dolist (variable entries)
         (print (if (and (atom variable)
                         (boundp variable)
                         ;; Exclude `ennum-feature-hash' since it
                         ;; is meant to be changed on each run.
                         (not (eq variable 'ennum-feature-hash)))
                    (cons variable (symbol-value variable))
                  variable)
                (current-buffer)))
       (ennum--hash)))))

(defun ennum--set-file-modes-recursively (directory directory-mode file-mode executable-file-mode)
  (chmod directory directory-mode)
  (seq-do (lambda (file)
            (cond
             ((file-directory-p file) (chmod file directory-mode))
             ((file-executable-p file) (chmod file executable-file-mode))
             (t (chmod file file-mode))))
          (ennum-directory-files directory t t)))

(defmacro ennum-exp (&rest body)
  `(ennum-eval (lambda () ,@body)))

(defun ennum-eval (closure)
  (let ((output
         (expand-file-name
          (with-temp-buffer
            (let ((print-length nil)
                  (print-level nil))
              (print ennum-feature-hash (current-buffer))
              (print closure (current-buffer)))
            (ennum--hash))
          (ennum-setting :store))))
    ;; Create store if it doesn't exist
    (ennum-mkdir-p (ennum-setting :store))
    ;; Create store item if it doesn't already exist
    (unless (file-exists-p output)
      (message "Building %s" output)
      (ennum-with-temporary-directory temporary-directory
        (ennum-with-current-directory temporary-directory
          (funcall closure))
        (rename-file temporary-directory output))
      (ennum--set-file-modes-recursively output #o555 #o444 #o555))
    output))

(defun ennum-store-item-union (items)
  "Return a store item that is the union of ITEMS."
  (ennum-exp
   (seq-do (lambda (item)
             (seq-do (lambda (destination)
                       ;; TODO: Print warning about overwriting files?
                       (let ((source (expand-file-name destination item)))
                         (unless (file-exists-p destination)
                           (if (file-directory-p source)
                               (make-directory destination)
                             (copy-file source destination t)))))
                     (reverse (ennum-directory-files item nil t))))
           items)))

(defmacro ennum-make-functional-setter (name copier accessor)
  `(defun ,name (object new-value)
     (let ((object-copy (,copier object)))
       (setf (,accessor object-copy) new-value)
       object-copy)))

(cl-defstruct (ennum-post (:constructor ennum-make-post)
                          (:copier ennum-copy-post))
  filename slug author date language links tangle
  summary tags thumbnail title translation-group translations)

(ennum-make-functional-setter
 ennum-post-set-translations ennum-copy-post ennum-post-translations)

(ennum-make-functional-setter
 ennum-post-set-links ennum-copy-post ennum-post-links)

(cl-defstruct (ennum-link (:constructor ennum-make-link)
                          (:copier nil))
  type path)

(cl-defstruct (ennum-post-link (:constructor ennum-make-post-link)
                                (:copier ennum-copy-post-link)
                                (:include ennum-link (type 'post)))
  target-title)

(ennum-make-functional-setter
 ennum-post-link-set-target-title ennum-copy-post-link ennum-post-link-target-title)

(cl-defstruct (ennum-video-link (:constructor ennum-make-video-link)
                                (:copier nil)
                                (:include ennum-link (type 'video)))
  poster)

(defun ennum-posts (posts-directory)
  (sort (seq-mapcat
         ;; Set translations slot of post objects.
         (pcase-lambda (`(,_ . ,posts))
           (let ((translations
                  (seq-map (lambda (post)
                             (cons (ennum-post-language post)
                                   (ennum-post-slug post)))
                           posts)))
             (seq-map (lambda (post)
                        (ennum-post-set-translations
                         post
                         (seq-remove (pcase-lambda (`(,_ . ,slug))
                                       (string= (ennum-post-slug post) slug))
                                     translations)))
                      posts)))
         (let ((posts
                ;; Read posts from org files.
                (ennum--filter-map
                 (lambda (file)
                   (when (string= (file-name-extension file) "org")
                     (ennum-read-post file)))
                 (ennum-directory-files (ennum-setting :posts-directory)))))
           ;; Group posts by translation group.
           (seq-group-by
            'ennum-post-translation-group
            ;; Set target title slot of post links.
            (seq-map
             (lambda (post)
               (ennum-post-set-links
                post
                (seq-map (lambda (link)
                           (if (and (ennum-post-link-p link)
                                    (eq (ennum-post-link-target-title link) 'required))
                               (ennum-post-link-set-target-title
                                link
                                (seq-some (lambda (post)
                                            (when (string= (ennum-post-slug post)
                                                           (ennum-link-path link))
                                              (ennum-post-title post)))
                                          posts))
                             link))
                         (ennum-post-links post))))
             posts))))
        'ennum-later-post-p))

(defun ennum-later-post-p (post1 post2)
  (time-less-p (ennum-post-date post2)
               (ennum-post-date post1)))

(defun ennum-read-post (filename)
  (ennum--read-post
   filename (file-attribute-modification-time
             (file-attributes filename))))

(defmemoize ennum--read-post (filename last-modified)
  (ennum-with-file-contents filename
    (let ((metadata (org-export-get-environment 'ennum-html))
          (export (apply-partially 'org-export-with-backend 'ennum-html)))
      (seq-do (lambda (key)
                (unless (plist-member metadata key)
                  (user-error "Metadata %s not specified" key)))
              ennum-mandatory-metadata)
      (let* ((tree (org-element-parse-buffer))
             (links (org-element-map tree 'link
                      (lambda (link)
                        (pcase link
                          (`(link ,properties . ,_)
                           (let ((link-type (org-element-property :type link))
                                 (path (org-element-property :path link)))
                             (pcase link-type
                               ("post"
                                (ennum-make-post-link
                                 :path path
                                 :target-title (if (org-element-contents link)
                                                   'not-required 'required)))
                               ("video"
                                (ennum-make-video-link
                                 :path path
                                 :poster (ennum-video-poster path)))
                               (_ (ennum-make-link
                                   :type (intern link-type)
                                   :path path))))))))))
        (ennum-make-post
         :filename filename
         :slug (file-name-base filename)
         :author (when-let (author (plist-get metadata :author))
                   (funcall export (first author)))
         :date (org-timestamp-to-time (first (plist-get metadata :date)))
         :language (plist-get metadata :language)
         :links links
         ;; TODO: Deal with cases when the :tangle parameter is "yes"
         :tangle (seq-uniq
                  (org-element-map tree 'src-block
                    (lambda (src-block)
                      (pcase (org-babel-get-src-block-info nil src-block)
                        (`(,_ ,_ ,arguments ,_ ,_ ,_ ,_)
                         (let ((tangle-output-file (map-elt arguments :tangle)))
                           (pcase tangle-output-file
                             ("no" nil)
                             (_ tangle-output-file))))))))
         :summary (when-let (summary (plist-get metadata :summary))
                    (funcall export (first summary)))
         :tags (plist-get metadata :filetags)
         :thumbnail (or (plist-get metadata :thumbnail)
                        (seq-some (lambda (link)
                                    (let ((path (ennum-link-path link)))
                                      (pcase (ennum-link-type link)
                                        ('image path)
                                        ('video (ennum-video-poster path)))))
                                  links))
         :title (funcall export (first (plist-get metadata :title)))
         :translation-group (or (plist-get metadata :translation-group)
                                (file-name-base filename)))))))

(defvar ennum-mandatory-metadata
  (list :title :date))

(defmacro ennum-with-file-contents (file &rest body)
  "Create a temporary buffer, insert contents of FILE into that
buffer and evaluate BODY. The value returned is the value of the
last form in BODY."
  (declare (indent defun))
  `(with-temp-buffer
     (insert-file-contents ,file)
     ,@body))

(defun ennum-directory-files (directory &optional full include-directories)
  "Return recursively the list of all files under DIRECTORY. Files are
returned in depth first order.

If FULL is non-nil, absolute file names are returned. Else, the
file names are relative to DIRECTORY. If INCLUDE-DIRECTORIES is
non-nil, include directories in the output."
  (let ((files (directory-files-recursively
                directory (rx anything) include-directories)))
    (if full
        files
      (seq-map (apply-partially 'string-remove-prefix
                                ;; Expand directory in case it is a
                                ;; relative path.
                                (file-name-as-directory (expand-file-name directory)))
               files))))

(defun ennum--org-output-filename (filename)
  (concat (file-name-sans-extension filename) ".html"))

(defun ennum-export-post (post interned-org-file &optional output-html-file body-only)
  "Export INTERNED-ORG-FILE of POST to OUTPUT-HTML-FILE using the
ennum-html backend. INTERNED-ORG-FILE must be an org file
interned into the ennum store.

When optional argument BODY-ONLY is non-nil, only return body
code, without surrounding template. See `org-export-as'.

When optional argument OUTPUT-HTML-FILE is nil, return exported
result as a string."
  (let ((system-time-locale (map-elt (ennum-setting :locale-alist)
                                     (ennum-post-language post) nil 'string=))
        (ext-plist (list :ennum-post post)))
    (ennum-with-file-contents interned-org-file
      (cond
       (output-html-file
        (ennum-mkdir-p (file-name-directory output-html-file))
        (org-export-to-file 'ennum-html output-html-file nil nil nil body-only ext-plist))
       (t (org-export-as 'ennum-html nil nil body-only ext-plist))))))

(defun ennum-publish-post (post)
  (let ((interned-org-file (ennum-intern (ennum-post-filename post))))
    (append
     (list
      (ennum-exp
       (ennum-export-post post
                          interned-org-file
                          (ennum--org-output-filename (ennum-post-filename post)))))
     (when (ennum-post-tangle post)
       (list
        (ennum-exp
         ;; TODO: Handle tangle outputs that are nested
         ;; into directories, and when each tangle output
         ;; is nested into a different directory.
         (let* ((post-file-copy
                 (expand-file-name
                  (file-name-nondirectory interned-org-file)
                  (ennum-setting :static-directory))))
           (ennum-copy interned-org-file post-file-copy)
           (org-babel-tangle-file post-file-copy)
           (delete-file post-file-copy)))))
     (seq-mapcat 'ennum-publish-link (ennum-post-links post)))))

(defun ennum-publish-generic (other-files-directory file)
  (let ((interned-file (ennum-intern file)))
    (ennum-exp
     (let ((output-file
            (pcase (file-name-extension file)
              ("org" (ennum--org-output-filename file))
              (_ file))))
       (pcase (file-name-extension interned-file)
         ("org"
          (when (file-name-directory output-file)
            (ennum-mkdir-p (file-name-directory output-file)))
          (ennum-with-file-contents interned-file
            (org-export-to-file 'html output-file)))
         (_ (ennum-copy interned-file output-file)))))))

(defun ennum-video-poster (video)
  (or (seq-some (lambda (file)
                  (and (string= (file-name-base file)
                                (file-name-base video))
                       (file-name-nondirectory file)))
                (ennum-directory-files (ennum-setting :images-directory)))
      (user-error "Poster for %s not found" video)))

(defun ennum-add-tongue-suffix (filename tongue)
  (pcase tongue
    ("en" filename)
    (_ (format "%s.%s%s"
               (file-name-sans-extension filename)
               tongue
               (file-name-extension filename t)))))

(defun ennum-index-filename (filename-prefix tongue &optional extension page-number)
  (let ((extension (if extension (concat "." extension) "")))
    (ennum-add-tongue-suffix
     (if page-number
         (format "%s-%s%s" filename-prefix page-number extension)
       (concat filename-prefix extension))
     tongue)))

(defun ennum-publish-index-page (filename-prefix title last-page posts page-number output-file)
  (ennum-exp
   (let* ((tongue (ennum-post-language (first posts)))
          (system-time-locale
           (map-elt (ennum-setting :locale-alist)
                    tongue nil 'string=)))
     (when (file-name-directory output-file)
       (ennum-mkdir-p (file-name-directory output-file)))
     (with-temp-buffer
       (insert (format "#+TITLE: %s\n" title))
       (insert (format "#+LANGUAGE: %s\n" tongue))
       (insert "#+OPTIONS: num:nil toc:nil\n\n")
       (seq-do (lambda (post)
                 (insert (format "* [[post:%s][%s]]\n"
                                 (ennum-post-slug post)
                                 (ennum-post-title post)))
                 (insert (format-time-string "/%b %e, %Y/\n\n" (ennum-post-date post)))
                 (when-let ((thumbnail (ennum-post-thumbnail post)))
                   (insert (format "[[thumbnail:%s]]\n\n" thumbnail)))
                 (when-let ((summary (ennum-post-summary post)))
                   (insert summary)
                   (insert "\n\n"))
                 (when-let ((tags (ennum-post-tags post)))
                   (insert "Tags: ")
                   (insert
                    (string-join
                     (seq-map (lambda (tag)
                                (format "[[tag:%s][%s]]" (ennum-add-tongue-suffix tag tongue) tag))
                              tags)
                     ", "))
                   (insert "\n\n")))
               posts)
       (unless (= page-number 1)
         (insert (format "[[./%s][Newer posts]]\n\n"
                         (ennum-index-filename (file-name-nondirectory filename-prefix)
                                               tongue nil (1- page-number)))))
       (unless last-page
         (insert (format "[[./%s][Older posts]]\n"
                         (ennum-index-filename (file-name-nondirectory filename-prefix)
                                               tongue nil (1+ page-number)))))
       (org-export-to-file 'html output-file)))))

(defun ennum-publish-index-home (first-index-page-output filename-prefix tongue)
  (ennum-exp
   (ennum-copy (ennum--file-join first-index-page-output
                                 (ennum-index-filename filename-prefix tongue "html" 1))
               (ennum-add-tongue-suffix (format "%s.html" filename-prefix) tongue))))

(defun ennum-publish-index (filename-prefix title posts-per-page posts)
  (let* ((tongue (ennum-post-language (first posts)))
         (number-of-pages (ceiling (length posts) posts-per-page))
         (page-numbers (number-sequence 1 number-of-pages))
         (output-files (seq-map (apply-partially
                                 'ennum-index-filename filename-prefix tongue "html")
                                page-numbers))
         (outputs (seq-mapn (lambda (post page-number output-file)
                              (ennum-publish-index-page
                               filename-prefix title
                               (= page-number number-of-pages)
                               post page-number output-file))
                            (seq-partition posts posts-per-page)
                            page-numbers
                            output-files)))
    (cons (ennum-publish-index-home (first outputs) filename-prefix tongue)
          outputs)))

(defun ennum--absolute-uri (path)
  (format "%s://%s/%s"
          (ennum-setting :blog-scheme)
          (ennum-setting :blog-domain)
          path))

(defun ennum--atom-date (date)
  (format-time-string "%Y-%m-%dT%H:%M:%SZ" date))

(defun ennum-publish-feed (feed-file title rights posts)
  (let ((interned-post-files
         (seq-map (lambda (post)
                    (ennum-intern (ennum-post-filename post)))
                  posts)))
    (ennum-exp
     (message "Writing %s" feed-file)
     ;; TODO: Create ennu-mkdir-p-for-file
     (when (file-name-directory feed-file)
       (ennum-mkdir-p (file-name-directory feed-file)))
     (with-temp-file feed-file
       (insert
        (xmlgen
         `(feed :xmlns "http://www.w3.org/2005/Atom"
                (id ,(ennum--absolute-uri ""))
                (title ,title)
                (updated ,(ennum--atom-date (ennum-post-date (first posts))))
                (link :rel "self" :href ,(ennum--absolute-uri feed-file))
                (generator
                 ,(format "Emacs %d.%d Org-mode %s ennum %s"
                          emacs-major-version emacs-minor-version (org-version) ennum-version))
                (rights ,rights)
                ,@(seq-mapn (lambda (post interned-post-file)
                              (ennum--feed-entry post interned-post-file))
                            posts interned-post-files))))))))

(defun ennum--feed-entry (post interned-post-file)
  (let ((link (ennum--absolute-uri (ennum--org-output-filename
                                    (ennum-post-filename post)))))
    `(entry (id ,link)
            (title :xml:lang ,(ennum-post-language post) ,(ennum-post-title post))
            (updated ,(ennum--atom-date (ennum-post-date post)))
            ,@(when org-export-with-author
                `((author
                   (name ,(ennum-post-author post))
                   (email ,user-mail-address))))
            (content :type "html" :xml:lang ,(ennum-post-language post)
                     ,(ennum-export-post post interned-post-file nil t))
            (link :rel "alternate" :href ,link)
            ,@(seq-map (lambda (tag) `(category :term ,tag))
                       (ennum-post-tags post)))))

(defun ennum-setting (property)
  (pcase property
    ((or :blog-domain :blog-license :blog-title
         :images-directory :output-directory :posts-directory
         :static-directory :tag-directory :video-directory
         :working-directory)
     (or (plist-get ennum-blog property)
         (user-error "Property %s not defined" property)))
    ((or :atom-feed-number-of-posts :atom-feed-file
         :blog-scheme :default-image-width
         :image-link-width :index-posts-per-page
         :locale-alist :other-files-directory
         :store :tag-directory :thumbnail-image-width)
     (plist-get (org-combine-plists
                 (list :atom-feed-number-of-posts 12
                       :atom-feed-file "blog.atom"
                       :blog-scheme "https"
                       :default-image-width 640
                       :image-link-width 1024
                       :index-posts-per-page 12
                       :locale-alist '(("en" . "C"))
                       :store ".ennum"
                       :tag-directory "tag"
                       :thumbnail-image-width 320)
                 ennum-blog)
                property))
    (_ (error "Unknown property %s" property))))

(defun ennum-image-output-filename (image width)
  (format "%s-%spx.%s"
          (file-name-sans-extension image)
          width (file-name-extension image)))

(defun ennum--file-join (&rest components)
  (string-join
   (seq-map (lambda (component)
              (string-remove-suffix "/" (file-name-as-directory component)))
            components)
   "/"))

(defun ennum-publish-image (image width)
  (let ((interned-image (ennum-intern image)))
    (ennum-exp
     (message "Resizing %s to width %s" image width)
     (ennum-mkdir-p (ennum-setting :images-directory))
     (ennum-image-optimize-image
      (ennum-image-resize-image
       interned-image
       (ennum--file-join
        (ennum-setting :images-directory)
        (ennum-image-output-filename
         (file-name-nondirectory interned-image) width))
       width)))))

(defun ennum-publish-copy (file)
  (let ((interned-file (ennum-intern file)))
    (ennum-exp (ennum-copy interned-file file))))

(defun newest-file (files)
  (pcase files
    (`(,head . ,tail)
     (seq-reduce (lambda (file1 file2)
                   (if (file-newer-than-file-p file1 file2)
                       file1 file2))
                 tail head))))

(defun ennum-mkdir-p (directory)
  (make-directory directory t))

(defun ennum-copy (source destination &optional quiet)
  "Copy file or directory from SOURCE to DESTINATION. Overwrite
if DESTINATION already exists."
  (unless quiet
    (message "Copying %s to %s" source destination))
  (if (file-directory-p source)
      (copy-directory source destination)
    (when (file-name-directory destination)
      (ennum-mkdir-p (file-name-directory destination)))
    (copy-file source destination t)))

(defun ennum--filter-map (function sequence)
  (seq-filter 'identity (seq-map function sequence)))

(defun ennum-publish-link (link)
  (pcase (ennum-link-type link)
    ('image
     (seq-map (lambda (width)
                (ennum-publish-image
                 (ennum--file-join (ennum-setting :images-directory)
                                   (ennum-link-path link))
                 width))
              (list (ennum-setting :default-image-width)
                    (ennum-setting :image-link-width))))
    ('static
     (list
      (ennum-publish-copy
       (ennum--file-join (ennum-setting :static-directory)
                         (ennum-link-path link)))))
    ('video
     (seq-map 'ennum-publish-copy
              (list
               (ennum--file-join (ennum-setting :video-directory)
                                 (ennum-link-path link))
               (ennum--file-join (ennum-setting :images-directory)
                                 (ennum-video-link-poster link)))))))

(defmacro ennum-with-current-directory (directory &rest body)
  "Change to DIRECTORY, evaluate BODY and restore the current
working directory. The value returned is the value of the last
form in BODY."
  (declare (indent defun))
  (let ((current-directory-symbol (make-symbol "current-directory")))
    `(let ((,current-directory-symbol default-directory))
       (unwind-protect (progn (cd ,directory) ,@body)
         (cd ,current-directory-symbol)))))

(defmacro ennum-with-temporary-directory (temporary-directory &rest body)
  "Create temporary directory, evaluate BODY with the absolute
path of that directory assigned to TEMPORARY-DIRECTORY and
finally delete the temporary directory. The value returned is the
value of the last form in BODY."
  (declare (indent defun))
  `(let ((,temporary-directory (make-temp-file "ennum" t)))
     (unwind-protect
         (progn ,@body)
       (delete-directory ,temporary-directory t))))

(defun ennum-assoc-delete (key alist)
  "Delete KEY from ALIST.

Delete all occurrences of KEY in ALIST. This function is purely
functional. ALIST is not mutated."
  (seq-remove (pcase-lambda (`(,entry-key . ,_))
                (equal entry-key key))
              alist))

(defun ennum-assoc-set (key value alist)
  "Associate KEY with VALUE in ALIST.

This function is purely functional. ALIST is not mutated. Keys
are compared using `equal'."
  (cl-acons key value (ennum-assoc-delete key alist)))

(defun ennum-assoc-prepend (key value alist)
  "Prepend VALUE to that associated with KEY in ALIST.

This function is purely funcion. ALIST is not mutated."
  (ennum-assoc-set key
                   (cons value (map-elt alist key nil 'equal))
                   alist))

(defun ennum-many-to-many-group-by (function sequence)
  "Apply FUNCTION to each element of SEQUENCE.
Separate the elements of SEQUENCE into an alist using the results
as keys. Keys are compared using `equal'."
  (seq-reduce (lambda (result element)
                (seq-reduce (lambda (result key)
                              (ennum-assoc-prepend key element result))
                            (funcall function element)
                            result))
              (seq-reverse sequence)
              nil))

(defun ennum-publish ()
  (interactive)
  ;; Recompute feature hash.
  (setq ennum-feature-hash
        (seq-map 'ennum--feature-environment ennum-track-features))
  (ennum-with-current-directory (ennum-setting :working-directory)
    (let* ((blog-title (ennum-setting :blog-title))
           (posts (ennum-posts (ennum-setting :posts-directory)))
           (posts-per-page (ennum-setting :index-posts-per-page))
           (other-files-directory (ennum-setting :other-files-directory))
           (result
            (ennum-store-item-union
             (append
              ;; Publish posts
              (seq-mapcat 'ennum-publish-post posts)
              ;; Publish feed
              (list (ennum-publish-feed (ennum-setting :atom-feed-file)
                                        blog-title
                                        (ennum-setting :blog-license)
                                        (seq-take posts (ennum-setting :atom-feed-number-of-posts))))
              ;; Publish indices
              (seq-mapcat
               (pcase-lambda (`(,tongue . ,posts))
                 (ennum-publish-index "index" blog-title posts-per-page posts))
               (seq-group-by 'ennum-post-language posts))
              ;; Publish tag indices
              (seq-mapcat
               (pcase-lambda (`(,tag . ,posts))
                 (seq-mapcat
                  (pcase-lambda (`(,tongue . ,posts))
                    (ennum-publish-index
                     (ennum--file-join (ennum-setting :tag-directory) tag)
                     tag posts-per-page posts))
                  (seq-group-by 'ennum-post-language posts)))
               (ennum-many-to-many-group-by 'ennum-post-tags posts))
              ;; Publish thumbnails
              (seq-map (lambda (image)
                         (ennum-publish-image
                          (ennum--file-join (ennum-setting :images-directory) image)
                          (ennum-setting :thumbnail-image-width)))
                       (ennum--filter-map 'ennum-post-thumbnail posts))
              ;; Publish other files
              (seq-map (apply-partially 'ennum-publish-generic other-files-directory)
                       (ennum-directory-files other-files-directory))))))
      ;; Replace old output directory
      (when (file-exists-p (ennum-setting :output-directory))
        (ennum--set-file-modes-recursively (ennum-setting :output-directory) #o755 #o644 #o755)
        (delete-directory (ennum-setting :output-directory) t))
      (copy-directory result (ennum-setting :output-directory))
      (message "Ennum published to %s" (expand-file-name (ennum-setting :output-directory))))))

;;; Server
;;;
;;; Test HTTP server to serve the blog locally

;; TODO: Why can't simple-httpd itself handle the unhexing?
(defun ennum-server-start ()
  (interactive)
  (setq httpd-root (expand-file-name (ennum-setting :output-directory)
                                     (ennum-setting :working-directory)))
  (defun httpd/ (proc uri-path query request)
    (let* ((uri-path (httpd-unhex uri-path))
           (file-path (httpd-gen-path uri-path)))
      (cond
       ;; If a HTML file other than index.html was requested, reject
       ;; that request.
       ((and (not (string= (file-name-nondirectory file-path) "index.html"))
             (string= (file-name-extension file-path) "html"))
        (httpd-error proc 404))
       ;; If the requested file was found, serve it.
       ((= (httpd-status file-path) 200)
        (httpd-serve-root proc httpd-root uri-path request))
       ;; Perhaps, this is a post or other HTML file that is being
       ;; requested. Try serving a file with a .html extension
       ;; appended.
       (t (httpd-serve-root proc httpd-root (concat uri-path ".html") request)))))
  (httpd-start)
  (message "Ennum web server listening at http://localhost:%d" httpd-port))

(defun ennum-server-stop ()
  (interactive)
  (httpd-stop)
  (message "Ennum web server stopped"))

(provide 'ennum)