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
|
;;; citar-org.el --- Org-cite support for citar -*- lexical-binding: t; -*-
;; SPDX-FileCopyrightText: 2021-2022 Bruce D'Arcus
;; SPDX-License-Identifier: GPL-3.0-or-later
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;; This is a small package that integrates citar and org-cite. It
;; provides a simple org-cite processor with "follow", "insert", and
;; "activate" capabilities.
;; Simply load this file (or its generated autoloads) and it will
;; make the processor available to 'org-cite'. To instruct org-cite
;; to use citar, set one or more of the customization variables
;; 'org-cite-activate-processor', 'org-cite-follow-processor', and
;; 'org-cite-insert-processor' to the symbol 'citar.
;;; Code:
(require 'citar)
(require 'org)
(require 'org-element)
(require 'org-id)
(require 'oc)
(require 'oc-basic)
(require 'oc-csl)
(declare-function org-open-at-point "org")
(declare-function org-element-property "org-element")
(declare-function org-element-type "org-element")
(declare-function org-cite-make-insert-processor "oc")
(declare-function org-cite-get-references "oc")
(declare-function embark-act "ext:embark")
(declare-function evil-insert "ext:evil")
(declare-function org-roam-ref-add "ext:org-roam-node")
(defvar citar-open-note-function)
(defvar citar-file-open-function)
(defvar embark-target-finders)
(defvar embark-keymap-alist)
(defvar embark-pre-action-hooks)
(defface citar-org-style-preview
;; Not sure if this is the best parent face.
'((t :inherit citar))
"Face for org-cite previews."
:group 'citar-org)
(defcustom citar-org-styles-format 'long
"Style format; whether to use full style names or shortcuts."
:group 'citar-org
:type '(choice
(const long)
(const short)))
(defcustom citar-org-style-targets nil
"Export processor targets to include in styles list.
If nil, use `org-cite-supported-styles'."
:group 'citar-org
:type '(repeat :tag "org-cite export processor" symbol))
(defcustom citar-org-activation-functions
'(org-cite-basic-activate
citar-org-activate-keymap)
"List of activation functions for a citation.
Each function takes one argument, a citation."
:group 'citar-org
:type '(repeat function))
;;; Keymaps
(defvar citar-org-citation-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "<mouse-1>") (cons "default action" #'org-open-at-point))
(with-eval-after-load 'embark
(define-key map (kbd "<mouse-3>") (cons "embark act" #'embark-act)))
(define-key map (kbd "C-c C-x DEL") (cons "delete citation" #'citar-org-delete-citation))
(define-key map (kbd "C-c C-x k") (cons "kill citation" #'citar-org-kill-citation))
(define-key map (kbd "S-<left>") (cons "shift left" #'citar-org-shift-reference-left))
(define-key map (kbd "S-<right>") (cons "shift right" #'citar-org-shift-reference-right))
(define-key map (kbd "M-p") (cons "update prefix/suffix" #'citar-org-update-pre-suffix))
map)
"Keymap for interacting with org citations at point.")
;; TODO maybe connvert to defcustoms. But this is not really the right approach;
;; better to just run the export processors to get the previews. But we need
;; citation context for that, or some other solution to have a citation to
;; process.
(defvar citar-org-style-preview-alist
'(("/" . "(de Villiers et al, 2019)")
("/b" . "de Villiers et al, 2019")
("/c" . "(De Villiers et al, 2019)")
("/bc" . "de Villiers et al, 2019")
;; "text" style.
("text" . "de Villiers et al (2019)")
("text/c" . "De Villiers et al (2019)")
("text/f" . "de Villiers, Smith, Doa, and Jones (2019)")
("text/cf" . "De Villiers, Smith, Doa, and Jones (2019)")
;; "author" style.
("author" . "de Villiers et al")
("author/c" . "De Villiers et al")
("author/f" . "de Villiers, Smith, Doa, and Jones")
("author/cf" . "De Villiers, Smith, Doa, and Jones")
;; "locators" style.
("locators" . "(p23)")
("locators" . "p23")
;; "noauthor" style.
("noauthor" . "(2019)")
("noauthor/b" . "2019")))
(defun citar-org--style-candidates ()
"Return a list of supported styles as completion candidates."
(let ((styles (citar-org--flat-styles)))
(mapcar
(lambda (style)
(if (and (string-match "/" style)
(< 1 (length style)))
(propertize style 'face 'citar)
(propertize style 'face 'citar-highlight)))
styles)))
(defun citar-org--flat-styles (&optional proc)
"Return a flat list of supported styles.
With PROC list, limit to specific processor(s)."
(let ((styles (list)))
(dolist (style-variants (org-cite-supported-styles proc))
(seq-let (style &rest variants) style-variants
(let ((style-name (if (string= "nil" (car style)) "/" (car style))))
(push style-name styles)
(dolist (variant variants)
(let ((fstyle
(concat style-name
(unless (string= "/" style-name) "/")
(cadr variant))))
(push fstyle styles))))))
styles))
;;; Org-cite processors
;; NOTE I may move some or all of these to a separate project
;;;###autoload
(defun citar-org-select-key (&optional multiple)
"Return a list of keys when MULTIPLE, or else a key string."
(if multiple
(citar-select-refs)
(citar-select-ref)))
;;;###autoload
(defun citar-org-insert-citation (keys &optional style)
"Insert KEYS in org-cite format, with STYLE."
(let ((context (org-element-context)))
(when style
(let ((raw-style
(citar-org-select-style)))
(setq style
(if (string-equal raw-style "") raw-style
(concat "/" raw-style)))))
(if-let ((citation (citar-org--citation-at-point context)))
(when-let ((keys (seq-difference keys (org-cite-get-references citation t)))
(keystring (mapconcat (lambda (key) (concat "@" key)) keys "; "))
(begin (org-element-property :contents-begin citation)))
(if (<= (point) begin)
(org-with-point-at begin
(insert keystring ";"))
(let ((refatpt (citar-org--reference-at-point)))
(org-with-point-at (or (and refatpt (org-element-property :end refatpt))
(org-element-property :contents-end citation))
(if (char-equal ?\; (char-before))
(insert-before-markers keystring ";")
(insert-before-markers ";" keystring))))))
(if (org-cite--allowed-p context)
(insert
(format "[cite%s:%s]" (or style "")
(mapconcat (lambda (key) (concat "@" key)) keys "; ")))
(user-error "Cannot insert a citation here")))))
;;;###autoload
(defun citar-org-insert-edit (&optional arg)
"Run `org-cite-insert' with citar insert processor.
ARG is used as the prefix argument."
(let ((org-cite-insert-processor 'citar))
(org-cite-insert arg)))
;;;###autoload
(defun citar-org-follow (_datum _arg)
"Follow processor for org-cite."
(call-interactively citar-at-point-function))
;;;###autoload
(defun citar-org-select-style (&optional _arg)
"Complete a citation style for org-cite with preview."
(let* ((oc-styles
;; Sort the list upfront, but let completion UI handle beyond that.
(sort (citar-org--style-candidates) 'string-lessp))
(style
(completing-read
"Styles: "
(lambda (str pred action)
(if (eq action 'metadata)
`(metadata
(annotation-function . citar-org--style-preview-annote)
(group-function . citar-org--styles-group-fn))
(complete-with-action action oc-styles str pred)))))
(style-final (string-trim style)))
(if (string= style-final "/") "" style-final)))
(defun citar-org--styles-group-fn (style transform)
"Return group title of STYLE or TRANSFORM the candidate.
This is a group-function that groups org-cite style/variant
strings by style."
(let* ((style-str (string-trim style))
(short-style
(if (string-match "^/[bcf]*" style-str) "default"
(car (split-string style-str "/")))))
(if transform
;; Use the candidate string as is, but add back whitespace alignment.
(concat " " (truncate-string-to-width style-str 20 nil 32))
;; Transform for grouping and display.
(pcase short-style
("author" "Author-Only")
("locators" "Locators-Only")
("text" "Textual/Narrative")
("nocite" "No Cite")
("year" "Year-Only")
("noauthor" "Suppress Author")
(_ (upcase-initials short-style))))))
(defun citar-org--style-preview-annote (style &optional _citation)
"Annotate STYLE with CITATION preview."
;; TODO rather than use the alist, run the export processors on the citation.
(let* ((preview (or (cdr (assoc style citar-org-style-preview-alist)) ""))
;; TODO look at how define-face does this.
(formatted-preview (truncate-string-to-width preview 50 nil 32)))
(propertize formatted-preview 'face 'citar-org-style-preview)))
;;;###autoload
(defun citar-org-local-bib-files (&rest _args)
"Return local bib file paths for org buffer."
(seq-difference (org-cite-list-bibliography-files)
org-cite-global-bibliography))
;;; Org note function
(defun citar-org--id-get-create (&optional force)
"Call `org-id-get-create' while maintaining point.
If point is at the beginning of the buffer and a new properties
drawer is created, move point after the drawer.
More generally, if `org-id-get-create' inserts text at point,
move point after the insertion.
With optional argument FORCE, force the creation of a new ID."
(let ((point (point-marker)))
(set-marker-insertion-type point t)
(unwind-protect
(org-id-get-create force)
(goto-char point)
(set-marker point nil))))
;;;###autoload
(defun citar-org-roam-make-preamble (key)
"Add a preamble to org-roam note, with KEY."
(when (and (derived-mode-p 'org-mode)
(fboundp 'org-roam-buffer-p)
(org-roam-buffer-p))
(ignore-errors (citar-org--id-get-create))
(ignore-errors (org-roam-ref-add (concat "@" key)))))
;;;###autoload
(defun citar-org-format-note-default (key entry)
"Format a note from KEY and ENTRY."
(let* ((template (citar--get-template 'note))
(note-meta (when template
(citar-format--entry template entry)))
(filepath (expand-file-name
(concat key ".org")
(car citar-notes-paths)))
(buffer (find-file filepath)))
(with-current-buffer buffer
;; This just overrides other template insertion.
(erase-buffer)
(citar-org-roam-make-preamble key)
(insert "#+title: ")
(when template (insert note-meta))
(insert "\n\n|\n\n#+print_bibliography:")
(search-backward "|")
(delete-char 1)
(when (fboundp 'evil-insert)
(evil-insert 1)))))
;;; Embark target finder
;;;###autoload
(defun citar-org-key-at-point ()
"Return key at point for org-cite citation-reference or property."
(or (citar-org--key-at-point)
(citar-org--prop-key-at-point)))
(defun citar-org--key-at-point ()
"Return key at point for org-cite citation-reference."
(when-let ((reference (citar-org--reference-at-point)))
(cons (org-element-property :key reference)
(cons (org-element-property :begin reference)
(org-element-property :end reference)))))
(defun citar-org--prop-key-at-point ()
"Return citekey at point, when in org property drawer.
Citkey must be formatted as `@key'."
(when (and (equal (org-element-type (org-element-at-point)) 'node-property)
(org-in-regexp (concat "[[:space:]]" org-element-citation-key-re)))
(cons (substring (match-string 0) 2)
(cons (match-beginning 0)
(match-end 0)))))
;;;###autoload
(defun citar-org-citation-at-point ()
"Return org-cite citation keys at point as a list for `embark'."
(when-let ((citation (citar-org--citation-at-point)))
(cons (org-cite-get-references citation t)
(org-cite-boundaries citation))))
;;; Functions for editing/modifying citations
(defun citar-org--reference-at-point (&optional context)
"Return citation-reference org-element at point, if any.
Argument CONTEXT is an org element at point, usually a citation
or citation-reference."
(when-let ((context (or context (org-element-context))))
(when (eq 'citation-reference (org-element-type context))
context)))
(defun citar-org--citation-at-point (&optional context)
"Return citation element containing point, if any.
Argument CONTEXT is an org element at point, usually a citation
or citation-reference."
(let ((element (or context (org-element-context))))
(while (and element (not (eq 'citation (org-element-type element))))
(setq element (org-element-property :parent element)))
(when-let ((bounds (and element (org-cite-boundaries element))))
(when (and (>= (point) (car bounds))
(<= (point) (cdr bounds)))
element))))
(defun citar-org-list-keys ()
"List citation keys in the org buffer."
(let ((org-tree (org-element-parse-buffer)))
(delete-dups
(org-element-map org-tree 'citation-reference
(lambda (r) (org-element-property :key r))
org-tree))))
;; most of this section is adapted from org-ref-cite
(defun citar-org-activate-keymap (citation)
"Activation function for CITATION to add keymap and tooltip."
(pcase-let ((`(,beg . ,end) (org-cite-boundaries citation)))
;; Put the keymap on a citation
(put-text-property beg end 'keymap citar-org-citation-map)))
(defun citar-org--get-ref-index (refs ref)
"Return index of citation-reference REF within REFS."
(seq-position refs ref
(lambda (r1 r2)
(and (string= (org-element-property :key r1)
(org-element-property :key r2))))))
(defun citar-org-delete-citation ()
"Delete the citation or citation-reference at point."
(interactive)
(org-cite-delete-citation (org-element-context)))
(defun citar-org-kill-citation ()
"Kill (copy) the citation or citation-reference at point."
(interactive)
(let* ((datum (org-element-context)))
(kill-region (org-element-property :begin datum) (org-element-property :end datum))))
(defun citar-org-cite-swap (i j lst)
"Swap index I and J in the list LST."
(let ((tempi (nth i lst)))
(setf (nth i lst) (nth j lst))
(setf (nth j lst) tempi))
lst)
(defun citar-org--shift-reference (datum direction)
"When point is on a citation-reference DATUM, shift it in DIRECTION."
(let* ((current-citation (if (eq 'citation (org-element-type datum)) datum
(org-element-property :parent datum)))
(current-ref (when (eq 'citation-reference (org-element-type datum)) datum))
(refs (org-cite-get-references current-citation))
(index
(citar-org--get-ref-index refs current-ref)))
(when (= 1 (length refs))
(error "You only have one reference; you cannot shift this"))
(when (null index)
(error "Nothing to shift here"))
(setf (buffer-substring (org-element-property :contents-begin current-citation)
(org-element-property :contents-end current-citation))
(org-element-interpret-data
(citar-org-cite-swap
index
(if (eq 'left direction) (- index 1) (+ index 1)) refs)))
;; Now get on the original ref.
(let* ((newrefs (org-cite-get-references current-citation))
(index
(citar-org--get-ref-index newrefs current-ref)))
(goto-char (org-element-property :begin (nth index newrefs))))))
(defun citar-org-shift-reference-left ()
"When point is on a citation-reference, shift it left."
(interactive)
(let ((datum (org-element-context)))
(citar-org--shift-reference datum 'left)))
(defun citar-org-shift-reference-right ()
"When point is on a citation-reference, shift it right."
(interactive)
(let ((datum (org-element-context)))
(citar-org--shift-reference datum 'right)))
(defun citar-org-update-pre-suffix ()
"Change the pre/suffix text of the reference at point."
;; TODO I want this to also work for global affixes on the citation,
;; but haven't figured that out yet.
(interactive)
(let* ((datum (org-element-context))
(datum-type (org-element-type datum))
(ref (if (eq datum-type 'citation-reference) datum
(error "Not on a citation reference")))
(key (org-element-property :key ref))
;; TODO handle space delimiter elegantly.
(pre (read-string "Prefix text: " (org-element-property :prefix ref)))
(post (read-string "Suffix text: " (org-element-property :suffix ref))))
(setf (buffer-substring (org-element-property :begin ref)
(org-element-property :end ref))
(org-element-interpret-data
`(citation-reference
(:key ,key :prefix ,pre :suffix ,post))))))
;; Load this last.
;;;###autoload
(defun citar-org-activate (citation)
"Run all the activation functions in `citar-org-activation-functions'.
Argument CITATION is an org-element holding the references."
(dolist (activate-func citar-org-activation-functions)
(funcall activate-func citation)))
;;;###autoload
(with-eval-after-load 'oc
(org-cite-register-processor 'citar
:insert (org-cite-make-insert-processor
#'citar-org-select-key
#'citar-org-select-style)
:follow #'citar-org-follow
:activate #'citar-org-activate))
(provide 'citar-org)
;;; citar-org.el ends here
|