* add online status to debug output
[modest] / src / dbus_api / modest-dbus-callbacks.c
1 /* Copyright (c) 2007, 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-dbus-callbacks.h"
31 #include "modest-runtime.h"
32 #include "modest-account-mgr.h"
33 #include "modest-account-mgr-helpers.h"
34 #include "modest-tny-account.h"
35 #include "modest-tny-folder.h"
36 #include "modest-ui-actions.h"
37 #include "modest-debug.h"
38 #include "modest-search.h"
39 #include "widgets/modest-msg-edit-window.h"
40 #include "modest-tny-msg.h"
41 #include "modest-platform.h"
42 #include <libmodest-dbus-client/libmodest-dbus-client.h>
43 #include <libgnomevfs/gnome-vfs-utils.h>
44 #include <stdio.h>
45 #include <string.h>
46 #include <glib/gstdio.h>
47 #ifdef MODEST_HAVE_HILDON0_WIDGETS
48 #include <libgnomevfs/gnome-vfs-mime-utils.h>
49 #else
50 #include <libgnomevfs/gnome-vfs-mime.h>
51 #endif
52 #include <tny-fs-stream.h>
53
54 #include <tny-list.h>
55 #include <tny-iterator.h>
56 #include <tny-simple-list.h>
57 #include <tny-merge-folder.h>
58
59 #include <modest-text-utils.h>
60
61 typedef struct 
62 {
63         gchar *to;
64         gchar *cc;
65         gchar *bcc;
66         gchar *subject;
67         gchar *body;
68         gchar *attachments;
69 } ComposeMailIdleData;
70
71
72 static gboolean notify_error_in_dbus_callback (gpointer user_data);
73 static gboolean notify_msg_not_found_in_idle (gpointer user_data);
74 static gboolean on_idle_compose_mail(gpointer user_data);
75 static gboolean on_idle_top_application (gpointer user_data);
76
77 /** uri_unescape:
78  * @uri An escaped URI. URIs should always be escaped.
79  * @len The length of the @uri string, or -1 if the string is null terminated.
80  * 
81  * Decode a URI, or URI fragment, as per RFC 1738.
82  * http://www.ietf.org/rfc/rfc1738.txt
83  * 
84  * Return value: An unescaped string. This should be freed with g_free().
85  */
86 static gchar* 
87 uri_unescape(const gchar* uri, size_t len)
88 {
89         if (!uri)
90                 return NULL;
91                 
92         if (len == -1)
93                 len = strlen (uri);
94         
95         /* Allocate an extra string so we can be sure that it is null-terminated,
96          * so we can use gnome_vfs_unescape_string().
97          * This is not efficient. */
98         gchar * escaped_nullterminated = g_strndup (uri, len);
99         gchar *result = gnome_vfs_unescape_string (escaped_nullterminated, NULL);
100         g_free (escaped_nullterminated);
101         
102         return result;
103 }
104
105 /** uri_parse_mailto:
106  * @mailto A mailto URI, with the mailto: prefix.
107  * @list_items_and_values: A pointer to a list that should be filled with item namesand value strings, 
108  * with each name item being followed by a value item. This list should be freed with g_slist_free) after 
109  * all the string items have been freed. This parameter may be NULL.
110  * Parse a mailto URI as per RFC2368.
111  * http://www.ietf.org/rfc/rfc2368.txt
112  * 
113  * Return value: The to address, unescaped. This should be freed with g_free().
114  */
115 static gchar* 
116 uri_parse_mailto (const gchar* mailto, GSList** list_items_and_values)
117 {
118         /* The URL must begin with mailto: */
119         if (strncmp (mailto, "mailto:", 7) != 0) {
120                 return NULL;
121         }
122         const gchar* start_to = mailto + 7;
123
124         /* Look for ?, or the end of the string, marking the end of the to address: */
125         const size_t len_to = strcspn (start_to, "?");
126         gchar* result_to = uri_unescape (start_to, len_to);
127         printf("debug: result_to=%s\n", result_to);
128
129         if (list_items_and_values == NULL) {
130                 return result_to;
131         }
132
133         /* Get any other items: */
134         const size_t len_mailto = strlen (start_to);
135         const gchar* p = start_to + len_to + 1; /* parsed so far. */
136         const gchar* end = start_to + len_mailto;
137         while (p < end) {
138                 const gchar *name, *value, *name_start, *name_end, *value_start, *value_end;
139                 name_start = p;
140                 name_end = strchr (name_start, '='); /* Separator between name and value */
141                 if (name_end == NULL) {
142                         g_debug ("Malformed URI: %s\n", mailto);
143                         return result_to;
144                 }
145                 value_start = name_end + 1;
146                 value_end = strchr (value_start, '&'); /* Separator between value and next parameter */
147
148                 name = g_strndup(name_start, name_end - name_start);
149                 if (value_end != NULL) {
150                         value = uri_unescape(value_start, value_end - value_start);
151                         p = value_end + 1;
152                 } else {
153                         value = uri_unescape(value_start, -1);
154                         p = end;
155                 }
156                 *list_items_and_values = g_slist_append (*list_items_and_values, (gpointer) name);
157                 *list_items_and_values = g_slist_append (*list_items_and_values, (gpointer) value);
158         }
159         
160         return result_to;
161 }
162
163 static gboolean
164 check_and_offer_account_creation()
165 {
166         gboolean result = TRUE;
167         
168         /* This is called from idle handlers, so lock gdk: */
169         gdk_threads_enter ();
170         
171         if (!modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE)) {
172                 const gboolean created = modest_ui_actions_run_account_setup_wizard (NULL);
173                 if (!created) {
174                         g_debug ("modest: %s: no account exists even after offering, "
175                                  "or account setup was already underway.\n", __FUNCTION__);
176                         result = FALSE;
177                 }
178         }
179         
180         gdk_threads_leave ();
181         
182         return result;
183 }
184
185 static gboolean
186 on_idle_mail_to(gpointer user_data)
187 {
188         gchar *uri = (gchar*)user_data;
189         GSList *list_names_and_values = NULL;
190         gchar *to = NULL;
191         const gchar *cc = NULL;
192         const gchar *bcc = NULL;
193         const gchar *subject = NULL;
194         const gchar *body = NULL;
195
196         if (!check_and_offer_account_creation ()) {
197                 g_idle_add (notify_error_in_dbus_callback, NULL);
198                 goto cleanup;
199         }
200
201         /* Get the relevant items from the list: */
202         to = uri_parse_mailto (uri, &list_names_and_values);
203         GSList *list = list_names_and_values;
204         while (list) {
205                 GSList *list_value = g_slist_next (list);
206                 const gchar * name = (const gchar*)list->data;
207                 const gchar * value = (const gchar*)list_value->data;
208
209                 if (strcmp (name, "cc") == 0) {
210                         cc = value;
211                 } else if (strcmp (name, "bcc") == 0) {
212                         bcc = value;
213                 } else if (strcmp (name, "subject") == 0) {
214                         subject = value;
215                 } else if (strcmp (name, "body") == 0) {
216                         body = value;
217                 }
218
219                 list = g_slist_next (list_value);
220         }
221
222         gdk_threads_enter (); /* CHECKED */
223         modest_ui_actions_compose_msg(NULL, to, cc, bcc, subject, body, NULL);
224         gdk_threads_leave (); /* CHECKED */
225
226 cleanup:
227         /* Free the to: and the list, as required by uri_parse_mailto() */
228         g_free(to);
229         g_slist_foreach (list_names_and_values, (GFunc)g_free, NULL);
230         g_slist_free (list_names_and_values);
231
232         g_free(uri);
233
234         return FALSE; /* Do not call this callback again. */
235 }
236
237 static gint 
238 on_mail_to(GArray * arguments, gpointer data, osso_rpc_t * retval)
239 {
240         osso_rpc_t val;
241         gchar *uri;
242
243         /* Get arguments */
244         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_MAIL_TO_ARG_URI);
245         uri = g_strdup (val.value.s);
246         
247         g_idle_add(on_idle_mail_to, (gpointer)uri);
248         
249         /* Note that we cannot report failures during sending, 
250          * because that would be asynchronous. */
251         return OSSO_OK;
252 }
253
254
255 static gboolean
256 on_idle_compose_mail(gpointer user_data)
257 {
258         GSList *attachments = NULL;
259         ComposeMailIdleData *idle_data = (ComposeMailIdleData*)user_data;
260
261         if (!check_and_offer_account_creation ()) {
262                 g_idle_add (notify_error_in_dbus_callback, NULL);
263                 goto cleanup;
264         }
265
266         /* it seems Sketch at least sends a leading ',' -- take that into account,
267          * ie strip that ,*/
268         if (idle_data->attachments && idle_data->attachments[0]==',') {
269                 gchar *tmp = g_strdup (idle_data->attachments + 1);
270                 g_free(idle_data->attachments);
271                 idle_data->attachments = tmp;
272         }
273         if (idle_data->attachments != NULL) {
274                 gchar **list = g_strsplit(idle_data->attachments, ",", 0);
275                 gint i = 0;
276                 for (i=0; list[i] != NULL; i++) {
277                         attachments = g_slist_append(attachments, g_strdup(list[i]));
278                 }
279                 g_strfreev(list);
280         }
281         gdk_threads_enter (); /* CHECKED */
282         modest_ui_actions_compose_msg(NULL, idle_data->to, idle_data->cc,
283                                       idle_data->bcc, idle_data->subject,
284                                       idle_data->body, attachments);
285         gdk_threads_leave (); /* CHECKED */
286 cleanup:
287         g_slist_foreach(attachments, (GFunc)g_free, NULL);
288         g_slist_free(attachments);
289         g_free (idle_data->to);
290         g_free (idle_data->cc);
291         g_free (idle_data->bcc);
292         g_free (idle_data->subject);
293         g_free (idle_data->body);
294         g_free (idle_data->attachments);
295         g_free(idle_data);
296
297         return FALSE; /* Do not call this callback again. */
298 }
299
300 static gint 
301 on_compose_mail(GArray * arguments, gpointer data, osso_rpc_t * retval)
302 {
303         ComposeMailIdleData *idle_data;
304         osso_rpc_t val;
305         
306         idle_data = g_new0(ComposeMailIdleData, 1); /* Freed in the idle callback. */
307         
308         /* Get the arguments: */
309         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_COMPOSE_MAIL_ARG_TO);
310         idle_data->to = g_strdup (val.value.s);
311         
312         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_COMPOSE_MAIL_ARG_CC);
313         idle_data->cc = g_strdup (val.value.s);
314         
315         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_COMPOSE_MAIL_ARG_BCC);
316         idle_data->bcc = g_strdup (val.value.s);
317         
318         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_COMPOSE_MAIL_ARG_SUBJECT);
319         idle_data->subject = g_strdup (val.value.s);
320         
321         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_COMPOSE_MAIL_ARG_BODY);
322         idle_data->body = g_strdup (val.value.s);
323         
324         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_COMPOSE_MAIL_ARG_ATTACHMENTS);
325         idle_data->attachments = g_strdup (val.value.s);
326
327         /* Use g_idle to context-switch into the application's thread: */
328         g_idle_add(on_idle_compose_mail, (gpointer)idle_data);
329         
330         return OSSO_OK;
331 }
332
333 static TnyMsg *
334 find_message_by_url (const char *uri,  TnyAccount **ac_out)
335 {
336         ModestTnyAccountStore *astore;
337         TnyAccount *account = NULL;
338         TnyFolder *folder = NULL;
339         TnyMsg *msg = NULL;
340
341         astore = modest_runtime_get_account_store ();
342         
343         if (astore == NULL)
344                 return NULL;
345
346         if (uri && g_str_has_prefix (uri, "merge://")) {
347                 /* we assume we're talking about outbox folder, as this 
348                  * is the only merge folder we work with in modest */
349                 return modest_tny_account_store_find_msg_in_outboxes (astore, uri, ac_out);
350         }
351         account = tny_account_store_find_account (TNY_ACCOUNT_STORE (astore),
352                                                   uri);
353         
354         if (account == NULL || !TNY_IS_STORE_ACCOUNT (account))
355                 goto out;
356         *ac_out = account;
357
358         folder = tny_store_account_find_folder (TNY_STORE_ACCOUNT (account), uri, NULL);
359
360         if (folder == NULL)
361                 goto out;
362         
363         msg = tny_folder_find_msg (folder, uri, NULL);
364         
365 out:
366         if (account && !msg) {
367                 g_object_unref (account);
368                 *ac_out = NULL;
369         }
370         if (folder)
371                 g_object_unref (folder);
372
373         return msg;
374 }
375
376 typedef struct {
377         TnyAccount *account;
378         gchar *uri;
379 } OpenMsgPerformerInfo;
380
381 static void 
382 on_open_message_performer (gboolean canceled, 
383                            GError *err,
384                            GtkWindow *parent_window, 
385                            TnyAccount *account, 
386                            gpointer user_data)
387 {
388         OpenMsgPerformerInfo *info;
389         gchar *uri;
390         TnyHeader *header;
391         gchar *msg_uid;
392         ModestWindowMgr *win_mgr;
393         ModestWindow *msg_view = NULL;
394         gboolean is_draft = FALSE;
395         TnyFolder *folder = NULL;
396         TnyMsg *msg = NULL;
397
398         info = (OpenMsgPerformerInfo *) user_data;
399         uri = info->uri;
400
401         if (canceled || err) {
402                 goto frees;
403         }
404
405         /* Get message */
406         folder = tny_store_account_find_folder (TNY_STORE_ACCOUNT (account), uri, NULL);
407         msg = tny_folder_find_msg (folder, uri, NULL);
408
409         if (modest_tny_folder_is_local_folder (folder) &&
410             (modest_tny_folder_get_local_or_mmc_folder_type (folder) == TNY_FOLDER_TYPE_DRAFTS)) {
411                 is_draft = TRUE;
412         }
413
414         if (!msg) {
415                 g_idle_add (notify_msg_not_found_in_idle, NULL);
416                 goto frees;
417         }
418
419         header = tny_msg_get_header (msg);
420         if (header && (tny_header_get_flags (header)&TNY_HEADER_FLAG_DELETED)) {
421                 g_object_unref (header);
422                 g_object_unref (msg);
423                 g_idle_add (notify_msg_not_found_in_idle, NULL);
424                 goto frees;
425         }
426         msg_uid =  modest_tny_folder_get_header_unique_id (header); 
427         win_mgr = modest_runtime_get_window_mgr ();
428
429         if (modest_window_mgr_find_registered_header (win_mgr, header, &msg_view)) {
430                 gtk_window_present (GTK_WINDOW(msg_view));
431         } else {
432                 const gchar *modest_account_name;
433
434                 /* g_debug ("creating new window for this msg"); */
435                 modest_window_mgr_register_header (win_mgr, header, NULL);
436                 
437                 modest_account_name = 
438                         modest_tny_account_get_parent_modest_account_name_for_server_account (account);
439                         
440                 /* Drafts will be opened in the editor, and others will be opened in the viewer */
441                 if (is_draft) {
442                         msg_view = modest_msg_edit_window_new (msg, modest_account_name, TRUE);
443                 } else {
444                         TnyHeader *header;
445                         header = tny_msg_get_header (msg);
446                         msg_view = modest_msg_view_window_new_for_search_result (msg, modest_account_name, msg_uid);
447                         if (! (tny_header_get_flags (header) & TNY_HEADER_FLAG_SEEN))
448                                 tny_header_set_flag (header, TNY_HEADER_FLAG_SEEN);
449                         g_object_unref (header);
450                         
451                 }               
452                 modest_window_mgr_register_window (win_mgr, msg_view);
453                 gtk_widget_show_all (GTK_WIDGET (msg_view));
454         }
455         g_object_unref (header);
456         g_object_unref (msg);
457         g_object_unref (folder);
458
459  frees:
460         g_free (info->uri);
461         g_object_unref (info->account);
462         g_slice_free (OpenMsgPerformerInfo, info);
463 }
464
465 static gboolean
466 on_idle_open_message_performer (gpointer user_data)
467 {
468         OpenMsgPerformerInfo *info = (OpenMsgPerformerInfo *) user_data;
469
470         /* Lock before the call as we're in an idle handler */
471         gdk_threads_enter ();
472         modest_platform_connect_and_perform (NULL, info->account, 
473                                              on_open_message_performer, info);
474         gdk_threads_leave ();
475
476         return FALSE;
477 }
478
479 static gint 
480 on_open_message (GArray * arguments, gpointer data, osso_rpc_t * retval)
481 {
482         osso_rpc_t val;
483         gchar *uri;
484         TnyAccount *account = NULL;
485         gint osso_retval;
486
487         /* Get the arguments: */
488         val = g_array_index(arguments, osso_rpc_t, MODEST_DBUS_OPEN_MESSAGE_ARG_URI);
489         uri = g_strdup (val.value.s);
490
491         /* Get the account */
492         account = tny_account_store_find_account (TNY_ACCOUNT_STORE (modest_runtime_get_account_store ()),
493                                                   uri);
494
495         
496         if (account) {
497                 OpenMsgPerformerInfo *info;
498
499                 info = g_slice_new0 (OpenMsgPerformerInfo);
500                 info->account = g_object_ref (account);
501                 info->uri = uri;
502
503                 /* We need to call it into an idle to get
504                    modest_platform_connect_and_perform into the main
505                    loop */
506                 g_idle_add (on_idle_open_message_performer, info);
507                 osso_retval = OSSO_OK;
508         } else {
509                 g_free (uri);
510                 osso_retval = OSSO_ERROR; 
511                 g_idle_add (notify_error_in_dbus_callback, NULL);
512         }
513
514         g_object_unref (account);
515         return osso_retval;
516 }
517
518 static gboolean
519 on_idle_delete_message (gpointer user_data)
520 {
521         TnyList *headers = NULL;
522         TnyFolder *folder = NULL;
523         TnyIterator *iter = NULL; 
524         TnyHeader *header = NULL, *msg_header = NULL;
525         TnyMsg *msg = NULL;
526         TnyAccount *account = NULL;
527         const char *uri = NULL, *uid = NULL;
528         gint res = 0;
529         ModestMailOperation *mail_op = NULL;
530         ModestWindow *main_win = NULL, *msg_view = NULL;
531
532         uri = (char *) user_data;
533         
534         msg = find_message_by_url (uri, &account);
535
536         if (!msg) {
537                 g_warning ("%s: Could not find message '%s'", __FUNCTION__, uri);
538                 g_idle_add (notify_error_in_dbus_callback, NULL);
539                 return OSSO_ERROR; 
540         }
541         
542         main_win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr(),
543                                                       FALSE); /* don't create */
544         
545         msg_header = tny_msg_get_header (msg);
546         uid = tny_header_get_uid (msg_header);
547         folder = tny_msg_get_folder (msg);
548
549         if (!folder) {
550                 g_warning ("%s: Could not find folder (uri:'%s')", __FUNCTION__, uri);
551                 g_object_unref (msg);
552                 g_idle_add (notify_error_in_dbus_callback, NULL);
553                 return OSSO_ERROR; 
554         }
555
556         headers = tny_simple_list_new ();
557         tny_folder_get_headers (folder, headers, TRUE, NULL);
558         iter = tny_list_create_iterator (headers);
559         header = NULL;
560
561         while (!tny_iterator_is_done (iter)) {
562                 const char *cur_id = NULL;
563
564                 header = TNY_HEADER (tny_iterator_get_current (iter));
565                 if (header)
566                         cur_id = tny_header_get_uid (header);
567                 
568                 if (cur_id && uid && g_str_equal (cur_id, uid)) {
569                         /* g_debug ("Found corresponding header from folder"); */
570                         break;
571                 }
572
573                 if (header) {
574                         g_object_unref (header);
575                         header = NULL;
576                 }
577                 
578                 tny_iterator_next (iter);
579         }
580
581         g_object_unref (iter);
582         iter = NULL;
583         g_object_unref (headers);
584         headers = NULL;
585         
586         g_object_unref (msg_header);
587         msg_header = NULL;
588         g_object_unref (msg);
589         msg = NULL;
590
591         if (header == NULL) {
592                 if (folder)
593                         g_object_unref (folder);
594                 g_idle_add (notify_error_in_dbus_callback, NULL);                       
595                 return OSSO_ERROR;
596         }
597                 
598         res = OSSO_OK;
599
600         /* This is a GDK lock because we are an idle callback and
601          * the code below is or does Gtk+ code */
602         gdk_threads_enter (); /* CHECKED */
603
604         mail_op = modest_mail_operation_new (main_win ? G_OBJECT(main_win) : NULL);
605         modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
606         modest_mail_operation_remove_msg (mail_op, header, FALSE);
607         g_object_unref (G_OBJECT (mail_op));
608         
609         if (main_win) { /* no need if there's no window */ 
610                 if (modest_window_mgr_find_registered_header (modest_runtime_get_window_mgr(),
611                                                               header, &msg_view)) {
612                         if (MODEST_IS_MSG_VIEW_WINDOW (msg_view))
613                                 modest_ui_actions_refresh_message_window_after_delete (MODEST_MSG_VIEW_WINDOW (msg_view));
614                 }
615         }
616         gdk_threads_leave (); /* CHECKED */
617         
618         if (header)
619                 g_object_unref (header);
620         
621         if (folder) {
622                 /* Trick: do a poke status in order to speed up the signaling
623                    of observers.
624                    A delete via the menu does this, in do_headers_action(), 
625                    though I don't know why.
626                  */
627                 tny_folder_poke_status (folder);
628         
629                 g_object_unref (folder);
630         }
631         
632         if (account)
633                 g_object_unref (account);
634                 
635         /* Refilter the header view explicitly, to make sure that 
636          * deleted emails are really removed from view. 
637          * (They are not really deleted until contact is made with the server, 
638          * so they would appear with a strike-through until then):
639          */
640         if (main_win) { /* only needed when there's a mainwindow / UI */
641
642                 /* This is a GDK lock because we are an idle callback and
643                  * the code below is or does Gtk+ code */
644                 gdk_threads_enter (); /* CHECKED */
645                 ModestHeaderView *header_view = (ModestHeaderView *)
646                         modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(main_win),
647                                                              MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
648                 if (header_view && MODEST_IS_HEADER_VIEW (header_view))
649                         modest_header_view_refilter (header_view);
650                 gdk_threads_leave ();
651         }
652         
653         return res;
654 }
655
656
657
658
659 static gint
660 on_delete_message (GArray *arguments, gpointer data, osso_rpc_t *retval)
661 {
662         /* Get the arguments: */
663         osso_rpc_t val = g_array_index (arguments,
664                              osso_rpc_t,
665                              MODEST_DBUS_DELETE_MESSAGE_ARG_URI);
666         gchar *uri = g_strdup (val.value.s);
667         
668         /* Use g_idle to context-switch into the application's thread: */
669         g_idle_add(on_idle_delete_message, (gpointer)uri);
670         
671         return OSSO_OK;
672 }
673
674 static gboolean
675 on_idle_send_receive(gpointer user_data)
676 {
677         gboolean auto_update;
678         ModestWindow *main_win = NULL;
679
680         main_win =
681                 modest_window_mgr_get_main_window (modest_runtime_get_window_mgr (),
682                                                    FALSE); /* don't create */
683
684         gdk_threads_enter (); /* CHECKED */
685
686         /* Check if the autoupdate feature is on */
687         auto_update = modest_conf_get_bool (modest_runtime_get_conf (), 
688                                             MODEST_CONF_AUTO_UPDATE, NULL);
689
690         if (auto_update)
691                 /* Do send receive */
692                 modest_ui_actions_do_send_receive_all (main_win);
693         else
694                 /* Disable auto update */
695                 modest_platform_set_update_interval (0);
696
697         gdk_threads_leave (); /* CHECKED */
698         
699         return FALSE;
700 }
701
702
703 static gint 
704 on_dbus_method_dump (DBusConnection *con, DBusMessage *message)
705 {
706         gchar *str;
707         gchar *op_queue_str;
708         
709         DBusMessage *reply;
710         dbus_uint32_t serial = 0;
711
712         /* operations queue; */
713         op_queue_str = modest_mail_operation_queue_to_string
714                 (modest_runtime_get_mail_operation_queue ());
715                 
716         str = g_strdup_printf ("\nmodest debug dump\n"
717                                "=================\n"
718                                "status: %s\n"
719                                "%s\n",
720                                tny_device_is_online (modest_runtime_get_device ()) ? "online" : "offline",
721                                op_queue_str);
722         g_free (op_queue_str);
723         
724         g_printerr (str);
725         
726         reply = dbus_message_new_method_return (message);
727         if (reply) {
728                 dbus_message_append_args (reply,
729                                           DBUS_TYPE_STRING, &str,
730                                           DBUS_TYPE_INVALID);
731                 dbus_connection_send (con, reply, &serial);
732                 dbus_connection_flush (con);
733                 dbus_message_unref (reply);
734         }
735         
736         g_free (str);
737         return OSSO_OK;
738 }
739
740
741 static gint 
742 on_send_receive(GArray *arguments, gpointer data, osso_rpc_t * retval)
743 {       
744         /* Use g_idle to context-switch into the application's thread: */
745         g_idle_add(on_idle_send_receive, NULL);
746         
747         return OSSO_OK;
748 }
749
750 static gboolean
751 on_idle_open_default_inbox(gpointer user_data)
752 {
753         ModestWindow *main_win;
754         GtkWidget *folder_view;
755         
756         if (!check_and_offer_account_creation ()) /* this has it's only lock already */
757                 return FALSE;
758
759         /* This is a GDK lock because we are an idle callback and
760          * the code below is or does Gtk+ code */
761         gdk_threads_enter (); /* CHECKED */
762
763         main_win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr (),
764                                                       TRUE); /* create if non-existent */
765         if (!main_win) {
766                 g_warning ("%s: BUG: no main window", __FUNCTION__);
767                 gdk_threads_leave (); /* CHECKED */
768                 return FALSE; /* don't call me again */
769         }
770                 
771         /* Get the folder view */
772         folder_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (main_win),
773                                                            MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
774         modest_folder_view_select_first_inbox_or_local (MODEST_FOLDER_VIEW (folder_view));
775         
776         gdk_threads_leave (); /* CHECKED */
777         
778         /* This D-Bus method is obviously meant to result in the UI being visible,
779          * so show it, by calling this idle handler directly: */
780         on_idle_top_application(user_data);
781         
782         return FALSE; /* Do not call this callback again. */
783 }
784
785 static gint 
786 on_open_default_inbox(GArray * arguments, gpointer data, osso_rpc_t * retval)
787 {
788         /* Use g_idle to context-switch into the application's thread: */
789         g_idle_add(on_idle_open_default_inbox, NULL);
790         
791         return OSSO_OK;
792 }
793
794
795 static gboolean 
796 on_idle_top_application (gpointer user_data)
797 {
798         ModestWindow *main_win;
799         
800         /* This is a GDK lock because we are an idle callback and
801          * the code below is or does Gtk+ code */
802
803         gdk_threads_enter (); /* CHECKED */
804         
805         main_win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr (),
806                                                       TRUE); /* create if non-existent */
807         if (main_win) {
808                 /* Ideally, we would just use gtk_widget_show(), 
809                  * but this widget is not coded correctly to support that: */
810                 gtk_widget_show_all (GTK_WIDGET (main_win));
811                 gtk_window_present (GTK_WINDOW (main_win));
812         } else
813                 g_warning ("%s: BUG: no main window", __FUNCTION__);
814
815         gdk_threads_leave (); /* CHECKED */
816         
817         return FALSE; /* Do not call this callback again. */
818 }
819
820 static gint 
821 on_top_application(GArray * arguments, gpointer data, osso_rpc_t * retval)
822 {
823         /* Use g_idle to context-switch into the application's thread: */
824         g_idle_add(on_idle_top_application, NULL);
825         
826         return OSSO_OK;
827 }
828                       
829 /* Callback for normal D-BUS messages */
830 gint 
831 modest_dbus_req_handler(const gchar * interface, const gchar * method,
832                         GArray * arguments, gpointer data,
833                         osso_rpc_t * retval)
834 {
835         if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_MAIL_TO) == 0) {
836                 if (arguments->len != MODEST_DBUS_MAIL_TO_ARGS_COUNT)
837                         goto param_error;
838                 return on_mail_to (arguments, data, retval);            
839         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_OPEN_MESSAGE) == 0) {
840                 if (arguments->len != MODEST_DBUS_OPEN_MESSAGE_ARGS_COUNT)
841                         goto param_error;
842                 return on_open_message (arguments, data, retval);
843         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_SEND_RECEIVE) == 0) {
844                 if (arguments->len != 0)
845                         goto param_error;
846                 return on_send_receive (arguments, data, retval);
847         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_COMPOSE_MAIL) == 0) {
848                 if (arguments->len != MODEST_DBUS_COMPOSE_MAIL_ARGS_COUNT)
849                         goto param_error;
850                 return on_compose_mail (arguments, data, retval);
851         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_DELETE_MESSAGE) == 0) {
852                 if (arguments->len != MODEST_DBUS_DELETE_MESSAGE_ARGS_COUNT)
853                         goto param_error;
854                 return on_delete_message (arguments,data, retval);
855         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_OPEN_DEFAULT_INBOX) == 0) {
856                 if (arguments->len != 0)
857                         goto param_error;
858                 return on_open_default_inbox (arguments, data, retval);
859         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_TOP_APPLICATION) == 0) {
860                 if (arguments->len != 0)
861                         goto param_error;
862                 return on_top_application (arguments, data, retval); 
863         } else { 
864                 /* We need to return INVALID here so
865                  * libosso will return DBUS_HANDLER_RESULT_NOT_YET_HANDLED,
866                  * so that our modest_dbus_req_filter will then be tried instead.
867                  * */
868                 return OSSO_INVALID;
869         }
870  param_error:
871         /* Notify error in D-Bus method */
872         g_idle_add (notify_error_in_dbus_callback, NULL);
873         return OSSO_ERROR;
874 }
875                                          
876 /* A complex D-Bus type (like a struct),
877  * used to return various information about a search hit.
878  */
879 #define SEARCH_HIT_DBUS_TYPE \
880         DBUS_STRUCT_BEGIN_CHAR_AS_STRING \
881         DBUS_TYPE_STRING_AS_STRING /* msgid */ \
882         DBUS_TYPE_STRING_AS_STRING /* subject */ \
883         DBUS_TYPE_STRING_AS_STRING /* folder */ \
884         DBUS_TYPE_STRING_AS_STRING /* sender */ \
885         DBUS_TYPE_UINT64_AS_STRING /* msize */ \
886         DBUS_TYPE_BOOLEAN_AS_STRING /* has_attachment */ \
887         DBUS_TYPE_BOOLEAN_AS_STRING /* is_unread */ \
888         DBUS_TYPE_INT64_AS_STRING /* timestamp */ \
889         DBUS_STRUCT_END_CHAR_AS_STRING
890
891 static DBusMessage *
892 search_result_to_message (DBusMessage *reply,
893                            GList       *hits)
894 {
895         DBusMessageIter iter;
896         DBusMessageIter array_iter;
897         GList          *hit_iter;
898
899         dbus_message_iter_init_append (reply, &iter); 
900         dbus_message_iter_open_container (&iter,
901                                           DBUS_TYPE_ARRAY,
902                                           SEARCH_HIT_DBUS_TYPE,
903                                           &array_iter); 
904
905         for (hit_iter = hits; hit_iter; hit_iter = hit_iter->next) {
906                 DBusMessageIter  struct_iter;
907                 ModestSearchResultHit *hit;
908                 char            *msg_url;
909                 const char      *subject;
910                 const char      *folder;
911                 const char      *sender;
912                 guint64          size;
913                 gboolean         has_attachment;
914                 gboolean         is_unread;
915                 gint64           ts;
916
917                 hit = (ModestSearchResultHit *) hit_iter->data;
918
919                 msg_url = hit->msgid;
920                 subject = hit->subject;
921                 folder  = hit->folder;
922                 sender  = hit->sender;
923                 size           = hit->msize;
924                 has_attachment = hit->has_attachment;
925                 is_unread      = hit->is_unread;
926                 ts             = hit->timestamp;
927
928                 g_debug ("DEBUG: %s: Adding hit: %s", __FUNCTION__, msg_url);   
929                 
930                 dbus_message_iter_open_container (&array_iter,
931                                                   DBUS_TYPE_STRUCT,
932                                                   NULL,
933                                                   &struct_iter);
934
935                 dbus_message_iter_append_basic (&struct_iter,
936                                                 DBUS_TYPE_STRING,
937                                                 &msg_url);
938
939                 dbus_message_iter_append_basic (&struct_iter,
940                                                 DBUS_TYPE_STRING,
941                                                 &subject); 
942
943                 dbus_message_iter_append_basic (&struct_iter,
944                                                 DBUS_TYPE_STRING,
945                                                 &folder);
946
947                 dbus_message_iter_append_basic (&struct_iter,
948                                                 DBUS_TYPE_STRING,
949                                                 &sender);
950
951                 dbus_message_iter_append_basic (&struct_iter,
952                                                 DBUS_TYPE_UINT64,
953                                                 &size);
954
955                 dbus_message_iter_append_basic (&struct_iter,
956                                                 DBUS_TYPE_BOOLEAN,
957                                                 &has_attachment);
958
959                 dbus_message_iter_append_basic (&struct_iter,
960                                                 DBUS_TYPE_BOOLEAN,
961                                                 &is_unread);
962                 
963                 dbus_message_iter_append_basic (&struct_iter,
964                                                 DBUS_TYPE_INT64,
965                                                 &ts);
966
967                 dbus_message_iter_close_container (&array_iter,
968                                                    &struct_iter); 
969
970                 g_free (hit->msgid);
971                 g_free (hit->subject);
972                 g_free (hit->folder);
973                 g_free (hit->sender);
974
975                 g_slice_free (ModestSearchResultHit, hit);
976         }
977
978         dbus_message_iter_close_container (&iter, &array_iter);
979
980         return reply;
981 }
982
983
984 static void
985 on_dbus_method_search (DBusConnection *con, DBusMessage *message)
986 {
987         ModestDBusSearchFlags dbus_flags;
988         DBusMessage  *reply = NULL;
989         dbus_bool_t  res;
990         dbus_int64_t sd_v;
991         dbus_int64_t ed_v;
992         dbus_int32_t flags_v;
993         dbus_uint32_t size_v;
994         const char *folder;
995         const char *query;
996         time_t start_date;
997         time_t end_date;
998         GList *hits;
999
1000         DBusError error;
1001         dbus_error_init (&error);
1002
1003         sd_v = ed_v = 0;
1004         flags_v = 0;
1005
1006         res = dbus_message_get_args (message,
1007                                      &error,
1008                                      DBUS_TYPE_STRING, &query,
1009                                      DBUS_TYPE_STRING, &folder, /* e.g. "INBOX/drafts": TODO: Use both an ID and a display name. */
1010                                      DBUS_TYPE_INT64, &sd_v,
1011                                      DBUS_TYPE_INT64, &ed_v,
1012                                      DBUS_TYPE_INT32, &flags_v,
1013                                      DBUS_TYPE_UINT32, &size_v,
1014                                      DBUS_TYPE_INVALID);
1015
1016         dbus_flags = (ModestDBusSearchFlags) flags_v;
1017         start_date = (time_t) sd_v;
1018         end_date = (time_t) ed_v;
1019
1020         ModestSearch search;
1021         memset (&search, 0, sizeof (search));
1022         
1023         /* Remember what folder we are searching in:
1024          *
1025          * Note that we don't copy the strings, 
1026          * because this struct will only be used for the lifetime of this function.
1027          */
1028         if (folder && g_str_has_prefix (folder, "MAND:")) {
1029                 search.folder = folder + strlen ("MAND:");
1030         } else if (folder && g_str_has_prefix (folder, "USER:")) {
1031                 search.folder = folder + strlen ("USER:");
1032         } else if (folder && g_str_has_prefix (folder, "MY:")) {
1033                 search.folder = folder + strlen ("MY:");
1034         } else {
1035                 search.folder = folder;
1036         }
1037
1038    /* Remember the text to search for: */
1039 #ifdef MODEST_HAVE_OGS
1040         search.query  = query;
1041 #endif
1042
1043         /* Other criteria: */
1044         search.start_date = start_date;
1045         search.end_date  = end_date;
1046         search.flags  = 0;
1047
1048         /* Text to serach for in various parts of the message: */
1049         if (dbus_flags & MODEST_DBUS_SEARCH_SUBJECT) {
1050                 search.flags |= MODEST_SEARCH_SUBJECT;
1051                 search.subject = query;
1052         }
1053
1054         if (dbus_flags & MODEST_DBUS_SEARCH_SENDER) {
1055                 search.flags |=  MODEST_SEARCH_SENDER;
1056                 search.from = query;
1057         }
1058
1059         if (dbus_flags & MODEST_DBUS_SEARCH_RECIPIENT) {
1060                 search.flags |= MODEST_SEARCH_RECIPIENT; 
1061                 search.recipient = query;
1062         }
1063
1064         if (dbus_flags & MODEST_DBUS_SEARCH_BODY) {
1065                 search.flags |=  MODEST_SEARCH_BODY; 
1066                 search.body = query;
1067         }
1068
1069         if (sd_v > 0) {
1070                 search.flags |= MODEST_SEARCH_BEFORE;
1071                 search.start_date = start_date;
1072         }
1073
1074         if (ed_v > 0) {
1075                 search.flags |= MODEST_SEARCH_AFTER;
1076                 search.end_date = end_date;
1077         }
1078
1079         if (size_v > 0) {
1080                 search.flags |= MODEST_SEARCH_SIZE;
1081                 search.minsize = size_v;
1082         }
1083
1084 #ifdef MODEST_HAVE_OGS
1085         search.flags |= MODEST_SEARCH_USE_OGS;
1086         g_debug ("%s: Starting search for %s", __FUNCTION__, search.query);
1087 #endif
1088
1089         /* Note that this currently gets folders and messages from the servers, 
1090          * which can take a long time. libmodest_dbus_client_search() can timeout, 
1091          * reporting no results, if this takes a long time: */
1092         hits = modest_search_all_accounts (&search);
1093
1094         reply = dbus_message_new_method_return (message);
1095
1096         search_result_to_message (reply, hits);
1097
1098         if (reply == NULL) {
1099                 g_warning ("%s: Could not create reply.", __FUNCTION__);
1100         }
1101
1102         if (reply) {
1103                 dbus_uint32_t serial = 0;
1104                 dbus_connection_send (con, reply, &serial);
1105         dbus_connection_flush (con);
1106         dbus_message_unref (reply);
1107         }
1108
1109         g_list_free (hits);
1110 }
1111
1112
1113 /* A complex D-Bus type (like a struct),
1114  * used to return various information about a folder.
1115  */
1116 #define GET_FOLDERS_RESULT_DBUS_TYPE \
1117         DBUS_STRUCT_BEGIN_CHAR_AS_STRING \
1118         DBUS_TYPE_STRING_AS_STRING /* Folder Name */ \
1119         DBUS_TYPE_STRING_AS_STRING /* Folder URI */ \
1120         DBUS_STRUCT_END_CHAR_AS_STRING
1121
1122 static DBusMessage *
1123 get_folders_result_to_message (DBusMessage *reply,
1124                            GList *folder_ids)
1125 {
1126         DBusMessageIter iter;   
1127         dbus_message_iter_init_append (reply, &iter); 
1128         
1129         DBusMessageIter array_iter;
1130         dbus_message_iter_open_container (&iter,
1131                                           DBUS_TYPE_ARRAY,
1132                                           GET_FOLDERS_RESULT_DBUS_TYPE,
1133                                           &array_iter); 
1134
1135         GList *list_iter = folder_ids;
1136         for (list_iter = folder_ids; list_iter; list_iter = list_iter->next) {
1137                 
1138                 const gchar *folder_name = (const gchar*)list_iter->data;
1139                 if (folder_name) {
1140                         /* g_debug ("DEBUG: %s: Adding folder: %s", __FUNCTION__, folder_name); */
1141                         
1142                         DBusMessageIter struct_iter;
1143                         dbus_message_iter_open_container (&array_iter,
1144                                                           DBUS_TYPE_STRUCT,
1145                                                           NULL,
1146                                                           &struct_iter);
1147         
1148                         /* name: */
1149                         dbus_message_iter_append_basic (&struct_iter,
1150                                                         DBUS_TYPE_STRING,
1151                                                         &folder_name); /* The string will be copied. */
1152                                                         
1153                         /* URI: This is maybe not needed by osso-global-search: */
1154                         const gchar *folder_uri = "TODO:unimplemented";
1155                         dbus_message_iter_append_basic (&struct_iter,
1156                                                         DBUS_TYPE_STRING,
1157                                                         &folder_uri); /* The string will be copied. */
1158         
1159                         dbus_message_iter_close_container (&array_iter,
1160                                                            &struct_iter); 
1161                 }
1162         }
1163
1164         dbus_message_iter_close_container (&iter, &array_iter);
1165
1166         return reply;
1167 }
1168
1169 static void
1170 add_single_folder_to_list (TnyFolder *folder, GList** list)
1171 {
1172         if (!folder)
1173                 return;
1174                 
1175         if (TNY_IS_MERGE_FOLDER (folder)) {
1176                 const gchar * folder_name;
1177                 /* Ignore these because their IDs ares
1178                  * a) not always unique or sensible.
1179                  * b) not human-readable, and currently need a human-readable 
1180                  *    ID here, because the osso-email-interface API does not allow 
1181                  *    us to return both an ID and a display name.
1182                  * 
1183                  * This is actually the merged outbox folder.
1184                  * We could hack our D-Bus API to understand "outbox" as the merged outboxes, 
1185                  * but that seems unwise. murrayc.
1186                  */
1187                 folder_name = tny_folder_get_name (folder);
1188                 if (folder_name && !strcmp (folder_name, "Outbox")) {
1189                         *list = g_list_append(*list, g_strdup ("MAND:outbox"));
1190                 }
1191                 return; 
1192         }
1193                 
1194         /* Add this folder to the list: */
1195         /*
1196         const gchar * folder_name = tny_folder_get_name (folder);
1197         if (folder_name)
1198                 *list = g_list_append(*list, g_strdup (folder_name));
1199         else {
1200         */
1201                 /* osso-global-search only uses one string,
1202                  * so ID is the only thing that could possibly identify a folder.
1203                  * TODO: osso-global search should probably be changed to 
1204                  * take an ID and a Name.
1205                  */
1206         const gchar * id =  tny_folder_get_id (folder);
1207         if (id && strlen(id)) {
1208                 const gchar *prefix = NULL;
1209                 TnyFolderType folder_type;
1210                         
1211                 /* dbus global search api expects a prefix identifying the type of
1212                  * folder here. Mandatory folders should have MAND: prefix, and
1213                  * other user created folders should have USER: prefix
1214                  */
1215                 folder_type = modest_tny_folder_guess_folder_type (folder);
1216                 switch (folder_type) {
1217                 case TNY_FOLDER_TYPE_INBOX:
1218                         prefix = "MY:";
1219                         break;
1220                 case TNY_FOLDER_TYPE_OUTBOX:
1221                 case TNY_FOLDER_TYPE_DRAFTS:
1222                 case TNY_FOLDER_TYPE_SENT:
1223                 case TNY_FOLDER_TYPE_ARCHIVE:
1224                         prefix = "MAND:";
1225                         break;
1226                 case TNY_FOLDER_TYPE_INVALID:
1227                         g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
1228                         return; /* don't add it */
1229                 default:
1230                         prefix = "USER:";
1231                         
1232                 }
1233                 
1234
1235                 *list = g_list_append(*list, g_strdup_printf ("%s%s", prefix, id));
1236         }
1237 }
1238
1239 static void
1240 add_folders_to_list (TnyFolderStore *folder_store, GList** list)
1241 {
1242         if (!folder_store)
1243                 return;
1244         
1245         /* Add this folder to the list: */
1246         if (TNY_IS_FOLDER (folder_store)) {
1247                 add_single_folder_to_list (TNY_FOLDER (folder_store), list);
1248         }       
1249                 
1250         /* Recurse into child folders: */
1251                 
1252         /* Get the folders list: */
1253         /*
1254         TnyFolderStoreQuery *query = tny_folder_store_query_new ();
1255         tny_folder_store_query_add_item (query, NULL, 
1256                 TNY_FOLDER_STORE_QUERY_OPTION_SUBSCRIBED);
1257         */
1258         TnyList *all_folders = tny_simple_list_new ();
1259         tny_folder_store_get_folders (folder_store,
1260                                       all_folders,
1261                                       NULL /* query */,
1262                                       NULL /* error */);
1263
1264         TnyIterator *iter = tny_list_create_iterator (all_folders);
1265         while (!tny_iterator_is_done (iter)) {
1266                 
1267                 /* Do not recurse, because the osso-global-search UI specification 
1268                  * does not seem to want the sub-folders, though that spec seems to 
1269                  * be generally unsuitable for Modest.
1270                  */
1271                 TnyFolder *folder = TNY_FOLDER (tny_iterator_get_current (iter));
1272                 if (folder) {
1273                         add_single_folder_to_list (TNY_FOLDER (folder), list);
1274                          
1275                         #if 0
1276                         if (TNY_IS_FOLDER_STORE (folder))
1277                                 add_folders_to_list (TNY_FOLDER_STORE (folder), list);
1278                         else {
1279                                 add_single_folder_to_list (TNY_FOLDER (folder), list);
1280                         }
1281                         #endif
1282                         
1283                         /* tny_iterator_get_current() gave us a reference. */
1284                         g_object_unref (folder);
1285                 }
1286                 
1287                 tny_iterator_next (iter);
1288         }
1289         g_object_unref (G_OBJECT (iter));
1290 }
1291
1292
1293 /* return >1 for a special folder, 0 for a user-folder */
1294 static gint
1295 get_rank (const gchar *folder)
1296 {
1297         if (strcmp (folder, "INBOX") == 0)
1298                 return 1;
1299         if (strcmp (folder, modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_SENT)) == 0)
1300                 return 2;
1301         if (strcmp (folder, modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_DRAFTS)) == 0)
1302                 return 3;
1303         if (strcmp (folder, modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_OUTBOX)) == 0)
1304                 return 4;
1305         return 0;
1306 }
1307
1308 static gint
1309 folder_name_compare_func (const gchar* folder1, const gchar* folder2)
1310 {
1311         gint r1 = get_rank (folder1);
1312         gint r2 = get_rank (folder2);
1313
1314         if (r1 > 0 && r2 > 0)
1315                 return r1 - r2;
1316         if (r1 > 0 && r2 == 0)
1317                 return -1;
1318         if (r1 == 0 && r2 > 0)
1319                 return 1;
1320         else
1321                 return  modest_text_utils_utf8_strcmp (folder1, folder2, TRUE);
1322 }
1323
1324 /* FIXME: */
1325 /*   - we're still missing the outbox */
1326 /*   - we need to take care of localization (urgh) */
1327 /*   - what about 'All mail folders'? */
1328 static void
1329 on_dbus_method_get_folders (DBusConnection *con, DBusMessage *message)
1330 {
1331         DBusMessage  *reply = NULL;
1332         ModestAccountMgr *account_mgr = NULL;
1333         gchar *account_name = NULL;
1334         GList *folder_names = NULL;     
1335         TnyAccount *account_local = NULL;
1336         TnyAccount *account_mmc = NULL;
1337         
1338         /* Get the TnyStoreAccount so we can get the folders: */
1339         account_mgr = modest_runtime_get_account_mgr();
1340         account_name = modest_account_mgr_get_default_account (account_mgr);
1341         if (!account_name) {
1342                 g_printerr ("modest: no account found\n");
1343         }
1344         
1345         if (account_name) {
1346                 TnyAccount *account = NULL;
1347                 if (account_mgr) {
1348                         account = modest_tny_account_store_get_server_account (
1349                                 modest_runtime_get_account_store(), account_name, 
1350                                 TNY_ACCOUNT_TYPE_STORE);
1351                 }
1352                 
1353                 if (!account) {
1354                         g_printerr ("modest: failed to get tny account folder'%s'\n", account_name);
1355                 } 
1356                 
1357                 printf("DEBUG: %s: Getting folders for account name=%s\n", __FUNCTION__, account_name);
1358                 g_free (account_name);
1359                 account_name = NULL;
1360                 
1361                 add_folders_to_list (TNY_FOLDER_STORE (account), &folder_names);
1362         
1363                 g_object_unref (account);
1364                 account = NULL;
1365         }
1366         
1367         /* Also add the folders from the local folders account,
1368          * because they are (currently) used with all accounts:
1369          * TODO: This is not working. It seems to get only the Merged Folder (with an ID of "" (not NULL)).
1370          */
1371         account_local = 
1372                 modest_tny_account_store_get_local_folders_account (modest_runtime_get_account_store());
1373         add_folders_to_list (TNY_FOLDER_STORE (account_local), &folder_names);
1374
1375         g_object_unref (account_local);
1376         account_local = NULL;
1377
1378         /* Obtain the mmc account */
1379         account_mmc = 
1380                 modest_tny_account_store_get_mmc_folders_account (modest_runtime_get_account_store());
1381         if (account_mmc) {
1382                 add_folders_to_list (TNY_FOLDER_STORE (account_mmc), &folder_names);
1383                 g_object_unref (account_mmc);
1384                 account_mmc = NULL;
1385         }
1386
1387         /* specs require us to sort the folder names, although
1388          * this is really not the place to do that...
1389          */
1390         folder_names = g_list_sort (folder_names,
1391                                     (GCompareFunc)folder_name_compare_func);
1392
1393         /* Put the result in a DBus reply: */
1394         reply = dbus_message_new_method_return (message);
1395
1396         get_folders_result_to_message (reply, folder_names);
1397
1398         if (reply == NULL) {
1399                 g_warning ("%s: Could not create reply.", __FUNCTION__);
1400         }
1401
1402         if (reply) {
1403                 dbus_uint32_t serial = 0;
1404                 dbus_connection_send (con, reply, &serial);
1405         dbus_connection_flush (con);
1406         dbus_message_unref (reply);
1407         }
1408
1409         g_list_foreach (folder_names, (GFunc)g_free, NULL);
1410         g_list_free (folder_names);
1411 }
1412
1413
1414 /** This D-Bus handler is used when the main osso-rpc 
1415  * D-Bus handler has not handled something.
1416  * We use this for D-Bus methods that need to use more complex types 
1417  * than osso-rpc supports.
1418  */
1419 DBusHandlerResult
1420 modest_dbus_req_filter (DBusConnection *con,
1421                         DBusMessage    *message,
1422                         void           *user_data)
1423 {
1424         gboolean handled = FALSE;
1425
1426         if (dbus_message_is_method_call (message,
1427                                          MODEST_DBUS_IFACE,
1428                                          MODEST_DBUS_METHOD_SEARCH)) {
1429                 on_dbus_method_search (con, message);
1430                 handled = TRUE;                         
1431         } else if (dbus_message_is_method_call (message,
1432                                                 MODEST_DBUS_IFACE,
1433                                                 MODEST_DBUS_METHOD_GET_FOLDERS)) {
1434                 on_dbus_method_get_folders (con, message);
1435                 handled = TRUE;                         
1436         } else if (dbus_message_is_method_call (message,
1437                                                 MODEST_DBUS_IFACE,
1438                                                 MODEST_DBUS_METHOD_DUMP)) {
1439                 on_dbus_method_dump (con, message);
1440                 handled = TRUE;
1441         } else {
1442                 /* Note that this mentions methods that were already handled in modest_dbus_req_handler(). */
1443                 /* 
1444                 g_debug ("  debug: %s: Unexpected (maybe already handled) D-Bus method:\n   Interface=%s, Member=%s\n", 
1445                         __FUNCTION__, dbus_message_get_interface (message),
1446                         dbus_message_get_member(message));
1447                 */
1448         }
1449         
1450         return (handled ? 
1451                 DBUS_HANDLER_RESULT_HANDLED :
1452                 DBUS_HANDLER_RESULT_NOT_YET_HANDLED);
1453 }
1454
1455 static gboolean
1456 notify_error_in_dbus_callback (gpointer user_data)
1457 {
1458         ModestMailOperation *mail_op;
1459         ModestMailOperationQueue *mail_op_queue;
1460
1461         mail_op = modest_mail_operation_new (NULL);
1462         mail_op_queue = modest_runtime_get_mail_operation_queue ();
1463
1464         /* Issues a noop operation in order to force the queue to emit
1465            the "queue-empty" signal to allow modest to quit */
1466         modest_mail_operation_queue_add (mail_op_queue, mail_op);
1467         modest_mail_operation_noop (mail_op);
1468         g_object_unref (mail_op);
1469
1470         return FALSE;
1471 }
1472
1473 static gboolean
1474 notify_msg_not_found_in_idle (gpointer user_data)
1475 {
1476         modest_platform_run_information_dialog (NULL, _("mail_ni_ui_folder_get_msg_folder_error"));
1477
1478         return FALSE;
1479 }