* Fixed a leak reference
[modest] / src / modest-tny-account-store.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <string.h>
31 #include <glib/gi18n.h>
32
33 #include <tny-account.h>
34 #include <tny-account-store.h>
35 #include <tny-store-account.h>
36 #include <tny-error.h>
37 #include <tny-transport-account.h>
38 #include <tny-simple-list.h>
39 #include <tny-account-store.h>
40 #include <tny-camel-transport-account.h>
41 #include <tny-camel-imap-store-account.h>
42 #include <tny-camel-pop-store-account.h>
43
44 #include <modest-runtime.h>
45 #include <modest-marshal.h>
46 #include <modest-protocol-info.h>
47 #include <modest-local-folder-info.h>
48 #include <modest-tny-account.h>
49 #include <modest-tny-local-folders-account.h>
50 #include <modest-account-mgr.h>
51 #include <modest-account-mgr-helpers.h>
52 #include <widgets/modest-window-mgr.h>
53 #include <modest-account-settings-dialog.h>
54 #include <maemo/modest-maemo-utils.h>
55
56
57 #include "modest-tny-account-store.h"
58 #include "modest-tny-platform-factory.h"
59 #include <tny-gtk-lockable.h>
60 #include <camel/camel.h>
61 #include <modest-platform.h>
62
63 #ifdef MODEST_PLATFORM_MAEMO
64 #include <tny-maemo-conic-device.h>
65 #endif
66
67 #include <libgnomevfs/gnome-vfs-volume-monitor.h>
68
69 /* 'private'/'protected' functions */
70 static void    modest_tny_account_store_class_init   (ModestTnyAccountStoreClass *klass);
71 static void    modest_tny_account_store_finalize     (GObject *obj);
72 static void    modest_tny_account_store_instance_init (ModestTnyAccountStore *obj);
73 static void    modest_tny_account_store_init          (gpointer g, gpointer iface_data);
74 static void    modest_tny_account_store_base_init     (gpointer g_class);
75
76 static void    on_account_inserted         (ModestAccountMgr *acc_mgr, 
77                                             const gchar *account,
78                                             gpointer user_data);
79
80 static void    add_existing_accounts       (ModestTnyAccountStore *self);
81
82 static void    insert_account              (ModestTnyAccountStore *self,
83                                             const gchar *account,
84                                             gboolean notify);
85
86 static void    on_account_removed          (ModestAccountMgr *acc_mgr, 
87                                             const gchar *account,
88                                             gpointer user_data);
89
90 static gchar*  get_password                (TnyAccount *account, 
91                                             const gchar * prompt_not_used, 
92                                             gboolean *cancel);
93
94 static void    forget_password             (TnyAccount *account);
95
96 static void    on_vfs_volume_mounted       (GnomeVFSVolumeMonitor *volume_monitor, 
97                                             GnomeVFSVolume *volume, 
98                                             gpointer user_data);
99
100 static void    on_vfs_volume_unmounted     (GnomeVFSVolumeMonitor *volume_monitor, 
101                                             GnomeVFSVolume *volume, 
102                                             gpointer user_data);
103
104 static void    modest_tny_account_store_forget_password_in_memory (ModestTnyAccountStore *self, 
105                                                                    const gchar *server_account_name);
106
107 static void    add_connection_specific_transport_accounts         (ModestTnyAccountStore *self);
108
109 /* list my signals */
110 enum {
111         ACCOUNT_CHANGED_SIGNAL,
112         ACCOUNT_INSERTED_SIGNAL,
113         ACCOUNT_REMOVED_SIGNAL,
114
115         PASSWORD_REQUESTED_SIGNAL,
116         LAST_SIGNAL
117 };
118
119 typedef struct _ModestTnyAccountStorePrivate ModestTnyAccountStorePrivate;
120 struct _ModestTnyAccountStorePrivate {
121         gchar              *cache_dir;  
122         GHashTable         *password_hash;
123         GHashTable         *account_settings_dialog_hash;
124         ModestAccountMgr   *account_mgr;
125         TnySessionCamel    *session;
126         TnyDevice          *device;
127
128         gulong acc_inserted_handler;
129         gulong acc_changed_handler;
130         gulong acc_removed_handler;
131         gulong volume_mounted_handler;
132         gulong volume_unmounted_handler;
133         
134         /* We cache the lists of accounts here */
135         TnyList             *store_accounts;
136         TnyList             *transport_accounts;
137         TnyList             *store_accounts_outboxes;
138
139         /* Matches transport accounts and outbox folder */
140         GHashTable          *outbox_of_transport;
141 };
142
143 #define MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
144                                                       MODEST_TYPE_TNY_ACCOUNT_STORE, \
145                                                       ModestTnyAccountStorePrivate))
146
147 /* globals */
148 static GObjectClass *parent_class = NULL;
149
150 static guint signals[LAST_SIGNAL] = {0};
151
152 GType
153 modest_tny_account_store_get_type (void)
154 {
155         static GType my_type = 0;
156
157         if (!my_type) {
158                 static const GTypeInfo my_info = {
159                         sizeof(ModestTnyAccountStoreClass),
160                         modest_tny_account_store_base_init,     /* base init */
161                         NULL,           /* base finalize */
162                         (GClassInitFunc) modest_tny_account_store_class_init,
163                         NULL,           /* class finalize */
164                         NULL,           /* class data */
165                         sizeof(ModestTnyAccountStore),
166                         0,              /* n_preallocs */
167                         (GInstanceInitFunc) modest_tny_account_store_instance_init,
168                         NULL
169                 };
170
171                 static const GInterfaceInfo iface_info = {
172                         (GInterfaceInitFunc) modest_tny_account_store_init,
173                         NULL,         /* interface_finalize */
174                         NULL          /* interface_data */
175                 };
176                 /* hack hack */
177                 my_type = g_type_register_static (G_TYPE_OBJECT,
178                                                   "ModestTnyAccountStore",
179                                                   &my_info, 0);
180                 g_type_add_interface_static (my_type, TNY_TYPE_ACCOUNT_STORE,
181                                              &iface_info);
182         }
183         return my_type;
184 }
185
186
187 static void
188 modest_tny_account_store_base_init (gpointer g_class)
189 {
190         static gboolean tny_account_store_initialized = FALSE;
191
192         if (!tny_account_store_initialized) {
193
194                 signals[ACCOUNT_CHANGED_SIGNAL] =
195                         g_signal_new ("account_changed",
196                                       MODEST_TYPE_TNY_ACCOUNT_STORE,
197                                       G_SIGNAL_RUN_FIRST,
198                                       G_STRUCT_OFFSET (ModestTnyAccountStoreClass, account_changed),
199                                       NULL, NULL,
200                                       g_cclosure_marshal_VOID__OBJECT,
201                                       G_TYPE_NONE, 1, TNY_TYPE_ACCOUNT);
202
203                 signals[ACCOUNT_INSERTED_SIGNAL] =
204                         g_signal_new ("account_inserted",
205                                       MODEST_TYPE_TNY_ACCOUNT_STORE,
206                                       G_SIGNAL_RUN_FIRST,
207                                       G_STRUCT_OFFSET (ModestTnyAccountStoreClass, account_inserted),
208                                       NULL, NULL,
209                                       g_cclosure_marshal_VOID__OBJECT,
210                                       G_TYPE_NONE, 1, TNY_TYPE_ACCOUNT);
211                 
212                 signals[ACCOUNT_REMOVED_SIGNAL] =
213                         g_signal_new ("account_removed",
214                                       MODEST_TYPE_TNY_ACCOUNT_STORE,
215                                       G_SIGNAL_RUN_FIRST,
216                                       G_STRUCT_OFFSET (ModestTnyAccountStoreClass, account_removed),
217                                       NULL, NULL,
218                                       g_cclosure_marshal_VOID__OBJECT,
219                                       G_TYPE_NONE, 1, TNY_TYPE_ACCOUNT);
220                 
221 /*              signals[TNY_ACCOUNT_STORE_CONNECTING_FINISHED] = */
222 /*                      g_signal_new ("connecting_finished", */
223 /*                                    TNY_TYPE_ACCOUNT_STORE, */
224 /*                                    G_SIGNAL_RUN_FIRST, */
225 /*                                    G_STRUCT_OFFSET (TnyAccountStoreIface, connecting_finished), */
226 /*                                    NULL, NULL, */
227 /*                                    g_cclosure_marshal_VOID__VOID,  */
228 /*                                    G_TYPE_NONE, 0); */
229
230                 signals[PASSWORD_REQUESTED_SIGNAL] =
231                         g_signal_new ("password_requested",
232                                       MODEST_TYPE_TNY_ACCOUNT_STORE,
233                                       G_SIGNAL_RUN_FIRST,
234                                       G_STRUCT_OFFSET(ModestTnyAccountStoreClass, password_requested),
235                                       NULL, NULL,
236                                       modest_marshal_VOID__STRING_POINTER_POINTER_POINTER_POINTER,
237                                       G_TYPE_NONE, 5, G_TYPE_STRING, G_TYPE_POINTER, G_TYPE_POINTER, G_TYPE_POINTER,
238                                       G_TYPE_POINTER);          
239
240                 tny_account_store_initialized = TRUE;
241         }
242 }
243
244
245 static void
246 modest_tny_account_store_class_init (ModestTnyAccountStoreClass *klass)
247 {
248         GObjectClass *gobject_class;
249         gobject_class = (GObjectClass*) klass;
250
251         parent_class            = g_type_class_peek_parent (klass);
252         gobject_class->finalize = modest_tny_account_store_finalize;
253
254         g_type_class_add_private (gobject_class,
255                                   sizeof(ModestTnyAccountStorePrivate));
256 }
257      
258 static void
259 modest_tny_account_store_instance_init (ModestTnyAccountStore *obj)
260 {
261         GnomeVFSVolumeMonitor* monitor = NULL;
262         ModestTnyAccountStorePrivate *priv;
263
264         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(obj);
265
266         priv->cache_dir              = NULL;
267         priv->account_mgr            = NULL;
268         priv->session                = NULL;
269         priv->device                 = NULL;
270         
271         priv->outbox_of_transport = 
272                 g_hash_table_new_full (g_direct_hash,
273                                        g_direct_equal,
274                                        NULL,
275                                        NULL);
276
277         /* An in-memory store of passwords, 
278          * for passwords that are not remembered in the configuration,
279          * so they need to be asked for from the user once in each session:
280          */
281         priv->password_hash = g_hash_table_new_full (g_str_hash, g_str_equal,
282                                                      g_free, g_free);
283                                                              
284         /* A hash-map of modest account names to dialog pointers,
285          * so we can avoid showing the account settings twice for the same modest account: */                                 
286         priv->account_settings_dialog_hash = g_hash_table_new_full (g_str_hash, g_str_equal, 
287                                                                     g_free, NULL);
288         
289         /* Respond to volume mounts and unmounts, such 
290          * as the insertion/removal of the memory card: */
291         /* This is a singleton, so it does not need to be unrefed. */
292         monitor = gnome_vfs_get_volume_monitor();
293
294         priv->volume_mounted_handler = g_signal_connect (G_OBJECT(monitor), 
295                                                          "volume-mounted",
296                                                          G_CALLBACK(on_vfs_volume_mounted),
297                                                          obj);
298
299         priv->volume_unmounted_handler = g_signal_connect (G_OBJECT(monitor), "volume-unmounted",
300                                                            G_CALLBACK(on_vfs_volume_unmounted),
301                                                            obj);
302 }
303
304 /* disconnect the list of TnyAccounts */
305 static void
306 foreach_account_disconnect (gpointer data, 
307                             gpointer user_data)
308 {
309         tny_camel_account_set_online (TNY_CAMEL_ACCOUNT(data), FALSE, NULL);
310 }
311
312
313 static void
314 foreach_account_append_to_list (gpointer data, 
315                                 gpointer user_data)
316 {
317         TnyList *list;
318
319         list = TNY_LIST (user_data);
320         tny_list_append (list, G_OBJECT (data));
321 }
322
323 /********************************************************************/
324 /*           Control the state of the MMC local account             */
325 /********************************************************************/
326
327 /** Only call this if the memory card is really mounted.
328  */ 
329 static void
330 add_mmc_account(ModestTnyAccountStore *self, gboolean emit_insert_signal)
331 {
332         ModestTnyAccountStorePrivate *priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
333         g_return_if_fail (priv->session);
334         
335         TnyAccount *mmc_account = modest_tny_account_new_for_local_folders (priv->account_mgr, 
336                                                                         priv->session, 
337                                                                         MODEST_MCC1_VOLUMEPATH);
338
339         /* Add to the list of store accounts */
340         tny_list_append (priv->store_accounts, G_OBJECT (mmc_account));
341
342         if (emit_insert_signal) {
343                 g_signal_emit (G_OBJECT (self), 
344                                signals [ACCOUNT_INSERTED_SIGNAL],
345                                0, mmc_account);
346         }
347
348         /* Free */
349         g_object_unref (mmc_account);
350 }
351
352 static void
353 on_vfs_volume_mounted(GnomeVFSVolumeMonitor *volume_monitor, 
354                       GnomeVFSVolume *volume, 
355                       gpointer user_data)
356 {
357         ModestTnyAccountStore *self;
358         ModestTnyAccountStorePrivate *priv;
359  
360         gchar *uri = NULL;
361
362         self = MODEST_TNY_ACCOUNT_STORE(user_data);
363         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
364         
365         /* Check whether this was the external MMC1 card: */
366         uri = gnome_vfs_volume_get_activation_uri (volume);
367
368         if (uri && (!strcmp (uri, MODEST_MCC1_VOLUMEPATH_URI))) {
369                 add_mmc_account (self, TRUE /* emit the insert signal. */);
370         }
371         
372         g_free (uri);
373 }
374
375 static void
376 on_vfs_volume_unmounted(GnomeVFSVolumeMonitor *volume_monitor, 
377                         GnomeVFSVolume *volume, 
378                         gpointer user_data)
379 {
380         ModestTnyAccountStore *self;
381         ModestTnyAccountStorePrivate *priv;
382         gchar *uri = NULL;
383
384         self = MODEST_TNY_ACCOUNT_STORE(user_data);
385         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
386         
387         /* Check whether this was the external MMC1 card: */
388         uri = gnome_vfs_volume_get_activation_uri (volume);
389         if (uri && (strcmp (uri, MODEST_MCC1_VOLUMEPATH_URI) == 0)) {
390                 TnyAccount *mmc_account = NULL;
391                 gboolean found = FALSE;
392                 TnyIterator *iter = NULL;
393
394                 iter = tny_list_create_iterator (priv->store_accounts);
395                 while (!tny_iterator_is_done (iter) && !found) {
396                         TnyAccount *account;
397
398                         account = TNY_ACCOUNT (tny_iterator_get_current (iter));
399                         if (modest_tny_account_is_memory_card_account (account)) {
400                                 found = TRUE;
401                                 mmc_account = g_object_ref (account);
402                         }
403                         g_object_unref (account);
404                         tny_iterator_next (iter);
405                 }
406                 g_object_unref (iter);
407
408                 if (found) {
409                         /* Remove from the list */
410                         tny_list_remove (priv->store_accounts, G_OBJECT (mmc_account));
411                        
412                         /* Notify observers */
413                         g_signal_emit (G_OBJECT (self),
414                                        signals [ACCOUNT_REMOVED_SIGNAL],
415                                        0, mmc_account);
416
417                         g_object_unref (mmc_account);
418                 } else {
419                         g_warning ("%s: there was no store account for the unmounted MMC",
420                                    __FUNCTION__);
421                 }
422         }
423         g_free (uri);
424 }
425
426 /**
427  * modest_tny_account_store_forget_password_in_memory
428  * @self: a TnyAccountStore instance
429  * @account: A server account.
430  * 
431  * Forget any password stored in memory for this account.
432  * For instance, this should be called when the user has changed the password in the account settings.
433  */
434 static void
435 modest_tny_account_store_forget_password_in_memory (ModestTnyAccountStore *self, const gchar * server_account_name)
436 {
437         /* printf ("DEBUG: %s\n", __FUNCTION__); */
438         ModestTnyAccountStorePrivate *priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
439
440         if (server_account_name && priv->password_hash) {
441                 g_hash_table_remove (priv->password_hash, server_account_name);
442         }
443 }
444
445
446 static gboolean
447 update_tny_account_for_account (ModestTnyAccountStore *self, ModestAccountMgr *acc_mgr,
448                                 const gchar *account_name, TnyAccountType type)
449 {
450         ModestTnyAccountStorePrivate *priv;
451         TnyList* account_list;
452         gboolean found = FALSE;
453         TnyIterator *iter = NULL;
454
455         g_return_val_if_fail (self, FALSE);
456         g_return_val_if_fail (account_name, FALSE);
457         g_return_val_if_fail (type == TNY_ACCOUNT_TYPE_STORE || 
458                               type == TNY_ACCOUNT_TYPE_TRANSPORT,
459                               FALSE);
460
461         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
462         account_list = (type == TNY_ACCOUNT_TYPE_STORE ? priv->store_accounts : priv->transport_accounts);
463         
464         iter = tny_list_create_iterator (account_list);
465         while (!tny_iterator_is_done (iter) && !found) {
466                 TnyAccount *tny_account;
467                 tny_account = TNY_ACCOUNT (tny_iterator_get_current (iter));
468                 if (tny_account) {
469                         const gchar* parent_name =
470                                 modest_tny_account_get_parent_modest_account_name_for_server_account (tny_account);
471                         if (parent_name && strcmp (parent_name, account_name) == 0) {
472                                 found = TRUE;
473                                 modest_tny_account_update_from_account (tny_account, acc_mgr, account_name, type);
474                                 g_signal_emit (G_OBJECT(self), signals[ACCOUNT_CHANGED_SIGNAL], 0, tny_account);
475                         }
476                         g_object_unref (tny_account);
477                 }
478                 tny_iterator_next (iter);
479         }
480
481         if (iter)
482                 g_object_unref (iter);
483         
484         return found;
485 }
486
487
488 static void
489 on_account_changed (ModestAccountMgr *acc_mgr, 
490                     const gchar *account_name, 
491                     gpointer user_data)
492 {
493         ModestTnyAccountStore *self = MODEST_TNY_ACCOUNT_STORE(user_data);
494
495         g_debug ("DEBUG: modest: %s\n", __FUNCTION__);
496
497         /* Ignore the change if it's a change in the last_updated value */
498 //      if (key && g_str_has_suffix ((const gchar *) key, MODEST_ACCOUNT_LAST_UPDATED))
499 //              return;
500         
501         if (!update_tny_account_for_account (self, acc_mgr, account_name, TNY_ACCOUNT_TYPE_STORE))
502                 g_warning ("%s: failed to update store account for %s", __FUNCTION__, account_name);
503         if (!update_tny_account_for_account (self, acc_mgr, account_name, TNY_ACCOUNT_TYPE_TRANSPORT))
504                 g_warning ("%s: failed to update transport account for %s", __FUNCTION__, account_name);
505 }
506
507 static void 
508 on_account_settings_hide (GtkWidget *widget, gpointer user_data)
509 {
510         TnyAccount *account = (TnyAccount*)user_data;
511         
512         /* This is easier than using a struct for the user_data: */
513         ModestTnyAccountStore *self = modest_runtime_get_account_store();
514         ModestTnyAccountStorePrivate *priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
515         
516         const gchar *modest_account_name = 
517                         modest_tny_account_get_parent_modest_account_name_for_server_account (account);
518         if (modest_account_name)
519                 g_hash_table_remove (priv->account_settings_dialog_hash, modest_account_name);
520 }
521
522 static void 
523 show_password_warning_only ()
524 {
525         ModestWindow *main_window = 
526                                 modest_window_mgr_get_main_window (modest_runtime_get_window_mgr ());
527                                 
528         /* Show an explanatory temporary banner: */
529         hildon_banner_show_information ( 
530                 GTK_WIDGET(main_window), NULL, _("mcen_ib_username_pw_incorrect"));
531 }
532                 
533 static void 
534 show_wrong_password_dialog (TnyAccount *account)
535
536         /* This is easier than using a struct for the user_data: */
537         ModestTnyAccountStore *self = modest_runtime_get_account_store();
538         ModestTnyAccountStorePrivate *priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
539         
540         const gchar *modest_account_name = 
541                         modest_tny_account_get_parent_modest_account_name_for_server_account (account);
542         if (!modest_account_name) {
543                 g_warning ("%s: modest_tny_account_get_parent_modest_account_name_for_server_account() failed.\n", 
544                         __FUNCTION__);
545         }
546         
547         /* Check whether this window is already open,
548          * for instance because of a previous get_password() call: 
549          */
550         gpointer dialog_as_gpointer = NULL;
551         gboolean found = FALSE;
552         if (priv->account_settings_dialog_hash) {
553                 found = g_hash_table_lookup_extended (priv->account_settings_dialog_hash,
554                         modest_account_name, NULL, (gpointer*)&dialog_as_gpointer);
555         }
556         ModestAccountSettingsDialog *dialog = dialog_as_gpointer;
557                                         
558         ModestWindow *main_window = 
559                                 modest_window_mgr_get_main_window (modest_runtime_get_window_mgr ());
560
561         gboolean created_dialog = FALSE;
562         if (!found || !dialog) {
563                 dialog = modest_account_settings_dialog_new ();
564                 modest_account_settings_dialog_set_account_name (dialog, modest_account_name);
565                 modest_account_settings_dialog_switch_to_user_info (dialog);
566                 
567                 g_hash_table_insert (priv->account_settings_dialog_hash, g_strdup (modest_account_name), dialog);
568                 
569                 created_dialog = TRUE;
570         }
571         
572         /* Show an explanatory temporary banner: */
573         hildon_banner_show_information ( 
574                 GTK_WIDGET(dialog), NULL, _("mcen_ib_username_pw_incorrect"));
575                 
576         if (created_dialog) {
577                 /* Forget it when it closes: */
578                 g_signal_connect_object (G_OBJECT (dialog), "hide", G_CALLBACK (on_account_settings_hide), 
579                         account, 0);
580                         
581                 /* Show it and delete it when it closes: */
582                 modest_maemo_show_dialog_and_forget (GTK_WINDOW (main_window), GTK_DIALOG (dialog));
583         }
584         else {
585                 /* Just show it instead of showing it and deleting it when it closes,
586                  * though it is probably open already: */
587                 gtk_window_present (GTK_WINDOW (dialog));
588         }
589 }
590
591
592
593 static void
594 request_password_and_wait (ModestTnyAccountStore *account_store, 
595                                          const gchar* server_account_id,
596                                          gchar **username,
597                                          gchar **password,
598                                          gboolean *cancel, 
599                                          gboolean *remember)
600 {
601                         g_signal_emit (G_OBJECT(account_store), signals[PASSWORD_REQUESTED_SIGNAL], 0,
602                                server_account_id, /* server_account_name */
603                                username, password, cancel, remember);
604 }
605
606 /* This callback will be called by Tinymail when it needs the password
607  * from the user or the account settings.
608  * It can also call forget_password() before calling this,
609  * so that we clear wrong passwords out of our account settings.
610  * Note that TnyAccount here will be the server account. */
611 static gchar*
612 get_password (TnyAccount *account, const gchar * prompt_not_used, gboolean *cancel)
613 {
614         /* TODO: Settting cancel to FALSE does not actually cancel everything.
615          * We still get multiple requests afterwards, so we end up showing the 
616          * same dialogs repeatedly.
617          */
618          
619         printf ("DEBUG: modest: %s: prompt (not shown) = %s\n", __FUNCTION__, prompt_not_used);
620           
621         g_return_val_if_fail (account, NULL);
622           
623         const TnyAccountStore *account_store = NULL;
624         ModestTnyAccountStore *self = NULL;
625         ModestTnyAccountStorePrivate *priv;
626         gchar *username = NULL;
627         gchar *pwd = NULL;
628         gpointer pwd_ptr = NULL;
629         gboolean already_asked = FALSE;
630
631         /* Initialize the output parameter: */
632         if (cancel)
633                 *cancel = FALSE;
634                 
635         const gchar *server_account_name = tny_account_get_id (account);
636         account_store = TNY_ACCOUNT_STORE(g_object_get_data (G_OBJECT(account),
637                                                              "account_store"));
638
639         if (!server_account_name || !account_store) {
640                 g_warning ("modest: %s: could not retrieve account_store for account %s",
641                            __FUNCTION__, server_account_name ? server_account_name : "<NULL>");
642                 if (cancel)
643                         *cancel = TRUE;
644                 
645                 return NULL;
646         }
647
648         self = MODEST_TNY_ACCOUNT_STORE (account_store);
649         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
650         
651         /* This hash map stores passwords, including passwords that are not stored in gconf. */
652         /* Is it in the hash? if it's already there, it must be wrong... */
653         pwd_ptr = (gpointer)&pwd; /* pwd_ptr so the compiler does not complained about
654                                    * type-punned ptrs...*/
655         already_asked = priv->password_hash && 
656                                 g_hash_table_lookup_extended (priv->password_hash,
657                                                       server_account_name,
658                                                       NULL,
659                                                       (gpointer*)&pwd_ptr);
660                                                       
661         printf ("DEBUG: modest: %s: Already asked = %d\n", __FUNCTION__, already_asked);
662
663         /* If the password is not already there, try ModestConf */
664         if (!already_asked) {
665                 pwd  = modest_server_account_get_password (priv->account_mgr,
666                                                       server_account_name);
667                 g_hash_table_insert (priv->password_hash, g_strdup (server_account_name), g_strdup (pwd));
668         }
669
670         /* If it was already asked, it must have been wrong, so ask again */
671         if (already_asked || !pwd || strlen(pwd) == 0) {
672                 /* As per the UI spec, if no password was set in the account settings, 
673                  * ask for it now. But if the password is wrong in the account settings, 
674                  * then show a banner and the account settings dialog so it can be corrected:
675                  */
676                 const gboolean settings_have_password = 
677                         modest_server_account_get_has_password (priv->account_mgr, server_account_name);
678                 printf ("DEBUG: modest: %s: settings_have_password=%d\n", __FUNCTION__, settings_have_password);
679                 if (settings_have_password) {
680                         /* The password must be wrong, so show the account settings dialog so it can be corrected: */
681                         show_wrong_password_dialog (account);
682                         
683                         if (cancel)
684                                 *cancel = TRUE;
685                                 
686                         return NULL;
687                 }
688         
689                 /* we don't have it yet. Get the password from the user */
690                 const gchar* account_id = tny_account_get_id (account);
691                 gboolean remember = FALSE;
692                 pwd = NULL;
693                 
694                 if (already_asked) {
695                         /* Show an info banner, before we show the protected password dialog: */
696                         show_password_warning_only();
697                 }
698                 
699                 request_password_and_wait (self, account_id, 
700                                &username, &pwd, cancel, &remember);
701                 
702                 if (!*cancel) {
703                         /* The password will be returned as the result,
704                          * but we need to tell tinymail about the username too: */
705                         tny_account_set_user (account, username);
706                         
707                         /* Do not save the password in gconf, 
708                          * because the UI spec says "The password will never be saved in the account": */
709                         /*
710                         if (remember) {
711                                 printf ("%s: Storing username=%s, password=%s\n", 
712                                         __FUNCTION__, username, pwd);
713                                 modest_server_account_set_username (priv->account_mgr, server_account_name,
714                                                                username);
715                                 modest_server_account_set_password (priv->account_mgr, server_account_name,
716                                                                pwd);
717                         }
718                         */
719
720                         /* We need to dup the string even knowing that
721                            it's already a dup of the contents of an
722                            entry, because it if it's wrong, then camel
723                            will free it */
724                         g_hash_table_insert (priv->password_hash, g_strdup (server_account_name), g_strdup(pwd));
725                 } else {
726                         g_hash_table_remove (priv->password_hash, server_account_name);
727                         
728                         g_free (pwd);
729                         pwd = NULL;
730                 }
731
732                 g_free (username);
733                 username = NULL;
734         } else
735                 *cancel = FALSE;
736  
737     /* printf("  DEBUG: %s: returning %s\n", __FUNCTION__, pwd); */
738         
739         return pwd;
740 }
741
742 /* tinymail calls this if the connection failed due to an incorrect password.
743  * And it seems to call this for any general connection failure. */
744 static void
745 forget_password (TnyAccount *account)
746 {
747         printf ("DEBUG: %s\n", __FUNCTION__);
748         ModestTnyAccountStore *self;
749         ModestTnyAccountStorePrivate *priv;
750         const TnyAccountStore *account_store;
751         gchar *pwd;
752         const gchar *key;
753         
754         account_store = TNY_ACCOUNT_STORE(g_object_get_data (G_OBJECT(account),
755                                                              "account_store"));
756         self = MODEST_TNY_ACCOUNT_STORE (account_store);
757         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
758         key  = tny_account_get_id (account);
759
760         /* Do not remove the key, this will allow us to detect that we
761            have already asked for it at least once */
762         pwd = g_hash_table_lookup (priv->password_hash, key);
763         if (pwd) {
764                 memset (pwd, 0, strlen (pwd));
765                 g_hash_table_insert (priv->password_hash, g_strdup (key), NULL);
766         }
767
768         /* Remove from configuration system */
769         /*
770         modest_account_mgr_unset (priv->account_mgr,
771                                   key, MODEST_ACCOUNT_PASSWORD, TRUE);
772         */
773 }
774
775 static void
776 modest_tny_account_store_finalize (GObject *obj)
777 {
778         GnomeVFSVolumeMonitor *volume_monitor;
779         ModestTnyAccountStore *self        = MODEST_TNY_ACCOUNT_STORE(obj);
780         ModestTnyAccountStorePrivate *priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
781
782         g_free (priv->cache_dir);
783         priv->cache_dir = NULL;
784         
785         if (priv->password_hash) {
786                 g_hash_table_destroy (priv->password_hash);
787                 priv->password_hash = NULL;
788         }
789
790         if (priv->account_settings_dialog_hash) {
791                 g_hash_table_destroy (priv->account_settings_dialog_hash);
792                 priv->account_settings_dialog_hash = NULL;
793         }
794
795         if (priv->outbox_of_transport) {
796                 g_hash_table_destroy (priv->outbox_of_transport);
797                 priv->outbox_of_transport = NULL;
798         }
799
800
801         /* Disconnect VFS signals */
802         volume_monitor = gnome_vfs_get_volume_monitor ();
803         if (g_signal_handler_is_connected (volume_monitor, 
804                                            priv->volume_mounted_handler))
805                 g_signal_handler_disconnect (volume_monitor, 
806                                              priv->volume_mounted_handler);
807         if (g_signal_handler_is_connected (volume_monitor, 
808                                            priv->volume_unmounted_handler))
809                 g_signal_handler_disconnect (volume_monitor, 
810                                              priv->volume_unmounted_handler);
811
812         if (priv->account_mgr) {
813                 /* Disconnect signals */
814                 if (g_signal_handler_is_connected (priv->account_mgr, 
815                                                    priv->acc_inserted_handler))
816                         g_signal_handler_disconnect (priv->account_mgr, 
817                                                      priv->acc_inserted_handler);
818                 if (g_signal_handler_is_connected (priv->account_mgr, 
819                                                    priv->acc_changed_handler))
820                         g_signal_handler_disconnect (priv->account_mgr, 
821                                                      priv->acc_changed_handler);
822                 if (g_signal_handler_is_connected (priv->account_mgr, 
823                                                    priv->acc_removed_handler))
824                         g_signal_handler_disconnect (priv->account_mgr, 
825                                                      priv->acc_removed_handler);
826
827                 g_object_unref (G_OBJECT(priv->account_mgr));
828                 priv->account_mgr = NULL;
829         }
830
831         if (priv->device) {
832                 g_object_unref (G_OBJECT(priv->device));
833                 priv->device = NULL;
834         }
835
836         /* Destroy all accounts. Disconnect all accounts before they are destroyed */
837         if (priv->store_accounts) {
838                 tny_list_foreach (priv->store_accounts, foreach_account_disconnect, NULL);
839                 g_object_unref (priv->store_accounts);
840                 priv->store_accounts = NULL;
841         }
842
843         if (priv->transport_accounts) {
844                 tny_list_foreach (priv->transport_accounts, foreach_account_disconnect, NULL);
845                 g_object_unref (priv->transport_accounts);
846                 priv->transport_accounts = NULL;
847         }
848
849         if (priv->store_accounts_outboxes) {
850                 g_object_unref (priv->store_accounts_outboxes);
851                 priv->store_accounts_outboxes = NULL;
852         }
853                 
854         if (priv->session) {
855                 camel_object_unref (CAMEL_OBJECT(priv->session));
856                 priv->session = NULL;
857         }
858         
859         G_OBJECT_CLASS(parent_class)->finalize (obj);
860 }
861
862 gboolean 
863 volume_path_is_mounted (const gchar* path)
864 {
865         g_return_val_if_fail (path, FALSE);
866
867         gboolean result = FALSE;
868         gchar * path_as_uri = g_filename_to_uri (path, NULL, NULL);
869         g_return_val_if_fail (path_as_uri, FALSE);
870
871         /* Get the monitor singleton: */
872         GnomeVFSVolumeMonitor *monitor = gnome_vfs_get_volume_monitor();
873
874         /* This seems like a simpler way to do this, but it returns a   
875          * GnomeVFSVolume even if the drive is not mounted: */
876         /*
877         GnomeVFSVolume *volume = gnome_vfs_volume_monitor_get_volume_for_path (monitor, 
878                 MODEST_MCC1_VOLUMEPATH);
879         if (volume) {
880                 gnome_vfs_volume_unref(volume);
881         }
882         */
883
884         /* Get the mounted volumes from the monitor: */
885         GList *list = gnome_vfs_volume_monitor_get_mounted_volumes (monitor);
886         GList *iter = list;
887         for (iter = list; iter; iter = g_list_next (iter)) {
888                 GnomeVFSVolume *volume = (GnomeVFSVolume*)iter->data;
889                 if (volume) {
890                         /*
891                         char *display_name = 
892                                 gnome_vfs_volume_get_display_name (volume);
893                         printf ("volume display name=%s\n", display_name);
894                         g_free (display_name);
895                         */
896                         
897                         char *uri = 
898                                 gnome_vfs_volume_get_activation_uri (volume);
899                         /* printf ("  uri=%s\n", uri); */
900                         if (uri && (strcmp (uri, path_as_uri) == 0))
901                                 result = TRUE;
902
903                         g_free (uri);
904
905                         gnome_vfs_volume_unref (volume);
906                 }
907         }
908
909         g_list_free (list);
910
911         g_free (path_as_uri);
912
913         return result;
914 }
915
916 ModestTnyAccountStore*
917 modest_tny_account_store_new (ModestAccountMgr *account_mgr, 
918                               TnyDevice *device) 
919 {
920         GObject *obj;
921         ModestTnyAccountStorePrivate *priv;
922         TnyAccount *local_account = NULL;
923         
924         g_return_val_if_fail (account_mgr, NULL);
925         g_return_val_if_fail (device, NULL);
926
927         obj  = G_OBJECT(g_object_new(MODEST_TYPE_TNY_ACCOUNT_STORE, NULL));
928         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(obj);
929
930         priv->account_mgr = g_object_ref (G_OBJECT(account_mgr));
931         priv->device = g_object_ref (device);
932         
933         priv->session = tny_session_camel_new (TNY_ACCOUNT_STORE(obj));
934         if (!priv->session) {
935                 g_warning ("failed to get TnySessionCamel");
936                 return NULL;
937         }
938
939         /* Set the ui locker */ 
940         tny_session_camel_set_ui_locker (priv->session,  tny_gtk_lockable_new ());
941                 
942         /* Connect signals */
943         priv->acc_inserted_handler = g_signal_connect (G_OBJECT(account_mgr), "account_inserted",
944                                                       G_CALLBACK (on_account_inserted), obj);
945         priv->acc_changed_handler = g_signal_connect (G_OBJECT(account_mgr), "account_changed",
946                                                       G_CALLBACK (on_account_changed), obj);
947         priv->acc_removed_handler = g_signal_connect (G_OBJECT(account_mgr), "account_removed",
948                                                       G_CALLBACK (on_account_removed), obj);
949
950         /* Create the lists of accounts */
951         priv->store_accounts = tny_simple_list_new ();
952         priv->transport_accounts = tny_simple_list_new ();
953         priv->store_accounts_outboxes = tny_simple_list_new ();
954
955         /* Create the local folders account */
956         local_account = 
957                 modest_tny_account_new_for_local_folders (priv->account_mgr, priv->session, NULL);
958         tny_list_append (priv->store_accounts, G_OBJECT(local_account));
959         g_object_unref (local_account); 
960
961         /* Add the other remote accounts. Do this after adding the
962            local account, because we need to add our outboxes to the
963            global OUTBOX hosted in the local account */
964         add_existing_accounts (MODEST_TNY_ACCOUNT_STORE (obj));
965         
966         
967         /* Create the memory card account if the card is mounted: */
968         
969         /* This is a singleton, so it does not need to be unrefed. */
970         if (volume_path_is_mounted (MODEST_MCC1_VOLUMEPATH)) {
971                 /* It is mounted: */
972                 add_mmc_account (MODEST_TNY_ACCOUNT_STORE (obj), FALSE /* don't emit the insert signal. */); 
973         }
974         
975         return MODEST_TNY_ACCOUNT_STORE(obj);
976 }
977
978 static void
979 modest_tny_account_store_get_accounts  (TnyAccountStore *self, 
980                                         TnyList *list,
981                                         TnyGetAccountsRequestType request_type)
982 {
983         ModestTnyAccountStorePrivate *priv;
984         
985         g_return_if_fail (self);
986         g_return_if_fail (TNY_IS_LIST(list));
987         
988         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
989         
990         switch (request_type) {
991         case TNY_ACCOUNT_STORE_BOTH:
992                 tny_list_foreach (priv->store_accounts, foreach_account_append_to_list, list);
993                 tny_list_foreach (priv->transport_accounts, foreach_account_append_to_list, list);
994                 break;
995         case TNY_ACCOUNT_STORE_STORE_ACCOUNTS:
996                 tny_list_foreach (priv->store_accounts, foreach_account_append_to_list, list);
997                 break;
998         case TNY_ACCOUNT_STORE_TRANSPORT_ACCOUNTS:
999                 tny_list_foreach (priv->transport_accounts, foreach_account_append_to_list, list);
1000                 break;
1001         default:
1002                 g_return_if_reached ();
1003         }
1004
1005         /* Initialize session. Why do we need this ??? */
1006         tny_session_camel_set_initialized (priv->session);
1007 }
1008
1009
1010 static const gchar*
1011 modest_tny_account_store_get_cache_dir (TnyAccountStore *self)
1012 {
1013         ModestTnyAccountStorePrivate *priv;
1014         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1015         
1016         if (!priv->cache_dir)
1017                 priv->cache_dir = g_build_filename (g_get_home_dir(), 
1018                                                     MODEST_DIR, MODEST_CACHE_DIR, NULL);
1019         return priv->cache_dir;
1020 }
1021
1022
1023 /*
1024  * callers need to unref
1025  */
1026 static TnyDevice*
1027 modest_tny_account_store_get_device (TnyAccountStore *self)
1028 {
1029         ModestTnyAccountStorePrivate *priv;
1030
1031         g_return_val_if_fail (self, NULL);
1032         
1033         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1034
1035         if (priv->device)
1036                 return g_object_ref (G_OBJECT(priv->device));
1037         else
1038                 return NULL;
1039 }
1040
1041
1042 static TnyAccount*
1043 modest_tny_account_store_find_account_by_url (TnyAccountStore *self, const gchar* url_string)
1044 {
1045         return modest_tny_account_store_get_tny_account_by (MODEST_TNY_ACCOUNT_STORE (self), 
1046                                                             MODEST_TNY_ACCOUNT_STORE_QUERY_URL,
1047                                                             url_string);
1048 }
1049
1050
1051
1052 static void
1053 log_alert_error (const GError *err)
1054 {
1055         if (err)
1056                 g_warning ("%s: %d, message=%s", __FUNCTION__, err->domain, err->message);
1057 }
1058
1059
1060 static gboolean
1061 modest_tny_account_store_alert (TnyAccountStore *self, TnyAccount *account, TnyAlertType type,
1062                                 gboolean question, const GError *error)
1063 {
1064         ModestTransportStoreProtocol proto =
1065                 MODEST_PROTOCOL_TRANSPORT_STORE_UNKNOWN; 
1066         const gchar* server_name = NULL;
1067         gchar *prompt = NULL;
1068         gboolean retval;
1069         
1070         g_return_val_if_fail (error, FALSE);
1071         log_alert_error (error);
1072         
1073         if ((error->domain != TNY_ACCOUNT_ERROR) && (error->domain != TNY_ACCOUNT_STORE_ERROR))
1074                 return FALSE;
1075         
1076         /* Get the server name: */
1077         if (account && TNY_IS_ACCOUNT (account)) 
1078                 server_name = tny_account_get_hostname (account);
1079         if (!server_name) {
1080                 g_warning ("%s: cannot get server name", __FUNCTION__);
1081                 return FALSE;
1082         }
1083
1084         if (account) {
1085                 const gchar *proto_name = tny_account_get_proto (account);
1086                 if (proto_name)
1087                         proto = modest_protocol_info_get_transport_store_protocol (proto_name);
1088                 else {
1089                         g_warning("modest: %s: account with id=%s has no proto.\n", __FUNCTION__, 
1090                                   tny_account_get_id (account));
1091                         return FALSE;
1092                 }
1093         }
1094
1095         switch (error->code) {
1096         case TNY_ACCOUNT_STORE_ERROR_CANCEL_ALERT:
1097         case TNY_ACCOUNT_ERROR_TRY_CONNECT_USER_CANCEL:
1098                 /* Don't show waste the user's time by showing him a dialog telling 
1099                  * him that he has just cancelled something: */
1100                 return TRUE;
1101
1102         case TNY_ACCOUNT_ERROR_TRY_CONNECT_HOST_LOOKUP_FAILED:
1103         case TNY_ACCOUNT_ERROR_TRY_CONNECT_SERVICE_UNAVAILABLE:
1104                 /* TODO: Show the appropriate message, depending on whether it's POP or IMAP: */                
1105                 switch (proto) {
1106                 case MODEST_PROTOCOL_STORE_POP:
1107                         prompt = g_strdup_printf (_("emev_ni_ui_pop3_msg_connect_error"),
1108                                                   server_name);
1109                         break;
1110                 case MODEST_PROTOCOL_STORE_IMAP:
1111                         prompt = g_strdup_printf (_("emev_ni_ui_imap_connect_server_error"),
1112                                                   server_name);
1113                         break;
1114                 case MODEST_PROTOCOL_TRANSPORT_SMTP:
1115                         prompt = g_strdup_printf (_("emev_ib_ui_smtp_server_invalid"),
1116                                                   server_name);
1117                         break;
1118                 default:
1119                         g_warning ("%s: should not be reached (%d)", __FUNCTION__, proto);
1120                         return FALSE;
1121                 }
1122                 break;
1123                 
1124         case TNY_ACCOUNT_ERROR_TRY_CONNECT_AUTHENTICATION_NOT_SUPPORTED:
1125                 /* This is "Secure connection failed", even though the logical
1126                  * ID has _certificate_ in the name: */
1127                 prompt = g_strdup (_("mail_ni_ssl_certificate_error")); 
1128                 break;
1129                         
1130         case TNY_ACCOUNT_ERROR_TRY_CONNECT_CERTIFICATE:
1131                 /* TODO: This needs a logical ID and/or some specified way to ask the
1132                  * different certificate questions: */
1133                 prompt = g_strdup_printf(
1134                         _("Certificate Problem:\n%s"), 
1135                         error->message);
1136                 break;
1137                 
1138         case TNY_ACCOUNT_ERROR_TRY_CONNECT:
1139                 /* The tinymail camel implementation just sends us this for almost 
1140                  * everything, so we have to guess at the cause.
1141                  * It could be a wrong password, or inability to resolve a hostname, 
1142                  * or lack of network, or incorrect authentication method, or something entirely different: */
1143                 /* TODO: Fix camel to provide specific error codes, and then use the 
1144                  * specific dialog messages from Chapter 12 of the UI spec.
1145                  */
1146                 case TNY_ACCOUNT_STORE_ERROR_UNKNOWN_ALERT: 
1147                         /* This debug output is useful. Please keep it uncommented until 
1148                          * we have fixed the problems in this function: */
1149                         g_debug ("%s: %d, message=%s",__FUNCTION__,
1150                                  error->domain, error->message);
1151                         
1152                         /* TODO: Remove the internal error message for the real release.
1153                          * This is just so the testers can give us more information: */
1154                         /* However, I haven't seen this for a few weeks, so maybe the users 
1155                          * will never see it. murrayc. */
1156                         /* prompt = _("Modest account not yet fully configured."); */
1157                         prompt = g_strdup_printf(
1158                                 "%s\n (Internal error message, often very misleading):\n%s", 
1159                                 _("Incorrect Account Settings"), 
1160                                 error->message);
1161                         
1162                         /* Note: If the password was wrong then get_password() would be called again,
1163                          * instead of this vfunc being called. */
1164                         break;
1165                         
1166         default:
1167                         g_warning ("%s: Unhandled GError code: %d, message=%s", 
1168                                    __FUNCTION__, error->code, error->message);
1169                         prompt = NULL;
1170                         break;
1171         }
1172         
1173         if (!prompt)
1174                 return FALSE;
1175         else
1176                 retval = modest_platform_run_alert_dialog (prompt, question);
1177         
1178         g_free (prompt);
1179         
1180         return retval;
1181 }
1182
1183
1184 static void
1185 modest_tny_account_store_init (gpointer g, gpointer iface_data)
1186 {
1187         TnyAccountStoreIface *klass;
1188
1189         g_return_if_fail (g);
1190
1191         klass = (TnyAccountStoreIface *)g;
1192
1193         klass->get_accounts_func =
1194                 modest_tny_account_store_get_accounts;
1195         klass->get_cache_dir_func =
1196                 modest_tny_account_store_get_cache_dir;
1197         klass->get_device_func =
1198                 modest_tny_account_store_get_device;
1199         klass->alert_func =
1200                 modest_tny_account_store_alert;
1201         klass->find_account_func =
1202                 modest_tny_account_store_find_account_by_url;
1203 }
1204
1205 void
1206 modest_tny_account_store_set_get_pass_func (ModestTnyAccountStore *self,
1207                                             ModestTnyGetPassFunc func)
1208 {
1209         /* not implemented, we use signals */
1210         g_printerr ("modest: set_get_pass_func not implemented\n");
1211 }
1212
1213 TnySessionCamel*
1214 modest_tny_account_store_get_session  (TnyAccountStore *self)
1215 {
1216         g_return_val_if_fail (self, NULL);
1217         return MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE (self)->session;
1218 }
1219
1220 static TnyAccount*
1221 get_tny_account_by (TnyList *accounts,
1222                     ModestTnyAccountStoreQueryType type,
1223                     const gchar *str)
1224 {
1225         TnyIterator *iter = NULL;
1226         gboolean found = FALSE;
1227         TnyAccount *retval = NULL;
1228
1229         iter = tny_list_create_iterator (accounts);
1230         while (!tny_iterator_is_done (iter) && !found) {
1231                 TnyAccount *tmp_account = NULL;
1232                 const gchar *val = NULL;
1233
1234                 tmp_account = TNY_ACCOUNT (tny_iterator_get_current (iter));
1235                 switch (type) {
1236                 case MODEST_TNY_ACCOUNT_STORE_QUERY_ID:
1237                         val = tny_account_get_id (tmp_account);
1238                         break;
1239                 case MODEST_TNY_ACCOUNT_STORE_QUERY_URL:
1240                         val = tny_account_get_url_string (tmp_account);
1241                         break;
1242                 }
1243                 
1244                 if (type == MODEST_TNY_ACCOUNT_STORE_QUERY_URL && 
1245                     tny_account_matches_url_string (tmp_account, str)) {
1246                         retval = g_object_ref (tmp_account);
1247                         found = TRUE;
1248                 } else {
1249                         if (strcmp (val, str) == 0) {
1250                                 retval = g_object_ref (tmp_account);
1251                                 found = TRUE;
1252                         }
1253                 }
1254                 g_object_unref (tmp_account);
1255                 tny_iterator_next (iter);
1256         }
1257         g_object_unref (iter);
1258
1259         return retval;
1260 }
1261
1262 TnyAccount*
1263 modest_tny_account_store_get_tny_account_by (ModestTnyAccountStore *self, 
1264                                              ModestTnyAccountStoreQueryType type,
1265                                              const gchar *str)
1266 {
1267         TnyAccount *account = NULL;
1268         ModestTnyAccountStorePrivate *priv;     
1269         
1270         g_return_val_if_fail (self, NULL);
1271         g_return_val_if_fail (str, NULL);
1272         
1273         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1274         
1275         /* Search in store accounts */
1276         account = get_tny_account_by (priv->store_accounts, type, str);
1277
1278         /* If we already found something, no need to search the transport accounts */
1279         if (!account) {
1280                 account = get_tny_account_by (priv->transport_accounts, type, str);
1281
1282                 /* If we already found something, no need to search the
1283                    per-account outbox accounts */
1284                 if (!account)
1285                         account = get_tny_account_by (priv->store_accounts_outboxes, type, str);
1286         }
1287
1288         /* Warn if nothing was found. This is generally unusual. */
1289         if (!account) {
1290                 g_warning("%s: Failed to find account with %s=%s\n", 
1291                           __FUNCTION__, 
1292                           (type == MODEST_TNY_ACCOUNT_STORE_QUERY_ID) ? "ID" : "URL",                     
1293                           str);
1294         }
1295
1296         /* Returns a new reference to the account if found */   
1297         return account;
1298 }
1299
1300 TnyAccount*
1301 modest_tny_account_store_get_server_account (ModestTnyAccountStore *self,
1302                                              const gchar *account_name,
1303                                              TnyAccountType type)
1304 {
1305         ModestTnyAccountStorePrivate *priv = NULL;
1306         TnyAccount *retval = NULL;
1307         TnyList *account_list = NULL;
1308         TnyIterator *iter = NULL;
1309         gboolean found;
1310
1311         g_return_val_if_fail (self, NULL);
1312         g_return_val_if_fail (account_name, NULL);
1313         g_return_val_if_fail (type == TNY_ACCOUNT_TYPE_STORE || 
1314                               type == TNY_ACCOUNT_TYPE_TRANSPORT,
1315                               NULL);
1316         
1317         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1318
1319         account_list = (type == TNY_ACCOUNT_TYPE_STORE) ? 
1320                 priv->store_accounts : 
1321                 priv->transport_accounts;
1322
1323         if (!account_list) {
1324                 g_printerr ("%s: No server accounts of type %s\n", __FUNCTION__, 
1325                         (type == TNY_ACCOUNT_TYPE_STORE) ? "store" : "transport");
1326                 return NULL;
1327         }
1328         
1329         /* Look for the server account */
1330         found = FALSE;
1331         iter = tny_list_create_iterator (account_list);
1332         while (!tny_iterator_is_done (iter) && !found) {
1333                 const gchar *modest_acc_name;
1334                 TnyAccount *tmp_account;
1335
1336                 tmp_account = TNY_ACCOUNT (tny_iterator_get_current (iter));
1337                 modest_acc_name = 
1338                         modest_tny_account_get_parent_modest_account_name_for_server_account (tmp_account);
1339                 
1340                 if (!strcmp (account_name, modest_acc_name)) {
1341                         found = TRUE;
1342                         retval = g_object_ref (tmp_account);
1343                 }
1344                 /* Free and continue */
1345                 g_object_unref (tmp_account);
1346                 tny_iterator_next (iter);
1347         }
1348
1349         if (!found) {
1350                 g_printerr ("modest: %s: could not get tny %s account for %s\n." \
1351                             "Number of server accounts of this type=%d\n", __FUNCTION__,
1352                             (type == TNY_ACCOUNT_TYPE_STORE) ? "store" : "transport",
1353                             account_name, tny_list_get_length (account_list));
1354         }
1355
1356         /* Returns a new reference */
1357         return retval;
1358 }
1359
1360 static TnyAccount*
1361 get_smtp_specific_transport_account_for_open_connection (ModestTnyAccountStore *self,
1362         const gchar *account_name)
1363 {
1364         /* Get the current connection: */
1365         TnyDevice *device = modest_runtime_get_device ();
1366         
1367         if (!tny_device_is_online (device))
1368                 return NULL;
1369
1370         g_return_val_if_fail (self, NULL);
1371         
1372         
1373 #ifdef MODEST_PLATFORM_MAEMO
1374         g_assert (TNY_IS_MAEMO_CONIC_DEVICE (device));
1375         TnyMaemoConicDevice *maemo_device = TNY_MAEMO_CONIC_DEVICE (device);    
1376         const gchar* iap_id = tny_maemo_conic_device_get_current_iap_id (maemo_device);
1377         /* printf ("DEBUG: %s: iap_id=%s\n", __FUNCTION__, iap_id); */
1378         if (!iap_id)
1379                 return NULL;
1380                 
1381         ConIcIap* connection = tny_maemo_conic_device_get_iap (maemo_device, iap_id);
1382         if (!connection)
1383                 return NULL;
1384                 
1385         const gchar *connection_name = con_ic_iap_get_name (connection);
1386         /* printf ("DEBUG: %s: connection_name=%s\n", __FUNCTION__, connection_name); */
1387         if (!connection_name)
1388                 return NULL;
1389         
1390         /*  Get the connection-specific transport acccount, if any: */
1391         ModestAccountMgr *account_manager = modest_runtime_get_account_mgr ();
1392
1393         /* Check if this account has connection-specific SMTP enabled */
1394         if (!modest_account_mgr_get_use_connection_specific_smtp (account_manager, account_name)) {
1395                 return NULL;
1396         }
1397
1398         gchar* server_account_name = modest_account_mgr_get_connection_specific_smtp (account_manager, 
1399                 connection_name);
1400
1401         /* printf ("DEBUG: %s: server_account_name=%s\n", __FUNCTION__, server_account_name); */
1402         if (!server_account_name) {
1403                 return NULL; /* No connection-specific SMTP server was specified for this connection. */
1404         }
1405                 
1406         TnyAccount* account = modest_tny_account_store_get_tny_account_by (self, 
1407                                                                            MODEST_TNY_ACCOUNT_STORE_QUERY_ID, 
1408                                                                            server_account_name);
1409
1410         /* printf ("DEBUG: %s: account=%p\n", __FUNCTION__, account); */
1411         g_free (server_account_name);   
1412
1413         /* Unref the get()ed object, as required by the tny_maemo_conic_device_get_iap() documentation. */
1414         g_object_unref (connection);
1415         
1416         return account;
1417 #else
1418         return NULL; /* TODO: Implement this for GNOME, instead of just Maemo? */
1419 #endif /* MODEST_PLATFORM_MAEMO */
1420 }
1421
1422                                                                  
1423 TnyAccount*
1424 modest_tny_account_store_get_transport_account_for_open_connection (ModestTnyAccountStore *self,
1425                                                                     const gchar *account_name)
1426 {
1427         g_return_val_if_fail (self, NULL);
1428         g_return_val_if_fail (account_name, NULL);
1429
1430         if (!account_name || !self)
1431                 return NULL;
1432         
1433         /*  Get the connection-specific transport acccount, if any: */
1434         /* Note: This gives us a reference: */
1435         TnyAccount *account =
1436                 get_smtp_specific_transport_account_for_open_connection (self, account_name);
1437                         
1438         /* If there is no connection-specific transport account (the common case), 
1439          * just get the regular transport account: */
1440         if (!account) {
1441                 /* The special local folders don't have transport accounts. */
1442                 if (strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID) == 0)
1443                         account = NULL;
1444                 else {
1445                         /* Note: This gives us a reference: */
1446                         account = modest_tny_account_store_get_server_account (self, account_name, 
1447                                                      TNY_ACCOUNT_TYPE_TRANSPORT);
1448                 }
1449         }
1450                         
1451         /* returns a reference. */     
1452         return account;
1453 }
1454
1455 TnyAccount*
1456 modest_tny_account_store_get_local_folders_account (ModestTnyAccountStore *self)
1457 {
1458         TnyAccount *account = NULL;
1459         ModestTnyAccountStorePrivate *priv;
1460         TnyIterator *iter;
1461         gboolean found;
1462
1463         g_return_val_if_fail (MODEST_IS_TNY_ACCOUNT_STORE (self), NULL);
1464         
1465         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1466
1467         found = FALSE;
1468         iter = tny_list_create_iterator (priv->store_accounts);
1469         while (!tny_iterator_is_done (iter) && !found) {
1470                 TnyAccount *tmp_account;
1471
1472                 tmp_account = TNY_ACCOUNT (tny_iterator_get_current (iter));
1473                 if (modest_tny_account_is_virtual_local_folders (tmp_account)) {
1474                         account = g_object_ref (tmp_account);
1475                         found = TRUE;
1476                 }
1477                 g_object_unref (tmp_account);
1478                 tny_iterator_next (iter);
1479         }
1480         g_object_unref (iter);
1481
1482         /* Returns a new reference to the account */
1483         return account;
1484 }
1485
1486 /*********************************************************************************/
1487 static void
1488 add_existing_accounts (ModestTnyAccountStore *self)
1489 {
1490         GSList *account_names = NULL, *iter = NULL;
1491         ModestTnyAccountStorePrivate *priv = NULL;
1492         
1493         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1494
1495         /* These are account names, not server_account names */
1496         account_names = modest_account_mgr_account_names (priv->account_mgr, FALSE);
1497
1498         for (iter = account_names; iter != NULL; iter = g_slist_next (iter)) {
1499                 const gchar *account_name = (const gchar*) iter->data;
1500                 
1501                 /* Insert all enabled accounts without notifying */
1502                 if (modest_account_mgr_get_enabled (priv->account_mgr, account_name))
1503                         insert_account (self, account_name, FALSE);
1504         }
1505         modest_account_mgr_free_account_names (account_names);
1506 }
1507
1508 static TnyAccount*
1509 create_tny_account (ModestTnyAccountStore *self,
1510                     const gchar *name,
1511                     TnyAccountType type)
1512 {
1513         TnyAccount *account = NULL;
1514         ModestTnyAccountStorePrivate *priv = NULL;
1515         
1516         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1517
1518         account = modest_tny_account_new_from_account (priv->account_mgr,
1519                                                        name, type, 
1520                                                        priv->session,
1521                                                        get_password,
1522                                                        forget_password);
1523
1524         if (account) {
1525                 /* Forget any cached password for the account, so that
1526                    we use a new account if any */
1527                 modest_tny_account_store_forget_password_in_memory (self, 
1528                                                                     tny_account_get_id (account));
1529                 /* Set the account store */                             
1530                 g_object_set_data (G_OBJECT(account), "account_store", self);
1531         } else {
1532                 g_printerr ("modest: failed to create account for %s\n", name);
1533         }
1534
1535         return account;
1536 }
1537
1538 /*
1539  * This function will be used for both adding new accounts and for the
1540  * initialization. In the initialization we do not want to emit
1541  * signals so notify will be FALSE, in the case of account additions
1542  * we do want to notify the observers
1543  */
1544 static void
1545 insert_account (ModestTnyAccountStore *self,
1546                 const gchar *account,
1547                 gboolean notify)
1548 {
1549         ModestTnyAccountStorePrivate *priv = NULL;
1550         TnyAccount *store_account = NULL, *transport_account = NULL;
1551         
1552         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1553
1554         /* Get the server and the transport account */
1555         store_account = create_tny_account (self, account, TNY_ACCOUNT_TYPE_STORE);
1556         transport_account = create_tny_account (self, account, TNY_ACCOUNT_TYPE_TRANSPORT);
1557
1558         /* Add to the list, and notify the observers */
1559         if (store_account) {
1560                 tny_list_append (priv->store_accounts, G_OBJECT (store_account));
1561                 if (notify)
1562                         g_signal_emit (G_OBJECT (self), signals [ACCOUNT_INSERTED_SIGNAL], 0, store_account);
1563                 g_object_unref (store_account);
1564         }
1565
1566         /* Add to the list, and notify the observers */
1567         if (transport_account) {
1568                 TnyAccount *account_outbox = NULL, *local_account = NULL;
1569                 TnyFolder *per_account_outbox = NULL;
1570                 TnyList *folders;
1571                 TnyIterator *iter_folders;
1572
1573                 /* Add account to the list */
1574                 tny_list_append (priv->transport_accounts, G_OBJECT (transport_account));
1575                 g_assert (TNY_IS_ACCOUNT (transport_account));
1576
1577                 /* Add connection-specific transport accounts */
1578                 add_connection_specific_transport_accounts (self);
1579
1580                 /* Create per account local outbox */
1581                 account_outbox = 
1582                         modest_tny_account_new_for_per_account_local_outbox_folder (priv->account_mgr, 
1583                                                                                     account, 
1584                                                                                     priv->session);
1585                 tny_list_append (priv->store_accounts_outboxes, G_OBJECT (account_outbox));
1586
1587                 /* Get the outbox folder */
1588                 folders = tny_simple_list_new ();
1589                 tny_folder_store_get_folders (TNY_FOLDER_STORE (account_outbox),
1590                                               folders, NULL, NULL);
1591                 if (tny_list_get_length (folders) != 1)
1592                         g_warning ("%s: there should be only one outbox folder, but found %d!",
1593                                    __FUNCTION__, tny_list_get_length (folders));
1594                 
1595                 iter_folders = tny_list_create_iterator (folders);
1596                 per_account_outbox = TNY_FOLDER (tny_iterator_get_current (iter_folders));
1597                 g_object_unref (iter_folders);
1598                 g_object_unref (folders);
1599                 g_object_unref (account_outbox);
1600
1601                 /* Add the outbox of the new per-account-local-outbox
1602                    account to the global local merged OUTBOX of the
1603                    local folders account */
1604                 local_account = modest_tny_account_store_get_local_folders_account (MODEST_TNY_ACCOUNT_STORE (self));
1605                 modest_tny_local_folders_account_add_folder_to_outbox (MODEST_TNY_LOCAL_FOLDERS_ACCOUNT (local_account), 
1606                                                                        per_account_outbox);
1607                 /* Add the pair to the hash table */
1608                 g_hash_table_insert (priv->outbox_of_transport,
1609                                      transport_account,
1610                                      per_account_outbox);
1611
1612                 /* Notify that the local folders account chaned */
1613                 if (notify)
1614                         g_signal_emit (G_OBJECT (self), signals [ACCOUNT_CHANGED_SIGNAL], 0, local_account);
1615
1616                 g_object_unref (local_account);
1617                 g_object_unref (per_account_outbox);
1618
1619                 /* Notify the observers */
1620                 if (notify)
1621                         g_signal_emit (G_OBJECT (self), signals [ACCOUNT_INSERTED_SIGNAL], 0, transport_account);
1622                 g_object_unref (transport_account);
1623         }
1624 }
1625
1626 static void
1627 on_account_inserted (ModestAccountMgr *acc_mgr, 
1628                      const gchar *account,
1629                      gpointer user_data)
1630 {
1631         /* Insert the account and notify the observers */
1632         insert_account (MODEST_TNY_ACCOUNT_STORE (user_data), account, TRUE);
1633 }
1634
1635 static void
1636 on_account_removed (ModestAccountMgr *acc_mgr, 
1637                     const gchar *account,
1638                     gpointer user_data)
1639 {
1640         TnyAccount *store_account = NULL, *transport_account = NULL;
1641         ModestTnyAccountStore *self = MODEST_TNY_ACCOUNT_STORE(user_data);
1642         
1643         /* Get the server and the transport account */
1644         store_account = 
1645                 modest_tny_account_store_get_server_account (self, account, TNY_ACCOUNT_TYPE_STORE);
1646         transport_account = 
1647                 modest_tny_account_store_get_server_account (self, account, TNY_ACCOUNT_TYPE_TRANSPORT);
1648
1649         /* If there was any problem creating the account, for example,
1650            with the configuration system this could not exist */
1651         if (store_account) {
1652                 /* Clear the cache */
1653                 tny_store_account_delete_cache (TNY_STORE_ACCOUNT (store_account));
1654
1655                 /* Notify the observers */
1656                 g_signal_emit (G_OBJECT (self), signals [ACCOUNT_REMOVED_SIGNAL], 0, store_account);
1657                 g_object_unref (store_account);
1658         } else {
1659                 g_warning ("There is no store account for account %s\n", account);
1660         }
1661
1662         /* If there was any problem creating the account, for example,
1663            with the configuration system this could not exist */
1664         if (transport_account) {
1665                 TnyAccount *local_account = NULL;
1666                 TnyFolder *outbox = NULL;
1667                 ModestTnyAccountStorePrivate *priv = NULL;
1668         
1669                 /* Remove the OUTBOX of the account from the global outbox */
1670                 priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1671                 outbox = g_hash_table_lookup (priv->outbox_of_transport, transport_account);
1672
1673                 if (TNY_IS_FOLDER (outbox)) {
1674                         local_account = modest_tny_account_store_get_local_folders_account (self);
1675                         modest_tny_local_folders_account_remove_folder_from_outbox (MODEST_TNY_LOCAL_FOLDERS_ACCOUNT (local_account),
1676                                                                                     outbox);
1677                         g_hash_table_remove (priv->outbox_of_transport, transport_account);
1678
1679                         /* Notify the change in the local account */
1680                         g_signal_emit (G_OBJECT (self), signals [ACCOUNT_CHANGED_SIGNAL], 0, local_account);
1681                         g_object_unref (local_account);
1682                 } else {
1683                         g_warning ("Removing a transport account that has no outbox");
1684                 }
1685
1686                 /* Notify the observers */
1687                 g_signal_emit (G_OBJECT (self), signals [ACCOUNT_REMOVED_SIGNAL], 0, transport_account);
1688                 g_object_unref (transport_account);
1689         } else {
1690                 g_warning ("There is no transport account for account %s\n", account);
1691         }
1692 }
1693
1694 static void
1695 add_connection_specific_transport_accounts (ModestTnyAccountStore *self)
1696 {
1697         ModestTnyAccountStorePrivate *priv = NULL;
1698         GSList *list_specifics = NULL, *iter = NULL;
1699
1700         priv = MODEST_TNY_ACCOUNT_STORE_GET_PRIVATE(self);
1701
1702         ModestConf *conf = modest_runtime_get_conf ();
1703
1704         GError *err = NULL;
1705         list_specifics = modest_conf_get_list (conf,
1706                                                       MODEST_CONF_CONNECTION_SPECIFIC_SMTP_LIST,
1707                                                       MODEST_CONF_VALUE_STRING, &err);
1708         if (err) {
1709                 g_printerr ("modest: %s: error getting list: %s\n.", __FUNCTION__, err->message);
1710                 g_error_free (err);
1711                 err = NULL;
1712         }
1713                                 
1714         /* Look at each connection-specific transport account for the 
1715          * modest account: */
1716         iter = list_specifics;
1717         while (iter) {
1718                 /* The list alternates between the connection name and the transport name: */
1719                 iter = g_slist_next (iter);
1720                 if (iter) {
1721                         const gchar* transport_account_name = (const gchar*) (iter->data);
1722                         if (transport_account_name) {
1723                                 TnyAccount * tny_account = NULL;
1724                                 /* Add the account: */
1725                                 tny_account = 
1726                                         modest_tny_account_new_from_server_account_name (priv->account_mgr, 
1727                                                                                          priv->session, 
1728                                                                                          transport_account_name);
1729                                 if (tny_account) {
1730                                         g_object_set_data (G_OBJECT(tny_account), 
1731                                                            "account_store", 
1732                                                            (gpointer)self);
1733
1734                                         tny_list_append (priv->transport_accounts, G_OBJECT (tny_account));
1735                                         g_object_unref (tny_account);
1736                                 } else
1737                                         g_printerr ("modest: failed to create smtp-specific account for %s\n",
1738                                                     transport_account_name);
1739                         }
1740                 }                               
1741                 iter = g_slist_next (iter);
1742         }
1743 }