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