1 ;;; mumi -- Mediocre, uh, mail interface
2 ;;; Copyright © 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
5 ;;; This program is free software: you can redistribute it and/or
6 ;;; modify it under the terms of the GNU Affero General Public License
7 ;;; as published by the Free Software Foundation, either version 3 of
8 ;;; the License, or (at your option) any later version.
10 ;;; This program is distributed in the hope that it will be useful,
11 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ;;; Affero General Public License for more details.
15 ;;; You should have received a copy of the GNU Affero General Public
16 ;;; License along with this program. If not, see
17 ;;; <http://www.gnu.org/licenses/>.
19 (define-module (mumi messages
)
20 #:use-module
(srfi srfi-1
)
21 #:use-module
(srfi srfi-19
)
22 #:use-module
(srfi srfi-26
)
23 #:use-module
(ice-9 optargs
)
24 #:use-module
(ice-9 regex
)
25 #:use-module
(ice-9 match
)
26 #:use-module
(ice-9 textual-ports
)
27 #:use-module
(ice-9 binary-ports
)
28 #:use-module
(debbugs cache
)
29 #:use-module
(debbugs soap
)
30 #:use-module
(debbugs operations
)
31 #:use-module
(debbugs bug
)
32 #:use-module
(email email
)
33 #:use-module
(mumi config
)
34 #:use-module
((mumi bugs
) #:prefix db
:)
47 (define (status-with-cache ids
)
48 "Invoke GET-STATUS, but only on those IDS that have not been cached
49 yet. Return new results alongside cached results."
50 (let* ((cached (filter-map cached? ids
))
51 (uncached-ids (lset-difference eq?
53 (map bug-num cached
)))
54 (new (soap-invoke* (%config
'debbugs
) get-status uncached-ids
)))
56 (map (lambda (bug) (cache! (bug-num bug
) bug
)) new
)
57 ;; Return everything from cache
58 (sort (append cached new
) (lambda (a b
) (< (bug-num a
) (bug-num b
))))))
60 (define-public (extract-name address
)
61 (or (assoc-ref address
'name
)
62 (and=> (assoc-ref address
'address
)
64 (string-take address
(string-index address
#\
@))))
67 (define-public (extract-email address
)
68 (assoc-ref address
'address
))
70 (define (header message key
)
71 (assoc-ref (or (email-headers message
) '()) key
))
73 (define-public (sender message
)
74 (or (and=> (header message
'from
) first
)
77 (define-public sender-email
78 (compose extract-email sender
))
80 (define-public (sender-name message
)
81 (extract-name (sender message
)))
83 (define-public (date message
)
84 (or (header message
'date
) "unknown date"))
86 (define-public (subject message
)
87 (or (header message
'subject
) "(no subject)"))
89 (define-public (message-id message
)
90 (header message
'message-id
))
92 (define-public (participants messages
)
93 "Return a list of unique senders in the conversion."
94 (apply lset-adjoin
(lambda (a b
)
95 (string= (extract-email a
)
97 '() (map sender messages
)))
99 (define-public (recipients message
)
100 "Return a list of recipient email addresses for the given MESSAGE."
101 (let ((headers (or (email-headers message
) '())))
102 (filter-map (match-lambda
103 (((or 'cc
'bcc
'to
) val
) val
)
106 (define-public (closing? message id
)
107 "Is this MESSAGE closing this bug ID?"
108 (let ((done (string-append (number->string id
)
110 (string= (header message
'x-debbugs-envelope-to
) done
)))
112 (define-public (bot? address
)
113 (string= "help-debbugs@gnu.org" address
))
115 (define-public (internal-message? message
)
116 (bot?
(sender-email message
)))
119 (define (multipart-message? message
)
120 (eq?
(assoc-ref (header message
'content-type
)
124 (define (extract-attachment id msg-num path
)
125 "Extract attachment from message number MSG-NUM in the thread for
126 the bug with the given ID. Follow PATH to get to the correct
127 multipart chunk containing the attachment. This is absolutely
128 horrible because Debbugs does not let us access messages directly, so
129 we have to do this in a very convoluted way."
131 (and (< n
(length lst
))
133 (define (traverse path parts
)
134 (let loop
((path path
)
137 ((pos) (nth pos parts
))
140 (and=> (nth pos parts
)
141 mime-entity-body
))))))
142 (and=> (fetch-bug id
)
144 (and=> (nth msg-num
(patch-messages id
))
147 ((multipart-message? msg
)
148 (traverse path
(email-body msg
)))
155 (define (download-message bug-id msg-num
)
156 "Download message number MSG-NUM of bug BUG-ID and store it in the
157 mail directory if it's not already there. Return the name of the
159 (let ((key (list 'download-message bug-id msg-num
)))
162 (let ((file-name (format #f
"~a/cur/~a-~a"
165 (if (file-exists? file-name
) file-name
167 (format (current-error-port)
168 "downloading ~a~%" file-name
)
171 (fetch-mbox (%config
'debbugs
)
172 bug-id msg-num
#:streaming?
#t
))
173 (lambda (response port
)
174 (with-output-to-file file-name
176 (put-bytevector (current-output-port)
177 (get-bytevector-all port
))))
180 ;; Reset mtime, because mu uses it!
181 (with-input-from-file file-name
183 (match (mbox->emails
(current-input-port))
185 (let* ((mail (parse-email email
))
188 (date->time-monotonic
196 ;; We would like to use get-bug-log here, but it often returns
197 ;; truncated messages. This is a known bug upstream.
198 (define-public (patch-messages bug-id
)
199 "Return list of messages relating to the bug BUG-ID. Cache the
201 (let ((key (list 'patch-messages bug-id
)))
205 (soap-invoke* (%config
'debbugs
) get-bug-message-numbers bug-id
)
207 (map (lambda (msg-num)
208 (with-input-from-file (download-message bug-id msg-num
)
210 (match (mbox->emails
(current-input-port))
211 ((email) (parse-email email
))
215 (define* (search-bugs query
#:key
(sets '()) (max 100))
216 "Return a list of all bugs matching the given QUERY string.
217 Interset the result with the id sets in the list SETS."
218 (let* ((ids (delete-duplicates
219 (map (compose string-
>number mu
:bugid
)
220 (mu:message-list query
))))
221 (filtered (match sets
223 (_ (apply lset-intersection eq? ids sets
)))))
224 (status-with-cache (if (> (length filtered
) max
)
225 (take filtered max
) filtered
))))
227 ;; TODO: This returns *any* matching debbugs bug, even if it is not
228 ;; part of the default packages.
229 (define (fetch-bug id
)
230 "Return the bug matching ID or #F."
231 (match (soap-invoke* (%config
'debbugs
) get-status
(list id
))
235 (define (recent-bugs amount
)
236 "Return up to AMOUNT bugs with most recent activity."
239 (map (compose string-
>number mu
:bugid
)
240 (mu:message-list
(string-append "date:1m..")))))
241 (ids (take recent-ids
(min amount
(length recent-ids
)))))
242 (status-with-cache ids
)))
245 "Return all bugs that have been tagged \"easy\
"."
246 (let ((ids (db:bugs-by-tag
"easy")))
247 (status-with-cache ids
)))
249 (define* (bugs-by-severity severity
#:optional status
)
250 "Return severe bugs."
251 (let* ((severity-ids (db:bugs-by-severity severity
))
253 (let ((status-ids (db:bugs-by-status status
)))
254 (lset-intersection eq? severity-ids status-ids
))
256 (status-with-cache ids
)))
259 (cut char-set-contains? char-set
:punctuation
<>))
261 (define-public (process-query query
)
262 "Process the QUERY string and return a list of query terms and
263 sets that need to overlap the result set."
264 ;; Mu doesn't like punctuation. Replace with spaces.
265 (define (clean-term term
)
266 (string-map (match-lambda
267 ((? punctuation? c
) #\space
)
270 (fold (lambda (term acc
)
274 (match (string-split term
#\
:)
275 ;; This is not supported by the Debbugs SOAP service,
276 ;; so we filter locally.
277 (("is" (or "done" "closed"))
279 #:sets
,(cons (db:bugs-by-status
"done") fs
)))
280 (("is" (or "open" "pending"))
282 #:sets
,(cons (db:bugs-by-status
"open") fs
)))
284 `(#:terms
,(cons (string-append "date:" when
) terms
)
286 ;; TODO: this should only be the title of the bug, not
290 ,(cons (string-append "subject:" (clean-term title
))
295 ,(cons (string-append "subject:" (clean-term subject
))
301 ,(cons (db:bugs-by-tag
(clean-term tag
)) fs
)))
304 ,(cons (string-append "from:" (clean-term who
)) terms
)
308 #:sets
,(cons (db:bugs-by-owner who
) fs
)))
311 #:sets
,(cons (db:bugs-by-submitter who
) fs
)))
314 #:sets
,(cons (db:bugs-by-severity level
) fs
)))
316 `(#:terms
,(cons (clean-term term
) terms
)
319 `(#:terms
,(cons (clean-term term
) terms
)
321 '(#:terms
() #:sets
())
322 (string-tokenize query
)))