forked from christofdamian/pocket-reader-org-roam-capture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpocket-reader-org-roam-capture.el
66 lines (53 loc) · 2.61 KB
/
pocket-reader-org-roam-capture.el
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
;;; pocket-reader-org-roam-capture.el --- Convert pocket-reader entries into org-roam files -*- lexical-binding: t; -*-
;; Copyright (C) 2021 Christof Damian
;; Author: Christof Damian <[email protected]>
;; URL: https://github.com/christofdamian/pocket-reader-org-roam-capture
;; Keywords: extensions, tools
;; Package-Requires: ((emacs "25.1") (pocket-reader "0.2.1") (org-roam "1.2.3"))
;; Version: 0.1.0
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Convert pocket-reader entries into org-roam files
;;; Code:
;;;; Dependencies
(require 'pocket-reader)
(require 'org-roam)
;;;; Functions
(defun pocket-reader-org-roam-capture ()
"Create an `org-roam' capture for all marked or current pocket reader items."
(interactive)
(pocket-reader--at-marked-or-current-items
(when-let (
(resolved_title (pocket-reader--get-property 'resolved_title))
(resolved_url (pocket-reader--get-property 'resolved_url))
(item_id (pocket-reader--get-property 'item_id))
(time_added (pocket-reader--get-property 'time_added))
(excerpt (pocket-reader--get-property 'excerpt))
(tags (combine-and-quote-strings (pocket-reader--get-property 'tags))))
(let (
(org-roam-capture-templates '(("d" "default" plain #'org-roam--capture-get-point "%?" :file-name "pocket/${item_id}-${slug}" :head "#+TITLE: ${title}
#+roamtags: ${tags}
URL: ${url}
Id: ${item_id}
${excerpt}
" :unnarrowed t)))
(org-roam-capture--info `((title . ,resolved_title)
(slug . ,resolved_title)
(url . ,resolved_url)
(item_id . ,item_id)
(excerpt . ,excerpt)
(tags . ,tags)))
(org-roam-capture--context 'title))
(setq org-roam-capture-additional-template-props (list :finalize 'find-file))
(org-roam-capture--capture)))))
(provide 'pocket-reader-org-roam-capture)
;;; pocket-reader-org-roam-capture.el ends here