1 ;;; mumi -- Mediocre, uh, mail interface
2 ;;; Copyright © 2016, 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 web view html
)
20 #:use-module
(debbugs bug
)
21 #:use-module
(email email
)
22 #:use-module
(mumi config
)
23 #:use-module
(mumi messages
)
24 #:use-module
(mumi web view utils
)
25 #:use-module
(mumi web util
)
26 #:use-module
(ice-9 match
)
27 #:use-module
(srfi srfi-1
)
28 #:use-module
(srfi srfi-19
)
34 list-of-matching-bugs
))
36 (define (bug-subject* bug
)
37 (or (bug-subject bug
) "(no subject)"))
39 (define (status-tag bug
)
40 "Return a colored tag indicating the BUG status."
41 (let ((status (if (bug-done bug
) "Done" "Open")))
42 `(span (@ (class ,(string-append "status-tag "
43 (string-downcase status
))))
46 (define* (layout #:key
49 (title "Guix issue tracker"))
54 (meta (@ (http-equiv "Content-Type") (content "text/html; charset=UTF-8")))
55 (meta (@ (http-equiv "Content-Language") (content "en")))
56 (meta (@ (name "author") (content "Ricardo Wurmus")))
57 (meta (@ (name "viewport")
58 (content "width=device-width, initial-scale=1")))
63 (href "/css/reset.css")))
68 (href "/css/bootstrap.css")))
74 (href "/css/screen.css")))
79 (href "/css/code.css"))))
81 (footer (@ (class "text-center"))
82 (p "Copyright © 2016—2020 by the GNU Guix community."
84 "Now with even more " (span (@ (class "lambda")) "λ") "! ")
85 (p "This is free software. Download the "
86 (a (@ (href "https://git.elephly.net/software/mumi.git"))
87 "source code here") ".")))
89 (@ (type "text/javascript")
90 (src "/js/sort-table.js"))))))
92 (define* (search-form #:key
(standalone?
#f
) (text ""))
93 `(form (@ (id "search")
96 '(class "form-inline"))
99 (@ (class ,(if standalone?
100 "input-group input-group-lg"
102 (input (@ (type "text")
103 (class "form-control")
107 (placeholder "Input your search query...")))
108 (span (@ (class "input-group-append"))
111 (class ,(string-append (if standalone?
"btn-lg " "")
113 ;; This SVG is part of Bootstrap and is available
114 ;; under the Expat license.
116 (@ (class "bi bi-search")
119 (viewBox "0 0 16 16")
120 (fill "currentColor")
121 (xmlns "http://www.w3.org/2000/svg"))
123 (path (@ (fill-rule "evenodd")
124 (d "M10.442 10.442a1 1 0 011.415 0l3.85 3.85a1 1 0 01-1.414 1.415l-3.85-3.85a1 1 0 010-1.415z")
125 (clip-rule "evenodd")) "")
126 (path (@ (fill-rule "evenodd")
127 (d "M6.5 12a5.5 5.5 0 100-11 5.5 5.5 0 000 11zM13 6.5a6.5 6.5 0 11-13 0 6.5 6.5 0 0113 0z")
128 (clip-rule "evenodd")) "")))))))
131 (define* (search-widget #:key
(text ""))
133 (@ (class "card mb-3"))
134 (div (@ (class "card-body bg-light"))
135 ,(search-form #:standalone?
#t
#:text text
)
137 (summary (strong "Hint"))
139 "Refine your search with filters like "
140 (span (@ (class "filter"))
143 (span (@ (class "filter"))
146 (span (@ (class "filter"))
149 (span (@ (class "filter"))
152 (span (@ (class "filter"))
153 "date:2018-04-01..2018-04-02")
155 (span (@ (class "filter"))
158 (a (@ (href "help#search"))
161 (define* (header #:key
(search-bar?
#t
))
163 (@ (class "navbar navbar-expand navbar-light bg-light"))
164 (a (@ (href "/") (class "navbar-brand pt-0 logo navbar-collapse"))
165 (img (@ (src "/img/logo.png") (alt "logo") (height "25"))))
173 `(,(header #:search-bar?
#f
)
175 (@ (class "container"))
176 (h1 "Guix issue tracker")
177 (p (@ (class "lead"))
178 "This is a web frontend to the Guix patch and bug trackers. Send email to "
179 (a (@ (href ,(string-append "mailto:" (%config
'submission-email-address
))))
180 ,(%config
'submission-email-address
))
181 " to submit a patch, or email "
182 (a (@ (href ,(string-append "mailto:" (%config
'submission-bug-email-address
))))
183 ,(%config
'submission-bug-email-address
))
184 " to submit a bug report.")
187 (div (@ (class "mt-4 h4")) "Recent activity")
189 (@ (class "table table-borderless table-hover js-sort-table"))
191 (tr (@ (class "heading"))
192 (th (@ (class "js-sort-number")) "ID")
194 (th "Date submitted")
197 ,@(list-of-bugs (recent-bugs 10))))
199 (div (@ (class "mt-4 h4")) "Priority bugs")
201 (@ (class "table table-borderless table-hover js-sort-table"))
203 (tr (@ (class "heading"))
204 (th (@ (class "js-sort-number")) "ID")
206 (th "Date submitted")
209 ,@(priority-bugs)))))))
214 `(,(header #:search-bar?
#f
)
216 (@ (class "container"))
218 (a (@ (href "search")))
219 (p "You can improve the search results by making use of the
220 simple query language. Here is a list of supported query terms with
226 (th (@ (class "col-md-3")) "Filter")
227 (th (@ (class "col-md-9")) "Description")))
230 (td (span (@ (class "filter")) "is:open") ", "
231 (span (@ (class "filter")) "is:pending"))
234 (td (span (@ (class "filter")) "is:closed") ", "
235 (span (@ (class "filter")) "is:done"))
236 (td "Issues marked as done."))
238 (td (span (@ (class "filter")) "submitter:<who>"))
239 (td "Issues submitted by a person named " (strong "who")
241 (span (@ (class "filter")) "submitter:ludo")
242 " for all issues submitted by ludo. "
243 "The filter matches both the email address and the name."))
245 (td (span (@ (class "filter")) "author:<who>"))
246 (td "Issues where a person named " (strong "who")
247 " has commented, e.g. "
248 (span (@ (class "filter")) "author:rekado")
249 " for all messages where rekado has commented. "
250 "The filter matches both the email address and the name."))
252 (td (span (@ (class "filter")) "date:<start>..<end>"))
253 (td "Issues or comments submitted within the provided range. "
254 (strong "start") " and " (strong "end") " can be one of "
255 (strong "now") ", " (strong "today")
256 ", a date in the formats "
257 (strong "YYYY-MM-DD") " or " (strong "YYYYMMDD")
258 ", or an amount and a unit for a point in the past, such as "
259 (strong "12d..") " for 12 days ago. "
260 "Supported units are: "
261 (strong "h") " (hours), "
262 (strong "d") " (days), "
263 (strong "w") " (weeks), "
264 (strong "m") " (months), and "
265 (strong "y") " (years)."))))))))
271 (div (@ (class "container"))
272 (h1 "Patch not found")
273 (p "There is no submission with id " (strong ,id
))
274 (p (a (@ (href "/")) "Try another one?"))))))
276 (define (error-page message
)
280 (div (@ (class "container"))
282 (p "An error occurred. Sorry about that!")
284 (p (a (@ (href "/")) "Try something else?"))))))
286 (define* (issue-page bug
#:optional flash-message
)
287 "Render the conversation for the given BUG."
288 (define id
(bug-num bug
))
289 (define messages
(patch-messages id
))
290 (define parties
(sort (filter (compose (negate bot?
) extract-email
)
291 (participants (filter identity messages
)))
293 (string< (extract-email a
)
294 (extract-email b
)))))
295 (define (show-message message-number message previous-subject
)
296 `((div (@ (class "mb-5"))
297 (a (@ (id ,(number->string message-number
))))
300 (style ,(string-append "background-color:"
301 (avatar-color (sender-email message
)
302 (map extract-email parties
)))))
303 ,(string-upcase (string-take (sender-name message
) 1)))
305 (@ (class "message"))
309 (@ (class "card-header"))
314 (style ,(string-append "background-color:"
315 (avatar-color (sender-email message
)
316 (map extract-email parties
)))))
317 ,(string-upcase (string-take (sender-name message
) 1)))
318 (span (@ (class "address")) ,(sender-name message
))
320 (span (@ (class "date"))
321 (a (@ (href ,(string-append "#" (number->string
323 ,(date->string
(date message
)))))
324 ,@(if (string-suffix? previous-subject
(subject message
))
326 `((div (@ (class "subject")) ,(subject message
))))
328 (@ (class "details"))
330 (@ (class "recipients"))
331 (label "Recipients:")
332 ,(map (lambda (address)
333 `(span (@ (class "address")) ,address
))
334 (recipients message
)))
336 (@ (class "message-id"))
337 (label "Message-ID:")
338 ,(message-id message
))))
340 (@ (class "body card-body"))
341 ,(display-message-body id message-number message
)))))
342 ,@(if (closing? message id
)
344 (@ (class "row event"))
346 (@ (class "col-md-11 offset-md-1 text-center"))
347 (div (@ (class "badge badge-primary closed")) "Closed"))))
350 #:title
(bug-subject* bug
)
354 (@ (class "container"))
355 ,@(match flash-message
357 `((div (@ (class "alert alert-danger")
361 `((div (@ (class "alert alert-info")
366 (@ (class "title col-md-12"))
367 (h1 ,(bug-subject* bug
))
368 (span (@ (class "details"))
370 ,(string-append "Submitted by "
371 ;; We don't use bug-originator here
372 ;; because it includes the email address.
373 ;; We cannot use extract-name on the
374 ;; return value, because it swallows
375 ;; non-ASCII characters.
376 (sender-name (first messages
))
378 ,@(if (bug-mergedwith bug
)
379 `((ul (@ (class "merged"))
382 `(li (a (@ (href ,(string-append "/issue/" id
)))
384 ;; XXX: This field can either hold a
385 ;; string of multiple ids, or a single
386 ;; number. Deal with this mess.
387 (match (bug-mergedwith bug
)
389 (string-split str
#\space
))
391 (list (number->string n
)))))))
393 ,@(if (bug-blocks bug
)
394 `((ul (@ (class "blocks"))
397 `(li (a (@ (href ,(string-append "/issue/" id
)))
399 ;; XXX: This field can either hold a
400 ;; string of multiple ids, or a single
401 ;; number. Deal with this mess.
402 (match (bug-blocks bug
)
404 (string-split str
#\space
))
406 (list (number->string n
)))))))
408 ,@(if (bug-blockedby bug
)
409 `((ul (@ (class "blockedby"))
412 `(li (a (@ (href ,(string-append "/issue/" id
)))
414 ;; XXX: This field can either hold a
415 ;; string of multiple ids, or a single
416 ;; number. Deal with this mess.
417 (match (bug-blockedby bug
)
419 (string-split str
#\space
))
421 (list (number->string n
)))))))
423 (div (@ (class "row"))
425 (@ (class "conversation col-md-9"))
426 ,(let ((msgs (filter (lambda (msg)
429 ;; internal messages.
432 (not (internal-message? msg
))))
434 (map (lambda (message-number msg previous-subject
)
435 (show-message message-number msg previous-subject
))
438 (cons (bug-subject* bug
)
439 (map subject msgs
))))
441 (@ (class "comment-box"))
442 (a (@ (id "comment")))
445 (style "background-color:#bc80bd")) "?")
447 (@ (class "message"))
450 ,@(if (mailer-enabled?
)
452 (@ (action ,(format #f
"/issue/~a/comment"
453 (number->string id
)))
454 (enctype "multipart/form-data")
456 (input (@ (style "display:none")
458 (placeholder "Please leave this empty.")) "")
459 (input (@ (type "hidden")
461 (value ,(timestamp!))) "")
463 (@ (class "card-header"))
464 (div (@ (class "from"))
465 (input (@ (class "address form-control")
467 (required "required")
468 (placeholder "Your name")) "")))
470 (@ (class "body card-body"))
471 (textarea (@ (name "text")
472 (required "required")
473 (class "form-control")
474 (placeholder "Please input your comment..."))
477 (@ (class "card-footer"))
478 (button (@ (class "btn btn-primary")
482 (@ (class "card-header"))
483 (div (@ (class "from"))
484 (span (@ (class "address")) "Your comment")))
486 (@ (class "body card-body"))
487 (p "Comments via the web interface are not currently
488 supported. To comment on this conversation "
489 (a (@ (href ,(string-append "mailto:"
490 (number->string id
) "@" (%config
'debbugs-domain
)
491 "?subject=" (bug-subject* bug
))))
492 ,(string-append "send email to "
493 (number->string id
) "@" (%config
'debbugs-domain
)))))))))))
496 (@ (class "info col-md-3"))
499 ,@(let ((num (length parties
)))
502 (string-append (number->string num
)
505 (ul ,(map (lambda (name)
506 `(li (span (@ (class "name")))
508 (map extract-name parties
)))))))
513 ,(or (and=> (bug-owner bug
) extract-name
) "unassigned")))
517 (dd ,(bug-severity bug
)))
521 (dd ,(status-tag bug
)))))))))
523 (define (list-of-bugs bugs
)
524 "Return table rows for all BUGS."
526 (let ((id (number->string
(bug-num bug
))))
527 `(tr (@ (class ,(bug-severity bug
)))
530 ,@(if (member (bug-severity bug
) '("serious" "important"))
531 `((svg (@ (xmlns"http://www.w3.org/2000/svg")
532 (xmlns:xlink
"http://www.w3.org/1999/xlink")
533 (viewBox "0 0 14 16")
537 (aria-hidden "true"))
538 (title ,(bug-severity bug
))
539 (path (@ (fill-rule "evenodd")
541 M7 2.3c3.14 0 5.7 2.56 5.7 5.7\
542 s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8\
543 c0-3.14 2.56-5.7 5.7-5.7z\
544 M7 1C3.14 1 0 4.14 0 8\
545 s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z\
546 m1 3H6v5h2V4zm0 6H6v2h2v-2z")))))
549 `(a (@ (href ,(string-append "/issue/" id
)))
552 (td ,(date->string
(bug-date bug
)))
553 (td ,(status-tag bug
)))))
556 (define (priority-bugs)
559 (bugs-by-severity "serious" "open")
560 (bugs-by-severity "important" "open"))
561 (lambda (a b
) (< (bug-num a
) (bug-num b
))))))
563 (define (list-of-matching-bugs query bugs
)
566 `(,(header #:search-bar?
#f
)
568 (@ (class "container"))
569 (h1 "Your search for " (code ,query
))
570 ,(search-widget #:text query
)
573 (@ (class "alert alert-warning")
576 (@ (class "alert-heading"))
578 (p "We could not find any issues matching your query "
581 "Try searching for something else?")))
583 (@ (class "table table-borderless table-hover js-sort-table"))
585 (tr (@ (class "heading"))
586 (th (@ (class "js-sort-number")) "ID")
588 (th "Date submitted")
591 ,@(list-of-bugs bugs
))))))))