8680c821530a5c5ccc445c874724889a888083c3
[modest] / src / modest-tny-msg.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <string.h>
31 #include <gtkhtml/gtkhtml.h>
32 #include <tny-gtk-text-buffer-stream.h>
33 #include <tny-simple-list.h>
34 #include <tny-folder.h>
35 #include <modest-runtime.h>
36 #include "modest-formatter.h"
37 #include <tny-camel-mem-stream.h>
38 #include <tny-camel-mime-part.h>
39 #include <glib/gprintf.h>
40 #include <modest-tny-folder.h>
41 #include "modest-tny-mime-part.h"
42
43
44 #ifdef HAVE_CONFIG_H
45 #include <config.h>
46 #endif /*HAVE_CONFIG_H */
47
48 #include <modest-tny-msg.h>
49 #include "modest-text-utils.h"
50
51 static TnyMimePart * add_body_part (TnyMsg *msg, const gchar *body,
52                                     const gchar *content_type);
53 static TnyMimePart * add_html_body_part (TnyMsg *msg, const gchar *body);
54 static void add_attachments (TnyMimePart *part, GList *attachments_list, gboolean add_inline);
55 static void add_images (TnyMsg *msg, GList *attachments_list);
56 static char * get_content_type(const gchar *s);
57 static gboolean is_ascii(const gchar *s);
58
59
60 TnyMsg*
61 modest_tny_msg_new (const gchar* mailto, const gchar* from, const gchar *cc,
62                     const gchar *bcc, const gchar* subject, const gchar *body,
63                     GList *attachments)
64 {
65         TnyMsg *new_msg;
66         TnyHeader *header;
67         gchar *content_type;
68         
69         /* Create new msg */
70         new_msg = modest_formatter_create_message (NULL, TRUE, (attachments != NULL), FALSE);
71         header  = tny_msg_get_header (new_msg);
72         
73         if ((from != NULL) && (strlen(from) > 0)) {
74                 tny_header_set_from (TNY_HEADER (header), from);
75                 tny_header_set_replyto (TNY_HEADER (header), from);
76         }
77         if ((mailto != NULL) && (strlen(mailto) > 0)) 
78                 tny_header_set_to (TNY_HEADER (header), mailto);
79         if ((cc != NULL) && (strlen(cc) > 0)) 
80                 tny_header_set_cc (TNY_HEADER (header), cc);
81         if ((bcc != NULL) && (strlen(bcc) > 0)) 
82                 tny_header_set_bcc (TNY_HEADER (header), bcc);
83         
84         if ((subject != NULL) && (strlen(subject) > 0)) 
85                 tny_header_set_subject (TNY_HEADER (header), subject);
86
87         content_type = get_content_type(body);
88
89         /* set modest as the X-Mailer
90          * we could this in the platform factory, but then the header
91          * would show up before all the others.
92          */
93         tny_mime_part_set_header_pair (TNY_MIME_PART (new_msg), "X-Mailer", "Modest "
94                                        VERSION);
95         
96         /* Add the body of the new mail */
97         /* This is needed even if body is NULL or empty. */
98         add_body_part (new_msg, body, content_type);
99         g_free (content_type);
100                        
101         /* Add attachments */
102         if (attachments)
103                 add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE);
104         if (header)
105                 g_object_unref(header);
106
107         return new_msg;
108 }
109
110 TnyMsg*
111 modest_tny_msg_new_html_plain (const gchar* mailto, const gchar* from, const gchar *cc,
112                                const gchar *bcc, const gchar* subject, 
113                                const gchar *html_body, const gchar *plain_body,
114                                GList *attachments, GList *images)
115 {
116         TnyMsg *new_msg;
117         TnyHeader *header;
118         gchar *content_type;
119         
120         /* Create new msg */
121         new_msg = modest_formatter_create_message (NULL, FALSE, (attachments != NULL), (images != NULL));
122         header  = tny_msg_get_header (new_msg);
123         
124         if ((from != NULL) && (strlen(from) > 0)) {
125                 tny_header_set_from (TNY_HEADER (header), from);
126                 tny_header_set_replyto (TNY_HEADER (header), from);
127         }
128         if ((mailto != NULL) && (strlen(mailto) > 0)) 
129                 tny_header_set_to (TNY_HEADER (header), mailto);
130         if ((cc != NULL) && (strlen(cc) > 0)) 
131                 tny_header_set_cc (TNY_HEADER (header), cc);
132         if ((bcc != NULL) && (strlen(bcc) > 0)) 
133                 tny_header_set_bcc (TNY_HEADER (header), bcc);
134         
135         if ((subject != NULL) && (strlen(subject) > 0)) 
136                 tny_header_set_subject (TNY_HEADER (header), subject);
137
138         content_type = get_content_type(plain_body);
139         
140         /* set modest as the X-Mailer
141          * we could this in the platform factory, but then the header
142          * would show up before all the others.
143          */
144         tny_mime_part_set_header_pair (TNY_MIME_PART (new_msg), "X-Mailer", "Modest "
145                                        VERSION);
146
147         /* Add the body of the new mail */      
148         add_body_part (new_msg, plain_body, content_type);
149         add_html_body_part (new_msg, html_body);
150         g_free (content_type);
151                        
152         /* Add attachments */
153         add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE);
154         add_images (new_msg, images);
155         if (header)
156                 g_object_unref(header);
157
158         return new_msg;
159 }
160
161
162 /* FIXME: this func copy from modest-mail-operation: refactor */
163 static TnyMimePart *
164 add_body_part (TnyMsg *msg, 
165                const gchar *body,
166                const gchar *content_type)
167 {
168         TnyMimePart *text_body_part = NULL;
169         TnyStream *text_body_stream;
170
171         /* Create the stream */
172         text_body_stream = TNY_STREAM (tny_camel_mem_stream_new_with_buffer
173                                         (body, (body ? strlen(body) : 0)));
174
175         text_body_part = modest_formatter_create_body_part (NULL, msg);
176
177         /* Construct MIME part */
178         tny_stream_reset (text_body_stream);
179         tny_mime_part_construct (text_body_part,
180                                  text_body_stream,
181                                  content_type, "7bit");
182         tny_stream_reset (text_body_stream);
183
184         g_object_unref (G_OBJECT(text_body_part));
185
186         /* Clean */
187         g_object_unref (text_body_stream);
188
189         return text_body_part;
190 }
191
192 static TnyMimePart *
193 add_html_body_part (TnyMsg *msg, 
194                     const gchar *body)
195 {
196         TnyMimePart *html_body_part = NULL;
197         TnyStream *html_body_stream;
198
199         /* Create the stream */
200         html_body_stream = TNY_STREAM (tny_camel_mem_stream_new_with_buffer
201                                         (body, strlen(body)));
202
203         /* Create body part if needed */
204         html_body_part = modest_formatter_create_body_part (NULL, msg);
205
206         /* Construct MIME part */
207         tny_stream_reset (html_body_stream);
208         tny_mime_part_construct (html_body_part,
209                                  html_body_stream,
210                                  "text/html; charset=utf-8", 
211                                  "7bit"); /* Sometimes it might be needed 
212                                              to make this one a 8bit! */
213         tny_stream_reset (html_body_stream);
214
215         g_object_unref (G_OBJECT(html_body_part));
216
217         /* Clean */
218         g_object_unref (html_body_stream);
219
220         return html_body_part;
221 }
222
223 static TnyMimePart *
224 copy_mime_part (TnyMimePart *part)
225 {
226         TnyMimePart *result = NULL;
227         const gchar *attachment_content_type;
228         const gchar *attachment_filename;
229         const gchar *attachment_cid;
230         TnyList *parts;
231         TnyIterator *iterator;
232         TnyStream *attachment_stream;
233         const gchar *enc;
234         
235         if (TNY_IS_MSG (part)) {
236                 g_object_ref (part);
237                 return part;
238         }
239
240         result = tny_platform_factory_new_mime_part (
241                 modest_runtime_get_platform_factory());
242
243         attachment_content_type = tny_mime_part_get_content_type (part);
244
245         /* get mime part headers */
246         attachment_filename = tny_mime_part_get_filename (part);
247         attachment_cid = tny_mime_part_get_content_id (part);
248         
249         /* fill the stream */
250         attachment_stream = tny_mime_part_get_decoded_stream (part);
251         enc = tny_mime_part_get_transfer_encoding (part);
252         tny_stream_reset (attachment_stream);
253         tny_mime_part_construct (result,
254                                  attachment_stream,
255                                  attachment_content_type, 
256                                  enc);
257         tny_stream_reset (attachment_stream);
258         
259         /* set other mime part fields */
260         tny_mime_part_set_filename (result, attachment_filename);
261         tny_mime_part_set_content_id (result, attachment_cid);
262
263         /* copy subparts */
264         parts = tny_simple_list_new ();
265         tny_mime_part_get_parts (part, parts);
266         iterator = tny_list_create_iterator (parts);
267         while (!tny_iterator_is_done (iterator)) {
268                 TnyMimePart *subpart = TNY_MIME_PART (tny_iterator_get_current (iterator));
269                 if (subpart) {
270                         const gchar *subpart_cid;
271                         TnyMimePart *subpart_copy = copy_mime_part (subpart);
272                         subpart_cid = tny_mime_part_get_content_id (subpart);
273                         tny_mime_part_add_part (result, subpart_copy);
274                         if (subpart_cid)
275                                 tny_mime_part_set_content_id (result, subpart_cid);
276                         g_object_unref (subpart);
277                         g_object_unref (subpart_copy);
278                 }
279
280                 tny_iterator_next (iterator);
281         }
282         g_object_unref (iterator);
283         g_object_unref (parts);
284         g_object_unref (attachment_stream);
285
286         return result;
287 }
288
289 static void
290 add_attachments (TnyMimePart *part, GList *attachments_list, gboolean add_inline)
291 {
292         GList *pos;
293         TnyMimePart *attachment_part, *old_attachment;
294
295         for (pos = (GList *)attachments_list; pos; pos = pos->next) {
296
297                 old_attachment = pos->data;
298                 if (!tny_mime_part_is_purged (old_attachment)) {
299                         const gchar *old_cid;
300                         old_cid = tny_mime_part_get_content_id (old_attachment);
301                         attachment_part = copy_mime_part (old_attachment);
302                         tny_mime_part_set_header_pair (attachment_part, "Content-Disposition", 
303                                                        add_inline?"inline":"attachment");
304                         tny_mime_part_set_transfer_encoding (TNY_MIME_PART (attachment_part), "base64");
305                         tny_mime_part_add_part (TNY_MIME_PART (part), attachment_part);
306                         if (old_cid)
307                                 tny_mime_part_set_content_id (attachment_part, old_cid);
308                         g_object_unref (attachment_part);
309                 }
310         }
311 }
312
313 static void
314 add_images (TnyMsg *msg, GList *images_list)
315 {
316         TnyMimePart *related_part = NULL;
317         const gchar *content_type;
318
319         content_type = tny_mime_part_get_content_type (TNY_MIME_PART (msg));
320
321         if ((content_type != NULL) && !strcasecmp (content_type, "multipart/related")) {
322                 related_part = g_object_ref (msg);
323         } else if ((content_type != NULL) && !strcasecmp (content_type, "multipart/mixed")) {
324                 TnyList *parts = TNY_LIST (tny_simple_list_new ());
325                 TnyIterator *iter = NULL;
326                 tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
327                 iter = tny_list_create_iterator (parts);
328
329                 while (!tny_iterator_is_done (iter)) {
330                         TnyMimePart *part = TNY_MIME_PART (tny_iterator_get_current (iter));
331                         if (part && !g_strcasecmp (tny_mime_part_get_content_type (part), "multipart/related")) {
332                                 related_part = part;
333                                 break;
334                         } else {
335                                 g_object_unref (part);
336                         }
337                         tny_iterator_next (iter);
338                 }
339                 g_object_unref (iter);
340                 g_object_unref (parts);
341         }
342
343         if (related_part != NULL) {
344                 /* TODO: attach images in their proper place */
345                 add_attachments (related_part, images_list, TRUE);
346                 g_object_unref (related_part);
347         }
348 }
349
350
351 gchar * 
352 modest_tny_msg_get_body (TnyMsg *msg, gboolean want_html, gboolean *is_html)
353 {
354         TnyStream *stream;
355         TnyMimePart *body;
356         GtkTextBuffer *buf;
357         GtkTextIter start, end;
358         gchar *to_quote;
359         gboolean result_was_html = TRUE;
360
361         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
362         
363         body = modest_tny_msg_find_body_part(msg, want_html);
364         if (!body)
365                 return NULL;
366
367         buf = gtk_text_buffer_new (NULL);
368         stream = TNY_STREAM (tny_gtk_text_buffer_stream_new (buf));
369         tny_stream_reset (stream);
370         tny_mime_part_decode_to_stream (body, stream, NULL);
371         tny_stream_reset (stream);
372         
373         gtk_text_buffer_get_bounds (buf, &start, &end);
374         to_quote = gtk_text_buffer_get_text (buf, &start, &end, FALSE);
375         if (tny_mime_part_content_type_is (body, "text/plain")) {
376                 gchar *to_quote_converted = modest_text_utils_convert_to_html (to_quote);
377                 g_free (to_quote);
378                 to_quote = to_quote_converted;
379                 result_was_html = FALSE;
380         }
381
382         g_object_unref (buf);
383         g_object_unref (G_OBJECT(stream));
384         g_object_unref (G_OBJECT(body));
385
386         if (is_html != NULL)
387                 *is_html = result_was_html;
388
389         return to_quote;
390 }
391
392
393 TnyMimePart*
394 modest_tny_msg_find_body_part_from_mime_part (TnyMimePart *msg, gboolean want_html)
395 {
396         const gchar *desired_mime_type = want_html ? "text/html" : "text/plain";
397         TnyMimePart *part = NULL;
398         TnyList *parts = NULL;
399         TnyIterator *iter = NULL;
400         gchar *header_content_type;
401         gchar *header_content_type_lower = NULL;
402         
403         if (!msg)
404                 return NULL;
405
406         /* If it's an application multipart, then we don't get into as we don't
407          * support them (for example application/sml or wap messages */
408         header_content_type = modest_tny_mime_part_get_header_value (msg, "Content-Type");
409         if (header_content_type) {
410                 header_content_type = g_strstrip (header_content_type);
411                 header_content_type_lower = g_ascii_strdown (header_content_type, -1);
412         }
413         if (header_content_type_lower && 
414             g_str_has_prefix (header_content_type_lower, "multipart/") &&
415             !g_str_has_prefix (header_content_type_lower, "multipart/signed") &&
416             strstr (header_content_type_lower, "application/")) {
417                 g_free (header_content_type_lower);
418                 g_free (header_content_type);
419                 return NULL;
420         }
421         g_free (header_content_type_lower);
422         g_free (header_content_type);
423
424         parts = TNY_LIST (tny_simple_list_new());
425         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
426
427         iter  = tny_list_create_iterator(parts);
428
429         /* no parts? assume it's single-part message */
430         if (tny_iterator_is_done(iter)) {
431                 const gchar *content_type;
432                 g_object_unref (G_OBJECT(iter));
433                 content_type = tny_mime_part_get_content_type (msg);
434                 /* if this part cannot be a supported body return NULL */
435                 if (!g_str_has_prefix (content_type, "text/")) {
436                         return NULL;
437                 } else {
438                         return TNY_MIME_PART (g_object_ref(G_OBJECT(msg)));
439                 }
440         } else {
441                 do {
442                         gchar *tmp, *content_type = NULL;
443                         gboolean has_content_disp_name = FALSE;
444
445                         part = TNY_MIME_PART(tny_iterator_get_current (iter));
446
447                         if (!part) {
448                                 g_warning ("%s: not a valid mime part", __FUNCTION__);
449                                 continue;
450                         }
451
452                         /* it's a message --> ignore */
453                         if (part && TNY_IS_MSG (part)) {
454                                 g_object_unref (part);
455                                 tny_iterator_next (iter);
456                                 continue;
457                         }                       
458
459                         /* we need to strdown the content type, because
460                          * tny_mime_part_has_content_type does not do it...
461                          */
462                         content_type = g_ascii_strdown (tny_mime_part_get_content_type (part), -1);
463                         
464                         /* mime-parts with a content-disposition header (either 'inline' or 'attachment')
465                          * and a 'name=' thingy cannot be body parts
466                          */
467                                 
468                         tmp = modest_tny_mime_part_get_header_value (part, "Content-Disposition");
469                         if (tmp) {
470                                 gchar *content_disp = g_ascii_strdown(tmp, -1);
471                                 g_free (tmp);
472                                 has_content_disp_name = g_strstr_len (content_disp, strlen(content_disp), "name=") != NULL;
473                                 g_free (content_disp);
474                         }
475                         
476                         if (g_str_has_prefix (content_type, desired_mime_type) && !has_content_disp_name) {
477                                 /* we found the desired mime-type! */
478                                 g_free (content_type);
479                                 break;
480
481                         } else  if (g_str_has_prefix(content_type, "multipart")) {
482
483                                 /* multipart? recurse! */
484                                 g_object_unref (part);
485                                 g_free (content_type);
486                                 part = modest_tny_msg_find_body_part_from_mime_part (part, want_html);
487                                 if (part)
488                                         break;
489                         } else
490                                 g_free (content_type);
491                         
492                         if (part) {
493                                 g_object_unref (G_OBJECT(part));
494                                 part = NULL;
495                         }
496                         
497                         tny_iterator_next (iter);
498                         
499                 } while (!tny_iterator_is_done(iter));
500         }
501         
502         g_object_unref (G_OBJECT(iter));
503         g_object_unref (G_OBJECT(parts));
504
505         /* if were trying to find an HTML part and couldn't find it,
506          * try to find a text/plain part instead
507          */
508         if (!part && want_html) 
509                 return modest_tny_msg_find_body_part_from_mime_part (msg, FALSE);
510         else
511                 return part; /* this maybe NULL, this is not an error; some message just don't have a body
512                               * part */
513 }
514
515
516 TnyMimePart*
517 modest_tny_msg_find_body_part (TnyMsg *msg, gboolean want_html)
518 {
519         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
520         
521         return modest_tny_msg_find_body_part_from_mime_part (TNY_MIME_PART(msg),
522                                                              want_html);
523 }
524
525
526 #define MODEST_TNY_MSG_PARENT_UID "parent-uid"
527
528 static TnyMsg *
529 create_reply_forward_mail (TnyMsg *msg, TnyHeader *header, const gchar *from,
530                            const gchar *signature, gboolean is_reply,
531                            guint type /*ignored*/, GList *attachments)
532 {
533         TnyMsg *new_msg;
534         TnyHeader *new_header;
535         gchar *new_subject;
536         TnyMimePart *body = NULL;
537         ModestFormatter *formatter;
538         gchar *subject_prefix;
539         gboolean no_text_part;
540         
541         if (header)
542                 g_object_ref (header);
543         else
544                 header = tny_msg_get_header (msg);
545
546         /* Get body from original msg. Always look for the text/plain
547            part of the message to create the reply/forwarded mail */
548         if (msg != NULL)
549                 body   = modest_tny_msg_find_body_part (msg, FALSE);
550         
551         if (modest_conf_get_bool (modest_runtime_get_conf (), MODEST_CONF_PREFER_FORMATTED_TEXT,
552                                   NULL))
553                 formatter = modest_formatter_new ("text/html", signature);
554         else
555                 formatter = modest_formatter_new ("text/plain", signature);
556         
557
558         /* if we don't have a text-part */
559         no_text_part = (!body) || (strcmp (tny_mime_part_get_content_type (body), "text/html")==0);
560         
561         /* when we're reply, include the text part if we have it, or nothing otherwise. */
562         if (is_reply)
563                 new_msg = modest_formatter_quote  (formatter, no_text_part ? NULL: body, header,
564                                                     attachments);
565         else {
566                 /* for attachements; inline if there is a text part, and include the
567                  * full old mail if there was none */
568                 if (no_text_part) {
569                         new_msg = modest_formatter_attach (formatter, msg, header);
570                 } else { 
571                         new_msg = modest_formatter_inline  (formatter, body, header,
572                                                             attachments);
573                 }
574         }
575         
576         g_object_unref (G_OBJECT(formatter));
577         if (body)
578                 g_object_unref (G_OBJECT(body));
579         
580         /* Fill the header */
581         new_header = tny_msg_get_header (new_msg);      
582         tny_header_set_from (new_header, from);
583         tny_header_set_replyto (new_header, from);
584
585         /* Change the subject */
586         if (is_reply)
587                 subject_prefix = g_strconcat (_("mail_va_re"), ":", NULL);
588         else
589                 subject_prefix = g_strconcat (_("mail_va_fw"), ":", NULL);
590         new_subject =
591                 (gchar *) modest_text_utils_derived_subject (tny_header_get_subject(header),
592                                                              subject_prefix);
593         g_free (subject_prefix);
594         tny_header_set_subject (new_header, (const gchar *) new_subject);
595         g_free (new_subject);
596         
597         /* get the parent uid, and set it as a gobject property on the new msg */
598         if (new_msg) {
599                 gchar* parent_uid = modest_tny_folder_get_header_unique_id (header);
600                 g_object_set_data_full (G_OBJECT(new_msg), MODEST_TNY_MSG_PARENT_UID,
601                                         parent_uid, g_free);
602         }
603
604         /* set modest as the X-Mailer
605          * we could this in the platform factory, but then the header
606          * would show up before all the others.
607          */
608         tny_mime_part_set_header_pair (TNY_MIME_PART (msg), "X-Mailer", "Modest "
609                                        VERSION);
610
611         /* Clean */
612         g_object_unref (G_OBJECT (new_header));
613         g_object_unref (G_OBJECT (header));
614         /* ugly to unref it here instead of in the calling func */
615
616         if (!is_reply & !no_text_part) {
617                 add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE);
618         }
619
620         return new_msg;
621 }
622
623 const gchar*
624 modest_tny_msg_get_parent_uid (TnyMsg *msg)
625 {
626         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
627         
628         return g_object_get_data (G_OBJECT(msg), MODEST_TNY_MSG_PARENT_UID);
629 }
630
631
632
633 static void
634 add_if_attachment (gpointer data, gpointer user_data)
635 {
636         TnyMimePart *part;
637         GList **attachments_list;
638
639         part = TNY_MIME_PART (data);
640         attachments_list = ((GList **) user_data);
641
642         if ((tny_mime_part_is_attachment (part))||(TNY_IS_MSG (part))) {
643                 *attachments_list = g_list_prepend (*attachments_list, part);
644                 g_object_ref (part);
645         }
646 }
647
648 TnyMsg* 
649 modest_tny_msg_create_forward_msg (TnyMsg *msg, 
650                                    const gchar *from,
651                                    const gchar *signature,
652                                    ModestTnyMsgForwardType forward_type)
653 {
654         TnyMsg *new_msg;
655         TnyList *parts = NULL;
656         GList *attachments_list = NULL;
657
658         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
659         
660         /* Add attachments */
661         parts = TNY_LIST (tny_simple_list_new());
662         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
663         tny_list_foreach (parts, add_if_attachment, &attachments_list);
664
665         new_msg = create_reply_forward_mail (msg, NULL, from, signature, FALSE, forward_type,
666                                              attachments_list);
667
668         /* Clean */
669         if (attachments_list) {
670                 g_list_foreach (attachments_list, (GFunc) g_object_unref, NULL);
671                 g_list_free (attachments_list);
672         }
673         g_object_unref (G_OBJECT (parts));
674
675         return new_msg;
676 }
677
678
679
680 static gint
681 count_addresses (const gchar* addresses)
682 {
683         gint count = 1;
684
685         if (!addresses)
686                 return 0;
687         
688         while (*addresses) {
689                 if (*addresses == ',' || *addresses == ';')
690                         ++count;
691                 ++addresses;
692         }
693         
694         return count;
695 }
696
697
698 /* get the new To:, based on the old header,
699  * result is newly allocated or NULL in case of error
700  * */
701 static gchar*
702 get_new_to (TnyMsg *msg, TnyHeader *header, const gchar* from,
703             ModestTnyMsgReplyMode reply_mode)
704 {
705         const gchar* old_reply_to;
706         const gchar* old_from;
707         gchar* new_to;
708         
709         /* according to RFC2369 (http://www.faqs.org/rfcs/rfc2369.html), we
710          * can identify Mailing-List posts by the List-Help header.
711          * for mailing lists, both the Reply-To: and From: should be included
712          * in the new To:; for now, we're ignoring List-Post
713          */
714         gchar* list_help = modest_tny_mime_part_get_header_value (TNY_MIME_PART(msg), 
715                                                                   "List-Help");
716         gboolean is_mailing_list = (list_help != NULL);
717         g_free (list_help);
718
719
720         /* reply to sender, use ReplyTo or From */
721         //old_reply_to = tny_header_get_replyto (header);
722         old_reply_to = modest_tny_mime_part_get_header_value (TNY_MIME_PART(msg), 
723                                                               "Reply-To"); 
724         old_from     = tny_header_get_from (header);
725         
726         if (!old_from &&  !old_reply_to) {
727                 g_warning ("%s: failed to get either Reply-To: or From: from header",
728                            __FUNCTION__);
729                 return NULL;
730         }
731         
732         /* for mailing lists, use both Reply-To and From if we did a
733          * 'Reply All:'
734          * */
735         if (is_mailing_list && reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL &&
736             old_reply_to && old_from && strcmp (old_from, old_reply_to) != 0)
737                 new_to = g_strjoin (",", old_reply_to, old_from, NULL);
738         else
739                 /* otherwise use either Reply-To: (preferred) or From: */
740                 new_to = g_strdup (old_reply_to ? old_reply_to : old_from);
741
742         /* in case of ReplyAll, we need to add the Recipients in the old To: */
743         if (reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL) {
744                 const gchar *old_to = tny_header_get_to (header);
745                 if (!old_to) 
746                         g_warning ("%s: no To: address found in source mail",
747                                    __FUNCTION__);
748                 else {
749                         /* append the old To: */
750                         gchar *tmp = g_strjoin (",", new_to, old_to, NULL);
751                         g_free (new_to);
752                         new_to = tmp;
753                 }
754
755                 /* remove duplicate entries */
756                 gchar *tmp = modest_text_utils_remove_duplicate_addresses (new_to);
757                 g_free (new_to);
758                 new_to = tmp;
759                 
760                 /* now, strip me (the new From:) from the new_to, but only if
761                  * there are >1 addresses there */
762                 if (count_addresses (new_to) > 1) {
763                         gchar *tmp = modest_text_utils_remove_address (new_to, from);
764                         g_free (new_to);
765                         new_to = tmp;
766                 }
767         }
768
769         return new_to;
770 }
771
772
773 /* get the new Cc:, based on the old header,
774  * result is newly allocated or NULL in case of error */
775 static gchar*
776 get_new_cc (TnyHeader *header, const gchar* from)
777 {
778         const gchar *old_cc;
779
780         old_cc = tny_header_get_cc (header);
781         if (!old_cc)
782                 return NULL;
783
784         /* remove me (the new From:) from the Cc: list */
785         return modest_text_utils_remove_address (old_cc, from);
786 }
787
788
789 TnyMsg* 
790 modest_tny_msg_create_reply_msg (TnyMsg *msg,
791                                  TnyHeader *header,
792                                  const gchar *from,
793                                  const gchar *signature,
794                                  ModestTnyMsgReplyType reply_type,
795                                  ModestTnyMsgReplyMode reply_mode)
796 {
797         TnyMsg *new_msg = NULL;
798         TnyHeader *new_header;
799         gchar *new_to = NULL;
800         TnyList *parts = NULL;
801         GList *attachments_list = NULL;
802
803         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
804         
805         parts = TNY_LIST (tny_simple_list_new());
806         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
807         tny_list_foreach (parts, add_if_attachment, &attachments_list);
808
809         new_msg = create_reply_forward_mail (msg, header, from, signature, TRUE, reply_type,
810                                              attachments_list);
811         if (attachments_list != NULL) {
812                 g_list_foreach (attachments_list, (GFunc) g_object_unref, NULL);
813                 g_list_free (attachments_list);
814         }
815         if (parts)
816                 g_object_unref (G_OBJECT (parts));
817
818         /* Fill the header */
819         if (header)
820                 g_object_ref (header);
821         else
822                 header = tny_msg_get_header (msg);
823
824         
825         new_header = tny_msg_get_header(new_msg);
826         new_to = get_new_to (msg, header, from, reply_mode);
827         if (!new_to)
828                 g_warning ("%s: failed to get new To:", __FUNCTION__);
829         else {
830                 tny_header_set_to (new_header, new_to);
831                 g_free (new_to);
832         }       
833         
834         if (reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL) {
835                 gchar *new_cc = get_new_cc (header, from);
836                 if (new_cc) { 
837                         tny_header_set_cc (new_header, new_cc);
838                         g_free (new_cc);
839                 }
840         }
841         
842         /* Clean */
843         g_object_unref (G_OBJECT (new_header));
844         g_object_unref (G_OBJECT (header));
845
846         return new_msg;
847 }
848
849
850 static gboolean
851 is_ascii(const gchar *s)
852 {
853         if (!s)
854                 return TRUE;
855         while (s[0]) {
856                 if (s[0] & 128 || s[0] < 32)
857                         return FALSE;
858                 s++;
859         }
860         return TRUE;
861 }
862
863 static char *
864 get_content_type(const gchar *s)
865 {
866         GString *type;
867         
868         type = g_string_new("text/plain");
869         if (!is_ascii(s)) {
870                 if (g_utf8_validate(s, -1, NULL)) {
871                         g_string_append(type, "; charset=\"utf-8\"");
872                 } else {
873                         /* it should be impossible to reach this, but better safe than sorry */
874                         g_warning("invalid utf8 in message");
875                         g_string_append(type, "; charset=\"latin1\"");
876                 }
877         }
878         return g_string_free(type, FALSE);
879 }
880
881 guint64
882 modest_tny_msg_estimate_size (const gchar *plain_body, const gchar *html_body,
883                               guint64 parts_count,
884                               guint64 parts_size)
885 {
886         guint64 result;
887
888         /* estimation of headers size */
889         result = 1024;
890
891         /* We add a 20% of size due to the increase in 7bit encoding */
892         if (plain_body) {
893                 result += strlen (plain_body) * 120 / 100;
894         }
895         if (html_body) {
896                 result += strlen (html_body) * 120 / 100;
897         }
898
899         /* 256 bytes per additional part because of their headers */
900         result += parts_count * 256;
901
902         /* 150% of increase per encoding */
903         result += parts_size * 3 / 2;
904
905         return result;
906 }