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