2012d79b70b69c9f12bcdfdf1d1c3057e5bdcaf7
[modest] / src / modest-mail-operation.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 "modest-mail-operation.h"
31 /* include other impl specific header files */
32 #include <string.h>
33 #include <stdarg.h>
34 #include <tny-mime-part.h>
35 #include <tny-store-account.h>
36 #include <tny-folder-store.h>
37 #include <tny-folder-store-query.h>
38 #include <tny-camel-stream.h>
39 #include <tny-simple-list.h>
40 #include <camel/camel-stream-mem.h>
41 #include <glib/gi18n.h>
42 #include <modest-tny-account.h>
43 #include "modest-text-utils.h"
44 #include "modest-tny-msg.h"
45 #include "modest-tny-platform-factory.h"
46 #include "modest-marshal.h"
47 #include "modest-formatter.h"
48 #include "modest-error.h"
49
50 /* 'private'/'protected' functions */
51 static void modest_mail_operation_class_init (ModestMailOperationClass *klass);
52 static void modest_mail_operation_init       (ModestMailOperation *obj);
53 static void modest_mail_operation_finalize   (GObject *obj);
54
55 static void     status_update_cb     (TnyFolder *folder, 
56                                       const gchar *what, 
57                                       gint status, 
58                                       gint oftotal,
59                                       gpointer user_data);
60 static void     folder_refresh_cb    (TnyFolder *folder, 
61                                       gboolean canceled,
62                                       GError **err,
63                                       gpointer user_data);
64 static void     update_folders_cb    (TnyFolderStore *self, 
65                                       TnyList *list, 
66                                       GError **err, 
67                                       gpointer user_data);
68 static void     add_attachments      (TnyMsg *msg, 
69                                       GList *attachments_list);
70
71
72 static TnyMimePart *         add_body_part    (TnyMsg *msg, 
73                                                const gchar *body,
74                                                const gchar *content_type, 
75                                                gboolean has_attachments);
76
77
78 static void        modest_mail_operation_xfer_folder       (ModestMailOperation *self,
79                                                             TnyFolder *folder,
80                                                             TnyFolderStore *parent,
81                                                             gboolean delete_original);
82
83 static gboolean    modest_mail_operation_xfer_msg          (ModestMailOperation *self,
84                                                             TnyHeader *header, 
85                                                             TnyFolder *folder, 
86                                                             gboolean delete_original);
87
88 enum _ModestMailOperationSignals 
89 {
90         PROGRESS_CHANGED_SIGNAL,
91
92         NUM_SIGNALS
93 };
94
95 typedef struct _ModestMailOperationPrivate ModestMailOperationPrivate;
96 struct _ModestMailOperationPrivate {
97         guint                      done;
98         guint                      total;
99         ModestMailOperationStatus  status;
100         GError                    *error;
101 };
102 #define MODEST_MAIL_OPERATION_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
103                                                    MODEST_TYPE_MAIL_OPERATION, \
104                                                    ModestMailOperationPrivate))
105
106 typedef struct _RefreshFolderAsyncHelper
107 {
108         ModestMailOperation *mail_op;
109         TnyIterator *iter;
110         guint failed;
111         guint canceled;
112
113 } RefreshFolderAsyncHelper;
114
115 /* some utility functions */
116 static char * get_content_type(const gchar *s);
117 static gboolean is_ascii(const gchar *s);
118
119 /* globals */
120 static GObjectClass *parent_class = NULL;
121
122 static guint signals[NUM_SIGNALS] = {0};
123
124 GType
125 modest_mail_operation_get_type (void)
126 {
127         static GType my_type = 0;
128         if (!my_type) {
129                 static const GTypeInfo my_info = {
130                         sizeof(ModestMailOperationClass),
131                         NULL,           /* base init */
132                         NULL,           /* base finalize */
133                         (GClassInitFunc) modest_mail_operation_class_init,
134                         NULL,           /* class finalize */
135                         NULL,           /* class data */
136                         sizeof(ModestMailOperation),
137                         1,              /* n_preallocs */
138                         (GInstanceInitFunc) modest_mail_operation_init,
139                         NULL
140                 };
141                 my_type = g_type_register_static (G_TYPE_OBJECT,
142                                                   "ModestMailOperation",
143                                                   &my_info, 0);
144         }
145         return my_type;
146 }
147
148 static void
149 modest_mail_operation_class_init (ModestMailOperationClass *klass)
150 {
151         GObjectClass *gobject_class;
152         gobject_class = (GObjectClass*) klass;
153
154         parent_class            = g_type_class_peek_parent (klass);
155         gobject_class->finalize = modest_mail_operation_finalize;
156
157         g_type_class_add_private (gobject_class, sizeof(ModestMailOperationPrivate));
158
159         /**
160          * ModestMailOperation::progress-changed
161          * @self: the #MailOperation that emits the signal
162          * @user_data: user data set when the signal handler was connected
163          *
164          * Emitted when the progress of a mail operation changes
165          */
166         signals[PROGRESS_CHANGED_SIGNAL] = 
167                 g_signal_new ("progress_changed",
168                               G_TYPE_FROM_CLASS (gobject_class),
169                               G_SIGNAL_RUN_FIRST,
170                               G_STRUCT_OFFSET (ModestMailOperationClass, progress_changed),
171                               NULL, NULL,
172                               g_cclosure_marshal_VOID__VOID,
173                               G_TYPE_NONE, 0);
174 }
175
176 static void
177 modest_mail_operation_init (ModestMailOperation *obj)
178 {
179         ModestMailOperationPrivate *priv;
180
181         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(obj);
182
183         priv->status   = MODEST_MAIL_OPERATION_STATUS_INVALID;
184         priv->error    = NULL;
185         priv->done     = 0;
186         priv->total    = 0;
187 }
188
189 static void
190 modest_mail_operation_finalize (GObject *obj)
191 {
192         ModestMailOperationPrivate *priv;
193
194         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(obj);
195
196         if (priv->error) {
197                 g_error_free (priv->error);
198                 priv->error = NULL;
199         }
200
201         G_OBJECT_CLASS(parent_class)->finalize (obj);
202 }
203
204 ModestMailOperation*
205 modest_mail_operation_new (void)
206 {
207         return MODEST_MAIL_OPERATION(g_object_new(MODEST_TYPE_MAIL_OPERATION, NULL));
208 }
209
210
211 void
212 modest_mail_operation_send_mail (ModestMailOperation *self,
213                                  TnyTransportAccount *transport_account,
214                                  TnyMsg* msg)
215 {
216         g_return_if_fail (MODEST_IS_MAIL_OPERATION (self));
217         g_return_if_fail (TNY_IS_TRANSPORT_ACCOUNT (transport_account));
218
219         tny_transport_account_send (transport_account, msg, NULL); /* FIXME */
220 }
221
222 void
223 modest_mail_operation_send_new_mail (ModestMailOperation *self,
224                                      TnyTransportAccount *transport_account,
225                                      const gchar *from,
226                                      const gchar *to,
227                                      const gchar *cc,
228                                      const gchar *bcc,
229                                      const gchar *subject,
230                                      const gchar *body,
231                                      const GList *attachments_list)
232 {
233         TnyPlatformFactory *fact;
234         TnyMsg *new_msg;
235         TnyHeader *header;
236         gchar *content_type;
237         ModestMailOperationPrivate *priv = NULL;
238
239         g_return_if_fail (MODEST_IS_MAIL_OPERATION (self));
240         g_return_if_fail (TNY_IS_TRANSPORT_ACCOUNT (transport_account));
241
242         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(self);
243
244         /* Check parametters */
245         if (to == NULL) {
246                 g_set_error (&(priv->error), MODEST_MAIL_OPERATION_ERROR,
247                              MODEST_MAIL_OPERATION_ERROR_MISSING_PARAMETER,
248                              _("Error trying to send a mail. You need to set almost one a recipient"));
249                 return;
250         }
251
252         /* Create new msg */
253         fact    = modest_tny_platform_factory_get_instance ();
254         new_msg = tny_platform_factory_new_msg (fact);
255         header  = tny_platform_factory_new_header (fact);
256
257         /* WARNING: set the header before assign values to it */
258         tny_msg_set_header (new_msg, header);
259         tny_header_set_from (TNY_HEADER (header), from);
260         tny_header_set_replyto (TNY_HEADER (header), from);
261         tny_header_set_to (TNY_HEADER (header), to);
262         tny_header_set_cc (TNY_HEADER (header), cc);
263         tny_header_set_bcc (TNY_HEADER (header), bcc);
264         tny_header_set_subject (TNY_HEADER (header), subject);
265
266         content_type = get_content_type(body);
267
268         /* Add the body of the new mail */      
269         add_body_part (new_msg, body, (const gchar *) content_type,
270                        (attachments_list == NULL) ? FALSE : TRUE);
271
272         /* Add attachments */
273         add_attachments (new_msg, (GList*) attachments_list);
274
275         /* Send mail */
276         tny_transport_account_send (transport_account, new_msg, NULL); /* FIXME */
277
278         /* Clean */
279         g_object_unref (header);
280         g_object_unref (new_msg);
281         g_free(content_type);
282 }
283
284 static void
285 add_if_attachment (gpointer data, gpointer user_data)
286 {
287         TnyMimePart *part;
288         GList *attachments_list;
289
290         part = TNY_MIME_PART (data);
291         attachments_list = (GList *) user_data;
292
293         if (tny_mime_part_is_attachment (part))
294                 attachments_list = g_list_prepend (attachments_list, part);
295 }
296
297
298 static TnyMsg *
299 create_reply_forward_mail (TnyMsg *msg, const gchar *from, gboolean is_reply, guint type)
300 {
301         TnyPlatformFactory *fact;
302         TnyMsg *new_msg;
303         TnyHeader *new_header, *header;
304         gchar *new_subject;
305         TnyMimePart *body;
306         ModestFormatter *formatter;
307
308         /* Get body from original msg. Always look for the text/plain
309            part of the message to create the reply/forwarded mail */
310         header = tny_msg_get_header (msg);
311         body   = modest_tny_msg_find_body_part (msg, FALSE);
312
313         /* TODO: select the formatter from account prefs */
314         formatter = modest_formatter_new ("text/plain");
315
316         /* Format message body */
317         if (is_reply) {
318                 switch (type) {
319                 case MODEST_MAIL_OPERATION_REPLY_TYPE_CITE:
320                 default:
321                         new_msg = modest_formatter_cite  (formatter, body, header);
322                         break;
323                 case MODEST_MAIL_OPERATION_REPLY_TYPE_QUOTE:
324                         new_msg = modest_formatter_quote (formatter, body, header);
325                         break;
326                 }
327         } else {
328                 switch (type) {
329                 case MODEST_MAIL_OPERATION_FORWARD_TYPE_INLINE:
330                 default:
331                         new_msg = modest_formatter_inline  (formatter, body, header);
332                         break;
333                 case MODEST_MAIL_OPERATION_FORWARD_TYPE_ATTACHMENT:
334                         new_msg = modest_formatter_attach (formatter, body, header);
335                         break;
336                 }
337         }
338         g_object_unref (G_OBJECT(formatter));
339         g_object_unref (G_OBJECT(body));
340         
341         /* Fill the header */
342         fact = modest_tny_platform_factory_get_instance ();
343         new_header = TNY_HEADER (tny_platform_factory_new_header (fact));
344         tny_msg_set_header (new_msg, new_header);
345         tny_header_set_from (new_header, from);
346         tny_header_set_replyto (new_header, from);
347
348         /* Change the subject */
349         new_subject =
350                 (gchar *) modest_text_utils_derived_subject (tny_header_get_subject(header),
351                                                              (is_reply) ? _("Re:") : _("Fwd:"));
352         tny_header_set_subject (new_header, (const gchar *) new_subject);
353         g_free (new_subject);
354
355         /* Clean */
356         g_object_unref (G_OBJECT (new_header));
357         g_object_unref (G_OBJECT (header));
358
359         return new_msg;
360 }
361
362 TnyMsg* 
363 modest_mail_operation_create_forward_mail (TnyMsg *msg, 
364                                            const gchar *from,
365                                            ModestMailOperationForwardType forward_type)
366 {
367         TnyMsg *new_msg;
368         TnyList *parts = NULL;
369         GList *attachments_list = NULL;
370
371         new_msg = create_reply_forward_mail (msg, from, FALSE, forward_type);
372
373         /* Add attachments */
374         parts = TNY_LIST (tny_simple_list_new());
375         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
376         tny_list_foreach (parts, add_if_attachment, attachments_list);
377         add_attachments (new_msg, attachments_list);
378
379         /* Clean */
380         if (attachments_list) g_list_free (attachments_list);
381         g_object_unref (G_OBJECT (parts));
382
383         return new_msg;
384 }
385
386 TnyMsg* 
387 modest_mail_operation_create_reply_mail (TnyMsg *msg, 
388                                          const gchar *from,
389                                          ModestMailOperationReplyType reply_type,
390                                          ModestMailOperationReplyMode reply_mode)
391 {
392         TnyMsg *new_msg = NULL;
393         TnyHeader *new_header, *header;
394         const gchar* reply_to;
395         gchar *new_cc = NULL;
396         const gchar *cc = NULL, *bcc = NULL;
397         GString *tmp = NULL;
398
399         new_msg = create_reply_forward_mail (msg, from, TRUE, reply_type);
400
401         /* Fill the header */
402         header = tny_msg_get_header (msg);
403         new_header = tny_msg_get_header (new_msg);
404         reply_to = tny_header_get_replyto (header);
405
406         if (reply_to)
407                 tny_header_set_to (new_header, reply_to);
408         else
409                 tny_header_set_to (new_header, tny_header_get_from (header));
410
411         switch (reply_mode) {
412         case MODEST_MAIL_OPERATION_REPLY_MODE_SENDER:
413                 /* Do not fill neither cc nor bcc */
414                 break;
415         case MODEST_MAIL_OPERATION_REPLY_MODE_LIST:
416                 /* TODO */
417                 break;
418         case MODEST_MAIL_OPERATION_REPLY_MODE_ALL:
419                 /* Concatenate to, cc and bcc */
420                 cc = tny_header_get_cc (header);
421                 bcc = tny_header_get_bcc (header);
422
423                 tmp = g_string_new (tny_header_get_to (header));
424                 if (cc)  g_string_append_printf (tmp, ",%s",cc);
425                 if (bcc) g_string_append_printf (tmp, ",%s",bcc);
426
427                /* Remove my own address from the cc list. TODO:
428                   remove also the To: of the new message, needed due
429                   to the new reply_to feature */
430                 new_cc = (gchar *)
431                         modest_text_utils_remove_address ((const gchar *) tmp->str,
432                                                           from);
433                 /* FIXME: remove also the mails from the new To: */
434                 tny_header_set_cc (new_header, new_cc);
435
436                 /* Clean */
437                 g_string_free (tmp, TRUE);
438                 g_free (new_cc);
439                 break;
440         }
441
442         /* Clean */
443         g_object_unref (G_OBJECT (new_header));
444         g_object_unref (G_OBJECT (header));
445
446         return new_msg;
447 }
448
449 static void
450 status_update_cb (TnyFolder *folder, const gchar *what, gint status, gint oftotal, gpointer user_data) 
451 {
452         g_print ("%s status: %d, of total %d\n", what, status, oftotal);
453 }
454
455 static void
456 folder_refresh_cb (TnyFolder *folder, gboolean canceled, GError **err, gpointer user_data)
457 {
458         ModestMailOperation *self = NULL;
459         ModestMailOperationPrivate *priv = NULL;
460         RefreshFolderAsyncHelper *helper;
461
462         helper = (RefreshFolderAsyncHelper *) user_data;
463         self = MODEST_MAIL_OPERATION (helper->mail_op);
464         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(self);
465
466         if ((canceled && *err) || *err) {
467                 priv->error = g_error_copy (*err);
468                 helper->failed++;
469         } else if (canceled) {
470                 helper->canceled++;
471                 g_set_error (&(priv->error), MODEST_MAIL_OPERATION_ERROR,
472                              MODEST_MAIL_OPERATION_ERROR_OPERATION_CANCELED,
473                              _("Error trying to refresh folder %s. Operation canceled"),
474                              tny_folder_get_name (folder));
475         } else {
476                 priv->done++;
477         }
478
479         if (priv->done == priv->total)
480                 priv->status = MODEST_MAIL_OPERATION_STATUS_SUCCESS;
481         else if ((priv->done + helper->canceled + helper->failed) == priv->total) {
482                 if (helper->failed == priv->total)
483                         priv->status = MODEST_MAIL_OPERATION_STATUS_FAILED;
484                 else if (helper->failed == priv->total)
485                         priv->status = MODEST_MAIL_OPERATION_STATUS_CANCELED;
486                 else
487                         priv->status = MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS;
488         }
489         tny_iterator_next (helper->iter);
490         if (tny_iterator_is_done (helper->iter)) {
491                 TnyList *list;
492                 list = tny_iterator_get_list (helper->iter);
493                 g_object_unref (G_OBJECT (helper->iter));
494                 g_object_unref (G_OBJECT (list));
495                 g_slice_free (RefreshFolderAsyncHelper, helper);
496         } else {
497                 tny_folder_refresh_async (TNY_FOLDER (tny_iterator_get_current (helper->iter)),
498                                           folder_refresh_cb,
499                                           status_update_cb, 
500                                           helper);
501         }
502         g_signal_emit (G_OBJECT (self), signals[PROGRESS_CHANGED_SIGNAL], 0, NULL);
503 }
504
505
506 static void
507 update_folders_cb (TnyFolderStore *folder_store, TnyList *list, GError **err, gpointer user_data)
508 {
509         ModestMailOperation *self;
510         ModestMailOperationPrivate *priv;
511         RefreshFolderAsyncHelper *helper;
512
513         self  = MODEST_MAIL_OPERATION (user_data);
514         priv  = MODEST_MAIL_OPERATION_GET_PRIVATE (self);
515
516         if (*err) {
517                 priv->error = g_error_copy (*err);
518                 priv->status = MODEST_MAIL_OPERATION_STATUS_FAILED;
519                 return;
520         }
521
522         priv->total = tny_list_get_length (list);
523         priv->done = 0;
524         priv->status = MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS;
525
526         helper = g_slice_new0 (RefreshFolderAsyncHelper);
527         helper->mail_op = self;
528         helper->iter = tny_list_create_iterator (list);
529         helper->failed = 0;
530         helper->canceled = 0;
531
532         /* Async refresh folders */
533         tny_folder_refresh_async (TNY_FOLDER (tny_iterator_get_current (helper->iter)),
534                                   folder_refresh_cb,
535                                   status_update_cb, 
536                                   helper);
537 }
538
539 gboolean
540 modest_mail_operation_update_account (ModestMailOperation *self,
541                                       TnyStoreAccount *store_account)
542 {
543         ModestMailOperationPrivate *priv;
544         TnyList *folders;
545         TnyFolderStoreQuery *query;
546
547         g_return_val_if_fail (MODEST_IS_MAIL_OPERATION (self), FALSE);
548         g_return_val_if_fail (TNY_IS_STORE_ACCOUNT(store_account), FALSE);
549
550         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(self);
551
552         /* Get subscribed folders & refresh them */
553         folders = TNY_LIST (tny_simple_list_new ());
554         query = tny_folder_store_query_new ();
555         tny_folder_store_query_add_item (query, NULL, TNY_FOLDER_STORE_QUERY_OPTION_SUBSCRIBED);
556         tny_folder_store_get_folders_async (TNY_FOLDER_STORE (store_account),
557                                             folders, update_folders_cb, query, self);
558         g_object_unref (query);
559
560         return TRUE;
561 }
562
563 ModestMailOperationStatus
564 modest_mail_operation_get_status (ModestMailOperation *self)
565 {
566         ModestMailOperationPrivate *priv;
567
568         g_return_val_if_fail (self, MODEST_MAIL_OPERATION_STATUS_INVALID);
569         g_return_val_if_fail (MODEST_IS_MAIL_OPERATION (self),
570                               MODEST_MAIL_OPERATION_STATUS_INVALID);
571
572         priv = MODEST_MAIL_OPERATION_GET_PRIVATE (self);
573         return priv->status;
574 }
575
576 const GError *
577 modest_mail_operation_get_error (ModestMailOperation *self)
578 {
579         ModestMailOperationPrivate *priv;
580
581         g_return_val_if_fail (self, NULL);
582         g_return_val_if_fail (MODEST_IS_MAIL_OPERATION (self), NULL);
583
584         priv = MODEST_MAIL_OPERATION_GET_PRIVATE (self);
585         return priv->error;
586 }
587
588 gboolean 
589 modest_mail_operation_cancel (ModestMailOperation *self)
590 {
591         /* TODO */
592         return TRUE;
593 }
594
595 guint 
596 modest_mail_operation_get_task_done (ModestMailOperation *self)
597 {
598         ModestMailOperationPrivate *priv;
599
600         g_return_val_if_fail (MODEST_IS_MAIL_OPERATION (self), 0);
601
602         priv = MODEST_MAIL_OPERATION_GET_PRIVATE (self);
603         return priv->done;
604 }
605
606 guint 
607 modest_mail_operation_get_task_total (ModestMailOperation *self)
608 {
609         ModestMailOperationPrivate *priv;
610
611         g_return_val_if_fail (MODEST_IS_MAIL_OPERATION (self), 0);
612
613         priv = MODEST_MAIL_OPERATION_GET_PRIVATE (self);
614         return priv->total;
615 }
616
617 gboolean
618 modest_mail_operation_is_finished (ModestMailOperation *self)
619 {
620         ModestMailOperationPrivate *priv;
621         gboolean retval = FALSE;
622
623         if (!MODEST_IS_MAIL_OPERATION (self)) {
624                 g_warning ("%s: invalid parametter", G_GNUC_FUNCTION);
625                 return retval;
626         }
627
628         priv = MODEST_MAIL_OPERATION_GET_PRIVATE (self);
629
630         if (priv->status == MODEST_MAIL_OPERATION_STATUS_SUCCESS   ||
631             priv->status == MODEST_MAIL_OPERATION_STATUS_FAILED    ||
632             priv->status == MODEST_MAIL_OPERATION_STATUS_CANCELED  ||
633             priv->status == MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS) {
634                 retval = TRUE;
635         } else {
636                 retval = FALSE;
637         }
638
639         return retval;
640 }
641
642 /* ******************************************************************* */
643 /* ************************** STORE  ACTIONS ************************* */
644 /* ******************************************************************* */
645
646
647 TnyFolder *
648 modest_mail_operation_create_folder (ModestMailOperation *self,
649                                      TnyFolderStore *parent,
650                                      const gchar *name)
651 {
652         g_return_val_if_fail (TNY_IS_FOLDER_STORE (parent), NULL);
653         g_return_val_if_fail (name, NULL);
654
655         TnyFolder *new_folder = NULL;
656         TnyStoreAccount *store_account;
657
658         /* Create the folder */
659         new_folder = tny_folder_store_create_folder (parent, name, NULL); /* FIXME */
660         if (!new_folder) 
661                 return NULL;
662
663         /* Subscribe to folder */
664         if (!tny_folder_is_subscribed (new_folder)) {
665                 store_account = TNY_STORE_ACCOUNT (tny_folder_get_account (TNY_FOLDER (parent)));
666                 tny_store_account_subscribe (store_account, new_folder);
667                 g_object_unref (G_OBJECT (store_account));
668         }
669
670         return new_folder;
671 }
672
673 void
674 modest_mail_operation_remove_folder (ModestMailOperation *self,
675                                      TnyFolder *folder,
676                                      gboolean remove_to_trash)
677 {
678         TnyFolderStore *folder_store;
679
680         g_return_if_fail (TNY_IS_FOLDER (folder));
681
682         /* Get folder store */
683         folder_store = TNY_FOLDER_STORE (tny_folder_get_account (folder));
684
685         /* Delete folder or move to trash */
686         if (remove_to_trash) {
687                 TnyFolder *trash_folder;
688                 trash_folder = modest_tny_account_get_special_folder (TNY_ACCOUNT(folder_store),
689                                                                       TNY_FOLDER_TYPE_TRASH);
690                 /* TODO: error_handling */
691                 modest_mail_operation_move_folder (self, folder, 
692                                                    TNY_FOLDER_STORE (trash_folder));
693         } else {
694                 tny_folder_store_remove_folder (folder_store, folder, NULL); /* FIXME */
695                 g_object_unref (G_OBJECT (folder));
696         }
697
698         /* Free instances */
699         g_object_unref (G_OBJECT (folder_store));
700 }
701
702 void
703 modest_mail_operation_rename_folder (ModestMailOperation *self,
704                                      TnyFolder *folder,
705                                      const gchar *name)
706 {
707         g_return_if_fail (MODEST_IS_MAIL_OPERATION (self));
708         g_return_if_fail (TNY_IS_FOLDER_STORE (folder));
709         g_return_if_fail (name);
710
711         /* FIXME: better error handling */
712         if (strrchr (name, '/') != NULL)
713                 return;
714
715         /* Rename. Camel handles folder subscription/unsubscription */
716         tny_folder_set_name (folder, name, NULL); /* FIXME */
717  }
718
719 void
720 modest_mail_operation_move_folder (ModestMailOperation *self,
721                                    TnyFolder *folder,
722                                    TnyFolderStore *parent)
723 {
724         g_return_if_fail (MODEST_IS_MAIL_OPERATION (self));
725         g_return_if_fail (TNY_IS_FOLDER_STORE (parent));
726         g_return_if_fail (TNY_IS_FOLDER (folder));
727         
728         modest_mail_operation_xfer_folder (self, folder, parent, TRUE);
729 }
730
731 void
732 modest_mail_operation_copy_folder (ModestMailOperation *self,
733                                    TnyFolder *folder,
734                                    TnyFolderStore *parent)
735 {
736         g_return_if_fail (MODEST_IS_MAIL_OPERATION (self));
737         g_return_if_fail (TNY_IS_FOLDER_STORE (parent));
738         g_return_if_fail (TNY_IS_FOLDER (folder));
739
740         modest_mail_operation_xfer_folder (self, folder, parent, FALSE);
741 }
742
743 static void
744 modest_mail_operation_xfer_folder (ModestMailOperation *self,
745                                    TnyFolder *folder,
746                                    TnyFolderStore *parent,
747                                    gboolean delete_original)
748 {
749         const gchar *folder_name;
750         TnyFolder *dest_folder, *child;
751         TnyIterator *iter;
752         TnyList *folders, *headers;
753
754         g_return_if_fail (TNY_IS_FOLDER (folder));
755         g_return_if_fail (TNY_IS_FOLDER_STORE (parent));
756
757         /* Create the destination folder */
758         folder_name = tny_folder_get_name (folder);
759         dest_folder = modest_mail_operation_create_folder (self, parent, folder_name);
760
761         /* Transfer messages */
762         headers = TNY_LIST (tny_simple_list_new ());
763         tny_folder_get_headers (folder, headers, FALSE, NULL); /* FIXME */
764         tny_folder_transfer_msgs (folder, headers, dest_folder, delete_original, NULL); /* FIXME */
765
766         /* Recurse children */
767         folders = TNY_LIST (tny_simple_list_new ());
768         tny_folder_store_get_folders (TNY_FOLDER_STORE (folder), folders, NULL, NULL ); /* FIXME */
769         iter = tny_list_create_iterator (folders);
770
771         while (!tny_iterator_is_done (iter)) {
772                 child = TNY_FOLDER (tny_iterator_get_current (iter));
773                 modest_mail_operation_xfer_folder (self, child, TNY_FOLDER_STORE (dest_folder),
774                                                    delete_original);
775                 tny_iterator_next (iter);
776                 g_object_unref (G_OBJECT(child));
777         }
778
779         /* Delete source folder (if needed) */
780         if (delete_original)
781                 modest_mail_operation_remove_folder (self, folder, FALSE);
782
783         /* Clean up */
784         g_object_unref (G_OBJECT (dest_folder));
785         g_object_unref (G_OBJECT (headers));
786         g_object_unref (G_OBJECT (folders));
787         g_object_unref (G_OBJECT (iter));
788 }
789
790
791 /* ******************************************************************* */
792 /* **************************  MSG  ACTIONS  ************************* */
793 /* ******************************************************************* */
794
795 gboolean 
796 modest_mail_operation_copy_msg (ModestMailOperation *self,
797                                 TnyHeader *header, 
798                                 TnyFolder *folder)
799 {
800         g_return_val_if_fail (TNY_IS_HEADER (header), FALSE);
801         g_return_val_if_fail (TNY_IS_FOLDER (folder), FALSE);
802
803         return modest_mail_operation_xfer_msg (self, header, folder, FALSE);
804 }
805
806 gboolean 
807 modest_mail_operation_move_msg (ModestMailOperation *self,
808                                 TnyHeader *header, 
809                                 TnyFolder *folder)
810 {
811         g_return_val_if_fail (TNY_IS_HEADER (header), FALSE);
812         g_return_val_if_fail (TNY_IS_FOLDER (folder), FALSE);
813
814         return modest_mail_operation_xfer_msg (self, header, folder, TRUE);
815 }
816
817 void 
818 modest_mail_operation_remove_msg (ModestMailOperation *self,
819                                   TnyHeader *header,
820                                   gboolean remove_to_trash)
821 {
822         TnyFolder *folder;
823
824         g_return_if_fail (TNY_IS_HEADER (header));
825
826         folder = tny_header_get_folder (header);
827
828         /* Delete or move to trash */
829         if (remove_to_trash) {
830                 TnyFolder *trash_folder;
831                 TnyStoreAccount *store_account;
832
833                 store_account = TNY_STORE_ACCOUNT (tny_folder_get_account (folder));
834                 trash_folder = modest_tny_account_get_special_folder (TNY_ACCOUNT(store_account),
835                                                                       TNY_FOLDER_TYPE_TRASH);
836                 if (trash_folder) {
837                         modest_mail_operation_move_msg (self, header, trash_folder);
838 /*                      g_object_unref (trash_folder); */
839                 } else {
840                         ModestMailOperationPrivate *priv;
841
842                         /* Set status failed and set an error */
843                         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(self);
844                         priv->status = MODEST_MAIL_OPERATION_STATUS_FAILED;
845                         g_set_error (&(priv->error), MODEST_MAIL_OPERATION_ERROR,
846                                      MODEST_MAIL_OPERATION_ERROR_ITEM_NOT_FOUND,
847                                      _("Error trying to delete a message. Trash folder not found"));
848                 }
849
850                 g_object_unref (G_OBJECT (store_account));
851         } else {
852                 tny_folder_remove_msg (folder, header, NULL); /* FIXME */
853                 tny_folder_sync(folder, TRUE, NULL); /* FIXME */
854         }
855
856         /* Free */
857         g_object_unref (folder);
858 }
859
860 static void
861 transfer_msgs_cb (TnyFolder *folder, GError **err, gpointer user_data)
862 {
863         ModestMailOperationPrivate *priv;
864
865         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(user_data);
866         priv->done = 1;
867         priv->status = MODEST_MAIL_OPERATION_STATUS_SUCCESS;
868
869         g_signal_emit (G_OBJECT (user_data), signals[PROGRESS_CHANGED_SIGNAL], 0, NULL);
870 }
871
872 static gboolean
873 modest_mail_operation_xfer_msg (ModestMailOperation *self,
874                                 TnyHeader *header, 
875                                 TnyFolder *folder, 
876                                 gboolean delete_original)
877 {
878         ModestMailOperationPrivate *priv;
879         TnyFolder *src_folder;
880         TnyList *headers;
881
882         src_folder = tny_header_get_folder (header);
883         headers = tny_simple_list_new ();
884
885         priv = MODEST_MAIL_OPERATION_GET_PRIVATE(self);
886         priv->total = 1;
887         priv->done = 0;
888         priv->status = MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS;
889
890         tny_list_prepend (headers, G_OBJECT (header));
891         tny_folder_transfer_msgs_async (src_folder, headers, folder, 
892                                         delete_original, transfer_msgs_cb, self);
893
894         /* Free */
895         g_object_unref (headers);
896         g_object_unref (folder);
897
898         return TRUE;
899 }
900
901
902 /* ******************************************************************* */
903 /* ************************* UTILIY FUNCTIONS ************************ */
904 /* ******************************************************************* */
905 static gboolean
906 is_ascii(const gchar *s)
907 {
908         while (s[0]) {
909                 if (s[0] & 128 || s[0] < 32)
910                         return FALSE;
911                 s++;
912         }
913         return TRUE;
914 }
915
916 static char *
917 get_content_type(const gchar *s)
918 {
919         GString *type;
920         
921         type = g_string_new("text/plain");
922         if (!is_ascii(s)) {
923                 if (g_utf8_validate(s, -1, NULL)) {
924                         g_string_append(type, "; charset=\"utf-8\"");
925                 } else {
926                         /* it should be impossible to reach this, but better safe than sorry */
927                         g_warning("invalid utf8 in message");
928                         g_string_append(type, "; charset=\"latin1\"");
929                 }
930         }
931         return g_string_free(type, FALSE);
932 }
933
934 static void
935 add_attachments (TnyMsg *msg, GList *attachments_list)
936 {
937         GList *pos;
938         TnyMimePart *attachment_part, *old_attachment;
939         const gchar *attachment_content_type;
940         const gchar *attachment_filename;
941         TnyStream *attachment_stream;
942         TnyPlatformFactory *fact;
943
944         fact = modest_tny_platform_factory_get_instance ();
945         for (pos = (GList *)attachments_list; pos; pos = pos->next) {
946
947                 old_attachment = pos->data;
948                 attachment_filename = tny_mime_part_get_filename (old_attachment);
949                 attachment_stream = tny_mime_part_get_stream (old_attachment);
950                 attachment_part = tny_platform_factory_new_mime_part (fact);
951                 
952                 attachment_content_type = tny_mime_part_get_content_type (old_attachment);
953                                  
954                 tny_mime_part_construct_from_stream (attachment_part,
955                                                      attachment_stream,
956                                                      attachment_content_type);
957                 tny_stream_reset (attachment_stream);
958                 
959                 tny_mime_part_set_filename (attachment_part, attachment_filename);
960                 
961                 tny_mime_part_add_part (TNY_MIME_PART (msg), attachment_part);
962 /*              g_object_unref (attachment_part); */
963         }
964 }
965
966
967 static TnyMimePart *
968 add_body_part (TnyMsg *msg, 
969                const gchar *body,
970                const gchar *content_type,
971                gboolean has_attachments)
972 {
973         TnyMimePart *text_body_part = NULL;
974         TnyStream *text_body_stream;
975         TnyPlatformFactory *fact;
976
977         fact = modest_tny_platform_factory_get_instance ();
978
979         /* Create the stream */
980         text_body_stream = TNY_STREAM (tny_camel_stream_new
981                                        (camel_stream_mem_new_with_buffer
982                                         (body, strlen(body))));
983
984         /* Create body part if needed */
985         if (has_attachments)
986                 text_body_part = tny_platform_factory_new_mime_part (fact);
987         else
988                 text_body_part = TNY_MIME_PART(msg);
989
990         /* Construct MIME part */
991         tny_stream_reset (text_body_stream);
992         tny_mime_part_construct_from_stream (text_body_part,
993                                              text_body_stream,
994                                              content_type);
995         tny_stream_reset (text_body_stream);
996
997         /* Add part if needed */
998         if (has_attachments) {
999                 tny_mime_part_add_part (TNY_MIME_PART (msg), text_body_part);
1000                 g_object_unref (G_OBJECT(text_body_part));
1001         }
1002
1003         /* Clean */
1004         g_object_unref (text_body_stream);
1005
1006         return text_body_part;
1007 }