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