Modified webpage: now tinymail repository is in gitorious.
[modest] / src / modest-tny-account.c
index 84b5187..67d8532 100644 (file)
@@ -28,6 +28,7 @@
  */
 
 #include <modest-platform.h>
+#include <modest-defs.h>
 #include <modest-tny-platform-factory.h>
 #include <modest-tny-account.h>
 #include <modest-tny-account-store.h>
 #include <tny-camel-transport-account.h>
 #include <tny-camel-imap-store-account.h>
 #include <tny-camel-pop-store-account.h>
+#include <modest-account-protocol.h>
 #include <tny-folder-stats.h>
 #include <tny-merge-folder.h>
 #include <modest-debug.h>
 #include <string.h>
-#ifdef MODEST_PLATFORM_MAEMO
-#ifdef MODEST_HAVE_HILDON0_WIDGETS
-#include <hildon-widgets/hildon-file-system-info.h>
-#else
+#ifdef MODEST_TOOLKIT_HILDON2
 #include <hildon/hildon-file-system-info.h>
 #endif
-#endif
 
 /* we need these dummy functions, or tinymail will complain */
 static gchar *  get_pass_dummy     (TnyAccount *account, const gchar *prompt, gboolean *cancel);
@@ -116,9 +114,9 @@ modest_tny_account_get_special_folder (TnyAccount *account,
        /* There is no need to do this _async, as these are local folders. */
        /* TODO: However, this seems to fail sometimes when the network is busy, 
         * returning an empty list. murrayc. */ 
-       tny_folder_store_get_folders (TNY_FOLDER_STORE (local_account), folders, NULL, &error);
+       tny_folder_store_get_folders (TNY_FOLDER_STORE (local_account), folders, NULL, FALSE, &error);
        if (error) {
-               g_warning ("%s: tny_folder_store_get_folders() failed:%s\n", __FUNCTION__, error->message);
+               g_debug ("%s: tny_folder_store_get_folders() failed:%s\n", __FUNCTION__, error->message);
                g_error_free (error);
                goto cleanup;
        }
@@ -171,30 +169,21 @@ create_tny_account (TnySessionCamel *session,
                    ModestServerAccountSettings *server_settings)
 {
        TnyAccount *tny_account = NULL;
-       ModestTransportStoreProtocol protocol;
-       const gchar* proto_name;
+       ModestProtocolType protocol_type;
+       ModestProtocolRegistry *protocol_registry;
+       ModestProtocol *protocol;
        
        g_return_val_if_fail (session, NULL);
        g_return_val_if_fail (server_settings, NULL);
-       protocol = modest_server_account_settings_get_protocol (server_settings);
-       g_return_val_if_fail (protocol != MODEST_PROTOCOL_TRANSPORT_STORE_UNKNOWN, NULL);
+       protocol_type = modest_server_account_settings_get_protocol (server_settings);
+       g_return_val_if_fail (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID, NULL);
        
-       switch (protocol) {
-       case MODEST_PROTOCOL_TRANSPORT_SENDMAIL:
-       case MODEST_PROTOCOL_TRANSPORT_SMTP:
-               tny_account = TNY_ACCOUNT (modest_transport_account_decorator_new ()); break;
-       case MODEST_PROTOCOL_STORE_POP:
-               tny_account = TNY_ACCOUNT(tny_camel_pop_store_account_new ()); break;
-       case MODEST_PROTOCOL_STORE_IMAP:
-               tny_account = TNY_ACCOUNT(tny_camel_imap_store_account_new ()); break;
-       case MODEST_PROTOCOL_STORE_MAILDIR:
-       case MODEST_PROTOCOL_STORE_MBOX:
-               /* Note that this is not where we create the special local folders account.
-                * That happens in modest_tny_account_new_for_local_folders() instead.
-                */
-               tny_account = TNY_ACCOUNT(tny_camel_store_account_new()); break;
-       default:
-               g_return_val_if_reached (NULL);
+       protocol_registry = modest_runtime_get_protocol_registry ();
+       protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
+
+       if (MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
+               ModestAccountProtocol *acocunt_proto = MODEST_ACCOUNT_PROTOCOL (protocol);
+               tny_account = modest_account_protocol_create_account (acocunt_proto);
        }
 
        if (!tny_account) {
@@ -208,8 +197,7 @@ create_tny_account (TnySessionCamel *session,
        tny_camel_account_set_session (TNY_CAMEL_ACCOUNT (tny_account), session);
     
        /* Proto */
-       proto_name =  modest_protocol_info_get_transport_store_protocol_name(protocol);
-       tny_account_set_proto (tny_account, proto_name);
+       tny_account_set_proto (tny_account, modest_protocol_get_name (protocol));
 
        return tny_account;
 }
@@ -218,40 +206,8 @@ create_tny_account (TnySessionCamel *session,
 
 /* Camel options: */
 
-/* These seem to be listed in 
- * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store.c 
- */
 #define MODEST_ACCOUNT_OPTION_SSL "use_ssl"
-#define MODEST_ACCOUNT_OPTION_SSL_NEVER "never"
-/* This is a tinymail camel-lite specific option, 
- * roughly equivalent to "always" in regular camel,
- * which is appropriate for a generic "SSL" connection option: */
-#define MODEST_ACCOUNT_OPTION_SSL_WRAPPED "wrapped"
-/* Not used in our UI so far: */
-#define MODEST_ACCOUNT_OPTION_SSL_WHEN_POSSIBLE "when-possible"
-/* This is a tinymailcamel-lite specific option that is not in regular camel. */
-#define MODEST_ACCOUNT_OPTION_SSL_TLS "tls"
-
-/* These seem to be listed in 
- * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-provider.c 
- */
-#define MODEST_ACCOUNT_OPTION_USE_LSUB "use_lsub" /* Show only subscribed folders */
-#define MODEST_ACCOUNT_OPTION_CHECK_ALL "check_all" /* Check for new messages in all folders */
 
-/* Posssible values for tny_account_set_secure_auth_mech().
- * These might be camel-specific.
- * Really, tinymail should use an enum.
- * camel_sasl_authtype() seems to list some possible values.
- */
-/* Note that evolution does not offer these for IMAP: */
-#define MODEST_ACCOUNT_AUTH_PLAIN "PLAIN"
-#define MODEST_ACCOUNT_AUTH_ANONYMOUS "ANONYMOUS"
-
-/* Caeml's IMAP uses NULL instead for "Password".
- * Also, not that Evolution offers "Password" for IMAP, but "Login" for SMTP.*/
-#define MODEST_ACCOUNT_AUTH_PASSWORD "LOGIN" 
-#define MODEST_ACCOUNT_AUTH_CRAMMD5 "CRAM-MD5"
 
                
 /**
@@ -291,9 +247,14 @@ update_tny_account (TnyAccount *tny_account,
                /* Enable secure connection settings: */
                TnyPair *option_security = NULL;
                const gchar* auth_mech_name = NULL;
-               ModestTransportStoreProtocol protocol;
-               ModestConnectionProtocol security;
-               ModestAuthProtocol auth_protocol;
+               ModestProtocolType protocol_type;
+               ModestProtocol *protocol;
+               ModestProtocolType security_type;
+               ModestProtocol *security;
+               ModestProtocolType auth_protocol_type;
+               ModestProtocol *auth_protocol;
+               ModestProtocolRegistry *protocol_registry;
+               const gchar *security_option_string;
                const gchar *username;
                const gchar *hostname;
                guint port;
@@ -301,101 +262,65 @@ update_tny_account (TnyAccount *tny_account,
                /* First of all delete old options */
                tny_camel_account_clear_options (TNY_CAMEL_ACCOUNT (tny_account));
 
-               protocol = modest_server_account_settings_get_protocol (server_settings);
-               security = modest_server_account_settings_get_security (server_settings);
-               auth_protocol = modest_server_account_settings_get_auth_protocol (server_settings);
-
-               switch (security) {
-               case MODEST_PROTOCOL_CONNECTION_NORMAL:
-                       option_security = tny_pair_new (MODEST_ACCOUNT_OPTION_SSL,MODEST_ACCOUNT_OPTION_SSL_NEVER);
-                       break;
-               case MODEST_PROTOCOL_CONNECTION_SSL:
-                       /* Apparently, use of "IMAPS" (specified in our UI spec), implies 
-                        * use of the "wrapped" option: */
-                       option_security = tny_pair_new (MODEST_ACCOUNT_OPTION_SSL,MODEST_ACCOUNT_OPTION_SSL_WRAPPED);
-                       break;
-               case MODEST_PROTOCOL_CONNECTION_TLS:
-                       option_security = tny_pair_new (MODEST_ACCOUNT_OPTION_SSL,MODEST_ACCOUNT_OPTION_SSL_TLS);
-                       break;
-               case MODEST_PROTOCOL_CONNECTION_TLS_OP:
-                       /* This is not actually in our UI: */
-                       option_security = tny_pair_new (MODEST_ACCOUNT_OPTION_SSL,MODEST_ACCOUNT_OPTION_SSL_WHEN_POSSIBLE);
-                       break;
-               default:
-                       break;
-               }
-               
-               if(option_security) {
-                       tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account), 
-                                                     option_security);
+               protocol_type = modest_server_account_settings_get_protocol (server_settings);
+               security_type = modest_server_account_settings_get_security_protocol (server_settings);
+               auth_protocol_type = modest_server_account_settings_get_auth_protocol (server_settings);
+               protocol_registry = modest_runtime_get_protocol_registry ();
+               protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
+               security = modest_protocol_registry_get_protocol_by_type (protocol_registry, security_type);
+               auth_protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, auth_protocol_type);
+
+               security_option_string = modest_protocol_get (security, MODEST_PROTOCOL_SECURITY_ACCOUNT_OPTION);
+               if (security_option_string) {
+                       option_security = tny_pair_new (MODEST_ACCOUNT_OPTION_SSL, security_option_string);
+                       tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account), option_security);
                        g_object_unref (option_security);
                }
-               
+
                /* Secure authentication: */
-               switch (auth_protocol) {
-               case MODEST_PROTOCOL_AUTH_NONE:
-                       /* IMAP and POP need at least a password,
-                        * which camel uses if we specify NULL.
-                        * This setting should never happen anyway. */
-                       if (protocol == MODEST_PROTOCOL_STORE_IMAP ||
-                           protocol == MODEST_PROTOCOL_STORE_POP)
-                               auth_mech_name = NULL;
-                       else
-                               auth_mech_name = MODEST_ACCOUNT_AUTH_PLAIN;
-                       break;
-                       
-               case MODEST_PROTOCOL_AUTH_PASSWORD:
-                       /* Camel use a password for IMAP or POP if we specify NULL,
-                        * For IMAP, at least it will report an error if we use "Password", "Login" or "Plain".
-                        * (POP is know to report an error for Login too. Probably Password and Plain too.) */
-                       if (protocol == MODEST_PROTOCOL_STORE_IMAP)
-                               auth_mech_name = NULL;
-                       else if (protocol == MODEST_PROTOCOL_STORE_POP)
-                               auth_mech_name = NULL;
-                       else
-                               auth_mech_name = MODEST_ACCOUNT_AUTH_PASSWORD;
-                       break;
-                       
-               case MODEST_PROTOCOL_AUTH_CRAMMD5:
-                       auth_mech_name = MODEST_ACCOUNT_AUTH_CRAMMD5;
-                       break;
-                       
-               default:
-                       g_warning ("%s: Unhandled secure authentication setting %d for "
-                                  "account_name=%s (%s)", __FUNCTION__, auth_protocol,
-                                  account_name, modest_server_account_settings_get_hostname (server_settings));
-                       break;
+               if (MODEST_IS_ACCOUNT_PROTOCOL (protocol) &&
+                   modest_account_protocol_has_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), auth_protocol_type)) {
+                       auth_mech_name = modest_account_protocol_get_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), auth_protocol_type);
+               } else {
+                       auth_mech_name = modest_protocol_get (auth_protocol, MODEST_PROTOCOL_AUTH_ACCOUNT_OPTION);
                }
                
                if (auth_mech_name)
                        tny_account_set_secure_auth_mech (tny_account, auth_mech_name);
                
