-
Notifications
You must be signed in to change notification settings - Fork 4
/
himalaya-flag.el
148 lines (126 loc) · 4.63 KB
/
himalaya-flag.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
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
;;; himalaya-flag.el --- Flag management of email client Himalaya CLI -*- lexical-binding: t -*-
;; Copyright (C) 2021 Dante Catalfamo
;; Copyright (C) 2022-2024 soywod <[email protected]>
;; Author: Dante Catalfamo
;; soywod <[email protected]>
;; Maintainer: soywod <[email protected]>
;; Dante Catalfamo
;; Version: 1.0
;; Package-Requires: ((emacs "27.1"))
;; URL: https://github.com/dantecatalfamo/himalaya-emacs
;; Keywords: mail comm
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Interface for the email client Himalaya CLI
;; <https://github.com/soywod/himalaya>
;;; Code:
(require 'himalaya-process)
(require 'himalaya-account)
(require 'himalaya-folder)
(defcustom himalaya-unseen-face font-lock-string-face
"Font face for unseen envelope symbol."
:type 'face
:group 'himalaya)
(defcustom himalaya-unseen-symbol "●"
"Symbol to display in the flags column when a message hasn't
been read yet."
:type 'text
:group 'himalaya)
(defcustom himalaya-answered-symbol "↵"
"Symbol to display in the flags column when a message has been
replied to."
:type 'text
:group 'himalaya)
(defcustom himalaya-flagged-face font-lock-warning-face
"Font face for flagged envelope symbol."
:type 'face
:group 'himalaya)
(defcustom himalaya-flagged-symbol "⚑"
"Symbol to display in the flags column when a message has been
flagged."
:type 'text
:group 'himalaya)
(defcustom himalaya-deleted-face font-lock-keyword-face
"Font face for deleted envelope symbol."
:type 'face
:group 'himalaya)
(defcustom himalaya-deleted-symbol "✘"
"Symbol to display in the flags column when a message has been
marked for deletion."
:type 'text
:group 'himalaya)
(defun himalaya--add-flag (ids flag callback)
"Add FLAG to envelopes IDS from the current folder of the current
account."
(message "Adding flag %s…" flag)
(himalaya--run
callback
nil
"flag"
"add"
(when himalaya-account (list "--account" himalaya-account))
(when himalaya-folder (list "--folder" himalaya-folder))
ids
flag))
(defun himalaya--remove-flag (ids flag callback)
"Remove FLAG to envelopes IDS from the current folder of the current
account."
(message "Adding flag %s…" flag)
(himalaya--run
callback
nil
"flag"
"remove"
(when himalaya-account (list "--account" himalaya-account))
(when himalaya-folder (list "--folder" himalaya-folder))
ids
flag))
(defun himalaya--flag-symbols (flags)
"Generate a display string for FLAGS."
(concat
(if (member "Seen" flags) " " (propertize himalaya-unseen-symbol 'face himalaya-unseen-face))
(if (member "Answered" flags) himalaya-answered-symbol " ")
(if (member "Flagged" flags) (propertize himalaya-flagged-symbol 'face himalaya-flagged-face) " ")
(if (member "Deleted" flags) (propertize himalaya-deleted-symbol 'face himalaya-deleted-face) " ")))
(defun himalaya-add-flag-marked-envelopes ()
"Ask user to pick a flag then add it to marked envelopes, or to
envelope at point if mark not set."
(interactive)
(let ((prev-point (point))
(ids (or himalaya-marked-ids (list (tabulated-list-get-id))))
(flag (completing-read "Add flag: " (list "Seen" "Answered" "Flagged" "Deleted" "Drafts"))))
(himalaya--add-flag
ids
flag
(lambda (status)
(message "%s" (string-trim status))
(himalaya-unmark-all-envelopes t)
(revert-buffer)
(goto-char prev-point)))))
(defun himalaya-remove-flag-marked-envelopes ()
"Ask user to pick a flag then remove it from marked envelopes, or
from envelope at point if mark not set."
(interactive)
(let ((prev-point (point))
(ids (or himalaya-marked-ids (list (tabulated-list-get-id))))
(flag (completing-read "Remove flag: " (list "Seen" "Answered" "Flagged" "Deleted" "Drafts"))))
(himalaya--remove-flag
ids
flag
(lambda (status)
(message "%s" (string-trim status))
(himalaya-unmark-all-envelopes t)
(revert-buffer)
(goto-char prev-point)))))
(provide 'himalaya-flag)
;;; himalaya-flag.el ends here