]> git.notmuchmail.org Git - notmuch/blob - notmuch-show.c
cli/show: fix usage of g_mime_content_type_to_string
[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         char *content_string;
484         const char *disposition = _get_disposition (meta);
485         const char *cid = g_mime_object_get_content_id (meta);
486         const char *filename = leaf ?
487             g_mime_part_get_filename (GMIME_PART (node->part)) : NULL;
488
489         if (disposition &&
490             strcasecmp (disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
491             part_type = "attachment";
492         else
493             part_type = "part";
494
495         printf ("\f%s{ ID: %d", part_type, node->part_num);
496         if (filename)
497             printf (", Filename: %s", filename);
498         if (cid)
499             printf (", Content-id: %s", cid);
500
501         content_string = g_mime_content_type_to_string (content_type);
502         printf (", Content-type: %s\n", content_string);
503         g_free (content_string);
504     }
505
506     if (GMIME_IS_MESSAGE (node->part)) {
507         GMimeMessage *message = GMIME_MESSAGE (node->part);
508         InternetAddressList *recipients;
509         char *recipients_string;
510         char *date_string;
511
512         printf ("\fheader{\n");
513         if (node->envelope_file)
514             printf ("%s\n", _get_one_line_summary (ctx, node->envelope_file));
515         printf ("Subject: %s\n", g_mime_message_get_subject (message));
516         printf ("From: %s\n", g_mime_message_get_sender (message));
517         recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
518         recipients_string = internet_address_list_to_string (recipients, 0);
519         if (recipients_string)
520             printf ("To: %s\n", recipients_string);
521         g_free (recipients_string);
522         recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
523         recipients_string = internet_address_list_to_string (recipients, 0);
524         if (recipients_string)
525             printf ("Cc: %s\n", recipients_string);
526         g_free (recipients_string);
527         date_string = g_mime_message_get_date_as_string (message);
528         printf ("Date: %s\n", date_string);
529         g_free (date_string);
530         printf ("\fheader}\n");
531
532         printf ("\fbody{\n");
533     }
534
535     if (leaf) {
536         if (g_mime_content_type_is_type (content_type, "text", "*") &&
537             !g_mime_content_type_is_type (content_type, "text", "html"))
538         {
539             GMimeStream *stream_stdout = g_mime_stream_file_new (stdout);
540             g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
541             show_text_part_content (node->part, stream_stdout, 0);
542             g_object_unref(stream_stdout);
543         } else {
544             char *content_string = g_mime_content_type_to_string (content_type);
545             printf ("Non-text part: %s\n", content_string);
546             g_free (content_string);
547         }
548     }
549
550     for (i = 0; i < node->nchildren; i++)
551         format_part_text (ctx, sp, mime_node_child (node, i), indent, params);
552
553     if (GMIME_IS_MESSAGE (node->part))
554         printf ("\fbody}\n");
555
556     printf ("\f%s}\n", part_type);
557
558     return NOTMUCH_STATUS_SUCCESS;
559 }
560
561 static void
562 format_omitted_part_meta_sprinter (sprinter_t *sp, GMimeObject *meta, GMimePart *part)
563 {
564     const char *content_charset = g_mime_object_get_content_type_parameter (meta, "charset");
565     const char *cte = g_mime_object_get_header (meta, "content-transfer-encoding");
566     GMimeDataWrapper *wrapper = g_mime_part_get_content_object (part);
567     GMimeStream *stream = g_mime_data_wrapper_get_stream (wrapper);
568     ssize_t content_length = g_mime_stream_length (stream);
569
570     if (content_charset != NULL) {
571         sp->map_key (sp, "content-charset");
572         sp->string (sp, content_charset);
573     }
574     if (cte != NULL) {
575         sp->map_key (sp, "content-transfer-encoding");
576         sp->string (sp, cte);
577     }
578     if (content_length >= 0) {
579         sp->map_key (sp, "content-length");
580         sp->integer (sp, content_length);
581     }
582 }
583
584 void
585 format_part_sprinter (const void *ctx, sprinter_t *sp, mime_node_t *node,
586                       notmuch_bool_t first, notmuch_bool_t output_body,
587                       notmuch_bool_t include_html)
588 {
589     /* Any changes to the JSON or S-Expression format should be
590      * reflected in the file devel/schemata. */
591
592     if (node->envelope_file) {
593         sp->begin_map (sp);
594         format_message_sprinter (sp, node->envelope_file);
595
596         sp->map_key (sp, "headers");
597         format_headers_sprinter (sp, GMIME_MESSAGE (node->part), FALSE);
598
599         if (output_body) {
600             sp->map_key (sp, "body");
601             sp->begin_list (sp);
602             format_part_sprinter (ctx, sp, mime_node_child (node, 0), first, TRUE, include_html);
603             sp->end (sp);
604         }
605         sp->end (sp);
606         return;
607     }
608
609     /* The disposition and content-type metadata are associated with
610      * the envelope for message parts */
611     GMimeObject *meta = node->envelope_part ?
612         GMIME_OBJECT (node->envelope_part) : node->part;
613     GMimeContentType *content_type = g_mime_object_get_content_type (meta);
614     char *content_string;
615     const char *disposition = _get_disposition (meta);
616     const char *cid = g_mime_object_get_content_id (meta);
617     const char *filename = GMIME_IS_PART (node->part) ?
618         g_mime_part_get_filename (GMIME_PART (node->part)) : NULL;
619     int nclose = 0;
620     int i;
621
622     sp->begin_map (sp);
623
624     sp->map_key (sp, "id");
625     sp->integer (sp, node->part_num);
626
627     if (node->decrypt_attempted) {
628         sp->map_key (sp, "encstatus");
629         sp->begin_list (sp);
630         sp->begin_map (sp);
631         sp->map_key (sp, "status");
632         sp->string (sp, node->decrypt_success ? "good" : "bad");
633         sp->end (sp);
634         sp->end (sp);
635     }
636
637     if (node->verify_attempted) {
638         sp->map_key (sp, "sigstatus");
639         format_part_sigstatus_sprinter (sp, node);
640     }
641
642     sp->map_key (sp, "content-type");
643     content_string = g_mime_content_type_to_string (content_type);
644     sp->string (sp, content_string);
645     g_free (content_string);
646
647     if (disposition) {
648         sp->map_key (sp, "content-disposition");
649         sp->string (sp, disposition);
650     }
651
652     if (cid) {
653         sp->map_key (sp, "content-id");
654         sp->string (sp, cid);
655     }
656
657     if (filename) {
658         sp->map_key (sp, "filename");
659         sp->string (sp, filename);
660     }
661
662     if (GMIME_IS_PART (node->part)) {
663         /* For non-HTML text parts, we include the content in the
664          * JSON. Since JSON must be Unicode, we handle charset
665          * decoding here and do not report a charset to the caller.
666          * For text/html parts, we do not include the content unless
667          * the --include-html option has been passed. If a html part
668          * is not included, it can be requested directly. This makes
669          * charset decoding the responsibility on the caller so we
670          * report the charset for text/html parts.
671          */
672         if (g_mime_content_type_is_type (content_type, "text", "*") &&
673             (include_html ||
674              ! g_mime_content_type_is_type (content_type, "text", "html")))
675         {
676             GMimeStream *stream_memory = g_mime_stream_mem_new ();
677             GByteArray *part_content;
678             show_text_part_content (node->part, stream_memory, 0);
679             part_content = g_mime_stream_mem_get_byte_array (GMIME_STREAM_MEM (stream_memory));
680             sp->map_key (sp, "content");
681             sp->string_len (sp, (char *) part_content->data, part_content->len);
682             g_object_unref (stream_memory);
683         } else {
684             format_omitted_part_meta_sprinter (sp, meta, GMIME_PART (node->part));
685         }
686     } else if (GMIME_IS_MULTIPART (node->part)) {
687         sp->map_key (sp, "content");
688         sp->begin_list (sp);
689         nclose = 1;
690     } else if (GMIME_IS_MESSAGE (node->part)) {
691         sp->map_key (sp, "content");
692         sp->begin_list (sp);
693         sp->begin_map (sp);
694
695         sp->map_key (sp, "headers");
696         format_headers_sprinter (sp, GMIME_MESSAGE (node->part), FALSE);
697
698         sp->map_key (sp, "body");
699         sp->begin_list (sp);
700         nclose = 3;
701     }
702
703     for (i = 0; i < node->nchildren; i++)
704         format_part_sprinter (ctx, sp, mime_node_child (node, i), i == 0, TRUE, include_html);
705
706     /* Close content structures */
707     for (i = 0; i < nclose; i++)
708         sp->end (sp);
709     /* Close part map */
710     sp->end (sp);
711 }
712
713 static notmuch_status_t
714 format_part_sprinter_entry (const void *ctx, sprinter_t *sp,
715                             mime_node_t *node, unused (int indent),
716                             const notmuch_show_params_t *params)
717 {
718     format_part_sprinter (ctx, sp, node, TRUE, params->output_body, params->include_html);
719
720     return NOTMUCH_STATUS_SUCCESS;
721 }
722
723 /* Print a message in "mboxrd" format as documented, for example,
724  * here:
725  *
726  * http://qmail.org/qmail-manual-html/man5/mbox.html
727  */
728 static notmuch_status_t
729 format_part_mbox (const void *ctx, unused (sprinter_t *sp), mime_node_t *node,
730                   unused (int indent),
731                   unused (const notmuch_show_params_t *params))
732 {
733     notmuch_message_t *message = node->envelope_file;
734
735     const char *filename;
736     FILE *file;
737     const char *from;
738
739     time_t date;
740     struct tm date_gmtime;
741     char date_asctime[26];
742
743     char *line = NULL;
744     size_t line_size;
745     ssize_t line_len;
746
747     if (!message)
748         INTERNAL_ERROR ("format_part_mbox requires a root part");
749
750     filename = notmuch_message_get_filename (message);
751     file = fopen (filename, "r");
752     if (file == NULL) {
753         fprintf (stderr, "Failed to open %s: %s\n",
754                  filename, strerror (errno));
755         return NOTMUCH_STATUS_FILE_ERROR;
756     }
757
758     from = notmuch_message_get_header (message, "from");
759     from = _extract_email_address (ctx, from);
760
761     date = notmuch_message_get_date (message);
762     gmtime_r (&date, &date_gmtime);
763     asctime_r (&date_gmtime, date_asctime);
764
765     printf ("From %s %s", from, date_asctime);
766
767     while ((line_len = getline (&line, &line_size, file)) != -1 ) {
768         if (_is_from_line (line))
769             putchar ('>');
770         printf ("%s", line);
771     }
772
773     printf ("\n");
774
775     fclose (file);
776
777     return NOTMUCH_STATUS_SUCCESS;
778 }
779
780 static notmuch_status_t
781 format_part_raw (unused (const void *ctx), unused (sprinter_t *sp),
782                  mime_node_t *node, unused (int indent),
783                  unused (const notmuch_show_params_t *params))
784 {
785     if (node->envelope_file) {
786         /* Special case the entire message to avoid MIME parsing. */
787         const char *filename;
788         FILE *file;
789         size_t size;
790         char buf[4096];
791
792         filename = notmuch_message_get_filename (node->envelope_file);
793         if (filename == NULL) {
794             fprintf (stderr, "Error: Cannot get message filename.\n");
795             return NOTMUCH_STATUS_FILE_ERROR;
796         }
797
798         file = fopen (filename, "r");
799         if (file == NULL) {
800             fprintf (stderr, "Error: Cannot open file %s: %s\n", filename, strerror (errno));
801             return NOTMUCH_STATUS_FILE_ERROR;
802         }
803
804         while (!feof (file)) {
805             size = fread (buf, 1, sizeof (buf), file);
806             if (ferror (file)) {
807                 fprintf (stderr, "Error: Read failed from %s\n", filename);
808                 fclose (file);
809                 return NOTMUCH_STATUS_FILE_ERROR;
810             }
811
812             if (fwrite (buf, size, 1, stdout) != 1) {
813                 fprintf (stderr, "Error: Write failed\n");
814                 fclose (file);
815                 return NOTMUCH_STATUS_FILE_ERROR;
816             }
817         }
818
819         fclose (file);
820         return NOTMUCH_STATUS_SUCCESS;
821     }
822
823     GMimeStream *stream_stdout;
824     GMimeStream *stream_filter = NULL;
825
826     stream_stdout = g_mime_stream_file_new (stdout);
827     g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
828
829     stream_filter = g_mime_stream_filter_new (stream_stdout);
830
831     if (GMIME_IS_PART (node->part)) {
832         /* For leaf parts, we emit only the transfer-decoded
833          * body. */
834         GMimeDataWrapper *wrapper;
835         wrapper = g_mime_part_get_content_object (GMIME_PART (node->part));
836
837         if (wrapper && stream_filter)
838             g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
839     } else {
840         /* Write out the whole part.  For message parts (the root
841          * part and embedded message parts), this will be the
842          * message including its headers (but not the
843          * encapsulating part's headers).  For multipart parts,
844          * this will include the headers. */
845         if (stream_filter)
846             g_mime_object_write_to_stream (node->part, stream_filter);
847     }
848
849     if (stream_filter)
850         g_object_unref (stream_filter);
851
852     if (stream_stdout)
853         g_object_unref(stream_stdout);
854
855     return NOTMUCH_STATUS_SUCCESS;
856 }
857
858 static notmuch_status_t
859 show_message (void *ctx,
860               const notmuch_show_format_t *format,
861               sprinter_t *sp,
862               notmuch_message_t *message,
863               int indent,
864               notmuch_show_params_t *params)
865 {
866     void *local = talloc_new (ctx);
867     mime_node_t *root, *part;
868     notmuch_status_t status;
869
870     status = mime_node_open (local, message, &(params->crypto), &root);
871     if (status)
872         goto DONE;
873     part = mime_node_seek_dfs (root, (params->part < 0 ? 0 : params->part));
874     if (part)
875         status = format->part (local, sp, part, indent, params);
876   DONE:
877     talloc_free (local);
878     return status;
879 }
880
881 static notmuch_status_t
882 show_messages (void *ctx,
883                const notmuch_show_format_t *format,
884                sprinter_t *sp,
885                notmuch_messages_t *messages,
886                int indent,
887                notmuch_show_params_t *params)
888 {
889     notmuch_message_t *message;
890     notmuch_bool_t match;
891     notmuch_bool_t excluded;
892     int next_indent;
893     notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS;
894
895     sp->begin_list (sp);
896
897     for (;
898          notmuch_messages_valid (messages);
899          notmuch_messages_move_to_next (messages))
900     {
901         sp->begin_list (sp);
902
903         message = notmuch_messages_get (messages);
904
905         match = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH);
906         excluded = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_EXCLUDED);
907
908         next_indent = indent;
909
910         if ((match && (!excluded || !params->omit_excluded)) || params->entire_thread) {
911             status = show_message (ctx, format, sp, message, indent, params);
912             if (status && !res)
913                 res = status;
914             next_indent = indent + 1;
915         } else {
916             sp->null (sp);
917         }
918
919         status = show_messages (ctx,
920                                 format, sp,
921                                 notmuch_message_get_replies (message),
922                                 next_indent,
923                                 params);
924         if (status && !res)
925             res = status;
926
927         notmuch_message_destroy (message);
928
929         sp->end (sp);
930     }
931
932     sp->end (sp);
933
934     return res;
935 }
936
937 /* Formatted output of single message */
938 static int
939 do_show_single (void *ctx,
940                 notmuch_query_t *query,
941                 const notmuch_show_format_t *format,
942                 sprinter_t *sp,
943                 notmuch_show_params_t *params)
944 {
945     notmuch_messages_t *messages;
946     notmuch_message_t *message;
947     notmuch_status_t status;
948     unsigned int count;
949
950     status = notmuch_query_count_messages_st (query, &count);
951     if (print_status_query ("notmuch show", query, status))
952         return 1;
953
954     if (count != 1) {
955         fprintf (stderr, "Error: search term did not match precisely one message (matched %d messages).\n", count);
956         return 1;
957     }
958
959     status = notmuch_query_search_messages_st (query, &messages);
960     if (print_status_query ("notmuch show", query, status))
961         return 1;
962
963     message = notmuch_messages_get (messages);
964
965     if (message == NULL) {
966         fprintf (stderr, "Error: Cannot find matching message.\n");
967         return 1;
968     }
969
970     notmuch_message_set_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH, 1);
971
972     return show_message (ctx, format, sp, message, 0, params)
973         != NOTMUCH_STATUS_SUCCESS;
974 }
975
976 /* Formatted output of threads */
977 static int
978 do_show (void *ctx,
979          notmuch_query_t *query,
980          const notmuch_show_format_t *format,
981          sprinter_t *sp,
982          notmuch_show_params_t *params)
983 {
984     notmuch_threads_t *threads;
985     notmuch_thread_t *thread;
986     notmuch_messages_t *messages;
987     notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS;
988
989     status= notmuch_query_search_threads_st (query, &threads);
990     if (print_status_query ("notmuch show", query, status))
991         return 1;
992
993     sp->begin_list (sp);
994
995     for ( ;
996          notmuch_threads_valid (threads);
997          notmuch_threads_move_to_next (threads))
998     {
999         thread = notmuch_threads_get (threads);
1000
1001         messages = notmuch_thread_get_toplevel_messages (thread);
1002
1003         if (messages == NULL)
1004             INTERNAL_ERROR ("Thread %s has no toplevel messages.\n",
1005                             notmuch_thread_get_thread_id (thread));
1006
1007         status = show_messages (ctx, format, sp, messages, 0, params);
1008         if (status && !res)
1009             res = status;
1010
1011         notmuch_thread_destroy (thread);
1012
1013     }
1014
1015     sp->end (sp);
1016
1017     return res != NOTMUCH_STATUS_SUCCESS;
1018 }
1019
1020 enum {
1021     NOTMUCH_FORMAT_NOT_SPECIFIED,
1022     NOTMUCH_FORMAT_JSON,
1023     NOTMUCH_FORMAT_SEXP,
1024     NOTMUCH_FORMAT_TEXT,
1025     NOTMUCH_FORMAT_MBOX,
1026     NOTMUCH_FORMAT_RAW
1027 };
1028
1029 enum {
1030     ENTIRE_THREAD_DEFAULT,
1031     ENTIRE_THREAD_TRUE,
1032     ENTIRE_THREAD_FALSE,
1033 };
1034
1035 /* The following is to allow future options to be added more easily */
1036 enum {
1037     EXCLUDE_TRUE,
1038     EXCLUDE_FALSE,
1039 };
1040
1041 int
1042 notmuch_show_command (notmuch_config_t *config, int argc, char *argv[])
1043 {
1044     notmuch_database_t *notmuch;
1045     notmuch_query_t *query;
1046     char *query_string;
1047     int opt_index, ret;
1048     const notmuch_show_format_t *format = &format_text;
1049     sprinter_t *sprinter;
1050     notmuch_show_params_t params = {
1051         .part = -1,
1052         .omit_excluded = TRUE,
1053         .output_body = TRUE,
1054         .crypto = {
1055             .verify = FALSE,
1056             .decrypt = FALSE,
1057             .gpgpath = NULL
1058         },
1059         .include_html = FALSE
1060     };
1061     int format_sel = NOTMUCH_FORMAT_NOT_SPECIFIED;
1062     int exclude = EXCLUDE_TRUE;
1063     int entire_thread = ENTIRE_THREAD_DEFAULT;
1064
1065     notmuch_opt_desc_t options[] = {
1066         { NOTMUCH_OPT_KEYWORD, &format_sel, "format", 'f',
1067           (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
1068                                   { "text", NOTMUCH_FORMAT_TEXT },
1069                                   { "sexp", NOTMUCH_FORMAT_SEXP },
1070                                   { "mbox", NOTMUCH_FORMAT_MBOX },
1071                                   { "raw", NOTMUCH_FORMAT_RAW },
1072                                   { 0, 0 } } },
1073         { NOTMUCH_OPT_INT, &notmuch_format_version, "format-version", 0, 0 },
1074         { NOTMUCH_OPT_KEYWORD, &exclude, "exclude", 'x',
1075           (notmuch_keyword_t []){ { "true", EXCLUDE_TRUE },
1076                                   { "false", EXCLUDE_FALSE },
1077                                   { 0, 0 } } },
1078         { NOTMUCH_OPT_KEYWORD, &entire_thread, "entire-thread", 't',
1079           (notmuch_keyword_t []){ { "true", ENTIRE_THREAD_TRUE },
1080                                   { "false", ENTIRE_THREAD_FALSE },
1081                                   { "", ENTIRE_THREAD_TRUE },
1082                                   { 0, 0 } } },
1083         { NOTMUCH_OPT_INT, &params.part, "part", 'p', 0 },
1084         { NOTMUCH_OPT_BOOLEAN, &params.crypto.decrypt, "decrypt", 'd', 0 },
1085         { NOTMUCH_OPT_BOOLEAN, &params.crypto.verify, "verify", 'v', 0 },
1086         { NOTMUCH_OPT_BOOLEAN, &params.output_body, "body", 'b', 0 },
1087         { NOTMUCH_OPT_BOOLEAN, &params.include_html, "include-html", 0, 0 },
1088         { NOTMUCH_OPT_INHERIT, (void *) &notmuch_shared_options, NULL, 0, 0 },
1089         { 0, 0, 0, 0, 0 }
1090     };
1091
1092     opt_index = parse_arguments (argc, argv, options, 1);
1093     if (opt_index < 0)
1094         return EXIT_FAILURE;
1095
1096     notmuch_process_shared_options (argv[0]);
1097
1098     /* decryption implies verification */
1099     if (params.crypto.decrypt)
1100         params.crypto.verify = TRUE;
1101
1102     if (format_sel == NOTMUCH_FORMAT_NOT_SPECIFIED) {
1103         /* if part was requested and format was not specified, use format=raw */
1104         if (params.part >= 0)
1105             format_sel = NOTMUCH_FORMAT_RAW;
1106         else
1107             format_sel = NOTMUCH_FORMAT_TEXT;
1108     }
1109
1110     switch (format_sel) {
1111     case NOTMUCH_FORMAT_JSON:
1112         format = &format_json;
1113         break;
1114     case NOTMUCH_FORMAT_TEXT:
1115         format = &format_text;
1116         break;
1117     case NOTMUCH_FORMAT_SEXP:
1118         format = &format_sexp;
1119         break;
1120     case NOTMUCH_FORMAT_MBOX:
1121         if (params.part > 0) {
1122             fprintf (stderr, "Error: specifying parts is incompatible with mbox output format.\n");
1123             return EXIT_FAILURE;
1124         }
1125
1126         format = &format_mbox;
1127         break;
1128     case NOTMUCH_FORMAT_RAW:
1129         format = &format_raw;
1130         /* If --format=raw specified without specifying part, we can only
1131          * output single message, so set part=0 */
1132         if (params.part < 0)
1133             params.part = 0;
1134         params.raw = TRUE;
1135         break;
1136     }
1137
1138     notmuch_exit_if_unsupported_format ();
1139
1140     /* Default is entire-thread = FALSE except for format=json and
1141      * format=sexp. */
1142     if (entire_thread == ENTIRE_THREAD_DEFAULT) {
1143         if (format == &format_json || format == &format_sexp)
1144             entire_thread = ENTIRE_THREAD_TRUE;
1145         else
1146             entire_thread = ENTIRE_THREAD_FALSE;
1147     }
1148
1149     if (!params.output_body) {
1150         if (params.part > 0) {
1151             fprintf (stderr, "Warning: --body=false is incompatible with --part > 0. Disabling.\n");
1152             params.output_body = TRUE;
1153         } else {
1154             if (format != &format_json && format != &format_sexp)
1155                 fprintf (stderr,
1156                          "Warning: --body=false only implemented for format=json and format=sexp\n");
1157         }
1158     }
1159
1160     if (params.include_html &&
1161         (format_sel != NOTMUCH_FORMAT_JSON && format_sel != NOTMUCH_FORMAT_SEXP)) {
1162         fprintf (stderr, "Warning: --include-html only implemented for format=json and format=sexp\n");
1163     }
1164
1165     if (entire_thread == ENTIRE_THREAD_TRUE)
1166         params.entire_thread = TRUE;
1167     else
1168         params.entire_thread = FALSE;
1169
1170     query_string = query_string_from_args (config, argc-opt_index, argv+opt_index);
1171     if (query_string == NULL) {
1172         fprintf (stderr, "Out of memory\n");
1173         return EXIT_FAILURE;
1174     }
1175
1176     if (*query_string == '\0') {
1177         fprintf (stderr, "Error: notmuch show requires at least one search term.\n");
1178         return EXIT_FAILURE;
1179     }
1180
1181     params.crypto.gpgpath = notmuch_config_get_crypto_gpg_path (config);
1182
1183     if (notmuch_database_open (notmuch_config_get_database_path (config),
1184                                NOTMUCH_DATABASE_MODE_READ_ONLY, &notmuch))
1185         return EXIT_FAILURE;
1186
1187     notmuch_exit_if_unmatched_db_uuid (notmuch);
1188
1189     query = notmuch_query_create (notmuch, query_string);
1190     if (query == NULL) {
1191         fprintf (stderr, "Out of memory\n");
1192         return EXIT_FAILURE;
1193     }
1194
1195     /* Create structure printer. */
1196     sprinter = format->new_sprinter(config, stdout);
1197
1198     /* If a single message is requested we do not use search_excludes. */
1199     if (params.part >= 0)
1200         ret = do_show_single (config, query, format, sprinter, &params);
1201     else {
1202         /* We always apply set the exclude flag. The
1203          * exclude=true|false option controls whether or not we return
1204          * threads that only match in an excluded message */
1205         const char **search_exclude_tags;
1206         size_t search_exclude_tags_length;
1207         unsigned int i;
1208
1209         search_exclude_tags = notmuch_config_get_search_exclude_tags
1210             (config, &search_exclude_tags_length);
1211         for (i = 0; i < search_exclude_tags_length; i++)
1212             notmuch_query_add_tag_exclude (query, search_exclude_tags[i]);
1213
1214         if (exclude == EXCLUDE_FALSE) {
1215             notmuch_query_set_omit_excluded (query, FALSE);
1216             params.omit_excluded = FALSE;
1217         }
1218
1219         ret = do_show (config, query, format, sprinter, &params);
1220     }
1221
1222     notmuch_crypto_cleanup (&params.crypto);
1223     notmuch_query_destroy (query);
1224     notmuch_database_destroy (notmuch);
1225
1226     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
1227 }