-               if (modest_protocol_info_protocol_is_store(protocol) && 
-                       (protocol == MODEST_PROTOCOL_STORE_IMAP) ) {
-                       TnyPair *use_lsub, *check_all;
-
-                       use_lsub = tny_pair_new (MODEST_ACCOUNT_OPTION_USE_LSUB, "");
-                       check_all = tny_pair_new (MODEST_ACCOUNT_OPTION_CHECK_ALL, "");
-                       /* Other connection options, needed for IMAP. */
-                       tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account),
-                                                     use_lsub);
-                       tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account),
-                                                     check_all);
-                       g_object_unref (use_lsub);
-                       g_object_unref (check_all);
+               if (MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
+                       TnyList *account_options;
+                       TnyIterator *iterator;
+
+                       account_options = modest_account_protocol_get_account_options (MODEST_ACCOUNT_PROTOCOL (protocol));
+                       for (iterator = tny_list_create_iterator (account_options); !tny_iterator_is_done (iterator); tny_iterator_next (iterator)) {
+                               TnyPair *current;
+
+                               current = TNY_PAIR (tny_iterator_get_current (iterator));
+                               tny_camel_account_add_option (TNY_CAMEL_ACCOUNT (tny_account),
+                                                             current);
+                               g_object_unref (current);
+                       }
+                       g_object_unref (iterator);
+                       g_object_unref (account_options);
+                       
+               }
+
+               if (modest_server_account_settings_get_uri (server_settings) == NULL) {
+                       username = modest_server_account_settings_get_username (server_settings);
+                       if (username && strlen (username) > 0) 
+                               tny_account_set_user (tny_account, username);
+                       hostname = modest_server_account_settings_get_hostname (server_settings);
+                       if (hostname && hostname[0] != '\0')
+                               tny_account_set_hostname (tny_account, hostname);
+                       
+                       /* Set the port: */
+                       port = modest_server_account_settings_get_port (server_settings);
+                       if (port)
+                               tny_account_set_port (tny_account, port);
+               } else {
+                       tny_account_set_url_string (TNY_ACCOUNT (tny_account), modest_server_account_settings_get_uri (server_settings));
                }
