summaryrefslogtreecommitdiffstatshomepage
path: root/nroam.el
blob: ed635ee4d35e92d8ecfbe816600a14aa26626fd3 (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
;;; nroam.el --- Org-roam backlinks within org-mode buffers  -*- lexical-binding: t; -*-

;; Copyright (C) 2021  Nicolas Petton

;; Author: Nicolas Petton <nicolas@petton.fr>
;; URL: https://github.com/NicolasPetton/nroam
;; Keywords: outlines, convenience
;; Version: 0.0.1
;; Package-Requires: ((emacs "26.1") (org-roam "1.2.3"))

;; This file is NOT part of GNU Emacs.

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; nroam is a supplementary package for org-roam that replaces the backlink side
;; buffer of Org-roam.  Instead, it displays org-roam backlinks at the end of
;; org-roam buffers.
;;
;; To setup nroam for all org-roam buffers, evaluate the following:
;; (add-hook 'org-mode-hook #'nroam-setup-maybe)

;;; Code:

(require 'org-roam)
(require 'org-roam-buffer)
(require 'org-element)
(require 'seq)
(require 'subr-x)
(require 'bookmark)

(defcustom nroam-sections
 '(nroam-backlinks-section)
 "List of functions to be called to insert sections in nroam buffers."
 :group 'nroam
 :type '(repeat function))

(defvar-local nroam-start-marker nil)
(defvar-local nroam-end-marker nil)

(defvar nroam-work-buffer " *nroam-work*")

(defmacro with-nroam-markers (&rest body)
  "Evaluate BODY.
Make the region inserted by BODY read-only, and marked with
`nroam-start-marker' and `nroam-end-marker'."
  (declare (indent 0) (debug t))
  `(let ((beg (point)))
     (set-marker nroam-start-marker (point))
     ,@body
     (put-text-property beg (1+ beg) 'front-sticky '(read-only))
     (put-text-property beg (point) 'read-only t)
     (set-marker nroam-end-marker (point))))

(defvar nroam-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map (kbd "C-c C-c") #'nroam-ctrl-c-ctrl-c)
    (define-key map (kbd "RET") #'nroam-return)
    map))

;;;###autoload
(defun nroam-setup-maybe ()
  "Setup nroam for the current buffer iff an org-roam buffer."
  (when (nroam--org-roam-file-p)
    (nroam-mode)))

;;;###autoload
(define-minor-mode nroam-mode
  "Show nroam sections at the end of org-roam buffers."
  :lighter "nroam"
  :keymap nroam-mode-map
  (if nroam-mode
      (progn
        (nroam--init-work-buffer)
        (add-hook 'before-save-hook #'nroam--prune nil t)
        (add-hook 'after-save-hook #'nroam--update-maybe nil t)
        (nroam-update))
    (remove-hook 'before-save-hook #'nroam--prune t)
    (remove-hook 'after-save-hook #'nroam--update-maybe t)
    (nroam--prune)))

;;;###autoload
(defun nroam-ctrl-c-ctrl-c ()
  "Update the sections for the current buffer, or fallback to `org-ctrl-c-ctrl-c'."
  (interactive)
  (if (nroam--point-at-section-p)
      (nroam-update)
    (call-interactively (if org-capture-mode
                            #'org-capture-finalize
                          #'org-ctrl-c-ctrl-c))))

;;;###autoload
(defun nroam-return ()
  "Open nroam link at point, or fallback to `org-return'."
  (interactive)
  (if (nroam--point-at-section-p)
      (nroam--follow-link)
    (call-interactively #'org-return)))

;;;###autoload
(defun nroam-update ()
  "Update org-roam sections for the current buffer."
  (interactive)
  (nroam--setup-markers)
  (nroam--prune)
  (nroam--insert))

(defun nroam-backlinks-section ()
  "Insert org-roam backlinks for the current buffer."
  (when-let* ((backlinks (nroam--get-backlinks))
              (groups (seq-reverse (nroam--group-backlinks backlinks))))
    (nroam--ensure-empty-line)
    (nroam--insert-backlinks-heading (seq-length backlinks))
    (seq-do #'nroam--insert-backlink-group groups)
    (nroam--hide-drawers)))

(defun nroam--org-roam-file-p ()
  "Return non-nil if the current buffer is an org-roam buffer."
  (org-roam--org-roam-file-p))

(defun nroam--init-work-buffer ()
  "Initiate nroam hidden buffer."
  (get-buffer-create nroam-work-buffer)
  (with-current-buffer nroam-work-buffer
    (delay-mode-hooks
      (org-mode))))

(defun nroam--point-at-section-p ()
  "Return non-hil if point if on the backlinks section."
  (when (nroam--sections-inserted-p)
    (when-let* ((beg (marker-position nroam-start-marker))
                (end (marker-position nroam-end-marker)))
      (<= beg (point) end))))

(defun nroam--update-maybe ()
  "Update backlinks when in nroam-mode."
  (when nroam-mode
    (nroam-update)))

(defun nroam--setup-markers ()
  "Setup the current buffer with markers for nroam."
  (unless (nroam--sections-inserted-p)
    (progn
      (setq nroam-start-marker (make-marker))
      (setq nroam-end-marker (make-marker)))))

(defun nroam--sections-inserted-p ()
  "Return non-nil if the current buffer has nroam sections inserted."
  (and (markerp nroam-start-marker)
       (marker-position nroam-start-marker)))

(defun nroam--prune ()
  "Remove nroam sections from the current buffer."
  (let ((inhibit-read-only t))
    (save-excursion
      (goto-char (point-min))
      (with-buffer-modified-unmodified
       (when (nroam--sections-inserted-p)
         (delete-region nroam-start-marker nroam-end-marker))))))

(defun nroam--insert ()
  "Insert nroam sections in the current buffer."
  (with-buffer-modified-unmodified
   (save-excursion
     (goto-char (point-max))
     (with-nroam-markers
       (seq-do #'funcall nroam-sections)))
   (nroam--hide-drawers)))

(defun nroam--get-backlinks ()
  "Return a list of backlinks for the current buffer."
  (if-let* ((file-path (buffer-file-name (current-buffer)))
            (titles (org-roam--extract-titles)))
      (org-roam--get-backlinks (cons file-path titles))))

(defun nroam--group-backlinks (backlinks)
  "Return BACKLINKS grouped by source file."
  (seq-group-by #'car backlinks))

(defun nroam--insert-backlinks-heading (count)
  "Insert the heading for the backlinks section with a COUNT."
  (insert (format "* %s %s\n"
                  count
                  (nroam--pluralize count "linked reference"))))

(defun nroam--insert-backlink-group (group)
  "Insert all backlinks in GROUP."
  (let ((file (car group))
        (backlinks (cdr group)))
    (insert (format "\n** %s\n"
                    (org-roam-format-link
                     file
                     (org-roam-db--get-title file)
                     "file")))
    (seq-do-indexed (lambda (backlink index)
                      (nroam--insert-backlink backlink)
                      (when (< index (1- (seq-length backlinks)))
                        (insert "\n")))
                    backlinks)))

(defun nroam--insert-backlink (backlink)
  "Insert a link to the org-roam BACKLINK."
  (nroam--insert-source-content backlink))

(defun nroam--insert-source-content (backlink)
  "Insert the source element where BACKLINK is defined."
  (seq-let (from _ props) backlink
    (when-let* ((backlink-point (plist-get props :point))
                (elt (nroam--crawl-source from backlink-point))
                (type (car elt))
                (content (string-trim (cdr elt)))
                (beg (point)))
      (progn
        (pcase type
          ('headline (progn
                       (org-paste-subtree 3 (nroam--fix-links content from))
                       (goto-char (point-max))))
          (_ (insert (nroam--fix-links content from))))
        (set-text-properties beg (point)
                             `(nroam-link t file ,from point ,backlink-point))
        (insert "\n")))))

(defun nroam--crawl-source (file point)
  "Return the source element in FILE at POINT."
  (with-current-buffer nroam-work-buffer
    (insert-file-contents file nil nil nil 'replace)
    (goto-char point)
    (let ((elt (org-element-at-point)))
      (let ((begin (org-element-property :begin elt))
            (end (org-element-property :end elt))
            (type (org-element-type elt)))
        `(,type . ,(buffer-substring begin end))))))

(defun nroam--fix-links (content origin)
  "Correct all relative links in CONTENT from ORIGIN.
Temporary fix until `org-roam' v2 is out."
  (org-roam-buffer-expand-links content origin))

(defun nroam--follow-link ()
  "Follow backlink at point."
  (when (get-text-property (point) 'nroam-link)
    (let ((file (get-text-property (point) 'file))
          (point (get-text-property (point) 'point)))
      (org-open-file file t)
      (goto-char point))))

(defun nroam--hide-drawers ()
  "Fold all drawers starting at POINT in the current buffer."
  ;; Taken from `org-hide-drawer-all'.
  (save-excursion
    (while (re-search-forward org-drawer-regexp nil t)
      (let* ((pair (get-char-property-and-overlay (line-beginning-position)
						  'invisible))
	     (o (cdr-safe pair)))
	(if (overlayp o) (goto-char (overlay-end o)) ;invisible drawer
	  (pcase (get-char-property-and-overlay (point) 'invisible)
	    (`(outline . ,o) (goto-char (overlay-end o))) ;already folded
	    (_
	     (let* ((drawer (org-element-at-point))
		    (type (org-element-type drawer)))
	       (when (memq type '(drawer property-drawer))
		 (org-hide-drawer-toggle t nil drawer)
		 ;; Make sure to skip drawer entirely or we might flag it
		 ;; another time when matching its ending line with
		 ;; `org-drawer-regexp'.
		 (goto-char (org-element-property :end drawer)))))))))))

(defun nroam--pluralize (n thing)
  "Pluralize the string THING if N>1."
  (format "%s%s"
          thing
          (if (> n 1) "s" "")))

(defun nroam--ensure-empty-line ()
  "Insert a newline character if the buffer does not end with a newline."
  (let ((inhibit-read-only t))
    (goto-char (point-max))
    (unless (eq ?\n (char-before (1- (point)))) (insert "\n"))))

(provide 'nroam)
;;; nroam.el ends here