* fix for NB#67837, NB#63633
[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-stream.h>
38 #include <tny-camel-mime-part.h>
39 #include <camel/camel-stream-buffer.h>
40 #include <camel/camel-stream-mem.h>
41 #include <glib/gprintf.h>
42 #include <modest-tny-folder.h>
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 (TnyMsg *msg, GList *attachments_list);
55 static char * get_content_type(const gchar *s);
56 static gboolean is_ascii(const gchar *s);
57
58
59 TnyMsg*
60 modest_tny_msg_new (const gchar* mailto, const gchar* from, const gchar *cc,
61                     const gchar *bcc, const gchar* subject, const gchar *body,
62                     GList *attachments)
63 {
64         TnyMsg *new_msg;
65         TnyHeader *header;
66         gchar *content_type;
67         
68         /* Create new msg */
69         new_msg = modest_formatter_create_message (NULL, TRUE, (attachments != NULL));
70         header  = tny_msg_get_header (new_msg);
71         
72         if ((from != NULL) && (strlen(from) > 0)) {
73                 tny_header_set_from (TNY_HEADER (header), from);
74                 tny_header_set_replyto (TNY_HEADER (header), from);
75         }
76         if ((mailto != NULL) && (strlen(mailto) > 0)) 
77                 tny_header_set_to (TNY_HEADER (header), mailto);
78         if ((cc != NULL) && (strlen(cc) > 0)) 
79                 tny_header_set_cc (TNY_HEADER (header), cc);
80         if ((bcc != NULL) && (strlen(bcc) > 0)) 
81                 tny_header_set_bcc (TNY_HEADER (header), bcc);
82         
83         if ((subject != NULL) && (strlen(subject) > 0)) 
84                 tny_header_set_subject (TNY_HEADER (header), subject);
85
86         content_type = get_content_type(body);
87                 
88         /* Add the body of the new mail */
89         /* This is needed even if body is NULL or empty. */
90         add_body_part (new_msg, body, content_type);
91         g_free (content_type);
92                        
93         /* Add attachments */
94         if (attachments)
95                 add_attachments (new_msg, attachments);
96
97         return new_msg;
98 }
99
100 TnyMsg*
101 modest_tny_msg_new_html_plain (const gchar* mailto, const gchar* from, const gchar *cc,
102                                const gchar *bcc, const gchar* subject, 
103                                const gchar *html_body, const gchar *plain_body,
104                                GList *attachments)
105 {
106         TnyMsg *new_msg;
107         TnyHeader *header;
108         gchar *content_type;
109         
110         /* Create new msg */
111         new_msg = modest_formatter_create_message (NULL, FALSE, (attachments != NULL));
112         header  = tny_msg_get_header (new_msg);
113         
114         if ((from != NULL) && (strlen(from) > 0)) {
115                 tny_header_set_from (TNY_HEADER (header), from);
116                 tny_header_set_replyto (TNY_HEADER (header), from);
117         }
118         if ((mailto != NULL) && (strlen(mailto) > 0)) 
119                 tny_header_set_to (TNY_HEADER (header), mailto);
120         if ((cc != NULL) && (strlen(cc) > 0)) 
121                 tny_header_set_cc (TNY_HEADER (header), cc);
122         if ((bcc != NULL) && (strlen(bcc) > 0)) 
123                 tny_header_set_bcc (TNY_HEADER (header), bcc);
124         
125         if ((subject != NULL) && (strlen(subject) > 0)) 
126                 tny_header_set_subject (TNY_HEADER (header), subject);
127
128         content_type = get_content_type(plain_body);
129                 
130         /* Add the body of the new mail */      
131         add_body_part (new_msg, plain_body, content_type);
132         add_html_body_part (new_msg, html_body);
133         g_free (content_type);
134                        
135         /* Add attachments */
136         add_attachments (new_msg, attachments);
137
138         return new_msg;
139 }
140
141
142 /* FIXME: this func copy from modest-mail-operation: refactor */
143 static TnyMimePart *
144 add_body_part (TnyMsg *msg, 
145                const gchar *body,
146                const gchar *content_type)
147 {
148         TnyMimePart *text_body_part = NULL;
149         TnyStream *text_body_stream;
150
151         /* Create the stream */
152         text_body_stream = TNY_STREAM (tny_camel_stream_new
153                                        (camel_stream_mem_new_with_buffer
154                                         (body, (body ? strlen(body) : 0))));
155
156         text_body_part = modest_formatter_create_body_part (NULL, msg);
157
158         /* Construct MIME part */
159         tny_stream_reset (text_body_stream);
160         tny_mime_part_construct_from_stream (text_body_part,
161                                              text_body_stream,
162                                              content_type);
163         tny_stream_reset (text_body_stream);
164
165         g_object_unref (G_OBJECT(text_body_part));
166
167         /* Clean */
168         g_object_unref (text_body_stream);
169
170         return text_body_part;
171 }
172
173 static TnyMimePart *
174 add_html_body_part (TnyMsg *msg, 
175                     const gchar *body)
176 {
177         TnyMimePart *html_body_part = NULL;
178         TnyStream *html_body_stream;
179
180         /* Create the stream */
181         html_body_stream = TNY_STREAM (tny_camel_stream_new
182                                        (camel_stream_mem_new_with_buffer
183                                         (body, strlen(body))));
184
185         /* Create body part if needed */
186         html_body_part = modest_formatter_create_body_part (NULL, msg);
187
188         /* Construct MIME part */
189         tny_stream_reset (html_body_stream);
190         tny_mime_part_construct_from_stream (html_body_part,
191                                              html_body_stream,
192                                              "text/html; charset=utf-8");
193         tny_stream_reset (html_body_stream);
194
195         g_object_unref (G_OBJECT(html_body_part));
196
197         /* Clean */
198         g_object_unref (html_body_stream);
199
200         return html_body_part;
201 }
202
203 static TnyMimePart *
204 copy_mime_part (TnyMimePart *part)
205 {
206         TnyMimePart *result = NULL;
207         const gchar *attachment_content_type;
208         const gchar *attachment_filename;
209         const gchar *attachment_cid;
210         TnyList *parts;
211         TnyIterator *iterator;
212         TnyStream *attachment_stream;
213
214         if (TNY_IS_MSG (part)) {
215                 g_object_ref (part);
216                 return part;
217         }
218
219         result = tny_platform_factory_new_mime_part (
220                 modest_runtime_get_platform_factory());
221
222         attachment_content_type = tny_mime_part_get_content_type (part);
223
224         /* get mime part headers */
225         attachment_filename = tny_mime_part_get_filename (part);
226         attachment_cid = tny_mime_part_get_content_id (part);
227         
228         /* fill the stream */
229         attachment_stream = tny_mime_part_get_stream (part);
230         tny_stream_reset (attachment_stream);
231         tny_mime_part_construct_from_stream (result,
232                                              attachment_stream,
233                                              attachment_content_type);
234         tny_stream_reset (attachment_stream);
235         
236         /* set other mime part fields */
237         tny_mime_part_set_filename (result, attachment_filename);
238         tny_mime_part_set_content_id (result, attachment_cid);
239
240         /* copy subparts */
241         parts = tny_simple_list_new ();
242         tny_mime_part_get_parts (part, parts);
243         iterator = tny_list_create_iterator (parts);
244         while (!tny_iterator_is_done (iterator)) {
245                 TnyMimePart *subpart = TNY_MIME_PART (tny_iterator_get_current (iterator));
246                 if (subpart) {
247                         TnyMimePart *subpart_copy = copy_mime_part (subpart);
248                         tny_mime_part_add_part (result, subpart_copy);
249                         g_object_unref (subpart);
250                 }
251
252                 tny_iterator_next (iterator);
253         }
254         g_object_unref (iterator);
255         g_object_unref (parts);
256         g_object_unref (attachment_stream);
257
258         return result;
259 }
260
261 static void
262 add_attachments (TnyMsg *msg, GList *attachments_list)
263 {
264         GList *pos;
265         TnyMimePart *attachment_part, *old_attachment;
266
267         for (pos = (GList *)attachments_list; pos; pos = pos->next) {
268
269                 old_attachment = pos->data;
270                 attachment_part = copy_mime_part (old_attachment);
271                 tny_mime_part_add_part (TNY_MIME_PART (msg), attachment_part);
272                 g_object_unref (attachment_part);
273         }
274 }
275
276
277 gchar * 
278 modest_tny_msg_get_body (TnyMsg *msg, gboolean want_html, gboolean *is_html)
279 {
280         TnyStream *stream;
281         TnyMimePart *body;
282         GtkTextBuffer *buf;
283         GtkTextIter start, end;
284         gchar *to_quote;
285         gboolean result_was_html = TRUE;
286
287         body = modest_tny_msg_find_body_part(msg, want_html);
288         if (!body)
289                 return NULL;
290
291         buf = gtk_text_buffer_new (NULL);
292         stream = TNY_STREAM (tny_gtk_text_buffer_stream_new (buf));
293         tny_stream_reset (stream);
294         tny_mime_part_decode_to_stream (body, stream);
295         tny_stream_reset (stream);
296         
297         gtk_text_buffer_get_bounds (buf, &start, &end);
298         to_quote = gtk_text_buffer_get_text (buf, &start, &end, FALSE);
299         if (tny_mime_part_content_type_is (body, "text/plain")) {
300                 gchar *to_quote_converted = modest_text_utils_convert_to_html (to_quote);
301                 g_free (to_quote);
302                 to_quote = to_quote_converted;
303                 result_was_html = FALSE;
304         }
305
306         g_object_unref (buf);
307         g_object_unref (G_OBJECT(stream));
308         g_object_unref (G_OBJECT(body));
309
310         if (is_html != NULL)
311                 *is_html = result_was_html;
312
313         return to_quote;
314 }
315
316
317 TnyMimePart*
318 modest_tny_msg_find_body_part_from_mime_part (TnyMimePart *msg, gboolean want_html)
319 {
320         const gchar *mime_type = want_html ? "text/html" : "text/plain";
321         TnyMimePart *part = NULL;
322         TnyList *parts = NULL;
323         TnyIterator *iter = NULL;
324
325         if (!msg)
326                 return NULL;
327
328         parts = TNY_LIST (tny_simple_list_new());
329         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
330
331         iter  = tny_list_create_iterator(parts);
332
333         /* no parts? assume it's single-part message */
334         if (tny_iterator_is_done(iter)) {
335                 g_object_unref (G_OBJECT(iter));
336                 return TNY_MIME_PART (g_object_ref(G_OBJECT(msg)));
337         } else {
338                 gchar *content_type = NULL;
339                 do {
340                         part = TNY_MIME_PART(tny_iterator_get_current (iter));
341                         if (part && TNY_IS_MSG (part)) {
342                                 g_object_unref (part);
343                                 tny_iterator_next (iter);
344                                 continue;
345                         }
346
347                         /* we need to strdown the content type, because
348                          * tny_mime_part_has_content_type does not do it...
349                          */
350                         if (part) {
351                                 content_type = g_ascii_strdown
352                                         (tny_mime_part_get_content_type (part), -1);
353                         }
354                                                         
355                         if (g_str_has_prefix (content_type, mime_type) &&
356                             !tny_mime_part_is_attachment (part))
357                                 break;
358                         
359                         if (g_str_has_prefix(content_type, "multipart")) {
360                                 part = modest_tny_msg_find_body_part_from_mime_part (part, want_html);
361                                 if (part)
362                                         break;
363                         }
364
365                         if (part)
366                                 g_object_unref (G_OBJECT(part));
367
368                         part = NULL;
369                         
370                         g_free (content_type);
371                         content_type = NULL;
372
373                         tny_iterator_next (iter);
374                         
375                 } while (!tny_iterator_is_done(iter));
376                 g_free (content_type);
377         }
378         
379         g_object_unref (G_OBJECT(iter));
380         g_object_unref (G_OBJECT(parts));
381
382         /* if were trying to find an HTML part and couldn't find it,
383          * try to find a text/plain part instead
384          */
385         if (!part && want_html) 
386                 return modest_tny_msg_find_body_part_from_mime_part (msg, FALSE);
387         else
388                 return part; /* this maybe NULL, this is not an error; some message just don't have a body
389                               * part */
390 }
391
392
393 TnyMimePart*
394 modest_tny_msg_find_body_part (TnyMsg *msg, gboolean want_html)
395 {
396         return modest_tny_msg_find_body_part_from_mime_part (TNY_MIME_PART(msg),
397                                                              want_html);
398 }
399
400
401 #define MODEST_TNY_MSG_PARENT_UID "parent-uid"
402
403 static TnyMsg *
404 create_reply_forward_mail (TnyMsg *msg, TnyHeader *header, const gchar *from,
405                            const gchar *signature, gboolean is_reply,
406                            guint type /*ignored*/, GList *attachments)
407 {
408         TnyMsg *new_msg;
409         TnyHeader *new_header;
410         gchar *new_subject;
411         TnyMimePart *body = NULL;
412         ModestFormatter *formatter;
413         gchar *subject_prefix;
414         gboolean no_text_part;
415         
416         if (header)
417                 g_object_ref (header);
418         else
419                 header = tny_msg_get_header (msg);
420
421         /* Get body from original msg. Always look for the text/plain
422            part of the message to create the reply/forwarded mail */
423         if (msg != NULL)
424                 body   = modest_tny_msg_find_body_part (msg, FALSE);
425         
426         if (modest_conf_get_bool (modest_runtime_get_conf (), MODEST_CONF_PREFER_FORMATTED_TEXT,
427                                   NULL))
428                 formatter = modest_formatter_new ("text/html", signature);
429         else
430                 formatter = modest_formatter_new ("text/plain", signature);
431
432
433         /* if we don't have a text-part */
434         no_text_part = (strcmp (tny_mime_part_get_content_type (body), "text/html")==0);
435         
436         /* when we're reply, include the text part if we have it, or nothing otherwise. */
437         if (is_reply)
438                 new_msg = modest_formatter_inline  (formatter, no_text_part ? NULL: body, header,
439                                                     attachments);
440         else {
441                 /* for attachements; inline if there is a text part, and include the
442                  * full old mail if there was none */
443                 if (no_text_part) 
444                         new_msg = modest_formatter_attach (formatter, msg, header);
445                 else 
446                         new_msg = modest_formatter_inline  (formatter, body, header,
447                                                             attachments);
448         }
449         
450         g_object_unref (G_OBJECT(formatter));
451         if (body)
452                 g_object_unref (G_OBJECT(body));
453         
454         /* Fill the header */
455         new_header = tny_msg_get_header (new_msg);      
456         tny_header_set_from (new_header, from);
457         tny_header_set_replyto (new_header, from);
458
459         /* Change the subject */
460         if (is_reply)
461                 subject_prefix = g_strconcat (_("mail_va_re"), ":", NULL);
462         else
463                 subject_prefix = g_strconcat (_("mail_va_fw"), ":", NULL);
464         new_subject =
465                 (gchar *) modest_text_utils_derived_subject (tny_header_get_subject(header),
466                                                              subject_prefix);
467         g_free (subject_prefix);
468         tny_header_set_subject (new_header, (const gchar *) new_subject);
469         g_free (new_subject);
470         
471         /* get the parent uid, and set it as a gobject property on the new msg */
472         if (new_msg) {
473                 gchar* parent_uid = modest_tny_folder_get_header_unique_id (header);
474                 g_object_set_data_full (G_OBJECT(new_msg), MODEST_TNY_MSG_PARENT_UID,
475                                         parent_uid, g_free);
476         }
477         
478         /* Clean */
479         g_object_unref (G_OBJECT (new_header));
480         g_object_unref (G_OBJECT (header));
481         /* ugly to unref it here instead of in the calling func */
482
483         return new_msg;
484 }
485
486 const gchar*
487 modest_tny_msg_get_parent_uid (TnyMsg *msg)
488 {
489         g_return_val_if_fail (msg, NULL);
490         return g_object_get_data (G_OBJECT(msg), MODEST_TNY_MSG_PARENT_UID);
491 }
492
493
494
495 static void
496 add_if_attachment (gpointer data, gpointer user_data)
497 {
498         TnyMimePart *part;
499         GList **attachments_list;
500
501         part = TNY_MIME_PART (data);
502         attachments_list = ((GList **) user_data);
503
504         if ((tny_mime_part_is_attachment (part))||(TNY_IS_MSG (part))) {
505                 *attachments_list = g_list_prepend (*attachments_list, part);
506                 g_object_ref (part);
507         }
508 }
509
510 TnyMsg* 
511 modest_tny_msg_create_forward_msg (TnyMsg *msg, 
512                                    const gchar *from,
513                                    const gchar *signature,
514                                    ModestTnyMsgForwardType forward_type)
515 {
516         TnyMsg *new_msg;
517         TnyList *parts = NULL;
518         GList *attachments_list = NULL;
519
520         /* Add attachments */
521         parts = TNY_LIST (tny_simple_list_new());
522         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
523         tny_list_foreach (parts, add_if_attachment, &attachments_list);
524
525         new_msg = create_reply_forward_mail (msg, NULL, from, signature, FALSE, forward_type,
526                                              attachments_list);
527         add_attachments (new_msg, attachments_list);
528
529         /* Clean */
530         if (attachments_list)
531                 g_list_free (attachments_list);
532         g_object_unref (G_OBJECT (parts));
533
534         return new_msg;
535 }
536
537 TnyMsg* 
538 modest_tny_msg_create_reply_msg (TnyMsg *msg,
539                                  TnyHeader *header,
540                                  const gchar *from,
541                                  const gchar *signature,
542                                  ModestTnyMsgReplyType reply_type,
543                                  ModestTnyMsgReplyMode reply_mode)
544 {
545         TnyMsg *new_msg = NULL;
546         TnyHeader *new_header;
547         const gchar* reply_to;
548         gchar *new_cc = NULL;
549         const gchar *cc = NULL, *bcc = NULL;
550         GString *tmp = NULL;
551         TnyList *parts = NULL;
552         GList *attachments_list = NULL;
553
554         /* Add attachments */
555         if (msg != NULL) {
556                 parts = TNY_LIST (tny_simple_list_new());
557                 tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
558                 tny_list_foreach (parts, add_if_attachment, &attachments_list);
559         }
560
561         new_msg = create_reply_forward_mail (msg, header, from, signature, TRUE, reply_type,
562                                              attachments_list);
563         if (attachments_list) {
564                 g_list_foreach (attachments_list, (GFunc) g_object_unref, NULL);
565                 g_list_free (attachments_list);
566         }
567         if (parts)
568                 g_object_unref (G_OBJECT (parts));
569
570         /* Fill the header */
571         if (header)
572                 g_object_ref (header);
573         else
574                 header = tny_msg_get_header (msg);
575         new_header = tny_msg_get_header (new_msg);
576         reply_to = tny_header_get_replyto (header);
577
578         if (reply_to)
579                 tny_header_set_to (new_header, reply_to);
580         else
581                 tny_header_set_to (new_header, tny_header_get_from (header));
582
583         switch (reply_mode) {
584         case MODEST_TNY_MSG_REPLY_MODE_SENDER:
585                 /* Do not fill neither cc nor bcc */
586                 break;
587         case MODEST_TNY_MSG_REPLY_MODE_LIST:
588                 /* TODO */
589                 break;
590         case MODEST_TNY_MSG_REPLY_MODE_ALL:
591                 /* Concatenate to, cc and bcc */
592                 cc = tny_header_get_cc (header);
593                 bcc = tny_header_get_bcc (header);
594
595                 tmp = g_string_new (tny_header_get_to (header));
596                 if (cc)  g_string_append_printf (tmp, ",%s",cc);
597                 if (bcc) g_string_append_printf (tmp, ",%s",bcc);
598
599                /* Remove my own address from the cc list. TODO:
600                   remove also the To: of the new message, needed due
601                   to the new reply_to feature */
602                 new_cc = (gchar *)
603                         modest_text_utils_remove_address ((const gchar *) tmp->str,
604                                                           from);
605                 /* FIXME: remove also the mails from the new To: */
606                 tny_header_set_cc (new_header, new_cc);
607
608                 /* Clean */
609                 g_string_free (tmp, TRUE);
610                 g_free (new_cc);
611                 break;
612         }
613
614         /* Clean */
615         g_object_unref (G_OBJECT (new_header));
616         g_object_unref (G_OBJECT (header));
617
618         return new_msg;
619 }
620
621
622 static gboolean
623 is_ascii(const gchar *s)
624 {
625         if (!s)
626                 return TRUE;
627         while (s[0]) {
628                 if (s[0] & 128 || s[0] < 32)
629                         return FALSE;
630                 s++;
631         }
632         return TRUE;
633 }
634
635 static char *
636 get_content_type(const gchar *s)
637 {
638         GString *type;
639         
640         type = g_string_new("text/plain");
641         if (!is_ascii(s)) {
642                 if (g_utf8_validate(s, -1, NULL)) {
643                         g_string_append(type, "; charset=\"utf-8\"");
644                 } else {
645                         /* it should be impossible to reach this, but better safe than sorry */
646                         g_warning("invalid utf8 in message");
647                         g_string_append(type, "; charset=\"latin1\"");
648                 }
649         }
650         return g_string_free(type, FALSE);
651 }