* Fixes NB#63571, connection dialog is offered if we try to create a folder in...
[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 static gint 
703 on_send_receive(GArray *arguments, gpointer data, osso_rpc_t * retval)
704 {       
705         /* Use g_idle to context-switch into the application's thread: */
706         g_idle_add(on_idle_send_receive, NULL);
707         
708         return OSSO_OK;
709 }
710
711 static gboolean
712 on_idle_open_default_inbox(gpointer user_data)
713 {
714         ModestWindow *main_win;
715         GtkWidget *folder_view;
716         
717         if (!check_and_offer_account_creation ()) /* this has it's only lock already */
718                 return FALSE;
719
720         /* This is a GDK lock because we are an idle callback and
721          * the code below is or does Gtk+ code */
722         gdk_threads_enter (); /* CHECKED */
723
724         main_win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr (),
725                                                       TRUE); /* create if non-existent */
726         if (!main_win) {
727                 g_warning ("%s: BUG: no main window", __FUNCTION__);
728                 gdk_threads_leave (); /* CHECKED */
729                 return FALSE; /* don't call me again */
730         }
731                 
732         /* Get the folder view */
733         folder_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (main_win),
734                                                            MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
735         modest_folder_view_select_first_inbox_or_local (MODEST_FOLDER_VIEW (folder_view));
736         
737         gdk_threads_leave (); /* CHECKED */
738         
739         /* This D-Bus method is obviously meant to result in the UI being visible,
740          * so show it, by calling this idle handler directly: */
741         on_idle_top_application(user_data);
742         
743         return FALSE; /* Do not call this callback again. */
744 }
745
746 static gint 
747 on_open_default_inbox(GArray * arguments, gpointer data, osso_rpc_t * retval)
748 {
749         /* Use g_idle to context-switch into the application's thread: */
750         g_idle_add(on_idle_open_default_inbox, NULL);
751         
752         return OSSO_OK;
753 }
754
755
756 static gboolean 
757 on_idle_top_application (gpointer user_data)
758 {
759         ModestWindow *main_win;
760         
761         /* This is a GDK lock because we are an idle callback and
762          * the code below is or does Gtk+ code */
763
764         gdk_threads_enter (); /* CHECKED */
765         
766         main_win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr (),
767                                                       TRUE); /* create if non-existent */
768         if (main_win) {
769                 /* Ideally, we would just use gtk_widget_show(), 
770                  * but this widget is not coded correctly to support that: */
771                 gtk_widget_show_all (GTK_WIDGET (main_win));
772                 gtk_window_present (GTK_WINDOW (main_win));
773         } else
774                 g_warning ("%s: BUG: no main window", __FUNCTION__);
775
776         gdk_threads_leave (); /* CHECKED */
777         
778         return FALSE; /* Do not call this callback again. */
779 }
780
781 static gint 
782 on_top_application(GArray * arguments, gpointer data, osso_rpc_t * retval)
783 {
784         /* Use g_idle to context-switch into the application's thread: */
785         g_idle_add(on_idle_top_application, NULL);
786         
787         return OSSO_OK;
788 }
789                       
790 /* Callback for normal D-BUS messages */
791 gint 
792 modest_dbus_req_handler(const gchar * interface, const gchar * method,
793                         GArray * arguments, gpointer data,
794                         osso_rpc_t * retval)
795 {
796         if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_MAIL_TO) == 0) {
797                 if (arguments->len != MODEST_DBUS_MAIL_TO_ARGS_COUNT)
798                         goto param_error;
799                 return on_mail_to (arguments, data, retval);            
800         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_OPEN_MESSAGE) == 0) {
801                 if (arguments->len != MODEST_DBUS_OPEN_MESSAGE_ARGS_COUNT)
802                         goto param_error;
803                 return on_open_message (arguments, data, retval);
804         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_SEND_RECEIVE) == 0) {
805                 if (arguments->len != 0)
806                         goto param_error;
807                 return on_send_receive (arguments, data, retval);
808         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_COMPOSE_MAIL) == 0) {
809                 if (arguments->len != MODEST_DBUS_COMPOSE_MAIL_ARGS_COUNT)
810                         goto param_error;
811                 return on_compose_mail (arguments, data, retval);
812         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_DELETE_MESSAGE) == 0) {
813                 if (arguments->len != MODEST_DBUS_DELETE_MESSAGE_ARGS_COUNT)
814                         goto param_error;
815                 return on_delete_message (arguments,data, retval);
816         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_OPEN_DEFAULT_INBOX) == 0) {
817                 if (arguments->len != 0)
818                         goto param_error;
819                 return on_open_default_inbox (arguments, data, retval);
820         } else if (g_ascii_strcasecmp (method, MODEST_DBUS_METHOD_TOP_APPLICATION) == 0) {
821                 if (arguments->len != 0)
822                         goto param_error;
823                 return on_top_application (arguments, data, retval);
824         } else { 
825                 /* We need to return INVALID here so
826                  * libosso will return DBUS_HANDLER_RESULT_NOT_YET_HANDLED,
827                  * so that our modest_dbus_req_filter will then be tried instead.
828                  * */
829                 return OSSO_INVALID;
830         }
831  param_error:
832         /* Notify error in D-Bus method */
833         g_idle_add (notify_error_in_dbus_callback, NULL);
834         return OSSO_ERROR;
835 }
836                                          
837 /* A complex D-Bus type (like a struct),
838  * used to return various information about a search hit.
839  */
840 #define SEARCH_HIT_DBUS_TYPE \
841         DBUS_STRUCT_BEGIN_CHAR_AS_STRING \
842         DBUS_TYPE_STRING_AS_STRING /* msgid */ \
843         DBUS_TYPE_STRING_AS_STRING /* subject */ \
844         DBUS_TYPE_STRING_AS_STRING /* folder */ \
845         DBUS_TYPE_STRING_AS_STRING /* sender */ \
846         DBUS_TYPE_UINT64_AS_STRING /* msize */ \
847         DBUS_TYPE_BOOLEAN_AS_STRING /* has_attachment */ \
848         DBUS_TYPE_BOOLEAN_AS_STRING /* is_unread */ \
849         DBUS_TYPE_INT64_AS_STRING /* timestamp */ \
850         DBUS_STRUCT_END_CHAR_AS_STRING
851
852 static DBusMessage *
853 search_result_to_message (DBusMessage *reply,
854                            GList       *hits)
855 {
856         DBusMessageIter iter;
857         DBusMessageIter array_iter;
858         GList          *hit_iter;
859
860         dbus_message_iter_init_append (reply, &iter); 
861         dbus_message_iter_open_container (&iter,
862                                           DBUS_TYPE_ARRAY,
863                                           SEARCH_HIT_DBUS_TYPE,
864                                           &array_iter); 
865
866         for (hit_iter = hits; hit_iter; hit_iter = hit_iter->next) {
867                 DBusMessageIter  struct_iter;
868                 ModestSearchResultHit *hit;
869                 char            *msg_url;
870                 const char      *subject;
871                 const char      *folder;
872                 const char      *sender;
873                 guint64          size;
874                 gboolean         has_attachment;
875                 gboolean         is_unread;
876                 gint64           ts;
877
878                 hit = (ModestSearchResultHit *) hit_iter->data;
879
880                 msg_url = hit->msgid;
881                 subject = hit->subject;
882                 folder  = hit->folder;
883                 sender  = hit->sender;
884                 size           = hit->msize;
885                 has_attachment = hit->has_attachment;
886                 is_unread      = hit->is_unread;
887                 ts             = hit->timestamp;
888
889                 g_debug ("DEBUG: %s: Adding hit: %s", __FUNCTION__, msg_url);   
890                 
891                 dbus_message_iter_open_container (&array_iter,
892                                                   DBUS_TYPE_STRUCT,
893                                                   NULL,
894                                                   &struct_iter);
895
896                 dbus_message_iter_append_basic (&struct_iter,
897                                                 DBUS_TYPE_STRING,
898                                                 &msg_url);
899
900                 dbus_message_iter_append_basic (&struct_iter,
901                                                 DBUS_TYPE_STRING,
902                                                 &subject); 
903
904                 dbus_message_iter_append_basic (&struct_iter,
905                                                 DBUS_TYPE_STRING,
906                                                 &folder);
907
908                 dbus_message_iter_append_basic (&struct_iter,
909                                                 DBUS_TYPE_STRING,
910                                                 &sender);
911
912                 dbus_message_iter_append_basic (&struct_iter,
913                                                 DBUS_TYPE_UINT64,
914                                                 &size);
915
916                 dbus_message_iter_append_basic (&struct_iter,
917                                                 DBUS_TYPE_BOOLEAN,
918                                                 &has_attachment);
919
920                 dbus_message_iter_append_basic (&struct_iter,
921                                                 DBUS_TYPE_BOOLEAN,
922                                                 &is_unread);
923                 
924                 dbus_message_iter_append_basic (&struct_iter,
925                                                 DBUS_TYPE_INT64,
926                                                 &ts);
927
928                 dbus_message_iter_close_container (&array_iter,
929                                                    &struct_iter); 
930
931                 g_free (hit->msgid);
932                 g_free (hit->subject);
933                 g_free (hit->folder);
934                 g_free (hit->sender);
935
936                 g_slice_free (ModestSearchResultHit, hit);
937         }
938
939         dbus_message_iter_close_container (&iter, &array_iter);
940
941         return reply;
942 }
943
944
945 static void
946 on_dbus_method_search (DBusConnection *con, DBusMessage *message)
947 {
948         ModestDBusSearchFlags dbus_flags;
949         DBusMessage  *reply = NULL;
950         dbus_bool_t  res;
951         dbus_int64_t sd_v;
952         dbus_int64_t ed_v;
953         dbus_int32_t flags_v;
954         dbus_uint32_t size_v;
955         const char *folder;
956         const char *query;
957         time_t start_date;
958         time_t end_date;
959         GList *hits;
960
961         DBusError error;
962         dbus_error_init (&error);
963
964         sd_v = ed_v = 0;
965         flags_v = 0;
966
967         res = dbus_message_get_args (message,
968                                      &error,
969                                      DBUS_TYPE_STRING, &query,
970                                      DBUS_TYPE_STRING, &folder, /* e.g. "INBOX/drafts": TODO: Use both an ID and a display name. */
971                                      DBUS_TYPE_INT64, &sd_v,
972                                      DBUS_TYPE_INT64, &ed_v,
973                                      DBUS_TYPE_INT32, &flags_v,
974                                      DBUS_TYPE_UINT32, &size_v,
975                                      DBUS_TYPE_INVALID);
976
977         dbus_flags = (ModestDBusSearchFlags) flags_v;
978         start_date = (time_t) sd_v;
979         end_date = (time_t) ed_v;
980
981         ModestSearch search;
982         memset (&search, 0, sizeof (search));
983         
984         /* Remember what folder we are searching in:
985          *
986          * Note that we don't copy the strings, 
987          * because this struct will only be used for the lifetime of this function.
988          */
989         if (folder && g_str_has_prefix (folder, "MAND:")) {
990                 search.folder = folder + strlen ("MAND:");
991         } else if (folder && g_str_has_prefix (folder, "USER:")) {
992                 search.folder = folder + strlen ("USER:");
993         } else if (folder && g_str_has_prefix (folder, "MY:")) {
994                 search.folder = folder + strlen ("MY:");
995         } else {
996                 search.folder = folder;
997         }
998
999    /* Remember the text to search for: */
1000 #ifdef MODEST_HAVE_OGS
1001         search.query  = query;
1002 #endif
1003
1004         /* Other criteria: */
1005         search.start_date = start_date;
1006         search.end_date  = end_date;
1007         search.flags  = 0;
1008
1009         /* Text to serach for in various parts of the message: */
1010         if (dbus_flags & MODEST_DBUS_SEARCH_SUBJECT) {
1011                 search.flags |= MODEST_SEARCH_SUBJECT;
1012                 search.subject = query;
1013         }
1014
1015         if (dbus_flags & MODEST_DBUS_SEARCH_SENDER) {
1016                 search.flags |=  MODEST_SEARCH_SENDER;
1017                 search.from = query;
1018         }
1019
1020         if (dbus_flags & MODEST_DBUS_SEARCH_RECIPIENT) {
1021                 search.flags |= MODEST_SEARCH_RECIPIENT; 
1022                 search.recipient = query;
1023         }
1024
1025         if (dbus_flags & MODEST_DBUS_SEARCH_BODY) {
1026                 search.flags |=  MODEST_SEARCH_BODY; 
1027                 search.body = query;
1028         }
1029
1030         if (sd_v > 0) {
1031                 search.flags |= MODEST_SEARCH_BEFORE;
1032                 search.start_date = start_date;
1033         }
1034
1035         if (ed_v > 0) {
1036                 search.flags |= MODEST_SEARCH_AFTER;
1037                 search.end_date = end_date;
1038         }
1039
1040         if (size_v > 0) {
1041                 search.flags |= MODEST_SEARCH_SIZE;
1042                 search.minsize = size_v;
1043         }
1044
1045 #ifdef MODEST_HAVE_OGS
1046         search.flags |= MODEST_SEARCH_USE_OGS;
1047         g_debug ("%s: Starting search for %s", __FUNCTION__, search.query);
1048 #endif
1049
1050         /* Note that this currently gets folders and messages from the servers, 
1051          * which can take a long time. libmodest_dbus_client_search() can timeout, 
1052          * reporting no results, if this takes a long time: */
1053         hits = modest_search_all_accounts (&search);
1054
1055         reply = dbus_message_new_method_return (message);
1056
1057         search_result_to_message (reply, hits);
1058
1059         if (reply == NULL) {
1060                 g_warning ("%s: Could not create reply.", __FUNCTION__);
1061         }
1062
1063         if (reply) {
1064                 dbus_uint32_t serial = 0;
1065                 dbus_connection_send (con, reply, &serial);
1066         dbus_connection_flush (con);
1067         dbus_message_unref (reply);
1068         }
1069
1070         g_list_free (hits);
1071 }
1072
1073
1074 /* A complex D-Bus type (like a struct),
1075  * used to return various information about a folder.
1076  */
1077 #define GET_FOLDERS_RESULT_DBUS_TYPE \
1078         DBUS_STRUCT_BEGIN_CHAR_AS_STRING \
1079         DBUS_TYPE_STRING_AS_STRING /* Folder Name */ \
1080         DBUS_TYPE_STRING_AS_STRING /* Folder URI */ \
1081         DBUS_STRUCT_END_CHAR_AS_STRING
1082
1083 static DBusMessage *
1084 get_folders_result_to_message (DBusMessage *reply,
1085                            GList *folder_ids)
1086 {
1087         DBusMessageIter iter;   
1088         dbus_message_iter_init_append (reply, &iter); 
1089         
1090         DBusMessageIter array_iter;
1091         dbus_message_iter_open_container (&iter,
1092                                           DBUS_TYPE_ARRAY,
1093                                           GET_FOLDERS_RESULT_DBUS_TYPE,
1094                                           &array_iter); 
1095
1096         GList *list_iter = folder_ids;
1097         for (list_iter = folder_ids; list_iter; list_iter = list_iter->next) {
1098                 
1099                 const gchar *folder_name = (const gchar*)list_iter->data;
1100                 if (folder_name) {
1101                         /* g_debug ("DEBUG: %s: Adding folder: %s", __FUNCTION__, folder_name); */
1102                         
1103                         DBusMessageIter struct_iter;
1104                         dbus_message_iter_open_container (&array_iter,
1105                                                           DBUS_TYPE_STRUCT,
1106                                                           NULL,
1107                                                           &struct_iter);
1108         
1109                         /* name: */
1110                         dbus_message_iter_append_basic (&struct_iter,
1111                                                         DBUS_TYPE_STRING,
1112                                                         &folder_name); /* The string will be copied. */
1113                                                         
1114                         /* URI: This is maybe not needed by osso-global-search: */
1115                         const gchar *folder_uri = "TODO:unimplemented";
1116                         dbus_message_iter_append_basic (&struct_iter,
1117                                                         DBUS_TYPE_STRING,
1118                                                         &folder_uri); /* The string will be copied. */
1119         
1120                         dbus_message_iter_close_container (&array_iter,
1121                                                            &struct_iter); 
1122                 }
1123         }
1124
1125         dbus_message_iter_close_container (&iter, &array_iter);
1126
1127         return reply;
1128 }
1129
1130 static void
1131 add_single_folder_to_list (TnyFolder *folder, GList** list)
1132 {
1133         if (!folder)
1134                 return;
1135                 
1136         if (TNY_IS_MERGE_FOLDER (folder)) {
1137                 const gchar * folder_name;
1138                 /* Ignore these because their IDs ares
1139                  * a) not always unique or sensible.
1140                  * b) not human-readable, and currently need a human-readable 
1141                  *    ID here, because the osso-email-interface API does not allow 
1142                  *    us to return both an ID and a display name.
1143                  * 
1144                  * This is actually the merged outbox folder.
1145                  * We could hack our D-Bus API to understand "outbox" as the merged outboxes, 
1146                  * but that seems unwise. murrayc.
1147                  */
1148                 folder_name = tny_folder_get_name (folder);
1149                 if (folder_name && !strcmp (folder_name, "Outbox")) {
1150                         *list = g_list_append(*list, g_strdup ("MAND:outbox"));
1151                 }
1152                 return; 
1153         }
1154                 
1155         /* Add this folder to the list: */
1156         /*
1157         const gchar * folder_name = tny_folder_get_name (folder);
1158         if (folder_name)
1159                 *list = g_list_append(*list, g_strdup (folder_name));
1160         else {
1161         */
1162                 /* osso-global-search only uses one string,
1163                  * so ID is the only thing that could possibly identify a folder.
1164                  * TODO: osso-global search should probably be changed to 
1165                  * take an ID and a Name.
1166                  */
1167         const gchar * id =  tny_folder_get_id (folder);
1168         if (id && strlen(id)) {
1169                 const gchar *prefix = NULL;
1170                 TnyFolderType folder_type;
1171                         
1172                 /* dbus global search api expects a prefix identifying the type of
1173                  * folder here. Mandatory folders should have MAND: prefix, and
1174                  * other user created folders should have USER: prefix
1175                  */
1176                 folder_type = modest_tny_folder_guess_folder_type (folder);
1177                 switch (folder_type) {
1178                 case TNY_FOLDER_TYPE_INBOX:
1179                         prefix = "MY:";
1180                         break;
1181                 case TNY_FOLDER_TYPE_OUTBOX:
1182                 case TNY_FOLDER_TYPE_DRAFTS:
1183                 case TNY_FOLDER_TYPE_SENT:
1184                 case TNY_FOLDER_TYPE_ARCHIVE:
1185                         prefix = "MAND:";
1186                         break;
1187                 case TNY_FOLDER_TYPE_INVALID:
1188                         g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
1189                         return; /* don't add it */
1190                 default:
1191                         prefix = "USER:";
1192                         
1193                 }
1194                 
1195
1196                 *list = g_list_append(*list, g_strdup_printf ("%s%s", prefix, id));
1197         }
1198 }
1199
1200 static void
1201 add_folders_to_list (TnyFolderStore *folder_store, GList** list)
1202 {
1203         if (!folder_store)
1204                 return;
1205         
1206         /* Add this folder to the list: */
1207         if (TNY_IS_FOLDER (folder_store)) {
1208                 add_single_folder_to_list (TNY_FOLDER (folder_store), list);
1209         }       
1210                 
1211         /* Recurse into child folders: */
1212                 
1213         /* Get the folders list: */
1214         /*
1215         TnyFolderStoreQuery *query = tny_folder_store_query_new ();
1216         tny_folder_store_query_add_item (query, NULL, 
1217                 TNY_FOLDER_STORE_QUERY_OPTION_SUBSCRIBED);
1218         */
1219         TnyList *all_folders = tny_simple_list_new ();
1220         tny_folder_store_get_folders (folder_store,
1221                                       all_folders,
1222                                       NULL /* query */,
1223                                       NULL /* error */);
1224
1225         TnyIterator *iter = tny_list_create_iterator (all_folders);
1226         while (!tny_iterator_is_done (iter)) {
1227                 
1228                 /* Do not recurse, because the osso-global-search UI specification 
1229                  * does not seem to want the sub-folders, though that spec seems to 
1230                  * be generally unsuitable for Modest.
1231                  */
1232                 TnyFolder *folder = TNY_FOLDER (tny_iterator_get_current (iter));
1233                 if (folder) {
1234                         add_single_folder_to_list (TNY_FOLDER (folder), list);
1235                          
1236                         #if 0
1237                         if (TNY_IS_FOLDER_STORE (folder))
1238                                 add_folders_to_list (TNY_FOLDER_STORE (folder), list);
1239                         else {
1240                                 add_single_folder_to_list (TNY_FOLDER (folder), list);
1241                         }
1242                         #endif
1243                         
1244                         /* tny_iterator_get_current() gave us a reference. */
1245                         g_object_unref (folder);
1246                 }
1247                 
1248                 tny_iterator_next (iter);
1249         }
1250         g_object_unref (G_OBJECT (iter));
1251 }
1252
1253
1254 /* return >1 for a special folder, 0 for a user-folder */
1255 static gint
1256 get_rank (const gchar *folder)
1257 {
1258         if (strcmp (folder, "INBOX") == 0)
1259                 return 1;
1260         if (strcmp (folder, modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_SENT)) == 0)
1261                 return 2;
1262         if (strcmp (folder, modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_DRAFTS)) == 0)
1263                 return 3;
1264         if (strcmp (folder, modest_local_folder_info_get_type_name(TNY_FOLDER_TYPE_OUTBOX)) == 0)
1265                 return 4;
1266         return 0;
1267 }
1268
1269 static gint
1270 folder_name_compare_func (const gchar* folder1, const gchar* folder2)
1271 {
1272         gint r1 = get_rank (folder1);
1273         gint r2 = get_rank (folder2);
1274
1275         if (r1 > 0 && r2 > 0)
1276                 return r1 - r2;
1277         if (r1 > 0 && r2 == 0)
1278                 return -1;
1279         if (r1 == 0 && r2 > 0)
1280                 return 1;
1281         else
1282                 return  modest_text_utils_utf8_strcmp (folder1, folder2, TRUE);
1283 }
1284
1285 /* FIXME: */
1286 /*   - we're still missing the outbox */
1287 /*   - we need to take care of localization (urgh) */
1288 /*   - what about 'All mail folders'? */
1289 static void
1290 on_dbus_method_get_folders (DBusConnection *con, DBusMessage *message)
1291 {
1292         DBusMessage  *reply = NULL;
1293         ModestAccountMgr *account_mgr = NULL;
1294         gchar *account_name = NULL;
1295         GList *folder_names = NULL;     
1296         TnyAccount *account_local = NULL;
1297         TnyAccount *account_mmc = NULL;
1298         
1299         /* Get the TnyStoreAccount so we can get the folders: */
1300         account_mgr = modest_runtime_get_account_mgr();
1301         account_name = modest_account_mgr_get_default_account (account_mgr);
1302         if (!account_name) {
1303                 g_printerr ("modest: no account found\n");
1304         }
1305         
1306         if (account_name) {
1307                 TnyAccount *account = NULL;
1308                 if (account_mgr) {
1309                         account = modest_tny_account_store_get_server_account (
1310                                 modest_runtime_get_account_store(), account_name, 
1311                                 TNY_ACCOUNT_TYPE_STORE);
1312                 }
1313                 
1314                 if (!account) {
1315                         g_printerr ("modest: failed to get tny account folder'%s'\n", account_name);
1316                 } 
1317                 
1318                 printf("DEBUG: %s: Getting folders for account name=%s\n", __FUNCTION__, account_name);
1319                 g_free (account_name);
1320                 account_name = NULL;
1321                 
1322                 add_folders_to_list (TNY_FOLDER_STORE (account), &folder_names);
1323         
1324                 g_object_unref (account);
1325                 account = NULL;
1326         }
1327         
1328         /* Also add the folders from the local folders account,
1329          * because they are (currently) used with all accounts:
1330          * TODO: This is not working. It seems to get only the Merged Folder (with an ID of "" (not NULL)).
1331          */
1332         account_local = 
1333                 modest_tny_account_store_get_local_folders_account (modest_runtime_get_account_store());
1334         add_folders_to_list (TNY_FOLDER_STORE (account_local), &folder_names);
1335
1336         g_object_unref (account_local);
1337         account_local = NULL;
1338
1339         /* Obtain the mmc account */
1340         account_mmc = 
1341                 modest_tny_account_store_get_mmc_folders_account (modest_runtime_get_account_store());
1342         if (account_mmc) {
1343                 add_folders_to_list (TNY_FOLDER_STORE (account_mmc), &folder_names);
1344                 g_object_unref (account_mmc);
1345                 account_mmc = NULL;
1346         }
1347
1348         /* specs require us to sort the folder names, although
1349          * this is really not the place to do that...
1350          */
1351         folder_names = g_list_sort (folder_names,
1352                                     (GCompareFunc)folder_name_compare_func);
1353
1354         /* Put the result in a DBus reply: */
1355         reply = dbus_message_new_method_return (message);
1356
1357         get_folders_result_to_message (reply, folder_names);
1358
1359         if (reply == NULL) {
1360                 g_warning ("%s: Could not create reply.", __FUNCTION__);
1361         }
1362
1363         if (reply) {
1364                 dbus_uint32_t serial = 0;
1365                 dbus_connection_send (con, reply, &serial);
1366         dbus_connection_flush (con);
1367         dbus_message_unref (reply);
1368         }
1369
1370         g_list_foreach (folder_names, (GFunc)g_free, NULL);
1371         g_list_free (folder_names);
1372 }
1373
1374
1375 /** This D-Bus handler is used when the main osso-rpc 
1376  * D-Bus handler has not handled something.
1377  * We use this for D-Bus methods that need to use more complex types 
1378  * than osso-rpc supports.
1379  */
1380 DBusHandlerResult
1381 modest_dbus_req_filter (DBusConnection *con,
1382                         DBusMessage    *message,
1383                         void           *user_data)
1384 {
1385         gboolean handled = FALSE;
1386
1387         if (dbus_message_is_method_call (message,
1388                                          MODEST_DBUS_IFACE,
1389                                          MODEST_DBUS_METHOD_SEARCH)) {
1390                 on_dbus_method_search (con, message);
1391                 handled = TRUE;                         
1392         } else if (dbus_message_is_method_call (message,
1393                                          MODEST_DBUS_IFACE,
1394                                          MODEST_DBUS_METHOD_GET_FOLDERS)) {
1395                 on_dbus_method_get_folders (con, message);
1396                 handled = TRUE;                         
1397         }
1398         else {
1399                 /* Note that this mentions methods that were already handled in modest_dbus_req_handler(). */
1400                 /* 
1401                 g_debug ("  debug: %s: Unexpected (maybe already handled) D-Bus method:\n   Interface=%s, Member=%s\n", 
1402                         __FUNCTION__, dbus_message_get_interface (message),
1403                         dbus_message_get_member(message));
1404                 */
1405         }
1406         
1407         return (handled ? 
1408                 DBUS_HANDLER_RESULT_HANDLED :
1409                 DBUS_HANDLER_RESULT_NOT_YET_HANDLED);
1410 }
1411
1412 static gboolean
1413 notify_error_in_dbus_callback (gpointer user_data)
1414 {
1415         ModestMailOperation *mail_op;
1416         ModestMailOperationQueue *mail_op_queue;
1417
1418         mail_op = modest_mail_operation_new (NULL);
1419         mail_op_queue = modest_runtime_get_mail_operation_queue ();
1420
1421         /* Issues a noop operation in order to force the queue to emit
1422            the "queue-empty" signal to allow modest to quit */
1423         modest_mail_operation_queue_add (mail_op_queue, mail_op);
1424         modest_mail_operation_noop (mail_op);
1425         g_object_unref (mail_op);
1426
1427         return FALSE;
1428 }
1429
1430 static gboolean
1431 notify_msg_not_found_in_idle (gpointer user_data)
1432 {
1433         modest_platform_run_information_dialog (NULL, _("mail_ni_ui_folder_get_msg_folder_error"));
1434
1435         return FALSE;
1436 }