-               
-               username = modest_server_account_settings_get_username (server_settings);
-               if (username && strlen (username) > 0) 
-                       tny_account_set_user (tny_account, username);
-               hostname = modest_server_account_settings_get_hostname (server_settings);
-               if (hostname)
-                       tny_account_set_hostname (tny_account, hostname);
-                
-               /* Set the port: */
-               port = modest_server_account_settings_get_port (server_settings);
-               if (port)
-                       tny_account_set_port (tny_account, port);
        }
 
        MODEST_DEBUG_BLOCK (
@@ -416,42 +341,50 @@ modest_tny_account_new_from_server_account_name (ModestAccountMgr *account_mgr,
 {
        ModestServerAccountSettings *server_settings;
        TnyAccount *tny_account;
-       TnyConnectionPolicy *policy;
+       ModestProtocolRegistry *protocol_registry;
        
        g_return_val_if_fail (session, NULL);
        g_return_val_if_fail (server_account_name, NULL);
 
+       protocol_registry = modest_runtime_get_protocol_registry ();
        
-       server_settings =       modest_account_mgr_load_server_settings (account_mgr, server_account_name);
+       server_settings = modest_account_mgr_load_server_settings (account_mgr, server_account_name, TRUE);
        if (!server_settings)
                return NULL;
 
        tny_account = TNY_ACCOUNT (tny_camel_transport_account_new ());
 
        if (tny_account) {
+               ModestProtocol *protocol;
                const gchar* proto_name = NULL;
                tny_account_set_id (tny_account, server_account_name);
+               tny_account_set_name (tny_account, server_account_name);
                tny_camel_account_set_session (TNY_CAMEL_ACCOUNT (tny_account), session);
-               proto_name = modest_protocol_info_get_transport_store_protocol_name 
-                                   (modest_server_account_settings_get_protocol (server_settings));
+               protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, modest_server_account_settings_get_protocol (server_settings));
+               proto_name = modest_protocol_get_name (protocol);
                tny_account_set_proto (tny_account, proto_name);
                modest_tny_account_set_parent_modest_account_name_for_server_account (tny_account, server_account_name);
        }
 
-       if (!tny_account)
+       if (!tny_account) {
                g_warning ("%s: failed to create tny_account", __FUNCTION__);
-       else if (!update_tny_account (tny_account, server_settings))
-               g_warning ("%s: failed to initialize tny_account", __FUNCTION__);
-       else {
-               tny_account_set_forget_pass_func (tny_account,
-                                                 forget_pass_func ? forget_pass_func : forget_pass_dummy);
-               tny_account_set_pass_func (tny_account,
-                                          get_pass_func ? get_pass_func: get_pass_dummy);
-       }
+       } else {
+               TnyConnectionPolicy *policy;
 
-       policy = modest_default_connection_policy_new ();
-       tny_account_set_connection_policy (tny_account, policy);
-       g_object_unref (policy);
+               if (!update_tny_account (tny_account, server_settings)) {
+                       g_warning ("%s: failed to initialize tny_account", __FUNCTION__);
+               } else {
+                       
+                       tny_account_set_forget_pass_func (tny_account,
+                                                         forget_pass_func ? forget_pass_func : forget_pass_dummy);
+                       tny_account_set_pass_func (tny_account,
+                                                  get_pass_func ? get_pass_func: get_pass_dummy);
+                       
+               }
+               policy = modest_default_connection_policy_new ();
+               tny_account_set_connection_policy (tny_account, policy);
+               g_object_unref (policy);
+       }
 
        g_object_unref (server_settings);
        
@@ -489,7 +422,7 @@ set_online_callback (TnyCamelAccount *account, gboolean canceled, GError *err, g
                                TNY_ACCOUNT (account), TNY_ALERT_TYPE_ERROR, FALSE, 
                                err);
                }
-               g_warning ("err: %s", err->message);
+               g_debug ("err: %s", err->message);
        }
 }
 
