]> git.notmuchmail.org Git - notmuch/blob - notmuch-show.c
615857fefae6d9806b08177c00acafd4a245ccc6
[notmuch] / notmuch-show.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
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
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see https://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include "notmuch-client.h"
22 #include "gmime-filter-reply.h"
23 #include "sprinter.h"
24
25 static notmuch_status_t
26 format_part_text (const void *ctx, sprinter_t *sp, mime_node_t *node,
27                   int indent, const notmuch_show_params_t *params);
28
29 static const notmuch_show_format_t format_text = {
30     .new_sprinter = sprinter_text_create,
31     .part = format_part_text,
32 };
33
34 static notmuch_status_t
35 format_part_sprinter_entry (const void *ctx, sprinter_t *sp, mime_node_t *node,
36                             int indent, const notmuch_show_params_t *params);
37
38 static const notmuch_show_format_t format_json = {
39     .new_sprinter = sprinter_json_create,
40     .part = format_part_sprinter_entry,
41 };
42
43 static const notmuch_show_format_t format_sexp = {
44     .new_sprinter = sprinter_sexp_create,
45     .part = format_part_sprinter_entry,
46 };
47
48 static notmuch_status_t
49 format_part_mbox (const void *ctx, sprinter_t *sp, mime_node_t *node,
50                   int indent, const notmuch_show_params_t *params);
51
52 static const notmuch_show_format_t format_mbox = {
53     .new_sprinter = sprinter_text_create,
54     .part = format_part_mbox,
55 };
56
57 static notmuch_status_t
58 format_part_raw (unused (const void *ctx), sprinter_t *sp, mime_node_t *node,
59                  unused (int indent),
60                  unused (const notmuch_show_params_t *params));
61
62 static const notmuch_show_format_t format_raw = {
63     .new_sprinter = sprinter_text_create,
64     .part = format_part_raw,
65 };
66
67 static const char *
68 _get_tags_as_string (const void *ctx, notmuch_message_t *message)
69 {
70     notmuch_tags_t *tags;
71     int first = 1;
72     const char *tag;
73     char *result;
74
75     result = talloc_strdup (ctx, "");
76     if (result == NULL)
77         return NULL;
78
79     for (tags = notmuch_message_get_tags (message);
80          notmuch_tags_valid (tags);
81          notmuch_tags_move_to_next (tags))
82     {
83         tag = notmuch_tags_get (tags);
84
85         result = talloc_asprintf_append (result, "%s%s",
86                                          first ? "" : " ", tag);
87         first = 0;
88     }
89
90     return result;
91 }
92
93 /* Get a nice, single-line summary of message. */
94 static const char *
95 _get_one_line_summary (const void *ctx, notmuch_message_t *message)
96 {
97     const char *from;
98     time_t date;
99     const char *relative_date;
100     const char *tags;
101
102     from = notmuch_message_get_header (message, "from");
103
104     date = notmuch_message_get_date (message);
105     relative_date = notmuch_time_relative_date (ctx, date);
106
107     tags = _get_tags_as_string (ctx, message);
108
109     return talloc_asprintf (ctx, "%s (%s) (%s)",
110                             from, relative_date, tags);
111 }
112
113 static const char *_get_disposition(GMimeObject *meta)
114 {
115     GMimeContentDisposition *disposition;
116
117     disposition = g_mime_object_get_content_disposition (meta);
118     if (!disposition)
119         return NULL;
120
121     return g_mime_content_disposition_get_disposition (disposition);
122 }
123
124 /* Emit a sequence of key/value pairs for the metadata of message.
125  * The caller should begin a map before calling this. */
126 static void
127 format_message_sprinter (sprinter_t *sp, notmuch_message_t *message)
128 {
129     /* Any changes to the JSON or S-Expression format should be
130      * reflected in the file devel/schemata. */
131
132     void *local = talloc_new (NULL);
133     notmuch_tags_t *tags;
134     time_t date;
135     const char *relative_date;
136
137     sp->map_key (sp, "id");
138     sp->string (sp, notmuch_message_get_message_id (message));
139
140     sp->map_key (sp, "match");
141     sp->boolean (sp, notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH));
142
143     sp->map_key (sp, "excluded");
144     sp->boolean (sp, notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED));
145
146     sp->map_key (sp, "filename");
147     if (notmuch_format_version >= 3) {
148         notmuch_filenames_t *filenames;
149
150         sp->begin_list (sp);
151         for (filenames = notmuch_message_get_filenames (message);
152              notmuch_filenames_valid (filenames);
153              notmuch_filenames_move_to_next (filenames)) {
154             sp->string (sp, notmuch_filenames_get (filenames));
155         }
156         notmuch_filenames_destroy (filenames);
157         sp->end (sp);
158     } else {
159         sp->string (sp, notmuch_message_get_filename (message));
160     }
161
162     sp->map_key (sp, "timestamp");
163     date = notmuch_message_get_date (message);
164     sp->integer (sp, date);
165
166     sp->map_key (sp, "date_relative");
167     relative_date = notmuch_time_relative_date (local, date);
168     sp->string (sp, relative_date);
169
170     sp->map_key (sp, "tags");
171     sp->begin_list (sp);
172     for (tags = notmuch_message_get_tags (message);
173          notmuch_tags_valid (tags);
174          notmuch_tags_move_to_next (tags))
175         sp->string (sp, notmuch_tags_get (tags));
176     sp->end (sp);
177
178     talloc_free (local);
179 }
180
181 /* Extract just the email address from the contents of a From:
182  * header. */
183 static const char *
184 _extract_email_address (const void *ctx, const char *from)
185 {
186     InternetAddressList *addresses;
187     InternetAddress *address;
188     InternetAddressMailbox *mailbox;
189     const char *email = "MAILER-DAEMON";
190
191     addresses = internet_address_list_parse_string (from);
192
193     /* Bail if there is no address here. */
194     if (addresses == NULL || internet_address_list_length (addresses) < 1)
195         goto DONE;
196
197     /* Otherwise, just use the first address. */
198     address = internet_address_list_get_address (addresses, 0);
199
200     /* The From header should never contain an address group rather
201      * than a mailbox. So bail if it does. */
202     if (! INTERNET_ADDRESS_IS_MAILBOX (address))
203         goto DONE;
204
205     mailbox = INTERNET_ADDRESS_MAILBOX (address);
206     email = internet_address_mailbox_get_addr (mailbox);
207     email = talloc_strdup (ctx, email);
208
209   DONE:
210     if (addresses)
211         g_object_unref (addresses);
212
213     return email;
214    }
215
216 /* Return 1 if 'line' is an mbox From_ line---that is, a line
217  * beginning with zero or more '>' characters followed by the
218  * characters 'F', 'r', 'o', 'm', and space.
219  *
220  * Any characters at all may appear after that in the line.
221  */
222 static int
223 _is_from_line (const char *line)
224 {
225     const char *s = line;
226
227     if (line == NULL)
228         return 0;
229
230     while (*s == '>')
231         s++;
232
233     if (STRNCMP_LITERAL (s, "From ") == 0)
234         return 1;
235     else
236         return 0;
237 }
238
239 void
240 format_headers_sprinter (sprinter_t *sp, GMimeMessage *message,
241                          notmuch_bool_t reply)
242 {
243     /* Any changes to the JSON or S-Expression format should be
244      * reflected in the file devel/schemata. */
245
246     InternetAddressList *recipients;
247     char *recipients_string;
248     const char *reply_to_string;
249     char *date_string;
250
251     sp->begin_map (sp);
252
253     sp->map_key (sp, "Subject");
254     sp->string (sp, g_mime_message_get_subject (message));
255
256     sp->map_key (sp, "From");
257     sp->string (sp, g_mime_message_get_sender (message));
258
259     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
260     recipients_string = internet_address_list_to_string (recipients, 0);
261     if (recipients_string) {
262         sp->map_key (sp, "To");
263         sp->string (sp, recipients_string);
264         g_free (recipients_string);
265     }
266
267     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
268     recipients_string = internet_address_list_to_string (recipients, 0);
269     if (recipients_string) {
270         sp->map_key (sp, "Cc");
271         sp->string (sp, recipients_string);
272         g_free (recipients_string);
273     }
274
275     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_BCC);
276     recipients_string = internet_address_list_to_string (recipients, 0);
277     if (recipients_string) {
278         sp->map_key (sp, "Bcc");
279         sp->string (sp, recipients_string);
280         g_free (recipients_string);
281     }
282
283     reply_to_string = g_mime_message_get_reply_to (message);
284     if (reply_to_string) {
285         sp->map_key (sp, "Reply-To");
286         sp->string (sp, reply_to_string);
287     }
288
289     if (reply) {
290         sp->map_key (sp, "In-reply-to");
291         sp->string (sp, g_mime_object_get_header (GMIME_OBJECT (message), "In-reply-to"));
292
293         sp->map_key (sp, "References");
294         sp->string (sp, g_mime_object_get_header (GMIME_OBJECT (message), "References"));
295     } else {
296         sp->map_key (sp, "Date");
297         date_string = g_mime_message_get_date_as_string (message);
298         sp->string (sp, date_string);
299         g_free (date_string);
300     }
301
302     sp->end (sp);
303 }
304
305 /* Write a MIME text part out to the given stream.
306  *
307  * If (flags & NOTMUCH_SHOW_TEXT_PART_REPLY), this prepends "> " to
308  * each output line.
309  *
310  * Both line-ending conversion (CRLF->LF) and charset conversion ( ->
311  * UTF-8) will be performed, so it is inappropriate to call this
312  * function with a non-text part. Doing so will trigger an internal
313  * error.
314  */
315 void
316 show_text_part_content (GMimeObject *part, GMimeStream *stream_out,
317                         notmuch_show_text_part_flags flags)
318 {
319     GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
320     GMimeStream *stream_filter = NULL;
321     GMimeDataWrapper *wrapper;
322     const char *charset;
323
324     if (! g_mime_content_type_is_type (content_type, "text", "*"))
325         INTERNAL_ERROR ("Illegal request to format non-text part (%s) as text.",
326                         g_mime_content_type_to_string (content_type));
327
328     if (stream_out == NULL)
329         return;
330
331     stream_filter = g_mime_stream_filter_new (stream_out);
332     g_mime_stream_filter_add(GMIME_STREAM_FILTER (stream_filter),
333                              g_mime_filter_crlf_new (FALSE, FALSE));
334
335     charset = g_mime_object_get_content_type_parameter (part, "charset");
336     if (charset) {
337         GMimeFilter *charset_filter;
338         charset_filter = g_mime_filter_charset_new (charset, "UTF-8");
339         /* This result can be NULL for things like "unknown-8bit".
340          * Don't set a NULL filter as that makes GMime print
341          * annoying assertion-failure messages on stderr. */
342         if (charset_filter) {
343             g_mime_stream_filter_add (GMIME_STREAM_FILTER (stream_filter),
344                                       charset_filter);
345             g_object_unref (charset_filter);
346         }
347
348     }
349
350     if (flags & NOTMUCH_SHOW_TEXT_PART_REPLY) {
351         GMimeFilter *reply_filter;
352         reply_filter = g_mime_filter_reply_new (TRUE);
353         if (reply_filter) {
354             g_mime_stream_filter_add (GMIME_STREAM_FILTER (stream_filter),
355                                       reply_filter);
356             g_object_unref (reply_filter);
357         }
358     }
359
360     wrapper = g_mime_part_get_content_object (GMIME_PART (part));
361     if (wrapper && stream_filter)
362         g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
363     if (stream_filter)
364         g_object_unref(stream_filter);
365 }
366
367 /* Get signature status string (GMime 2.6) */
368 static const char*
369 signature_status_to_string (GMimeSignatureStatus x)
370 {
371     switch (x) {
372     case GMIME_SIGNATURE_STATUS_GOOD:
373         return "good";
374     case GMIME_SIGNATURE_STATUS_BAD:
375         return "bad";
376     case GMIME_SIGNATURE_STATUS_ERROR:
377         return "error";
378     }
379     return "unknown";
380 }
381
382 /* Signature status sprinter (GMime 2.6) */
383 static void
384 format_part_sigstatus_sprinter (sprinter_t *sp, mime_node_t *node)
385 {
386     /* Any changes to the JSON or S-Expression format should be
387      * reflected in the file devel/schemata. */
388
389     GMimeSignatureList *siglist = node->sig_list;
390
391     sp->begin_list (sp);
392
393     if (!siglist) {
394         sp->end (sp);
395         return;
396     }
397
398     int i;
399     for (i = 0; i < g_mime_signature_list_length (siglist); i++) {
400         GMimeSignature *signature = g_mime_signature_list_get_signature (siglist, i);
401
402         sp->begin_map (sp);
403
404         /* status */
405         GMimeSignatureStatus status = g_mime_signature_get_status (signature);
406         sp->map_key (sp, "status");
407         sp->string (sp, signature_status_to_string (status));
408
409         GMimeCertificate *certificate = g_mime_signature_get_certificate (signature);
410         if (status == GMIME_SIGNATURE_STATUS_GOOD) {
411             if (certificate) {
412                 sp->map_key (sp, "fingerprint");
413                 sp->string (sp, g_mime_certificate_get_fingerprint (certificate));
414             }
415             /* these dates are seconds since the epoch; should we
416              * provide a more human-readable format string? */
417             time_t created = g_mime_signature_get_created (signature);
418             if (created != -1) {
419                 sp->map_key (sp, "created");
420                 sp->integer (sp, created);
421             }
422             time_t expires = g_mime_signature_get_expires (signature);
423             if (expires > 0) {
424                 sp->map_key (sp, "expires");
425                 sp->integer (sp, expires);
426             }
427             /* output user id only if validity is FULL or ULTIMATE. */
428             /* note that gmime is using the term "trust" here, which
429              * is WRONG.  It's actually user id "validity". */
430             if (certificate) {
431                 const char *name = g_mime_certificate_get_name (certificate);
432                 GMimeCertificateTrust trust = g_mime_certificate_get_trust (certificate);
433                 if (name && (trust == GMIME_CERTIFICATE_TRUST_FULLY || trust == GMIME_CERTIFICATE_TRUST_ULTIMATE)) {
434                     sp->map_key (sp, "userid");
435                     sp->string (sp, name);
436                 }
437             }
438         } else if (certificate) {
439             const char *key_id = g_mime_certificate_get_key_id (certificate);
440             if (key_id) {
441                 sp->map_key (sp, "keyid");
442                 sp->string (sp, key_id);
443             }
444         }
445
446         GMimeSignatureError errors = g_mime_signature_get_errors (signature);
447         if (errors != GMIME_SIGNATURE_ERROR_NONE) {
448             sp->map_key (sp, "errors");
449             sp->integer (sp, errors);
450         }
451
452         sp->end (sp);
453      }
454
455     sp->end (sp);
456 }
457
458 static notmuch_status_t
459 format_part_text (const void *ctx, sprinter_t *sp, mime_node_t *node,
460                   int indent, const notmuch_show_params_t *params)
461 {
462     /* The disposition and content-type metadata are associated with
463      * the envelope for message parts */
464     GMimeObject *meta = node->envelope_part ?
465         GMIME_OBJECT (node->envelope_part) : node->part;
466     GMimeContentType *content_type = g_mime_object_get_content_type (meta);
467     const notmuch_bool_t leaf = GMIME_IS_PART (node->part);
468     const char *part_type;
469     int i;
470
471     if (node->envelope_file) {
472         notmuch_message_t *message = node->envelope_file;
473
474         part_type = "message";
475         printf ("\f%s{ id:%s depth:%d match:%d excluded:%d filename:%s\n",
476                 part_type,
477                 notmuch_message_get_message_id (message),
478                 indent,
479                 notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? 1 : 0,
480                 notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED) ? 1 : 0,
481                 notmuch_message_get_filename (message));
482     } else {
483         const char *disposition = _get_disposition (meta);
484         const char *cid = g_mime_object_get_content_id (meta);
485         const char *filename = leaf ?
486             g_mime_part_get_filename (GMIME_PART (node->part)) : NULL;
487
488         if (disposition &&
489             strcasecmp (disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
490             part_type = "attachment";
491         else
492             part_type = "part";
493
494         printf ("\f%s{ ID: %d", part_type, node->part_num);
495         if (filename)
496             printf (", Filename: %s", filename);
497         if (cid)
498             printf (", Content-id: %s", cid);
499         printf (", Content-type: %s\n", g_mime_content_type_to_string (content_type));
500     }
501
502     if (GMIME_IS_MESSAGE (node->part)) {
503         GMimeMessage *message = GMIME_MESSAGE (node->part);
504         InternetAddressList *recipients;
505         char *recipients_string;
506         char *date_string;
507
508         printf ("\fheader{\n");
509         if (node->envelope_file)
510             printf ("%s\n", _get_one_line_summary (ctx, node->envelope_file));
511         printf ("Subject: %s\n", g_mime_message_get_subject (message));
512         printf ("From: %s\n", g_mime_message_get_sender (message));
513         recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
514         recipients_string = internet_address_list_to_string (recipients, 0);
515         if (recipients_string)
516             printf ("To: %s\n", recipients_string);
517         g_free (recipients_string);
518         recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
519         recipients_string = internet_address_list_to_string (recipients, 0);
520         if (recipients_string)
521             printf ("Cc: %s\n", recipients_string);
522         g_free (recipients_string);
523         date_string = g_mime_message_get_date_as_string (message);
524         printf ("Date: %s\n", date_string);
525         g_free (date_string);
526         printf ("\fheader}\n");
527
528         printf ("\fbody{\n");
529     }
530
531     if (leaf) {
532         if (g_mime_content_type_is_type (content_type, "text", "*") &&
533             !g_mime_content_type_is_type (content_type, "text", "html"))
534         {
535             GMimeStream *stream_stdout = g_mime_stream_file_new (stdout);
536             g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
537             show_text_part_content (node->part, stream_stdout, 0);
538             g_object_unref(stream_stdout);
539         } else {
540             printf ("Non-text part: %s\n",
541                     g_mime_content_type_to_string (content_type));
542         }
543     }
544
545     for (i = 0; i < node->nchildren; i++)
546         format_part_text (ctx, sp, mime_node_child (node, i), indent, params);
547
548     if (GMIME_IS_MESSAGE (node->part))
549         printf ("\fbody}\n");
550
551     printf ("\f%s}\n", part_type);
552
553     return NOTMUCH_STATUS_SUCCESS;
554 }
555
556 static void
557 format_omitted_part_meta_sprinter (sprinter_t *sp, GMimeObject *meta, GMimePart *part)
558 {
559     const char *content_charset = g_mime_object_get_content_type_parameter (meta, "charset");
560     const char *cte = g_mime_object_get_header (meta, "content-transfer-encoding");
561     GMimeDataWrapper *wrapper = g_mime_part_get_content_object (part);
562     GMimeStream *stream = g_mime_data_wrapper_get_stream (wrapper);
563     ssize_t content_length = g_mime_stream_length (stream);
564
565     if (content_charset != NULL) {
566         sp->map_key (sp, "content-charset");
567         sp->string (sp, content_charset);
568     }
569     if (cte != NULL) {
570         sp->map_key (sp, "content-transfer-encoding");
571         sp->string (sp, cte);
572     }
573     if (content_length >= 0) {
574         sp->map_key (sp, "content-length");
575         sp->integer (sp, content_length);
576     }
577 }
578
579 void
580 format_part_sprinter (const void *ctx, sprinter_t *sp, mime_node_t *node,
581                       notmuch_bool_t first, notmuch_bool_t output_body,
582                       notmuch_bool_t include_html)
583 {
584     /* Any changes to the JSON or S-Expression format should be
585      * reflected in the file devel/schemata. */
586
587     if (node->envelope_file) {
588         sp->begin_map (sp);
589         format_message_sprinter (sp, node->envelope_file);
590
591         sp->map_key (sp, "headers");
592         format_headers_sprinter (sp, GMIME_MESSAGE (node->part), FALSE);
593
594         if (output_body) {
595             sp->map_key (sp, "body");
596             sp->begin_list (sp);
597             format_part_sprinter (ctx, sp, mime_node_child (node, 0), first, TRUE, include_html);
598             sp->end (sp);
599         }
600         sp->end (sp);
601         return;
602     }
603
604     /* The disposition and content-type metadata are associated with
605      * the envelope for message parts */
606     GMimeObject *meta = node->envelope_part ?
607         GMIME_OBJECT (node->envelope_part) : node->part;
608     GMimeContentType *content_type = g_mime_object_get_content_type (meta);
609     const char *disposition = _get_disposition (meta);
610     const char *cid = g_mime_object_get_content_id (meta);
611     const char *filename = GMIME_IS_PART (node->part) ?
612         g_mime_part_get_filename (GMIME_PART (node->part)) : NULL;
613     int nclose = 0;
614     int i;
615
616     sp->begin_map (sp);
617
618     sp->map_key (sp, "id");
619     sp->integer (sp, node->part_num);
620
621     if (node->decrypt_attempted) {
622         sp->map_key (sp, "encstatus");
623         sp->begin_list (sp);
624         sp->begin_map (sp);
625         sp->map_key (sp, "status");
626         sp->string (sp, node->decrypt_success ? "good" : "bad");
627         sp->end (sp);
628         sp->end (sp);
629     }
630
631     if (node->verify_attempted) {
632         sp->map_key (sp, "sigstatus");
633         format_part_sigstatus_sprinter (sp, node);
634     }
635
636     sp->map_key (sp, "content-type");
637     sp->string (sp, g_mime_content_type_to_string (content_type));
638
639     if (disposition) {
640         sp->map_key (sp, "content-disposition");
641         sp->string (sp, disposition);
642     }
643
644     if (cid) {
645         sp->map_key (sp, "content-id");
646         sp->string (sp, cid);
647     }
648
649     if (filename) {
650         sp->map_key (sp, "filename");
651         sp->string (sp, filename);
652     }
653
654     if (GMIME_IS_PART (node->part)) {
655         /* For non-HTML text parts, we include the content in the
656          * JSON. Since JSON must be Unicode, we handle charset
657          * decoding here and do not report a charset to the caller.
658          * For text/html parts, we do not include the content unless
659          * the --include-html option has been passed. If a html part
660          * is not included, it can be requested directly. This makes
661          * charset decoding the responsibility on the caller so we
662          * report the charset for text/html parts.
663          */
664         if (g_mime_content_type_is_type (content_type, "text", "*") &&
665             (include_html ||
666              ! g_mime_content_type_is_type (content_type, "text", "html")))
667         {
668             GMimeStream *stream_memory = g_mime_stream_mem_new ();
669             GByteArray *part_content;
670             show_text_part_content (node->part, stream_memory, 0);
671             part_content = g_mime_stream_mem_get_byte_array (GMIME_STREAM_MEM (stream_memory));
672             sp->map_key (sp, "content");
673             sp->string_len (sp, (char *) part_content->data, part_content->len);
674             g_object_unref (stream_memory);
675         } else {
676             format_omitted_part_meta_sprinter (sp, meta, GMIME_PART (node->part));
677         }
678     } else if (GMIME_IS_MULTIPART (node->part)) {
679         sp->map_key (sp, "content");
680         sp->begin_list (sp);
681         nclose = 1;
682     } else if (GMIME_IS_MESSAGE (node->part)) {
683         sp->map_key (sp, "content");
684         sp->begin_list (sp);
685         sp->begin_map (sp);
686
687         sp->map_key (sp, "headers");
688         format_headers_sprinter (sp, GMIME_MESSAGE (node->part), FALSE);
689
690         sp->map_key (sp, "body");
691         sp->begin_list (sp);
692         nclose = 3;
693     }
694
695     for (i = 0; i < node->nchildren; i++)
696         format_part_sprinter (ctx, sp, mime_node_child (node, i), i == 0, TRUE, include_html);
697
698     /* Close content structures */
699     for (i = 0; i < nclose; i++)
700         sp->end (sp);
701     /* Close part map */
702     sp->end (sp);
703 }
704
705 static notmuch_status_t
706 format_part_sprinter_entry (const void *ctx, sprinter_t *sp,
707                             mime_node_t *node, unused (int indent),
708                             const notmuch_show_params_t *params)
709 {
710     format_part_sprinter (ctx, sp, node, TRUE, params->output_body, params->include_html);
711
712     return NOTMUCH_STATUS_SUCCESS;
713 }
714
715 /* Print a message in "mboxrd" format as documented, for example,
716  * here:
717  *
718  * http://qmail.org/qmail-manual-html/man5/mbox.html
719  */
720 static notmuch_status_t
721 format_part_mbox (const void *ctx, unused (sprinter_t *sp), mime_node_t *node,
722                   unused (int indent),
723                   unused (const notmuch_show_params_t *params))
724 {
725     notmuch_message_t *message = node->envelope_file;
726
727     const char *filename;
728     FILE *file;
729     const char *from;
730
731     time_t date;
732     struct tm date_gmtime;
733     char date_asctime[26];
734
735     char *line = NULL;
736     size_t line_size;
737     ssize_t line_len;
738
739     if (!message)
740         INTERNAL_ERROR ("format_part_mbox requires a root part");
741
742     filename = notmuch_message_get_filename (message);
743     file = fopen (filename, "r");
744     if (file == NULL) {
745         fprintf (stderr, "Failed to open %s: %s\n",
746                  filename, strerror (errno));
747         return NOTMUCH_STATUS_FILE_ERROR;
748     }
749
750     from = notmuch_message_get_header (message, "from");
751     from = _extract_email_address (ctx, from);
752
753     date = notmuch_message_get_date (message);
754     gmtime_r (&date, &date_gmtime);
755     asctime_r (&date_gmtime, date_asctime);
756
757     printf ("From %s %s", from, date_asctime);
758
759     while ((line_len = getline (&line, &line_size, file)) != -1 ) {
760         if (_is_from_line (line))
761             putchar ('>');
762         printf ("%s", line);
763     }
764
765     printf ("\n");
766
767     fclose (file);
768
769     return NOTMUCH_STATUS_SUCCESS;
770 }
771
772 static notmuch_status_t
773 format_part_raw (unused (const void *ctx), unused (sprinter_t *sp),
774                  mime_node_t *node, unused (int indent),
775                  unused (const notmuch_show_params_t *params))
776 {
777     if (node->envelope_file) {
778         /* Special case the entire message to avoid MIME parsing. */
779         const char *filename;
780         FILE *file;
781         size_t size;
782         char buf[4096];
783
784         filename = notmuch_message_get_filename (node->envelope_file);
785         if (filename == NULL) {
786             fprintf (stderr, "Error: Cannot get message filename.\n");
787             return NOTMUCH_STATUS_FILE_ERROR;
788         }
789
790         file = fopen (filename, "r");
791         if (file == NULL) {
792             fprintf (stderr, "Error: Cannot open file %s: %s\n", filename, strerror (errno));
793             return NOTMUCH_STATUS_FILE_ERROR;
794         }
795
796         while (!feof (file)) {
797             size = fread (buf, 1, sizeof (buf), file);
798             if (ferror (file)) {
799                 fprintf (stderr, "Error: Read failed from %s\n", filename);
800                 fclose (file);
801                 return NOTMUCH_STATUS_FILE_ERROR;
802             }
803
804             if (fwrite (buf, size, 1, stdout) != 1) {
805                 fprintf (stderr, "Error: Write failed\n");
806                 fclose (file);
807                 return NOTMUCH_STATUS_FILE_ERROR;
808             }
809         }
810
811         fclose (file);
812         return NOTMUCH_STATUS_SUCCESS;
813     }
814
815     GMimeStream *stream_stdout;
816     GMimeStream *stream_filter = NULL;
817
818     stream_stdout = g_mime_stream_file_new (stdout);
819     g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
820
821     stream_filter = g_mime_stream_filter_new (stream_stdout);
822
823     if (GMIME_IS_PART (node->part)) {
824         /* For leaf parts, we emit only the transfer-decoded
825          * body. */
826         GMimeDataWrapper *wrapper;
827         wrapper = g_mime_part_get_content_object (GMIME_PART (node->part));
828
829         if (wrapper && stream_filter)
830             g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
831     } else {
832         /* Write out the whole part.  For message parts (the root
833          * part and embedded message parts), this will be the
834          * message including its headers (but not the
835          * encapsulating part's headers).  For multipart parts,
836          * this will include the headers. */
837         if (stream_filter)
838             g_mime_object_write_to_stream (node->part, stream_filter);
839     }
840
841     if (stream_filter)
842         g_object_unref (stream_filter);
843
844     if (stream_stdout)
845         g_object_unref(stream_stdout);
846
847     return NOTMUCH_STATUS_SUCCESS;
848 }
849
850 static notmuch_status_t
851 show_message (void *ctx,
852               const notmuch_show_format_t *format,
853               sprinter_t *sp,
854               notmuch_message_t *message,
855               int indent,
856               notmuch_show_params_t *params)
857 {
858     void *local = talloc_new (ctx);
859     mime_node_t *root, *part;
860     notmuch_status_t status;
861
862     status = mime_node_open (local, message, &(params->crypto), &root);
863     if (status)
864         goto DONE;
865     part = mime_node_seek_dfs (root, (params->part < 0 ? 0 : params->part));
866     if (part)
867         status = format->part (local, sp, part, indent, params);
868   DONE:
869     talloc_free (local);
870     return status;
871 }
872
873 static notmuch_status_t
874 show_messages (void *ctx,
875                const notmuch_show_format_t *format,
876                sprinter_t *sp,
877                notmuch_messages_t *messages,
878                int indent,
879                notmuch_show_params_t *params)
880 {
881     notmuch_message_t *message;
882     notmuch_bool_t match;
883     notmuch_bool_t excluded;
884     int next_indent;
885     notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS;
886
887     sp->begin_list (sp);
888
889     for (;
890          notmuch_messages_valid (messages);
891          notmuch_messages_move_to_next (messages))
892     {
893         sp->begin_list (sp);
894
895         message = notmuch_messages_get (messages);
896
897         match = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH);
898         excluded = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED);
899
900         next_indent = indent;
901
902         if ((match && (!excluded || !params->omit_excluded)) || params->entire_thread) {
903             status = show_message (ctx, format, sp, message, indent, params);
904             if (status && !res)
905                 res = status;
906             next_indent = indent + 1;
907         } else {
908             sp->null (sp);
909         }
910
911         status = show_messages (ctx,
912                                 format, sp,
913                                 notmuch_message_get_replies (message),
914                                 next_indent,
915                                 params);
916         if (status && !res)
917             res = status;
918
919         notmuch_message_destroy (message);
920
921         sp->end (sp);
922     }
923
924     sp->end (sp);
925
926     return res;
927 }
928
929 /* Formatted output of single message */
930 static int
931 do_show_single (void *ctx,
932                 notmuch_query_t *query,
933                 const notmuch_show_format_t *format,
934                 sprinter_t *sp,
935                 notmuch_show_params_t *params)
936 {
937     notmuch_messages_t *messages;
938     notmuch_message_t *message;
939     notmuch_status_t status;
940     unsigned int count;
941
942     status = notmuch_query_count_messages_st (query, &count);
943     if (print_status_query ("notmuch show", query, status))
944         return 1;
945
946     if (count != 1) {
947         fprintf (stderr, "Error: search term did not match precisely one message (matched %d messages).\n", count);
948         return 1;
949     }
950
951     status = notmuch_query_search_messages_st (query, &messages);
952     if (print_status_query ("notmuch show", query, status))
953         return 1;
954
955     message = notmuch_messages_get (messages);
956
957     if (message == NULL) {
958         fprintf (stderr, "Error: Cannot find matching message.\n");
959         return 1;
960     }
961
962     notmuch_message_set_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH, 1);
963
964     return show_message (ctx, format, sp, message, 0, params)
965         != NOTMUCH_STATUS_SUCCESS;
966 }
967
968 /* Formatted output of threads */
969 static int
970 do_show (void *ctx,
971          notmuch_query_t *query,
972          const notmuch_show_format_t *format,
973          sprinter_t *sp,
974          notmuch_show_params_t *params)
975 {
976     notmuch_threads_t *threads;
977     notmuch_thread_t *thread;
978     notmuch_messages_t *messages;
979     notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS;
980
981     status= notmuch_query_search_threads_st (query, &threads);
982     if (print_status_query ("notmuch show", query, status))
983         return 1;
984
985     sp->begin_list (sp);
986
987     for ( ;
988          notmuch_threads_valid (threads);
989          notmuch_threads_move_to_next (threads))
990     {
991         thread = notmuch_threads_get (threads);
992
993         messages = notmuch_thread_get_toplevel_messages (thread);
994
995         if (messages == NULL)
996             INTERNAL_ERROR ("Thread %s has no toplevel messages.\n",
997                             notmuch_thread_get_thread_id (thread));
998
999         status = show_messages (ctx, format, sp, messages, 0, params);
1000         if (status && !res)
1001             res = status;
1002
1003         notmuch_thread_destroy (thread);
1004
1005     }
1006
1007     sp->end (sp);
1008
1009     return res != NOTMUCH_STATUS_SUCCESS;
1010 }
1011
1012 enum {
1013     NOTMUCH_FORMAT_NOT_SPECIFIED,
1014     NOTMUCH_FORMAT_JSON,
1015     NOTMUCH_FORMAT_SEXP,
1016     NOTMUCH_FORMAT_TEXT,
1017     NOTMUCH_FORMAT_MBOX,
1018     NOTMUCH_FORMAT_RAW
1019 };
1020
1021 enum {
1022     ENTIRE_THREAD_DEFAULT,
1023     ENTIRE_THREAD_TRUE,
1024     ENTIRE_THREAD_FALSE,
1025 };
1026
1027 /* The following is to allow future options to be added more easily */
1028 enum {
1029     EXCLUDE_TRUE,
1030     EXCLUDE_FALSE,
1031 };
1032
1033 int
1034 notmuch_show_command (notmuch_config_t *config, int argc, char *argv[])
1035 {
1036     notmuch_database_t *notmuch;
1037     notmuch_query_t *query;
1038     char *query_string;
1039     int opt_index, ret;
1040     const notmuch_show_format_t *format = &format_text;
1041     sprinter_t *sprinter;
1042     notmuch_show_params_t params = {
1043         .part = -1,
1044         .omit_excluded = TRUE,
1045         .output_body = TRUE,
1046         .crypto = {
1047             .verify = FALSE,
1048             .decrypt = FALSE,
1049             .gpgpath = NULL
1050         },
1051         .include_html = FALSE
1052     };
1053     int format_sel = NOTMUCH_FORMAT_NOT_SPECIFIED;
1054     int exclude = EXCLUDE_TRUE;
1055     int entire_thread = ENTIRE_THREAD_DEFAULT;
1056
1057     notmuch_opt_desc_t options[] = {
1058         { NOTMUCH_OPT_KEYWORD, &format_sel, "format", 'f',
1059           (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
1060                                   { "text", NOTMUCH_FORMAT_TEXT },
1061                                   { "sexp", NOTMUCH_FORMAT_SEXP },
1062                                   { "mbox", NOTMUCH_FORMAT_MBOX },
1063                                   { "raw", NOTMUCH_FORMAT_RAW },
1064                                   { 0, 0 } } },
1065         { NOTMUCH_OPT_INT, &notmuch_format_version, "format-version", 0, 0 },
1066         { NOTMUCH_OPT_KEYWORD, &exclude, "exclude", 'x',
1067           (notmuch_keyword_t []){ { "true", EXCLUDE_TRUE },
1068                                   { "false", EXCLUDE_FALSE },
1069                                   { 0, 0 } } },
1070         { NOTMUCH_OPT_KEYWORD, &entire_thread, "entire-thread", 't',
1071           (notmuch_keyword_t []){ { "true", ENTIRE_THREAD_TRUE },
1072                                   { "false", ENTIRE_THREAD_FALSE },
1073                                   { "", ENTIRE_THREAD_TRUE },
1074                                   { 0, 0 } } },
1075         { NOTMUCH_OPT_INT, &params.part, "part", 'p', 0 },
1076         { NOTMUCH_OPT_BOOLEAN, &params.crypto.decrypt, "decrypt", 'd', 0 },
1077         { NOTMUCH_OPT_BOOLEAN, &params.crypto.verify, "verify", 'v', 0 },
1078         { NOTMUCH_OPT_BOOLEAN, &params.output_body, "body", 'b', 0 },
1079         { NOTMUCH_OPT_BOOLEAN, &params.include_html, "include-html", 0, 0 },
1080         { NOTMUCH_OPT_INHERIT, (void *) &notmuch_shared_options, NULL, 0, 0 },
1081         { 0, 0, 0, 0, 0 }
1082     };
1083
1084     opt_index = parse_arguments (argc, argv, options, 1);
1085     if (opt_index < 0)
1086         return EXIT_FAILURE;
1087
1088     notmuch_process_shared_options (argv[0]);
1089
1090     /* decryption implies verification */
1091     if (params.crypto.decrypt)
1092         params.crypto.verify = TRUE;
1093
1094     if (format_sel == NOTMUCH_FORMAT_NOT_SPECIFIED) {
1095         /* if part was requested and format was not specified, use format=raw */
1096         if (params.part >= 0)
1097             format_sel = NOTMUCH_FORMAT_RAW;
1098         else
1099             format_sel = NOTMUCH_FORMAT_TEXT;
1100     }
1101
1102     switch (format_sel) {
1103     case NOTMUCH_FORMAT_JSON:
1104         format = &format_json;
1105         break;
1106     case NOTMUCH_FORMAT_TEXT:
1107         format = &format_text;
1108         break;
1109     case NOTMUCH_FORMAT_SEXP:
1110         format = &format_sexp;
1111         break;
1112     case NOTMUCH_FORMAT_MBOX:
1113         if (params.part > 0) {
1114             fprintf (stderr, "Error: specifying parts is incompatible with mbox output format.\n");
1115             return EXIT_FAILURE;
1116         }
1117
1118         format = &format_mbox;
1119         break;
1120     case NOTMUCH_FORMAT_RAW:
1121         format = &format_raw;
1122         /* If --format=raw specified without specifying part, we can only
1123          * output single message, so set part=0 */
1124         if (params.part < 0)
1125             params.part = 0;
1126         params.raw = TRUE;
1127         break;
1128     }
1129
1130     notmuch_exit_if_unsupported_format ();
1131
1132     /* Default is entire-thread = FALSE except for format=json and
1133      * format=sexp. */
1134     if (entire_thread == ENTIRE_THREAD_DEFAULT) {
1135         if (format == &format_json || format == &format_sexp)
1136             entire_thread = ENTIRE_THREAD_TRUE;
1137         else
1138             entire_thread = ENTIRE_THREAD_FALSE;
1139     }
1140
1141     if (!params.output_body) {
1142         if (params.part > 0) {
1143             fprintf (stderr, "Warning: --body=false is incompatible with --part > 0. Disabling.\n");
1144             params.output_body = TRUE;
1145         } else {
1146             if (format != &format_json && format != &format_sexp)
1147                 fprintf (stderr,
1148                          "Warning: --body=false only implemented for format=json and format=sexp\n");
1149         }
1150     }
1151
1152     if (params.include_html &&
1153         (format_sel != NOTMUCH_FORMAT_JSON && format_sel != NOTMUCH_FORMAT_SEXP)) {
1154         fprintf (stderr, "Warning: --include-html only implemented for format=json and format=sexp\n");
1155     }
1156
1157     if (entire_thread == ENTIRE_THREAD_TRUE)
1158         params.entire_thread = TRUE;
1159     else
1160         params.entire_thread = FALSE;
1161
1162     query_string = query_string_from_args (config, argc-opt_index, argv+opt_index);
1163     if (query_string == NULL) {
1164         fprintf (stderr, "Out of memory\n");
1165         return EXIT_FAILURE;
1166     }
1167
1168     if (*query_string == '\0') {
1169         fprintf (stderr, "Error: notmuch show requires at least one search term.\n");
1170         return EXIT_FAILURE;
1171     }
1172
1173     params.crypto.gpgpath = notmuch_config_get_crypto_gpg_path (config);
1174
1175     if (notmuch_database_open (notmuch_config_get_database_path (config),
1176                                NOTMUCH_DATABASE_MODE_READ_ONLY, &notmuch))
1177         return EXIT_FAILURE;
1178
1179     notmuch_exit_if_unmatched_db_uuid (notmuch);
1180
1181     query = notmuch_query_create (notmuch, query_string);
1182     if (query == NULL) {
1183         fprintf (stderr, "Out of memory\n");
1184         return EXIT_FAILURE;
1185     }
1186
1187     /* Create structure printer. */
1188     sprinter = format->new_sprinter(config, stdout);
1189
1190     /* If a single message is requested we do not use search_excludes. */
1191     if (params.part >= 0)
1192         ret = do_show_single (config, query, format, sprinter, &params);
1193     else {
1194         /* We always apply set the exclude flag. The
1195          * exclude=true|false option controls whether or not we return
1196          * threads that only match in an excluded message */
1197         const char **search_exclude_tags;
1198         size_t search_exclude_tags_length;
1199         unsigned int i;
1200
1201         search_exclude_tags = notmuch_config_get_search_exclude_tags
1202             (config, &search_exclude_tags_length);
1203         for (i = 0; i < search_exclude_tags_length; i++)
1204             notmuch_query_add_tag_exclude (query, search_exclude_tags[i]);
1205
1206         if (exclude == EXCLUDE_FALSE) {
1207             notmuch_query_set_omit_excluded (query, FALSE);
1208             params.omit_excluded = FALSE;
1209         }
1210
1211         ret = do_show (config, query, format, sprinter, &params);
1212     }
1213
1214     notmuch_crypto_cleanup (&params.crypto);
1215     notmuch_query_destroy (query);
1216     notmuch_database_destroy (notmuch);
1217
1218     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
1219 }