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