]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
notmuch reply: Add (incomplete) reply command
[notmuch] / notmuch-reply.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  * Copyright © 2009 Keith Packard
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see http://www.gnu.org/licenses/ .
18  *
19  * Authors: Carl Worth <cworth@cworth.org>
20  *          Keith Packard <keithp@keithp.com>
21  */
22
23 #include "notmuch-client.h"
24 #include "gmime-filter-reply.h"
25
26 static void
27 reply_part(GMimeObject *part, int *part_count)
28 {
29     GMimeContentDisposition *disposition;
30     GMimeContentType *content_type;
31     GMimeDataWrapper *wrapper;
32
33     (void) part_count;
34     disposition = g_mime_object_get_content_disposition (part);
35     if (disposition &&
36         strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
37     {
38         const char *filename = g_mime_part_get_filename (GMIME_PART (part));
39         content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
40
41         printf ("Attachment: %s (%s)\n", filename,
42                 g_mime_content_type_to_string (content_type));
43         return;
44     }
45
46     content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
47
48     if (g_mime_content_type_is_type (content_type, "text", "*") &&
49         !g_mime_content_type_is_type (content_type, "text", "html"))
50     {
51         GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
52         stream_stdout = g_mime_stream_file_new (stdout);
53         if (stream_stdout) {
54             g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
55             stream_filter = g_mime_stream_filter_new(stream_stdout);
56         }
57         g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
58                                  g_mime_filter_reply_new(TRUE));
59         wrapper = g_mime_part_get_content_object (GMIME_PART (part));
60         if (wrapper && stream_filter)
61             g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
62         if (stream_filter)
63             g_object_unref(stream_filter);
64         if (stream_stdout)
65             g_object_unref(stream_stdout);
66     }
67     else
68     {
69         printf ("Non-text part: %s\n",
70                 g_mime_content_type_to_string (content_type));
71     }
72 }
73
74 int
75 notmuch_reply_command (void *ctx, int argc, char *argv[])
76 {
77     void *local = talloc_new (ctx);
78     char *query_string;
79     notmuch_database_t *notmuch = NULL;
80     notmuch_query_t *query = NULL;
81     notmuch_messages_t *messages;
82     notmuch_message_t *message;
83     int ret = 0;
84
85     const char *headers[] = {
86             "Subject", "From", "To", "Cc", "Bcc", "Date",
87             "In-Reply-To", "References"
88     };
89     const char *name, *value;
90     unsigned int i;
91
92     notmuch = notmuch_database_open (NULL);
93     if (notmuch == NULL) {
94         ret = 1;
95         goto DONE;
96     }
97
98     query_string = query_string_from_args (local, argc, argv);
99     if (query_string == NULL) {
100         fprintf (stderr, "Out of memory\n");
101         ret = 1;
102         goto DONE;
103     }
104
105     query = notmuch_query_create (notmuch, query_string);
106     if (query == NULL) {
107         fprintf (stderr, "Out of memory\n");
108         ret = 1;
109         goto DONE;
110     }
111
112     for (messages = notmuch_query_search_messages (query);
113          notmuch_messages_has_more (messages);
114          notmuch_messages_advance (messages))
115     {
116         message = notmuch_messages_get (messages);
117
118         for (i = 0; i < ARRAY_SIZE (headers); i++) {
119             name = headers[i];
120             value = notmuch_message_get_header (message, name);
121             if (value)
122                 printf ("%s: %s\n", name, value);
123         }
124
125         show_message_body (notmuch_message_get_filename (message), reply_part);
126
127         notmuch_message_destroy (message);
128     }
129
130   DONE:
131     if (local)
132         talloc_free (local);
133
134     if (query)
135         notmuch_query_destroy (query);
136
137     if (notmuch)
138         notmuch_database_close (notmuch);
139
140     return ret;
141 }