@@ -670,7 +603,7 @@ on_modest_file_system_info (HildonFileSystemInfoHandle *handle,
        GetMmcAccountNameData *callback_data = (GetMmcAccountNameData*)data;
 
        if (error) {
-               g_warning ("%s: error=%s", __FUNCTION__, error->message);
+               g_debug ("%s: error=%s", __FUNCTION__, error->message);
        }
        
        TnyAccount *account = TNY_ACCOUNT (callback_data->account);
@@ -702,11 +635,13 @@ on_modest_file_system_info (HildonFileSystemInfoHandle *handle,
 void modest_tny_account_get_mmc_account_name (TnyStoreAccount* self, ModestTnyAccountGetMmcAccountNameCallback callback, gpointer user_data)
 {
 #ifdef MODEST_PLATFORM_MAEMO
-       /* Just use the hard-coded path for the single memory card,
+       /* Just use the path for the single memory card,
         * rather than try to figure out the path to the specific card by 
         * looking at the maildir URI:
         */
-       const gchar *uri_real = MODEST_MCC1_VOLUMEPATH_URI;
+       gchar *uri_real = g_strconcat (MODEST_MMC1_VOLUMEPATH_URI_PREFIX,
+                                      g_getenv (MODEST_MMC1_VOLUMEPATH_ENV),
+                                      NULL);
 
        /*
        gchar* uri = tny_account_get_url_string (TNY_ACCOUNT (self));
@@ -736,7 +671,7 @@ void modest_tny_account_get_mmc_account_name (TnyStoreAccount* self, ModestTnyAc
                hildon_file_system_info_async_new(uri_real, 
                        on_modest_file_system_info, callback_data /* user_data */);
 
-               /* g_free (uri_real); */
+               g_free (uri_real);
        }
 
        /* g_free (uri); */
@@ -795,7 +730,7 @@ modest_tny_account_new_for_local_folders (ModestAccountMgr *account_mgr, TnySess
         * via a derived TnyCamelStoreAccount ? */
        const gboolean is_mmc = 
                location_filepath && 
-               (strcmp (location_filepath, MODEST_MCC1_VOLUMEPATH) == 0);
+               (strcmp (location_filepath, g_getenv (MODEST_MMC1_VOLUMEPATH_ENV)) == 0);
                
        /* The name of memory card locations will be updated asynchronously.
         * This is just a default: */
@@ -972,7 +907,7 @@ recurse_folders_async_cb (TnyFolderStore *folder_store,
                if (!TNY_IS_MERGE_FOLDER (folder) && 
                    (TNY_IS_FOLDER (folder) && 
                     tny_folder_get_folder_type (TNY_FOLDER (folder)) != TNY_FOLDER_TYPE_OUTBOX))
-                       tny_folder_store_get_folders_async (folder, folders, NULL,
+                       tny_folder_store_get_folders_async (folder, folders, NULL, FALSE,
                                                            recurse_folders_async_cb, 
                                                            NULL, helper);
                g_object_unref (folders);
@@ -1022,7 +957,7 @@ modest_tny_folder_store_get_folder_stats (TnyFolderStore *self,
 
        folders = tny_simple_list_new ();
        tny_folder_store_get_folders_async (TNY_FOLDER_STORE (self),
-                                           folders, NULL,
+                                           folders, NULL, FALSE,
                                            recurse_folders_async_cb, 
                                            NULL, helper);
        g_object_unref (folders);
@@ -1087,12 +1022,20 @@ modest_tny_folder_store_is_remote (TnyFolderStore *folder_store)
 
         if (account != NULL) {
                 if (tny_account_get_account_type (account) == TNY_ACCOUNT_TYPE_STORE) {
-                        if (!TNY_IS_CAMEL_POP_STORE_ACCOUNT (account) &&
-                            !TNY_IS_CAMEL_IMAP_STORE_ACCOUNT (account)) {
-                                /* This must be a maildir account, which does
-                                 * not require a connection: */
-                                result = FALSE;
-                        }
+                       ModestProtocolType proto_type;
+                       const gchar *tag;
+                       ModestProtocolRegistry *registry;
+
+                       proto_type = modest_tny_account_get_protocol_type (account);
+                       registry = modest_runtime_get_protocol_registry ();
+                       tag = MODEST_PROTOCOL_REGISTRY_REMOTE_STORE_PROTOCOLS;
+                       if (modest_protocol_registry_protocol_type_has_tag (registry, 
+                                                                           proto_type,
+                                                                           tag)) {
+                               result = TRUE;
+                       } else {
+                               result = FALSE;
+                       }
                 }
                 g_object_unref (account);
         } else {
@@ -1102,3 +1045,18 @@ modest_tny_folder_store_is_remote (TnyFolderStore *folder_store)
         return result;
 }
 
+ModestProtocolType 
+modest_tny_account_get_protocol_type (TnyAccount *self)
+{
+       ModestProtocolRegistry *protocol_registry;
+       ModestProtocol *protocol;
+       ModestProtocolType result;
+
+       protocol_registry = modest_runtime_get_protocol_registry ();
+       protocol = modest_protocol_registry_get_protocol_by_name (protocol_registry,
+                                                                 MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
+                                                                 tny_account_get_proto (self));
+       result = protocol?modest_protocol_get_type_id (protocol):MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
+
+       return result;
+}