]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-address.el
ca4da3f367f5e985b614adfbff7fe40bd706ff11
[notmuch] / emacs / notmuch-address.el
1 ;;; notmuch-address.el --- address completion with notmuch
2 ;;
3 ;; Copyright © David Edmondson
4 ;;
5 ;; This file is part of Notmuch.
6 ;;
7 ;; Notmuch is free software: you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; Notmuch is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Notmuch.  If not, see <https://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: David Edmondson <dme@dme.org>
21
22 ;;; Code:
23
24 (require 'message)
25 (require 'notmuch-parser)
26 (require 'notmuch-lib)
27 (require 'notmuch-company)
28 ;;
29 (declare-function company-manual-begin "company")
30
31 (defvar notmuch-address-last-harvest 0
32   "Time of last address harvest.")
33
34 (defvar notmuch-address-completions (make-hash-table :test 'equal)
35   "Hash of email addresses for completion during email composition.
36 This variable is set by calling `notmuch-address-harvest'.")
37
38 (defvar notmuch-address-full-harvest-finished nil
39   "t indicates that full completion address harvesting has been
40 finished. Use notmuch-address--harvest-ready to access as that
41 will load a saved hash if necessary (and available).")
42
43 (defun notmuch-address--harvest-ready ()
44   "Return t if there is a full address hash available.
45
46 If the hash is not present it attempts to load a saved hash."
47   (or notmuch-address-full-harvest-finished
48       (notmuch-address--load-address-hash)))
49
50 (defcustom notmuch-address-command 'internal
51   "Determines how address completion candidates are generated.
52
53 If it is a string then that string should be an external program
54 which must take a single argument (searched string) and output a
55 list of completion candidates, one per line.
56
57 Alternatively, it can be the symbol 'internal, in which case
58 internal completion is used; the variable
59 `notmuch-address-internal-completion` can be used to customize
60 this case.
61
62 Finally, if this variable is nil then address completion is
63 disabled."
64   :type '(radio
65           (const :tag "Use internal address completion" internal)
66           (const :tag "Disable address completion" nil)
67           (string :tag "Use external completion command"))
68   :group 'notmuch-send
69   :group 'notmuch-address
70   :group 'notmuch-external)
71
72 (defcustom notmuch-address-internal-completion '(sent nil)
73   "Determines how internal address completion generates candidates.
74
75 This should be a list of the form '(DIRECTION FILTER), where
76 DIRECTION is either sent or received and specifies whether the
77 candidates are searched in messages sent by the user or received
78 by the user (note received by is much faster), and FILTER is
79 either nil or a filter-string, such as \"date:1y..\" to append
80 to the query."
81   :type '(list :tag "Use internal address completion"
82                (radio
83                 :tag "Base completion on messages you have"
84                 :value sent
85                 (const :tag "sent (more accurate)" sent)
86                 (const :tag "received (faster)" received))
87                (radio :tag "Filter messages used for completion"
88                       (const :tag "Use all messages" nil)
89                       (string :tag "Filter query")))
90   ;; We override set so that we can clear the cache when this changes
91   :set (lambda (symbol value)
92          (set-default symbol value)
93          (setq notmuch-address-last-harvest 0)
94          (setq notmuch-address-completions (clrhash notmuch-address-completions))
95          (setq notmuch-address-full-harvest-finished nil))
96   :group 'notmuch-send
97   :group 'notmuch-address
98   :group 'notmuch-external)
99
100 (defcustom notmuch-address-save-filename nil
101   "Filename to save the cached completion addresses.
102
103 All the addresses notmuch uses for address completion will be
104 cached in this file. This has obvious privacy implications so you
105 should make sure it is not somewhere publicly readable."
106   :type '(choice (const :tag "Off" nil)
107                  (file :tag "Filename"))
108   :group 'notmuch-send
109   :group 'notmuch-address
110   :group 'notmuch-external)
111
112 (defcustom notmuch-address-selection-function 'notmuch-address-selection-function
113   "The function to select address from given list. The function is
114 called with PROMPT, COLLECTION, and INITIAL-INPUT as arguments
115 (subset of what `completing-read' can be called with).
116 While executed the value of `completion-ignore-case' is t.
117 See documentation of function `notmuch-address-selection-function'
118 to know how address selection is made by default."
119   :type 'function
120   :group 'notmuch-send
121   :group 'notmuch-address
122   :group 'notmuch-external)
123
124 (defcustom notmuch-address-post-completion-functions nil
125   "Functions called after completing address.
126
127 The completed address is passed as an argument to each function.
128 Note that this hook will be invoked for completion in headers
129 matching `notmuch-address-completion-headers-regexp'."
130   :type 'hook
131   :group 'notmuch-address
132   :group 'notmuch-hooks)
133
134 (defun notmuch-address-selection-function (prompt collection initial-input)
135   "Call (`completing-read'
136       PROMPT COLLECTION nil nil INITIAL-INPUT 'notmuch-address-history)"
137   (completing-read
138    prompt collection nil nil initial-input 'notmuch-address-history))
139
140 (defvar notmuch-address-completion-headers-regexp
141   "^\\(Resent-\\)?\\(To\\|B?Cc\\|Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):")
142
143 (defvar notmuch-address-history nil)
144
145 (defun notmuch-address-message-insinuate ()
146   (message "calling notmuch-address-message-insinuate is no longer needed"))
147
148 (defcustom notmuch-address-use-company t
149   "If available, use company mode for address completion."
150   :type 'boolean
151   :group 'notmuch-send
152   :group 'notmuch-address)
153
154 (defun notmuch-address-setup ()
155   (let* ((setup-company (and notmuch-address-use-company
156                            (require 'company nil t)))
157          (pair (cons notmuch-address-completion-headers-regexp
158                        #'notmuch-address-expand-name)))
159       (when setup-company
160         (notmuch-company-setup))
161       (unless (member pair message-completion-alist)
162         (setq message-completion-alist
163               (push pair message-completion-alist)))))
164
165 (defun notmuch-address-toggle-internal-completion ()
166   "Toggle use of internal completion for current buffer.
167
168 This overrides the global setting for address completion and
169 toggles the setting in this buffer."
170   (interactive)
171   (if (local-variable-p 'notmuch-address-command)
172       (kill-local-variable 'notmuch-address-command)
173     (notmuch-setq-local notmuch-address-command 'internal))
174   (if (boundp 'company-idle-delay)
175       (if (local-variable-p 'company-idle-delay)
176           (kill-local-variable 'company-idle-delay)
177         (notmuch-setq-local company-idle-delay nil))))
178
179 (defun notmuch-address-matching (substring)
180   "Returns a list of completion candidates matching SUBSTRING.
181 The candidates are taken from `notmuch-address-completions'."
182   (let ((candidates)
183         (re (regexp-quote substring)))
184     (maphash (lambda (key val)
185                (when (string-match re key)
186                  (push key candidates)))
187              notmuch-address-completions)
188     candidates))
189
190 (defun notmuch-address-options (original)
191   "Returns a list of completion candidates. Uses either
192 elisp-based implementation or older implementation requiring
193 external commands."
194   (cond
195    ((eq notmuch-address-command 'internal)
196     (unless (notmuch-address--harvest-ready)
197       ;; First, run quick synchronous harvest based on what the user
198       ;; entered so far.
199       (notmuch-address-harvest original t))
200     (prog1 (notmuch-address-matching original)
201       ;; Then start the (potentially long-running) full asynchronous
202       ;; harvest if necessary.
203       (notmuch-address-harvest-trigger)))
204    (t
205     (process-lines notmuch-address-command original))))
206
207 (defun notmuch-address-expand-name ()
208   (cond
209    ((and (eq notmuch-address-command 'internal)
210          notmuch-address-use-company
211          (bound-and-true-p company-mode))
212     (company-manual-begin))
213    (notmuch-address-command
214     (let* ((end (point))
215            (beg (save-excursion
216                   (re-search-backward "\\(\\`\\|[\n:,]\\)[ \t]*")
217                   (goto-char (match-end 0))
218                   (point)))
219            (orig (buffer-substring-no-properties beg end))
220            (completion-ignore-case t)
221            (options (with-temp-message "Looking for completion candidates..."
222                       (notmuch-address-options orig)))
223            (num-options (length options))
224            (chosen (cond
225                     ((eq num-options 0)
226                      nil)
227                     ((eq num-options 1)
228                      (car options))
229                     (t
230                      (funcall notmuch-address-selection-function
231                               (format "Address (%s matches): " num-options)
232                               ;; We put the first match as the initial
233                               ;; input; we put all the matches as
234                               ;; possible completions, moving the
235                               ;; first match to the end of the list
236                               ;; makes cursor up/down in the list work
237                               ;; better.
238                               (append (cdr options) (list (car options)))
239                               (car options))))))
240       (if chosen
241           (progn
242             (push chosen notmuch-address-history)
243             (delete-region beg end)
244             (insert chosen)
245             (run-hook-with-args 'notmuch-address-post-completion-functions
246                                 chosen))
247         (message "No matches.")
248         (ding))))
249    (t nil)))
250
251 ;; Copied from `w3m-which-command'.
252 (defun notmuch-address-locate-command (command)
253   "Return non-nil if `command' is an executable either on
254 `exec-path' or an absolute pathname."
255   (when (stringp command)
256     (if (and (file-name-absolute-p command)
257              (file-executable-p command))
258         command
259       (setq command (file-name-nondirectory command))
260       (catch 'found-command
261         (let (bin)
262           (dolist (dir exec-path)
263             (setq bin (expand-file-name command dir))
264             (when (or (and (file-executable-p bin)
265                            (not (file-directory-p bin)))
266                       (and (file-executable-p (setq bin (concat bin ".exe")))
267                            (not (file-directory-p bin))))
268               (throw 'found-command bin))))))))
269
270 (defun notmuch-address-harvest-addr (result)
271   (let ((name-addr (plist-get result :name-addr)))
272     (puthash name-addr t notmuch-address-completions)))
273
274 (defun notmuch-address-harvest-handle-result (obj)
275   (notmuch-address-harvest-addr obj))
276
277 (defun notmuch-address-harvest-filter (proc string)
278   (when (buffer-live-p (process-buffer proc))
279     (with-current-buffer (process-buffer proc)
280       (save-excursion
281         (goto-char (point-max))
282         (insert string))
283       (notmuch-sexp-parse-partial-list
284        'notmuch-address-harvest-handle-result (process-buffer proc)))))
285
286 (defvar notmuch-address-harvest-procs '(nil . nil)
287   "The currently running harvests.
288
289 The car is a partial harvest, and the cdr is a full harvest.")
290
291 (defun notmuch-address-harvest (&optional addr-prefix synchronous callback)
292   "Collect addresses completion candidates.
293
294 It queries the notmuch database for messages sent/received (as
295 configured with `notmuch-address-command`) by the user, collects
296 destination/source addresses from those messages and stores them
297 in `notmuch-address-completions'.
298
299 If ADDR-PREFIX is not nil, only messages with to/from addresses
300 matching ADDR-PREFIX*' are queried.
301
302 Address harvesting may take some time so the address collection runs
303 asynchronously unless SYNCHRONOUS is t. In case of asynchronous
304 execution, CALLBACK is called when harvesting finishes."
305   (let* ((sent (eq (car notmuch-address-internal-completion) 'sent))
306          (config-query (cadr notmuch-address-internal-completion))
307          (prefix-query (when addr-prefix
308                          (format "%s:%s*" (if sent "to" "from") addr-prefix)))
309          (from-or-to-me-query
310           (mapconcat (lambda (x)
311                        (concat (if sent "from:" "to:") x))
312                      (notmuch-user-emails) " or "))
313          (query (if (or prefix-query config-query)
314                     (concat (format "(%s)" from-or-to-me-query)
315                             (when prefix-query
316                               (format " and (%s)" prefix-query))
317                             (when config-query
318                               (format " and (%s)" config-query)))
319                   from-or-to-me-query))
320          (args `("address" "--format=sexp" "--format-version=4"
321                  ,(if sent "--output=recipients" "--output=sender")
322                  "--deduplicate=address"
323                  ,query)))
324     (if synchronous
325         (mapc #'notmuch-address-harvest-addr
326                                    (apply 'notmuch-call-notmuch-sexp args))
327       ;; Asynchronous
328       (let* ((current-proc (if addr-prefix
329                                (car notmuch-address-harvest-procs)
330                              (cdr notmuch-address-harvest-procs)))
331              (proc-name (format "notmuch-address-%s-harvest"
332                                 (if addr-prefix "partial" "full")))
333              (proc-buf (concat " *" proc-name "*")))
334         ;; Kill any existing process
335         (when current-proc
336           (kill-buffer (process-buffer current-proc))) ; this also kills the process
337         (setq current-proc
338               (apply 'notmuch-start-notmuch proc-name proc-buf
339                      callback                           ; process sentinel
340                      args))
341         (set-process-filter current-proc 'notmuch-address-harvest-filter)
342         (set-process-query-on-exit-flag current-proc nil)
343         (if addr-prefix
344             (setcar notmuch-address-harvest-procs current-proc)
345           (setcdr notmuch-address-harvest-procs current-proc)))))
346   ;; return value
347   nil)
348
349 (defvar notmuch-address--save-hash-version 1
350   "Version format of the save hash.")
351
352 (defun notmuch-address--get-address-hash ()
353   "Returns the saved address hash as a plist.
354
355 Returns nil if the save file does not exist, or it does not seem
356 to be a saved address hash."
357   (when notmuch-address-save-filename
358     (condition-case nil
359         (with-temp-buffer
360           (insert-file-contents notmuch-address-save-filename)
361           (let ((name (read (current-buffer)))
362                 (plist (read (current-buffer))))
363             ;; We do two simple sanity checks on the loaded file. We just
364             ;; check a version is specified, not that it is the current
365             ;; version, as we are allowed to over-write and a save-file with
366             ;; an older version.
367             (when (and (string= name "notmuch-address-hash")
368                        (plist-get plist :version))
369               plist)))
370       ;; The error case catches any of the reads failing.
371       (error nil))))
372
373 (defun notmuch-address--load-address-hash ()
374   "Read the saved address hash and set the corresponding variables."
375   (let ((load-plist (notmuch-address--get-address-hash)))
376     (when (and load-plist
377                ;; If the user's setting have changed, or the version
378                ;; has changed, return nil to make sure the new settings
379                ;; take effect.
380                (equal (plist-get load-plist :completion-settings)
381                       notmuch-address-internal-completion)
382                (equal (plist-get load-plist :version)
383                       notmuch-address--save-hash-version))
384       (setq notmuch-address-last-harvest (plist-get load-plist :last-harvest)
385             notmuch-address-completions (plist-get load-plist :completions)
386             notmuch-address-full-harvest-finished t)
387       ;; Return t to say load was successful.
388       t)))
389
390 (defun notmuch-address--save-address-hash ()
391   (when notmuch-address-save-filename
392     (if (or (not (file-exists-p notmuch-address-save-filename))
393               ;; The file exists, check it is a file we saved
394             (notmuch-address--get-address-hash))
395         (with-temp-file notmuch-address-save-filename
396           (let ((save-plist
397                  (list :version notmuch-address--save-hash-version
398                        :completion-settings notmuch-address-internal-completion
399                        :last-harvest notmuch-address-last-harvest
400                        :completions notmuch-address-completions)))
401             (print "notmuch-address-hash" (current-buffer))
402             (print save-plist (current-buffer))))
403       (message "\
404 Warning: notmuch-address-save-filename %s exists but doesn't
405 appear to be an address savefile.  Not overwriting."
406                notmuch-address-save-filename))))
407
408 (defun notmuch-address-harvest-trigger ()
409   (let ((now (float-time)))
410     (when (> (- now notmuch-address-last-harvest) 86400)
411       (setq notmuch-address-last-harvest now)
412       (notmuch-address-harvest
413        nil nil
414        (lambda (proc event)
415          ;; If harvest fails, we want to try
416          ;; again when the trigger is next
417          ;; called
418          (if (string= event "finished\n")
419              (progn
420                (notmuch-address--save-address-hash)
421                (setq notmuch-address-full-harvest-finished t))
422            (setq notmuch-address-last-harvest 0)))))))
423
424 ;;
425
426 (defun notmuch-address-from-minibuffer (prompt)
427   (if (not notmuch-address-command)
428       (read-string prompt)
429     (let ((rmap (copy-keymap minibuffer-local-map))
430           (omap minibuffer-local-map))
431       ;; Configure TAB to start completion when executing read-string.
432       ;; "Original" minibuffer keymap is restored just before calling
433       ;; notmuch-address-expand-name as it may also use minibuffer-local-map
434       ;; (completing-read probably does not but if something else is used there).
435       (define-key rmap (kbd "TAB") (lambda ()
436                                      (interactive)
437                                      (let ((enable-recursive-minibuffers t)
438                                            (minibuffer-local-map omap))
439                                        (notmuch-address-expand-name))))
440       (let ((minibuffer-local-map rmap))
441         (read-string prompt)))))
442
443 ;;
444
445 (provide 'notmuch-address)
446
447 ;;; notmuch-address.el ends here