57a58e7c4817cb475808c838c3772fa4af758cc7
[modest] / src / modest-tny-account.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 <modest-platform.h>
31 #include <modest-tny-platform-factory.h>
32 #include <modest-tny-account.h>
33 #include <modest-tny-account-store.h>
34 #include <modest-default-connection-policy.h>
35 #include <modest-tny-local-folders-account.h>
36 #include <modest-runtime.h>
37 #include <tny-simple-list.h>
38 #include <modest-tny-folder.h>
39 #include <modest-tny-outbox-account.h>
40 #include <modest-transport-account-decorator.h>
41 #include <modest-account-mgr-helpers.h>
42 #include <modest-init.h>
43 #include <tny-camel-transport-account.h>
44 #include <tny-camel-imap-store-account.h>
45 #include <tny-camel-pop-store-account.h>
46 #include <modest-account-protocol.h>
47 #include <tny-folder-stats.h>
48 #include <tny-merge-folder.h>
49 #include <modest-debug.h>
50 #include <string.h>
51 #ifndef MODEST_TOOLKIT_GTK
52 #if MODEST_HILDON_API == 0
53 #include <hildon-widgets/hildon-file-system-info.h>
54 #else
55 #include <hildon/hildon-file-system-info.h>
56 #endif
57 #endif
58
59 /* we need these dummy functions, or tinymail will complain */
60 static gchar *  get_pass_dummy     (TnyAccount *account, const gchar *prompt, gboolean *cancel);
61 static void     forget_pass_dummy  (TnyAccount *account);
62
63 TnyFolder *
64 modest_tny_account_get_special_folder (TnyAccount *account,
65                                        TnyFolderType special_type)
66 {
67         TnyList *folders = NULL;
68         TnyIterator *iter = NULL;
69         TnyFolder *special_folder = NULL;
70         TnyAccount *local_account  = NULL;
71         GError *error = NULL;
72         
73         g_return_val_if_fail (account, NULL);
74         g_return_val_if_fail (0 <= special_type && special_type < TNY_FOLDER_TYPE_NUM,
75                               NULL);
76         
77         /* The accounts have already been instantiated by 
78          * modest_tny_account_store_get_accounts(), which is the 
79          * TnyAccountStore::get_accounts_func() implementation,
80          * so we just get them here.
81          */
82          
83         /* Per-account outbox folders are each in their own on-disk directory: */
84         if ((special_type == TNY_FOLDER_TYPE_OUTBOX) &&
85             (!modest_tny_account_is_virtual_local_folders (account))) {
86
87                 gchar *account_id;
88                 const gchar *modest_account_name;
89
90                 modest_account_name =
91                         modest_tny_account_get_parent_modest_account_name_for_server_account (account);
92                 if (!modest_account_name) {
93                         g_warning ("%s: could not get modest account name", __FUNCTION__);
94                         return NULL;
95                 }
96                 
97                 account_id = g_strdup_printf (
98                         MODEST_PER_ACCOUNT_LOCAL_OUTBOX_FOLDER_ACCOUNT_ID_PREFIX "%s", 
99                         modest_account_name);
100                 
101                 local_account = modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store(),
102                                                                              MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
103                                                                              account_id);
104                 g_free (account_id);            
105         } else 
106                 /* Other local folders are all in one on-disk directory: */
107                 local_account = modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store(),
108                                                                              MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
109                                                                              MODEST_LOCAL_FOLDERS_ACCOUNT_ID);
110         if (!local_account) {
111                 g_printerr ("modest: cannot get local account\n");
112                 goto cleanup;
113         }
114
115         folders = TNY_LIST (tny_simple_list_new ());
116         
117         /* There is no need to do this _async, as these are local folders. */
118         /* TODO: However, this seems to fail sometimes when the network is busy, 
119          * returning an empty list. murrayc. */ 
120         tny_folder_store_get_folders (TNY_FOLDER_STORE (local_account), folders, NULL, FALSE, &error);
121         if (error) {
122                 g_warning ("%s: tny_folder_store_get_folders() failed:%s\n", __FUNCTION__, error->message);
123                 g_error_free (error);
124                 goto cleanup;
125         }
126                                       
127         if (tny_list_get_length (folders) == 0) {
128                 gchar* url_string = tny_account_get_url_string (local_account);
129                 g_printerr ("modest: %s: tny_folder_store_get_folders(%s) returned an empty list\n", 
130                             __FUNCTION__, url_string);
131                 g_free (url_string);
132                 goto cleanup;
133         }
134         
135         iter = tny_list_create_iterator (folders);
136
137         while (!tny_iterator_is_done (iter)) {
138                 TnyFolder *folder = TNY_FOLDER (tny_iterator_get_current (iter));
139                 if (folder) {
140                         if (modest_tny_folder_get_local_or_mmc_folder_type (folder) == special_type) {
141                                 special_folder = folder;
142                                 break; /* Leaving a ref for the special_folder return value. */
143                         }
144                         g_object_unref (folder);
145                 }
146                 tny_iterator_next (iter);
147         }
148         
149 cleanup:
150         if (folders)
151                 g_object_unref (folders);
152         if (iter)
153                 g_object_unref (iter);
154         if (local_account)
155                 g_object_unref (local_account);
156         
157         return special_folder;
158 }
159
160 /**
161  * create_tny_account:
162  * @session: A valid TnySessionCamel instance.
163  * @account_data: the server account for which to create a corresponding tny account
164  * 
165  * get a tnyaccount corresponding to the server_accounts (store or transport) for this account.
166  * NOTE: this function does not set the camel session or the get/forget password functions
167  * 
168  * Returns: a new TnyAccount or NULL in case of error.
169  */
170 static TnyAccount*
171 create_tny_account (TnySessionCamel *session,
172                     ModestServerAccountSettings *server_settings)
173 {
174         TnyAccount *tny_account = NULL;
175         ModestProtocolType protocol_type;
176         ModestProtocolRegistry *protocol_registry;
177         ModestProtocol *protocol;
178         
179         g_return_val_if_fail (session, NULL);
180         g_return_val_if_fail (server_settings, NULL);
181         protocol_type = modest_server_account_settings_get_protocol (server_settings);
182         g_return_val_if_fail (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID, NULL);
183         
184         protocol_registry = modest_runtime_get_protocol_registry ();
185         protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
186
187         if (MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
188                 ModestAccountProtocol *acocunt_proto = MODEST_ACCOUNT_PROTOCOL (protocol);
189                 tny_account = modest_account_protocol_create_account (acocunt_proto);
190         }
191
192         if (!tny_account) {
193                 g_printerr ("modest: %s: could not create tny account for '%s'\n",
194                             __FUNCTION__, modest_server_account_settings_get_account_name (server_settings));
195                 return NULL;
196         }
197         tny_account_set_id (tny_account, modest_server_account_settings_get_account_name (server_settings));
198
199         /* This must be set quite early, or other set() functions will fail. */
200         tny_camel_account_set_session (TNY_CAMEL_ACCOUNT (tny_account), session);
201     
202         /* Proto */
203         tny_account_set_proto (tny_account, modest_protocol_get_name (protocol));
204
205         return tny_account;
206 }
207
208
209
210 /* Camel options: */
211
212 #define MODEST_ACCOUNT_OPTION_SSL "use_ssl"
213
214
215                 
216 /**
217  * update_tny_account:
218  * @account_mgr: a valid account mgr instance
219  * @account_data: the server account for which to create a corresponding tny account
220  * 
221  * get a tnyaccount corresponding to the server_accounts (store or transport) for this account.
222  * NOTE: this function does not set the camel session or the get/forget password functions
223  * 
224  * Returns: a new TnyAccount or NULL in case of error.
225  */
226 static gboolean
227 update_tny_account (TnyAccount *tny_account,
228                     ModestServerAccountSettings *server_settings)
229 {
230         const gchar *account_name;
231         const gchar *uri;
232         g_return_val_if_fail (server_settings, FALSE);
233         account_name = modest_server_account_settings_get_account_name (server_settings);
234         g_return_val_if_fail (account_name, FALSE);
235         g_return_val_if_fail (tny_account, FALSE);
236         
237         /* Do not change the id if it's not needed */
238         if (tny_account_get_id (tny_account) && 
239             strcmp (tny_account_get_id (tny_account), account_name))
240                 tny_account_set_id (tny_account, account_name);
241         
242         /* mbox and maildir accounts use a URI instead of the rest:
243          * Note that this is not where we create the special local folders account.
244          * We do that in modest_tny_account_new_for_local_folders() instead. */
245         uri = modest_server_account_settings_get_uri (server_settings);
246         if (uri)  
247                 tny_account_set_url_string (TNY_ACCOUNT(tny_account), uri);
248         else {
249                 /* Set camel-specific options: */               
250                 /* Enable secure connection settings: */
251                 TnyPair *option_security = NULL;
252                 const gchar* auth_mech_name = NULL;
253                 ModestProtocolType protocol_type;
254                 ModestProtocol *protocol;
255                 ModestProtocolType security_type;
256                 ModestProtocol *security;
257                 ModestProtocolType auth_protocol_type;
258                 ModestProtocol *auth_protocol;
259                 ModestProtocolRegistry *protocol_registry;
260                 const gchar *security_option_string;
261                 const gchar *username;
262                 const gchar *hostname;
263                 guint port;
264
265                 /* First of all delete old options */
266                 tny_camel_account_clear_options (TNY_CAMEL_ACCOUNT (tny_account));
267
268                 protocol_type = modest_server_account_settings_get_protocol (server_settings);
269                 security_type = modest_server_account_settings_get_security_protocol (server_settings);
270                 auth_protocol_type = modest_server_account_settings_get_auth_protocol (server_settings);
271                 protocol_registry = modest_runtime_get_protocol_registry ();
272                 protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
273                 security = modest_protocol_registry_get_protocol_by_type (protocol_registry, security_type);
274                 auth_protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, auth_protocol_type);
275
276                 security_option_string = modest_protocol_get (security, MODEST_PROTOCOL_SECURITY_ACCOUNT_OPTION);
277                 if (security_option_string) {
278                         option_security = tny_pair_new (MODEST_ACCOUNT_OPTION_SSL, security_option_string);
279                         tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account), option_security);
280                         g_object_unref (option_security);
281                 }
282
283                 /* Secure authentication: */
284                 if (MODEST_IS_ACCOUNT_PROTOCOL (protocol) &&
285                     modest_account_protocol_has_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), auth_protocol_type)) {
286                         auth_mech_name = modest_account_protocol_get_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), auth_protocol_type);
287                 } else {
288                         auth_mech_name = modest_protocol_get (auth_protocol, MODEST_PROTOCOL_AUTH_ACCOUNT_OPTION);
289                 }
290                 
291                 if (auth_mech_name)
292                         tny_account_set_secure_auth_mech (tny_account, auth_mech_name);
293                 
294                 if (MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
295                         TnyList *account_options;
296                         TnyIterator *iterator;
297
298                         account_options = modest_account_protocol_get_account_options (MODEST_ACCOUNT_PROTOCOL (protocol));
299                         for (iterator = tny_list_create_iterator (account_options); !tny_iterator_is_done (iterator); tny_iterator_next (iterator)) {
300                                 TnyPair *current;
301
302                                 current = TNY_PAIR (tny_iterator_get_current (iterator));
303                                 tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account),
304                                                               current);
305                                 g_object_unref (current);
306                         }
307                         g_object_unref (iterator);
308                         g_object_unref (account_options);
309                         
310                 }
311
312                 if (modest_server_account_settings_get_uri (server_settings) == NULL) {
313                         username = modest_server_account_settings_get_username (server_settings);
314                         if (username && strlen (username) > 0) 
315                                 tny_account_set_user (tny_account, username);
316                         hostname = modest_server_account_settings_get_hostname (server_settings);
317                         if (hostname && hostname[0] != '\0')
318                                 tny_account_set_hostname (tny_account, hostname);
319                         
320                         /* Set the port: */
321                         port = modest_server_account_settings_get_port (server_settings);
322                         if (port)
323                                 tny_account_set_port (tny_account, port);
324                 } else {
325                         tny_account_set_url_string (TNY_ACCOUNT (tny_account), modest_server_account_settings_get_uri (server_settings));
326                 }
327         }
328
329         MODEST_DEBUG_BLOCK (
330                 gchar *url = tny_account_get_url_string (TNY_ACCOUNT(tny_account));
331                 g_debug ("%s:\n  account-url: %s\n", __FUNCTION__, url);
332                 g_free (url);
333         );
334         
335         return TRUE;
336 }
337
338 TnyAccount*
339 modest_tny_account_new_from_server_account_name (ModestAccountMgr *account_mgr,
340                                                  TnySessionCamel *session,
341                                                  const gchar *server_account_name,
342                                                  TnyGetPassFunc get_pass_func,
343                                                  TnyForgetPassFunc forget_pass_func)
344 {
345         ModestServerAccountSettings *server_settings;
346         TnyAccount *tny_account;
347         ModestProtocolRegistry *protocol_registry;
348         
349         g_return_val_if_fail (session, NULL);
350         g_return_val_if_fail (server_account_name, NULL);
351
352         protocol_registry = modest_runtime_get_protocol_registry ();
353         
354         server_settings = modest_account_mgr_load_server_settings (account_mgr, server_account_name, TRUE);
355         if (!server_settings)
356                 return NULL;
357
358         tny_account = TNY_ACCOUNT (tny_camel_transport_account_new ());
359
360         if (tny_account) {
361                 ModestProtocol *protocol;
362                 const gchar* proto_name = NULL;
363                 tny_account_set_id (tny_account, server_account_name);
364                 tny_camel_account_set_session (TNY_CAMEL_ACCOUNT (tny_account), session);
365                 protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, modest_server_account_settings_get_protocol (server_settings));
366                 proto_name = modest_protocol_get_name (protocol);
367                 tny_account_set_proto (tny_account, proto_name);
368                 modest_tny_account_set_parent_modest_account_name_for_server_account (tny_account, server_account_name);
369         }
370
371         if (!tny_account) {
372                 g_warning ("%s: failed to create tny_account", __FUNCTION__);
373         } else {
374                 TnyConnectionPolicy *policy;
375
376                 if (!update_tny_account (tny_account, server_settings)) {
377                         g_warning ("%s: failed to initialize tny_account", __FUNCTION__);
378                 } else {
379                         
380                         tny_account_set_forget_pass_func (tny_account,
381                                                           forget_pass_func ? forget_pass_func : forget_pass_dummy);
382                         tny_account_set_pass_func (tny_account,
383                                                    get_pass_func ? get_pass_func: get_pass_dummy);
384                         
385                 }
386                 policy = modest_default_connection_policy_new ();
387                 tny_account_set_connection_policy (tny_account, policy);
388                 g_object_unref (policy);
389         }
390
391         g_object_unref (server_settings);
392         
393         return tny_account;
394 }
395
396
397
398
399 /* we need these dummy functions, or tinymail will complain */
400 static gchar*
401 get_pass_dummy (TnyAccount *account, const gchar *prompt, gboolean *cancel)
402 {
403         return NULL;
404 }
405 static void
406 forget_pass_dummy (TnyAccount *account)
407 {
408         /* intentionally left blank */
409 }
410
411
412 static void
413 set_online_callback (TnyCamelAccount *account, gboolean canceled, GError *err, gpointer user_data)
414 {
415         TnyAccountStore *account_store;
416
417         account_store = TNY_ACCOUNT_STORE(g_object_get_data (G_OBJECT(account),
418                                                              "account_store"));
419         if (err && !canceled) {
420                 /* It seems err is forgotten here ... if the disk is full ! */
421                 if (account_store) {
422                         tny_account_store_alert (
423                                 account_store, 
424                                 TNY_ACCOUNT (account), TNY_ALERT_TYPE_ERROR, FALSE, 
425                                 err);
426                 }
427                 g_warning ("err: %s", err->message);
428         }
429 }
430
431 gboolean
432 modest_tny_account_update_from_account (TnyAccount *tny_account,
433                                         TnyGetPassFunc get_pass_func,
434                                         TnyForgetPassFunc forget_pass_func) 
435 {
436         ModestAccountSettings *settings = NULL;
437         ModestServerAccountSettings *server_settings = NULL;
438         ModestAccountMgr *account_mgr;
439         const gchar *account_name;
440         TnyAccountType type;
441         const gchar *display_name;
442         TnyConnectionStatus conn_status;
443         TnyConnectionPolicy *policy;
444
445         g_return_val_if_fail (tny_account, FALSE);
446
447         account_mgr = modest_runtime_get_account_mgr ();
448         account_name = modest_tny_account_get_parent_modest_account_name_for_server_account (tny_account);
449         type = tny_account_get_account_type (tny_account);
450         settings = modest_account_mgr_load_account_settings (account_mgr, account_name);
451         if (!settings) {
452                 g_printerr ("modest: %s: cannot get account data for account %s\n",
453                             __FUNCTION__, account_name);
454                 return FALSE;
455         }
456
457         display_name = modest_account_settings_get_display_name (settings);
458
459         if (type == TNY_ACCOUNT_TYPE_STORE)
460                 server_settings = modest_account_settings_get_store_settings (settings);
461         else if (type == TNY_ACCOUNT_TYPE_TRANSPORT)
462                 server_settings = modest_account_settings_get_transport_settings (settings);
463
464         if (modest_server_account_settings_get_account_name (server_settings) == NULL) {
465                 g_printerr ("modest: no %s account defined for '%s'\n",
466                             type == TNY_ACCOUNT_TYPE_STORE ? "store" : "transport",
467                             display_name);
468                 g_object_unref (server_settings);
469                 g_object_unref (settings);
470                 return FALSE;
471         }
472         
473         update_tny_account (tny_account, server_settings);
474                 
475         /* This name is what shows up in the folder view -- so for some POP/IMAP/... server
476          * account, we set its name to the account of which it is part. */
477
478         if (display_name)
479                 tny_account_set_name (tny_account, display_name);
480
481         g_object_unref (server_settings);
482         g_object_unref (settings);
483
484         policy = modest_default_connection_policy_new ();
485         tny_account_set_connection_policy (tny_account, policy);
486         g_object_unref (policy);
487         
488         /* The callback will have an error for you if the reconnect
489          * failed. Please handle it (this is TODO). */
490         
491         conn_status = tny_account_get_connection_status (tny_account);
492         if (conn_status != TNY_CONNECTION_STATUS_DISCONNECTED) {
493                 TnyAccountStore *account_store = NULL;
494         
495                 account_store = TNY_ACCOUNT_STORE(g_object_get_data (G_OBJECT(tny_account),
496                                                                      "account_store"));
497         
498                 if (account_store) {
499                         modest_tny_account_store_forget_already_asked (MODEST_TNY_ACCOUNT_STORE (account_store), 
500                                                                        tny_account);
501                 }
502         
503                 tny_camel_account_set_online (TNY_CAMEL_ACCOUNT(tny_account), TRUE, 
504                                               set_online_callback,  "online");
505         }
506         
507         return TRUE;
508 }
509
510
511
512 TnyAccount*
513 modest_tny_account_new_from_account (ModestAccountMgr *account_mgr,
514                                      const gchar *account_name,
515                                      TnyAccountType type,
516                                      TnySessionCamel *session,
517                                      TnyGetPassFunc get_pass_func,
518                                      TnyForgetPassFunc forget_pass_func) 
519 {
520         TnyAccount *tny_account = NULL;
521         ModestAccountSettings *settings = NULL;
522         ModestServerAccountSettings *server_settings = NULL;
523         const gchar *display_name;
524         TnyConnectionPolicy *policy;
525
526         g_return_val_if_fail (account_mgr, NULL);
527         g_return_val_if_fail (account_name, NULL);
528         g_return_val_if_fail (session, NULL);
529         g_return_val_if_fail (type == TNY_ACCOUNT_TYPE_STORE || type == TNY_ACCOUNT_TYPE_TRANSPORT,
530                               NULL);
531
532         settings = modest_account_mgr_load_account_settings (account_mgr, account_name);
533         if (!settings) {
534                 g_printerr ("modest: %s: cannot get account data for account %s\n",
535                             __FUNCTION__, account_name);
536                 return NULL;
537         }
538         display_name = modest_account_settings_get_display_name (settings);
539
540         if (type == TNY_ACCOUNT_TYPE_STORE)
541                 server_settings = modest_account_settings_get_store_settings (settings);
542         else if (type == TNY_ACCOUNT_TYPE_TRANSPORT)
543                 server_settings = modest_account_settings_get_transport_settings (settings);
544
545         if (modest_server_account_settings_get_account_name (server_settings) == NULL) {
546                 g_printerr ("modest: no %s account defined for '%s'\n",
547                             type == TNY_ACCOUNT_TYPE_STORE ? "store" : "transport",
548                             display_name);
549                 g_object_unref (server_settings);
550                 g_object_unref (settings);
551                 return NULL;
552         }
553         
554         tny_account = create_tny_account (session, server_settings);
555         if (!tny_account) { 
556                 g_printerr ("modest: failed to create tny account for %s (%s)\n",
557                             account_name, 
558                             modest_server_account_settings_get_account_name (server_settings));
559                 g_object_unref (server_settings);
560                 g_object_unref (settings);
561                 return NULL;
562         } else
563                 update_tny_account (tny_account, server_settings);
564                 
565         /* This name is what shows up in the folder view -- so for some POP/IMAP/... server
566          * account, we set its name to the account of which it is part. */
567  
568         if (display_name)
569                 tny_account_set_name (tny_account, display_name);
570
571         tny_account_set_forget_pass_func (tny_account,
572                                           forget_pass_func ? forget_pass_func : forget_pass_dummy);
573         tny_account_set_pass_func (tny_account,
574                                    get_pass_func ? get_pass_func: get_pass_dummy);
575
576         policy = modest_default_connection_policy_new ();
577         tny_account_set_connection_policy (tny_account, policy);
578         g_object_unref (policy);
579
580         modest_tny_account_set_parent_modest_account_name_for_server_account (tny_account,
581                                                                               account_name);
582         g_object_unref (server_settings);
583         g_object_unref (settings);
584
585         return tny_account;
586 }
587
588 typedef struct
589 {
590         TnyStoreAccount *account;
591         
592         ModestTnyAccountGetMmcAccountNameCallback callback;
593         gpointer user_data;
594 } GetMmcAccountNameData;
595
596
597
598 #ifndef MODEST_TOOLKIT_GTK
599 /* Gets the memory card name: */
600 static void 
601 on_modest_file_system_info (HildonFileSystemInfoHandle *handle,
602                             HildonFileSystemInfo *info,
603                             const GError *error, gpointer data)
604 {
605         GetMmcAccountNameData *callback_data = (GetMmcAccountNameData*)data;
606
607         if (error) {
608                 g_warning ("%s: error=%s", __FUNCTION__, error->message);
609         }
610         
611         TnyAccount *account = TNY_ACCOUNT (callback_data->account);
612         
613         const gchar *previous_display_name = NULL;
614         
615         const gchar *display_name = NULL;
616         if (!error && info) {
617                 display_name = hildon_file_system_info_get_display_name(info);
618                 previous_display_name = tny_account_get_name (account);
619         }
620                  
621         /* printf ("DEBUG: %s: display name=%s\n", __FUNCTION__,  display_name); */
622         if (display_name && previous_display_name && 
623                 (strcmp (display_name, previous_display_name) != 0)) {
624                 tny_account_set_name (account, display_name);
625         }
626                 
627         /* Inform the application that the name is now ready: */
628         if (callback_data->callback)
629                 (*(callback_data->callback)) (callback_data->account, 
630                         callback_data->user_data);
631         
632         g_object_unref (callback_data->account);
633         g_slice_free (GetMmcAccountNameData, callback_data);
634 }
635 #endif
636
637 void modest_tny_account_get_mmc_account_name (TnyStoreAccount* self, ModestTnyAccountGetMmcAccountNameCallback callback, gpointer user_data)
638 {
639 #ifndef MODEST_TOOLKIT_GTK
640         /* Just use the path for the single memory card,
641          * rather than try to figure out the path to the specific card by 
642          * looking at the maildir URI:
643          */
644         gchar *uri_real = g_strconcat (MODEST_MMC1_VOLUMEPATH_URI_PREFIX,
645                                        g_getenv (MODEST_MMC1_VOLUMEPATH_ENV),
646                                        NULL);
647
648         /*
649         gchar* uri = tny_account_get_url_string (TNY_ACCOUNT (self));
650         if (!uri)
651                 return;
652
653         TODO: This gets the name of the folder, but we want the name of the volume.
654         gchar *uri_real = NULL;
655         const gchar* prefix = "maildir://localhost/";
656         if ((strstr (uri, prefix) == uri) && (strlen(uri) > strlen(prefix)) )
657                 uri_real = g_strconcat ("file:///", uri + strlen (prefix), NULL);
658         */
659
660         if (uri_real) {
661                 //This is freed in the callback:
662                 GetMmcAccountNameData * callback_data = g_slice_new0(GetMmcAccountNameData);
663                 callback_data->account = self;
664                 g_object_ref (callback_data->account); /* Unrefed when we destroy the struct. */
665                 callback_data->callback = callback;
666                 callback_data->user_data = user_data;
667                 
668                 /* TODO: gnome_vfs_volume_get_display_name() does not return 
669                  * the same string. But why not? Why does hildon needs its own 
670                  * function for this?
671                  */
672                 /* printf ("DEBUG: %s Calling hildon_file_system_info_async_new() with URI=%s\n", __FUNCTION__, uri_real); */
673                 hildon_file_system_info_async_new(uri_real, 
674                         on_modest_file_system_info, callback_data /* user_data */);
675
676                 g_free (uri_real);
677         }
678
679         /* g_free (uri); */
680 #endif
681 }
682
683                                 
684
685 TnyAccount*
686 modest_tny_account_new_for_local_folders (ModestAccountMgr *account_mgr, TnySessionCamel *session,
687                                           const gchar* location_filepath)
688 {
689         TnyStoreAccount *tny_account;
690         CamelURL *url;
691         gchar *maildir, *url_string;
692         TnyConnectionPolicy *policy;
693
694         g_return_val_if_fail (account_mgr, NULL);
695         g_return_val_if_fail (session, NULL);
696         
697         /* Make sure that the directories exist: */
698         modest_init_local_folders (location_filepath);
699         
700         if (!location_filepath) {
701                 /* A NULL filepath means that this is the special local-folders maildir 
702                  * account: */
703                 tny_account = TNY_STORE_ACCOUNT (modest_tny_local_folders_account_new ());
704         }
705         else {
706                 /* Else, for instance, a per-account outbox maildir account: */
707                 tny_account = TNY_STORE_ACCOUNT (tny_camel_store_account_new ());
708         }
709                 
710         if (!tny_account) {
711                 g_printerr ("modest: %s: cannot create account for local folders. filepath=%s", 
712                         __FUNCTION__, location_filepath);
713                 return NULL;
714         }
715         tny_camel_account_set_session (TNY_CAMEL_ACCOUNT(tny_account), session);
716         
717         /* This path contains directories for each local folder.
718          * We have created them so that TnyCamelStoreAccount can find them 
719          * and report a folder for each directory: */
720         maildir = modest_local_folder_info_get_maildir_path (location_filepath);
721         url = camel_url_new ("maildir:", NULL);
722         camel_url_set_path (url, maildir);
723         /* Needed by tinymail's DBC assertions */
724         camel_url_set_host (url, "localhost");
725         url_string = camel_url_to_string (url, 0);
726         
727         tny_account_set_url_string (TNY_ACCOUNT(tny_account), url_string);
728 /*      printf("DEBUG: %s:\n  url=%s\n", __FUNCTION__, url_string); */
729
730         /* TODO: Use a more generic way of identifying memory card paths, 
731          * and of marking accounts as memory card accounts, maybe
732          * via a derived TnyCamelStoreAccount ? */
733         const gboolean is_mmc = 
734                 location_filepath && 
735                 (strcmp (location_filepath, g_getenv (MODEST_MMC1_VOLUMEPATH_ENV)) == 0);
736                 
737         /* The name of memory card locations will be updated asynchronously.
738          * This is just a default: */
739         const gchar *name = is_mmc ? _("Memory Card") : 
740                 MODEST_LOCAL_FOLDERS_DEFAULT_DISPLAY_NAME;
741         tny_account_set_name (TNY_ACCOUNT(tny_account), name); 
742         
743         /* Get the correct display name for memory cards, asynchronously: */
744         if (location_filepath) {
745                 GError *error = NULL;
746                 gchar *uri = g_filename_to_uri(location_filepath, NULL, &error);
747                 if (error) {
748                         g_warning ("%s: g_filename_to_uri(%s) failed: %s", __FUNCTION__, 
749                                 location_filepath, error->message);
750                         g_error_free (error);
751                         error = NULL;   
752                 } else if (uri) {
753                         /* Get the account name asynchronously:
754                          * This might not happen soon enough, so some UI code might 
755                          * need to call this again, specifying a callback.
756                          */
757                         modest_tny_account_get_mmc_account_name (tny_account, NULL, NULL);
758                                 
759                         g_free (uri);
760                         uri = NULL;
761                 }
762         }
763         
764         
765         const gchar* id = is_mmc ? MODEST_MMC_ACCOUNT_ID :
766                 MODEST_LOCAL_FOLDERS_ACCOUNT_ID;
767         tny_account_set_id (TNY_ACCOUNT(tny_account), id);
768         
769         tny_account_set_forget_pass_func (TNY_ACCOUNT(tny_account), forget_pass_dummy);
770         tny_account_set_pass_func (TNY_ACCOUNT(tny_account), get_pass_dummy);
771
772         policy = modest_default_connection_policy_new ();
773         tny_account_set_connection_policy (TNY_ACCOUNT (tny_account), policy);
774         g_object_unref (policy);
775
776         modest_tny_account_set_parent_modest_account_name_for_server_account (
777                 TNY_ACCOUNT (tny_account), id);
778         
779         camel_url_free (url);
780         g_free (maildir);
781         g_free (url_string);
782
783         return TNY_ACCOUNT(tny_account);
784 }
785
786
787 TnyAccount*
788 modest_tny_account_new_for_per_account_local_outbox_folder (ModestAccountMgr *account_mgr,
789                                                             const gchar* account_name,
790                                                             TnySessionCamel *session)
791 {
792         TnyConnectionPolicy *policy;
793         TnyStoreAccount *tny_account;
794        
795         g_return_val_if_fail (account_mgr, NULL);
796         g_return_val_if_fail (account_name, NULL);
797         g_return_val_if_fail (session, NULL);
798
799         /* Notice that we create a ModestTnyOutboxAccount here, 
800          * instead of just a TnyCamelStoreAccount,
801          * so that we can later identify this as a special account for internal use only.
802          */
803         tny_account = TNY_STORE_ACCOUNT (modest_tny_outbox_account_new ());
804
805         if (!tny_account) {
806                 g_printerr ("modest: cannot create account for per-account local outbox folder.");
807                 return NULL;
808         }
809         
810         tny_camel_account_set_session (TNY_CAMEL_ACCOUNT(tny_account), session);
811         
812         /* Make sure that the paths exists on-disk so that TnyCamelStoreAccount can 
813          * find it to create a TnyFolder for it: */
814         gchar *folder_dir = modest_per_account_local_outbox_folder_info_get_maildir_path_to_outbox_folder (account_name); 
815         modest_init_one_local_folder(folder_dir);
816         g_free (folder_dir);
817         folder_dir = NULL;
818
819         /* This path should contain just one directory - "outbox": */
820         gchar *maildir = 
821                 modest_per_account_local_outbox_folder_info_get_maildir_path (account_name);
822                         
823         CamelURL *url = camel_url_new ("maildir:", NULL);
824         camel_url_set_path (url, maildir);
825         g_free (maildir);
826         
827         /* Needed by tinymail's DBC assertions */
828         camel_url_set_host (url, "localhost");
829         gchar *url_string = camel_url_to_string (url, 0);
830         camel_url_free (url);
831         
832         tny_account_set_url_string (TNY_ACCOUNT(tny_account), url_string);
833 /*      printf("DEBUG: %s:\n  url=%s\n", __FUNCTION__, url_string); */
834         g_free (url_string);
835
836         /* This text should never been seen,
837          * because the per-account outbox accounts are not seen directly by the user.
838          * Their folders are merged and shown as one folder. */ 
839         tny_account_set_name (TNY_ACCOUNT(tny_account), "Per-Account Outbox"); 
840         
841         gchar *account_id = g_strdup_printf (
842                 MODEST_PER_ACCOUNT_LOCAL_OUTBOX_FOLDER_ACCOUNT_ID_PREFIX "%s", 
843                 account_name);
844         tny_account_set_id (TNY_ACCOUNT(tny_account), account_id);
845         g_free (account_id);
846         
847         tny_account_set_forget_pass_func (TNY_ACCOUNT(tny_account), forget_pass_dummy);
848         tny_account_set_pass_func (TNY_ACCOUNT(tny_account), get_pass_dummy);
849
850         policy = modest_default_connection_policy_new ();
851         tny_account_set_connection_policy (TNY_ACCOUNT (tny_account), policy);
852         g_object_unref (policy);
853
854         /* Make this think that it belongs to the modest local-folders parent account: */
855         modest_tny_account_set_parent_modest_account_name_for_server_account (
856                 TNY_ACCOUNT (tny_account), MODEST_LOCAL_FOLDERS_ACCOUNT_ID);
857
858         return TNY_ACCOUNT(tny_account);
859 }
860
861
862
863 typedef struct _RecurseFoldersAsyncHelper {
864         ModestFolderStats stats;
865         guint pending_calls;
866         GetFolderStatsCallback callback;
867         GetFolderStatsCallback status_callback;
868         gpointer user_data;
869 } RecurseFoldersAsyncHelper;
870
871 static void 
872 recurse_folders_async_cb (TnyFolderStore *folder_store, 
873                           gboolean canceled,
874                           TnyList *list, 
875                           GError *err, 
876                           gpointer user_data)
877 {
878         RecurseFoldersAsyncHelper *helper;
879         TnyIterator *iter;
880
881         helper = (RecurseFoldersAsyncHelper *) user_data;
882
883         /* A goto just to avoid an indentation level */
884         if (err || canceled)
885                 goto next_folder;
886
887         /* Retrieve children */
888         iter = tny_list_create_iterator (list);
889         while (!tny_iterator_is_done (iter)) {
890                 TnyList *folders = NULL;
891                 TnyFolderStore *folder = NULL;
892
893                 folders = tny_simple_list_new ();
894                 folder = (TnyFolderStore*) tny_iterator_get_current (iter);
895         
896                 /* Add pending call */
897                 helper->pending_calls++;
898                 helper->stats.folders++;
899                 if (TNY_IS_FOLDER (folder)) {
900                         helper->stats.msg_count += tny_folder_get_all_count (TNY_FOLDER (folder));
901                         helper->stats.local_size += tny_folder_get_local_size (TNY_FOLDER (folder));
902                 }
903
904                 /* notify */
905                 if (helper->status_callback)
906                         helper->status_callback (helper->stats, helper->user_data);
907
908                 /* Avoid the outbox */
909                 if (!TNY_IS_MERGE_FOLDER (folder) && 
910                     (TNY_IS_FOLDER (folder) && 
911                      tny_folder_get_folder_type (TNY_FOLDER (folder)) != TNY_FOLDER_TYPE_OUTBOX))
912                         tny_folder_store_get_folders_async (folder, folders, NULL, FALSE,
913                                                             recurse_folders_async_cb, 
914                                                             NULL, helper);
915                 g_object_unref (folders);
916                 g_object_unref (G_OBJECT (folder));
917                 
918                 tny_iterator_next (iter);
919         }
920         g_object_unref (G_OBJECT (iter));
921
922 next_folder:
923         /* Remove my own pending call */
924         helper->pending_calls--;
925
926         /* This means that we have all the folders */
927         if (helper->pending_calls == 0) {
928                 /* notify */
929                 if (helper->callback)
930                         helper->callback (helper->stats, helper->user_data);
931
932                 /* Free resources */
933                 g_slice_free (RecurseFoldersAsyncHelper, helper);
934         }
935 }
936
937 void
938 modest_tny_folder_store_get_folder_stats (TnyFolderStore *self,
939                                           GetFolderStatsCallback callback,
940                                           GetFolderStatsCallback status_callback,
941                                           gpointer user_data)
942 {
943         RecurseFoldersAsyncHelper *helper;
944         TnyList *folders;
945
946         g_return_if_fail (TNY_IS_FOLDER_STORE (self));
947
948         /* Create helper */
949         helper = g_slice_new0 (RecurseFoldersAsyncHelper);
950         helper->pending_calls = 1;
951         helper->callback = callback;
952         helper->status_callback = status_callback;
953         helper->user_data = user_data;
954
955         if (TNY_IS_FOLDER (self)) {
956                 helper->stats.msg_count = tny_folder_get_all_count (TNY_FOLDER (self));
957                 helper->stats.local_size = tny_folder_get_local_size (TNY_FOLDER (self));
958         }
959
960         folders = tny_simple_list_new ();
961         tny_folder_store_get_folders_async (TNY_FOLDER_STORE (self),
962                                             folders, NULL, FALSE,
963                                             recurse_folders_async_cb, 
964                                             NULL, helper);
965         g_object_unref (folders);
966 }
967
968 const gchar* 
969 modest_tny_account_get_parent_modest_account_name_for_server_account (TnyAccount *self)
970 {
971         return (const gchar *)g_object_get_data (G_OBJECT (self), "modest_account");
972 }
973
974 void 
975 modest_tny_account_set_parent_modest_account_name_for_server_account (TnyAccount *self, 
976                                                                       const gchar* parent_modest_account_name)
977 {
978         g_object_set_data_full (G_OBJECT(self), "modest_account",
979                                 (gpointer) g_strdup (parent_modest_account_name), g_free);
980 }
981
982 gboolean
983 modest_tny_account_is_virtual_local_folders (TnyAccount *self)
984 {
985         /* We should make this more sophisticated if we ever use ModestTnyLocalFoldersAccount 
986          * for anything else. */
987         return MODEST_IS_TNY_LOCAL_FOLDERS_ACCOUNT (self);
988 }
989
990
991 gboolean
992 modest_tny_account_is_memory_card_account (TnyAccount *self)
993 {
994         const gchar* account_id = NULL;
995
996         g_return_val_if_fail (TNY_ACCOUNT (self), FALSE);
997
998         if (!self)
999                 return FALSE;
1000
1001         account_id = tny_account_get_id (self);
1002
1003         if (!account_id)
1004                 return FALSE;
1005         else    
1006                 return (strcmp (account_id, MODEST_MMC_ACCOUNT_ID) == 0);
1007 }
1008
1009 gboolean 
1010 modest_tny_folder_store_is_remote (TnyFolderStore *folder_store)
1011 {
1012         TnyAccount *account = NULL;
1013         gboolean result = TRUE;
1014
1015         g_return_val_if_fail(TNY_IS_FOLDER_STORE(folder_store), FALSE);
1016
1017         if (TNY_IS_FOLDER (folder_store)) {
1018                 /* Get the folder's parent account: */
1019                 account = tny_folder_get_account(TNY_FOLDER(folder_store));
1020         } else if (TNY_IS_ACCOUNT (folder_store)) {
1021                 account = TNY_ACCOUNT(folder_store);
1022                 g_object_ref(account);
1023         }
1024
1025         if (account != NULL) {
1026                 if (tny_account_get_account_type (account) == TNY_ACCOUNT_TYPE_STORE) {
1027                         if (!TNY_IS_CAMEL_POP_STORE_ACCOUNT (account) &&
1028                             !TNY_IS_CAMEL_IMAP_STORE_ACCOUNT (account)) {
1029                                 /* This must be a maildir account, which does
1030                                  * not require a connection: */
1031                                 result = FALSE;
1032                         }
1033                 }
1034                 g_object_unref (account);
1035         } else {
1036                 result = FALSE;
1037         }
1038
1039         return result;
1040 }
1041
1042 ModestProtocolType 
1043 modest_tny_account_get_protocol_type (TnyAccount *self)
1044 {
1045         ModestProtocolRegistry *protocol_registry;
1046         ModestProtocol *protocol;
1047         ModestProtocolType result;
1048
1049         protocol_registry = modest_runtime_get_protocol_registry ();
1050         protocol = modest_protocol_registry_get_protocol_by_name (protocol_registry,
1051                                                                   MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
1052                                                                   tny_account_get_proto (self));
1053         result = protocol?modest_protocol_get_type_id (protocol):MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1054
1055         return result;
1056 }