]> git.notmuchmail.org Git - notmuch/blob - notmuch-show.c
6a171a40cd2377ff5bab7b316c160ccbebbb48f3
[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 (mime_node_t *node)
408 {
409     GMimeSignatureList *siglist = node->sig_list;
410
411     printf ("[");
412
413     if (!siglist) {
414         printf ("]");
415         return;
416     }
417
418     void *ctx_quote = talloc_new (NULL);
419     int i;
420     for (i = 0; i < g_mime_signature_list_length (siglist); i++) {
421         GMimeSignature *signature = g_mime_signature_list_get_signature (siglist, i);
422
423         if (i > 0)
424             printf (", ");
425
426         printf ("{");
427
428         /* status */
429         GMimeSignatureStatus status = g_mime_signature_get_status (signature);
430         printf ("\"status\": %s",
431                 json_quote_str (ctx_quote,
432                                 signature_status_to_string (status)));
433
434         GMimeCertificate *certificate = g_mime_signature_get_certificate (signature);
435         if (status == GMIME_SIGNATURE_STATUS_GOOD) {
436             if (certificate)
437                 printf (", \"fingerprint\": %s", json_quote_str (ctx_quote, g_mime_certificate_get_fingerprint (certificate)));
438             /* these dates are seconds since the epoch; should we
439              * provide a more human-readable format string? */
440             time_t created = g_mime_signature_get_created (signature);
441             if (created != -1)
442                 printf (", \"created\": %d", (int) created);
443             time_t expires = g_mime_signature_get_expires (signature);
444             if (expires > 0)
445                 printf (", \"expires\": %d", (int) expires);
446             /* output user id only if validity is FULL or ULTIMATE. */
447             /* note that gmime is using the term "trust" here, which
448              * is WRONG.  It's actually user id "validity". */
449             if (certificate) {
450                 const char *name = g_mime_certificate_get_name (certificate);
451                 GMimeCertificateTrust trust = g_mime_certificate_get_trust (certificate);
452                 if (name && (trust == GMIME_CERTIFICATE_TRUST_FULLY || trust == GMIME_CERTIFICATE_TRUST_ULTIMATE))
453                     printf (", \"userid\": %s", json_quote_str (ctx_quote, name));
454             }
455         } else if (certificate) {
456             const char *key_id = g_mime_certificate_get_key_id (certificate);
457             if (key_id)
458                 printf (", \"keyid\": %s", json_quote_str (ctx_quote, key_id));
459         }
460
461         GMimeSignatureError errors = g_mime_signature_get_errors (signature);
462         if (errors != GMIME_SIGNATURE_ERROR_NONE) {
463             printf (", \"errors\": %d", errors);
464         }
465
466         printf ("}");
467      }
468
469     printf ("]");
470
471     talloc_free (ctx_quote);
472 }
473 #else
474 static void
475 format_part_sigstatus_json (mime_node_t *node)
476 {
477     const GMimeSignatureValidity* validity = node->sig_validity;
478
479     printf ("[");
480
481     if (!validity) {
482         printf ("]");
483         return;
484     }
485
486     const GMimeSigner *signer = g_mime_signature_validity_get_signers (validity);
487     int first = 1;
488     void *ctx_quote = talloc_new (NULL);
489
490     while (signer) {
491         if (first)
492             first = 0;
493         else
494             printf (", ");
495
496         printf ("{");
497
498         /* status */
499         printf ("\"status\": %s",
500                 json_quote_str (ctx_quote,
501                                 signer_status_to_string (signer->status)));
502
503         if (signer->status == GMIME_SIGNER_STATUS_GOOD)
504         {
505             if (signer->fingerprint)
506                 printf (", \"fingerprint\": %s", json_quote_str (ctx_quote, signer->fingerprint));
507             /* these dates are seconds since the epoch; should we
508              * provide a more human-readable format string? */
509             if (signer->created)
510                 printf (", \"created\": %d", (int) signer->created);
511             if (signer->expires)
512                 printf (", \"expires\": %d", (int) signer->expires);
513             /* output user id only if validity is FULL or ULTIMATE. */
514             /* note that gmime is using the term "trust" here, which
515              * is WRONG.  It's actually user id "validity". */
516             if ((signer->name) && (signer->trust)) {
517                 if ((signer->trust == GMIME_SIGNER_TRUST_FULLY) || (signer->trust == GMIME_SIGNER_TRUST_ULTIMATE))
518                     printf (", \"userid\": %s", json_quote_str (ctx_quote, signer->name));
519            }
520        } else {
521            if (signer->keyid)
522                printf (", \"keyid\": %s", json_quote_str (ctx_quote, signer->keyid));
523        }
524        if (signer->errors != GMIME_SIGNER_ERROR_NONE) {
525            printf (", \"errors\": %d", signer->errors);
526        }
527
528        printf ("}");
529        signer = signer->next;
530     }
531
532     printf ("]");
533
534     talloc_free (ctx_quote);
535 }
536 #endif
537
538 static void
539 format_part_content_raw (GMimeObject *part)
540 {
541     if (! GMIME_IS_PART (part))
542         return;
543
544     GMimeStream *stream_stdout;
545     GMimeStream *stream_filter = NULL;
546     GMimeDataWrapper *wrapper;
547
548     stream_stdout = g_mime_stream_file_new (stdout);
549     g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
550
551     stream_filter = g_mime_stream_filter_new (stream_stdout);
552
553     wrapper = g_mime_part_get_content_object (GMIME_PART (part));
554
555     if (wrapper && stream_filter)
556         g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
557
558     if (stream_filter)
559         g_object_unref (stream_filter);
560
561     if (stream_stdout)
562         g_object_unref(stream_stdout);
563 }
564
565 static void
566 format_part_text (const void *ctx, mime_node_t *node,
567                   int indent, const notmuch_show_params_t *params)
568 {
569     /* The disposition and content-type metadata are associated with
570      * the envelope for message parts */
571     GMimeObject *meta = node->envelope_part ?
572         GMIME_OBJECT (node->envelope_part) : node->part;
573     GMimeContentType *content_type = g_mime_object_get_content_type (meta);
574     const notmuch_bool_t leaf = GMIME_IS_PART (node->part);
575     const char *part_type;
576     int i;
577
578     if (node->envelope_file) {
579         notmuch_message_t *message = node->envelope_file;
580
581         part_type = "message";
582         printf ("\f%s{ id:%s depth:%d match:%d filename:%s\n",
583                 part_type,
584                 notmuch_message_get_message_id (message),
585                 indent,
586                 notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH),
587                 notmuch_message_get_filename (message));
588     } else {
589         GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (meta);
590         const char *cid = g_mime_object_get_content_id (meta);
591         const char *filename = leaf ?
592             g_mime_part_get_filename (GMIME_PART (node->part)) : NULL;
593
594         if (disposition &&
595             strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
596             part_type = "attachment";
597         else
598             part_type = "part";
599
600         printf ("\f%s{ ID: %d", part_type, node->part_num);
601         if (filename)
602             printf (", Filename: %s", filename);
603         if (cid)
604             printf (", Content-id: %s", cid);
605         printf (", Content-type: %s\n", g_mime_content_type_to_string (content_type));
606     }
607
608     if (GMIME_IS_MESSAGE (node->part)) {
609         GMimeMessage *message = GMIME_MESSAGE (node->part);
610         InternetAddressList *recipients;
611         const char *recipients_string;
612
613         printf ("\fheader{\n");
614         if (node->envelope_file)
615             printf ("%s\n", _get_one_line_summary (ctx, node->envelope_file));
616         printf ("Subject: %s\n", g_mime_message_get_subject (message));
617         printf ("From: %s\n", g_mime_message_get_sender (message));
618         recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
619         recipients_string = internet_address_list_to_string (recipients, 0);
620         if (recipients_string)
621             printf ("To: %s\n", recipients_string);
622         recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
623         recipients_string = internet_address_list_to_string (recipients, 0);
624         if (recipients_string)
625             printf ("Cc: %s\n", recipients_string);
626         printf ("Date: %s\n", g_mime_message_get_date_as_string (message));
627         printf ("\fheader}\n");
628
629         printf ("\fbody{\n");
630     }
631
632     if (leaf) {
633         if (g_mime_content_type_is_type (content_type, "text", "*") &&
634             !g_mime_content_type_is_type (content_type, "text", "html"))
635         {
636             GMimeStream *stream_stdout = g_mime_stream_file_new (stdout);
637             g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
638             show_text_part_content (node->part, stream_stdout);
639             g_object_unref(stream_stdout);
640         } else {
641             printf ("Non-text part: %s\n",
642                     g_mime_content_type_to_string (content_type));
643         }
644     }
645
646     for (i = 0; i < node->nchildren; i++)
647         format_part_text (ctx, mime_node_child (node, i), indent, params);
648
649     if (GMIME_IS_MESSAGE (node->part))
650         printf ("\fbody}\n");
651
652     printf ("\f%s}\n", part_type);
653 }
654
655 static void
656 format_part_json (const void *ctx, mime_node_t *node, notmuch_bool_t first)
657 {
658     /* Any changes to the JSON format should be reflected in the file
659      * devel/schemata. */
660
661     if (node->envelope_file) {
662         printf ("{");
663         format_message_json (ctx, node->envelope_file);
664
665         printf ("\"headers\": ");
666         format_headers_json (ctx, GMIME_MESSAGE (node->part));
667
668         printf (", \"body\": [");
669         format_part_json (ctx, mime_node_child (node, 0), first);
670
671         printf ("]}");
672         return;
673     }
674
675     void *local = talloc_new (ctx);
676     /* The disposition and content-type metadata are associated with
677      * the envelope for message parts */
678     GMimeObject *meta = node->envelope_part ?
679         GMIME_OBJECT (node->envelope_part) : node->part;
680     GMimeContentType *content_type = g_mime_object_get_content_type (meta);
681     const char *cid = g_mime_object_get_content_id (meta);
682     const char *filename = GMIME_IS_PART (node->part) ?
683         g_mime_part_get_filename (GMIME_PART (node->part)) : NULL;
684     const char *terminator = "";
685     int i;
686
687     if (!first)
688         printf (", ");
689
690     printf ("{\"id\": %d", node->part_num);
691
692     if (node->decrypt_attempted)
693         printf (", \"encstatus\": [{\"status\": \"%s\"}]",
694                 node->decrypt_success ? "good" : "bad");
695
696     if (node->verify_attempted) {
697         printf (", \"sigstatus\": ");
698         format_part_sigstatus_json (node);
699     }
700
701     printf (", \"content-type\": %s",
702             json_quote_str (local, g_mime_content_type_to_string (content_type)));
703
704     if (cid)
705         printf (", \"content-id\": %s", json_quote_str (local, cid));
706
707     if (filename)
708         printf (", \"filename\": %s", json_quote_str (local, filename));
709
710     if (GMIME_IS_PART (node->part)) {
711         /* For non-HTML text parts, we include the content in the
712          * JSON. Since JSON must be Unicode, we handle charset
713          * decoding here and do not report a charset to the caller.
714          * For text/html parts, we do not include the content. If a
715          * caller is interested in text/html parts, it should retrieve
716          * them separately and they will not be decoded. Since this
717          * makes charset decoding the responsibility on the caller, we
718          * report the charset for text/html parts.
719          */
720         if (g_mime_content_type_is_type (content_type, "text", "html")) {
721             const char *content_charset = g_mime_object_get_content_type_parameter (meta, "charset");
722
723             if (content_charset != NULL)
724                 printf (", \"content-charset\": %s", json_quote_str (local, content_charset));
725         } else if (g_mime_content_type_is_type (content_type, "text", "*")) {
726             GMimeStream *stream_memory = g_mime_stream_mem_new ();
727             GByteArray *part_content;
728             show_text_part_content (node->part, stream_memory);
729             part_content = g_mime_stream_mem_get_byte_array (GMIME_STREAM_MEM (stream_memory));
730
731             printf (", \"content\": %s", json_quote_chararray (local, (char *) part_content->data, part_content->len));
732             g_object_unref (stream_memory);
733         }
734     } else if (GMIME_IS_MULTIPART (node->part)) {
735         printf (", \"content\": [");
736         terminator = "]";
737     } else if (GMIME_IS_MESSAGE (node->part)) {
738         printf (", \"content\": [{");
739         printf ("\"headers\": ");
740         format_headers_json (local, GMIME_MESSAGE (node->part));
741
742         printf (", \"body\": [");
743         terminator = "]}]";
744     }
745
746     talloc_free (local);
747
748     for (i = 0; i < node->nchildren; i++)
749         format_part_json (ctx, mime_node_child (node, i), i == 0);
750
751     printf ("%s}", terminator);
752 }
753
754 static void
755 format_part_json_entry (const void *ctx, mime_node_t *node, unused (int indent),
756                         unused (const notmuch_show_params_t *params))
757 {
758     format_part_json (ctx, node, TRUE);
759 }
760
761 static void
762 show_message (void *ctx,
763               const notmuch_show_format_t *format,
764               notmuch_message_t *message,
765               int indent,
766               notmuch_show_params_t *params)
767 {
768     if (format->part) {
769         void *local = talloc_new (ctx);
770         mime_node_t *root, *part;
771
772         if (mime_node_open (local, message, params->cryptoctx, params->decrypt,
773                             &root) == NOTMUCH_STATUS_SUCCESS &&
774             (part = mime_node_seek_dfs (root, (params->part < 0 ?
775                                                0 : params->part))))
776             format->part (local, part, indent, params);
777         talloc_free (local);
778         return;
779     }
780
781     if (params->part <= 0) {
782         fputs (format->message_start, stdout);
783         if (format->message)
784             format->message(ctx, message, indent);
785
786         fputs (format->header_start, stdout);
787         if (format->header)
788             format->header(ctx, message);
789         fputs (format->header_end, stdout);
790
791         fputs (format->body_start, stdout);
792     }
793
794     if (format->part_content)
795         show_message_body (message, format, params);
796
797     if (params->part <= 0) {
798         fputs (format->body_end, stdout);
799
800         fputs (format->message_end, stdout);
801     }
802 }
803
804 static void
805 show_messages (void *ctx,
806                const notmuch_show_format_t *format,
807                notmuch_messages_t *messages,
808                int indent,
809                notmuch_show_params_t *params)
810 {
811     notmuch_message_t *message;
812     notmuch_bool_t match;
813     int first_set = 1;
814     int next_indent;
815
816     fputs (format->message_set_start, stdout);
817
818     for (;
819          notmuch_messages_valid (messages);
820          notmuch_messages_move_to_next (messages))
821     {
822         if (!first_set)
823             fputs (format->message_set_sep, stdout);
824         first_set = 0;
825
826         fputs (format->message_set_start, stdout);
827
828         message = notmuch_messages_get (messages);
829
830         match = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH);
831
832         next_indent = indent;
833
834         if (match || params->entire_thread) {
835             show_message (ctx, format, message, indent, params);
836             next_indent = indent + 1;
837
838             fputs (format->message_set_sep, stdout);
839         }
840
841         show_messages (ctx,
842                        format,
843                        notmuch_message_get_replies (message),
844                        next_indent,
845                        params);
846
847         notmuch_message_destroy (message);
848
849         fputs (format->message_set_end, stdout);
850     }
851
852     fputs (format->message_set_end, stdout);
853 }
854
855 /* Formatted output of single message */
856 static int
857 do_show_single (void *ctx,
858                 notmuch_query_t *query,
859                 const notmuch_show_format_t *format,
860                 notmuch_show_params_t *params)
861 {
862     notmuch_messages_t *messages;
863     notmuch_message_t *message;
864
865     if (notmuch_query_count_messages (query) != 1) {
866         fprintf (stderr, "Error: search term did not match precisely one message.\n");
867         return 1;
868     }
869
870     messages = notmuch_query_search_messages (query);
871     message = notmuch_messages_get (messages);
872
873     if (message == NULL) {
874         fprintf (stderr, "Error: Cannot find matching message.\n");
875         return 1;
876     }
877
878     notmuch_message_set_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH, 1);
879
880     /* Special case for --format=raw of full single message, just cat out file */
881     if (params->raw && 0 == params->part) {
882
883         const char *filename;
884         FILE *file;
885         size_t size;
886         char buf[4096];
887
888         filename = notmuch_message_get_filename (message);
889         if (filename == NULL) {
890             fprintf (stderr, "Error: Cannot message filename.\n");
891             return 1;
892         }
893
894         file = fopen (filename, "r");
895         if (file == NULL) {
896             fprintf (stderr, "Error: Cannot open file %s: %s\n", filename, strerror (errno));
897             return 1;
898         }
899
900         while (!feof (file)) {
901             size = fread (buf, 1, sizeof (buf), file);
902             if (ferror (file)) {
903                 fprintf (stderr, "Error: Read failed from %s\n", filename);
904                 fclose (file);
905                 return 1;
906             }
907
908             if (fwrite (buf, size, 1, stdout) != 1) {
909                 fprintf (stderr, "Error: Write failed\n");
910                 fclose (file);
911                 return 1;
912             }
913         }
914
915         fclose (file);
916
917     } else {
918
919         show_message (ctx, format, message, 0, params);
920
921     }
922
923     return 0;
924 }
925
926 /* Formatted output of threads */
927 static int
928 do_show (void *ctx,
929          notmuch_query_t *query,
930          const notmuch_show_format_t *format,
931          notmuch_show_params_t *params)
932 {
933     notmuch_threads_t *threads;
934     notmuch_thread_t *thread;
935     notmuch_messages_t *messages;
936     int first_toplevel = 1;
937
938     fputs (format->message_set_start, stdout);
939
940     for (threads = notmuch_query_search_threads (query);
941          notmuch_threads_valid (threads);
942          notmuch_threads_move_to_next (threads))
943     {
944         thread = notmuch_threads_get (threads);
945
946         messages = notmuch_thread_get_toplevel_messages (thread);
947
948         if (messages == NULL)
949             INTERNAL_ERROR ("Thread %s has no toplevel messages.\n",
950                             notmuch_thread_get_thread_id (thread));
951
952         if (!first_toplevel)
953             fputs (format->message_set_sep, stdout);
954         first_toplevel = 0;
955
956         show_messages (ctx, format, messages, 0, params);
957
958         notmuch_thread_destroy (thread);
959
960     }
961
962     fputs (format->message_set_end, stdout);
963
964     return 0;
965 }
966
967 enum {
968     NOTMUCH_FORMAT_NOT_SPECIFIED,
969     NOTMUCH_FORMAT_JSON,
970     NOTMUCH_FORMAT_TEXT,
971     NOTMUCH_FORMAT_MBOX,
972     NOTMUCH_FORMAT_RAW
973 };
974
975 int
976 notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
977 {
978     notmuch_config_t *config;
979     notmuch_database_t *notmuch;
980     notmuch_query_t *query;
981     char *query_string;
982     int opt_index, ret;
983     const notmuch_show_format_t *format = &format_text;
984     notmuch_show_params_t params = { .part = -1 };
985     int format_sel = NOTMUCH_FORMAT_NOT_SPECIFIED;
986     notmuch_bool_t verify = FALSE;
987
988     notmuch_opt_desc_t options[] = {
989         { NOTMUCH_OPT_KEYWORD, &format_sel, "format", 'f',
990           (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
991                                   { "text", NOTMUCH_FORMAT_TEXT },
992                                   { "mbox", NOTMUCH_FORMAT_MBOX },
993                                   { "raw", NOTMUCH_FORMAT_RAW },
994                                   { 0, 0 } } },
995         { NOTMUCH_OPT_INT, &params.part, "part", 'p', 0 },
996         { NOTMUCH_OPT_BOOLEAN, &params.entire_thread, "entire-thread", 't', 0 },
997         { NOTMUCH_OPT_BOOLEAN, &params.decrypt, "decrypt", 'd', 0 },
998         { NOTMUCH_OPT_BOOLEAN, &verify, "verify", 'v', 0 },
999         { 0, 0, 0, 0, 0 }
1000     };
1001
1002     opt_index = parse_arguments (argc, argv, options, 1);
1003     if (opt_index < 0) {
1004         /* diagnostics already printed */
1005         return 1;
1006     }
1007
1008     if (format_sel == NOTMUCH_FORMAT_NOT_SPECIFIED) {
1009         /* if part was requested and format was not specified, use format=raw */
1010         if (params.part >= 0)
1011             format_sel = NOTMUCH_FORMAT_RAW;
1012         else
1013             format_sel = NOTMUCH_FORMAT_TEXT;
1014     }
1015
1016     switch (format_sel) {
1017     case NOTMUCH_FORMAT_JSON:
1018         format = &format_json;
1019         params.entire_thread = TRUE;
1020         break;
1021     case NOTMUCH_FORMAT_TEXT:
1022         format = &format_text;
1023         break;
1024     case NOTMUCH_FORMAT_MBOX:
1025         if (params.part > 0) {
1026             fprintf (stderr, "Error: specifying parts is incompatible with mbox output format.\n");
1027             return 1;
1028         }
1029         format = &format_mbox;
1030         break;
1031     case NOTMUCH_FORMAT_RAW:
1032         format = &format_raw;
1033         /* If --format=raw specified without specifying part, we can only
1034          * output single message, so set part=0 */
1035         if (params.part < 0)
1036             params.part = 0;
1037         params.raw = TRUE;
1038         break;
1039     }
1040
1041     if (params.decrypt || verify) {
1042 #ifdef GMIME_ATLEAST_26
1043         /* TODO: GMimePasswordRequestFunc */
1044         params.cryptoctx = g_mime_gpg_context_new (NULL, "gpg");
1045 #else
1046         GMimeSession* session = g_object_new (g_mime_session_get_type(), NULL);
1047         params.cryptoctx = g_mime_gpg_context_new (session, "gpg");
1048 #endif
1049         if (params.cryptoctx) {
1050             g_mime_gpg_context_set_always_trust ((GMimeGpgContext*) params.cryptoctx, FALSE);
1051         } else {
1052             params.decrypt = FALSE;
1053             fprintf (stderr, "Failed to construct gpg context.\n");
1054         }
1055 #ifndef GMIME_ATLEAST_26
1056         g_object_unref (session);
1057 #endif
1058     }
1059
1060     config = notmuch_config_open (ctx, NULL, NULL);
1061     if (config == NULL)
1062         return 1;
1063
1064     query_string = query_string_from_args (ctx, argc-opt_index, argv+opt_index);
1065     if (query_string == NULL) {
1066         fprintf (stderr, "Out of memory\n");
1067         return 1;
1068     }
1069
1070     if (*query_string == '\0') {
1071         fprintf (stderr, "Error: notmuch show requires at least one search term.\n");
1072         return 1;
1073     }
1074
1075     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
1076                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
1077     if (notmuch == NULL)
1078         return 1;
1079
1080     query = notmuch_query_create (notmuch, query_string);
1081     if (query == NULL) {
1082         fprintf (stderr, "Out of memory\n");
1083         return 1;
1084     }
1085
1086     if (params.part >= 0)
1087         ret = do_show_single (ctx, query, format, &params);
1088     else
1089         ret = do_show (ctx, query, format, &params);
1090
1091     notmuch_query_destroy (query);
1092     notmuch_database_close (notmuch);
1093
1094     if (params.cryptoctx)
1095         g_object_unref(params.cryptoctx);
1096
1097     return ret;
1098 }