2007-04-23 Murray Cumming <murrayc@murrayc.com>
[modest] / src / modest-account-mgr-helpers.c
index 49b02be..a5f0460 100644 (file)
@@ -47,6 +47,31 @@ modest_account_mgr_get_enabled (ModestAccountMgr *self, const gchar* name)
        return modest_account_mgr_get_bool (self, name, MODEST_ACCOUNT_ENABLED, FALSE);
 }
 
+gboolean modest_account_mgr_set_signature (ModestAccountMgr *self, const gchar* name, 
+       const gchar* signature, gboolean use_signature)
+{
+       gboolean result = modest_account_mgr_set_bool (self, name, MODEST_ACCOUNT_USE_SIGNATURE, 
+               use_signature, FALSE);
+       result = result && modest_account_mgr_set_string (self, name, MODEST_ACCOUNT_SIGNATURE, 
+               signature, FALSE);
+       return result;
+}
+
+
+gchar* modest_account_mgr_get_signature (ModestAccountMgr *self, const gchar* name, 
+       gboolean* use_signature)
+{
+       if (use_signature) {
+               *use_signature = 
+                       modest_account_mgr_get_bool (self, name, MODEST_ACCOUNT_USE_SIGNATURE, FALSE);
+       }
+       
+       return modest_account_mgr_get_string (self, name, MODEST_ACCOUNT_SIGNATURE, FALSE);
+}
+       
+       
+
+#if 0 /* Not needed, but works. */
 static gint
 compare_option_strings_for_name (const gchar* a, const gchar* b)
 {
@@ -75,7 +100,7 @@ compare_option_strings_for_name (const gchar* a, const gchar* b)
 }
            
 gchar*
-modest_server_account_data_get_option_value (GSList* options_list, const gchar* option_name)
+modest_server_account_data_get_option_string (GSList* options_list, const gchar* option_name)
 {
        if (!options_list)
                return NULL;
@@ -118,14 +143,113 @@ modest_server_account_data_get_option_bool (GSList* options_list, const gchar* o
                
        return result;
 }
+#endif
 
-ModestProtocol
-modest_server_account_get_option_secure_auth (ModestAccountMgr *self, 
-       const gchar* account_name)
+
+gboolean modest_account_mgr_set_connection_specific_smtp (ModestAccountMgr *self, 
+       const gchar* account_name,
+       const gchar* connection_name, const gchar* server_account_name)
+{
+       modest_account_mgr_remove_connection_specific_smtp (self, account_name, connection_name);
+       
+       GSList *list = modest_account_mgr_get_list (self, account_name, 
+                                                       MODEST_ACCOUNT_CONNECTION_SPECIFIC_SMTP_LIST,
+                                                   MODEST_CONF_VALUE_STRING, TRUE);
+               
+       /* The server account is in the item after the connection name: */
+       GSList *list_connection = g_slist_append (list, (gpointer)connection_name);
+       list_connection = g_slist_append (list_connection, (gpointer)server_account_name);
+       
+       /* Reset the changed list: */
+       modest_account_mgr_set_list (self, account_name, 
+                                                       MODEST_ACCOUNT_CONNECTION_SPECIFIC_SMTP_LIST, list,
+                                                   MODEST_CONF_VALUE_STRING, TRUE);
+                               
+       /* TODO: Should we free the items too, or just the list? */
+       g_slist_free (list);
+       
+       return TRUE;
+}
+
+/**
+ * modest_account_mgr_remove_connection_specific_smtp
+ * @self: a ModestAccountMgr instance
+ * @name: the account name
+ * @connection_name: A libconic IAP connection name
+ * 
+ * Disassacoiate a server account to use with the specific connection for this account.
+ *
+ * Returns: TRUE if it worked, FALSE otherwise
+ */                             
+gboolean modest_account_mgr_remove_connection_specific_smtp (ModestAccountMgr *self, 
+       const gchar* account_name, const gchar* connection_name)
+{
+       GSList *list = modest_account_mgr_get_list (self, account_name, 
+                                                       MODEST_ACCOUNT_CONNECTION_SPECIFIC_SMTP_LIST,
+                                                   MODEST_CONF_VALUE_STRING, TRUE);
+       if (!list)
+               return FALSE;
+               
+       /* The server account is in the item after the connection name: */
+       GSList *list_connection = g_slist_find_custom (list, connection_name, (GCompareFunc)strcmp);
+       if (list_connection) {
+               /* remove both items: */
+               GSList *temp = g_slist_delete_link(list_connection, list_connection);
+               temp = g_slist_delete_link(temp, g_slist_next(temp));
+       }
+       
+       /* Reset the changed list: */
+       modest_account_mgr_set_list (self, account_name, 
+                                                       MODEST_ACCOUNT_CONNECTION_SPECIFIC_SMTP_LIST, list,
+                                                   MODEST_CONF_VALUE_STRING, TRUE);
+                               
+       /* TODO: Should we free the items too, or just the list? */
+       g_slist_free (list);
+       
+       return TRUE;
+}
+
+/**
+ * modest_account_mgr_get_connection_specific_smtp
+ * @self: a ModestAccountMgr instance
+ * @name: the account name
+ * @connection_name: A libconic IAP connection name
+ * 
+ * Retrieve a server account to use with this specific connection for this account.
+ *
+ * Returns: a server account name to use for this connection, or NULL if none is specified.
+ */                     
+gchar* modest_account_mgr_get_connection_specific_smtp (ModestAccountMgr *self, const gchar* account_name,
+                                        const gchar* connection_name)
+{
+       gchar *result = NULL;
+       
+       GSList *list = modest_account_mgr_get_list (self, account_name, 
+                                                       MODEST_ACCOUNT_CONNECTION_SPECIFIC_SMTP_LIST,
+                                                   MODEST_CONF_VALUE_STRING, TRUE);
+       if (!list)
+               return NULL;
+               
+       /* The server account is in the item after the connection name: */
+       GSList *list_connection = g_slist_find_custom (list, connection_name, (GCompareFunc)strcmp);
+       if (list_connection) {
+               GSList * list_server_account = g_slist_next(list_connection);
+               if (list_server_account)
+                       result = g_strdup ((gchar*)(list_server_account->data));
+       }
+                               
+       /* TODO: Should we free the items too, or just the list? */
+       g_slist_free (list);
+       
+       return result;
+}
+                                        
+                                        
+
+static ModestProtocol
+get_secure_auth_for_conf_string(const gchar* value)
 {
        ModestProtocol result = MODEST_PROTOCOL_AUTH_NONE;
-       gchar* value =modest_account_mgr_get_string (self, account_name, MODEST_ACCOUNT_AUTH_MECH, 
-               TRUE /* server account */);
        if (value) {
                if (strcmp(value, MODEST_ACCOUNT_AUTH_MECH_VALUE_NONE) == 0)
                        result = MODEST_PROTOCOL_AUTH_NONE;
@@ -133,6 +257,20 @@ modest_server_account_get_option_secure_auth (ModestAccountMgr *self,
                        result = MODEST_PROTOCOL_AUTH_PASSWORD;
                else if (strcmp(value, MODEST_ACCOUNT_AUTH_MECH_VALUE_CRAMMD5) == 0)
                        result = MODEST_PROTOCOL_AUTH_CRAMMD5;
+       }
+       
+       return result;
+}
+
+ModestProtocol
+modest_server_account_get_secure_auth (ModestAccountMgr *self, 
+       const gchar* account_name)
+{
+       ModestProtocol result = MODEST_PROTOCOL_AUTH_NONE;
+       gchar* value = modest_account_mgr_get_string (self, account_name, MODEST_ACCOUNT_AUTH_MECH, 
+               TRUE /* server account */);
+       if (value) {
+               result = get_secure_auth_for_conf_string (value);
                        
                g_free (value);
        }
@@ -140,8 +278,9 @@ modest_server_account_get_option_secure_auth (ModestAccountMgr *self,
        return result;
 }
 
+
 void
-modest_server_account_set_option_secure_auth (ModestAccountMgr *self, 
+modest_server_account_set_secure_auth (ModestAccountMgr *self, 
        const gchar* account_name, ModestProtocol secure_auth)
 {
        /* Get the conf string for the enum value: */
@@ -157,19 +296,31 @@ modest_server_account_set_option_secure_auth (ModestAccountMgr *self,
        modest_account_mgr_set_string (self, account_name, MODEST_ACCOUNT_AUTH_MECH, str_value, TRUE);
 }
 
-ModestProtocol
-modest_server_account_data_get_option_security (ModestServerAccountData *account_data)
+static ModestProtocol
+get_security_for_conf_string(const gchar* value)
 {
        ModestProtocol result = MODEST_PROTOCOL_SECURITY_NONE;
-       gchar* value = modest_server_account_data_get_option_value (account_data->options, 
-               MODEST_ACCOUNT_OPTION_SECURITY);
        if (value) {
-               if (strcmp(value, MODEST_ACCOUNT_OPTION_SECURITY_VALUE_NONE) == 0)
+               if (strcmp(value, MODEST_ACCOUNT_SECURITY_VALUE_NONE) == 0)
                        result = MODEST_PROTOCOL_SECURITY_NONE;
-               else if (strcmp(value, MODEST_ACCOUNT_OPTION_SECURITY_VALUE_NORMAL) == 0)
+               else if (strcmp(value, MODEST_ACCOUNT_SECURITY_VALUE_NORMAL) == 0)
                        result = MODEST_PROTOCOL_SECURITY_TLS;
-               else if (strcmp(value, MODEST_ACCOUNT_OPTION_SECURITY_VALUE_SSL) == 0)
+               else if (strcmp(value, MODEST_ACCOUNT_SECURITY_VALUE_SSL) == 0)
                        result = MODEST_PROTOCOL_SECURITY_SSL;
+       }
+       
+       return result;
+}
+
+ModestProtocol
+modest_server_account_get_security (ModestAccountMgr *self, 
+       const gchar* account_name)
+{
+       ModestProtocol result = MODEST_PROTOCOL_SECURITY_NONE;
+       gchar* value = modest_account_mgr_get_string (self, account_name, MODEST_ACCOUNT_SECURITY, 
+               TRUE /* server account */);
+       if (value) {
+               result = get_security_for_conf_string (value);
                        
                g_free (value);
        }
@@ -178,44 +329,23 @@ modest_server_account_data_get_option_security (ModestServerAccountData *account
 }
 
 void
-modest_server_account_set_option_security (ModestAccountMgr *self, 
+modest_server_account_set_security (ModestAccountMgr *self, 
        const gchar* account_name, ModestProtocol security)
 {
-       GSList *options_list = modest_account_mgr_get_list (self, account_name, MODEST_ACCOUNT_OPTIONS,
-                                                    MODEST_CONF_VALUE_STRING, TRUE);
-
-       if(options_list) {
-               /* Remove the item if it exists already: */
-               GSList* option = NULL;
-               do {
-                       g_slist_find_custom(options_list, MODEST_ACCOUNT_OPTION_SECURITY, (GCompareFunc)compare_option_strings_for_name);
-                       if(option)
-                               options_list = g_slist_remove (options_list, option->data);
-               } while(option);
-       }
-               
-       /* Add the new item to the list: */
+       /* Get the conf string for the enum value: */
        const gchar* str_value = NULL;
        if (security == MODEST_PROTOCOL_SECURITY_NONE)
-               str_value = MODEST_ACCOUNT_OPTION_SECURITY_VALUE_NONE;
+               str_value = MODEST_ACCOUNT_SECURITY_VALUE_NONE;
        else if (security == MODEST_PROTOCOL_SECURITY_TLS)
-               str_value = MODEST_ACCOUNT_OPTION_SECURITY_VALUE_NORMAL;
+               str_value = MODEST_ACCOUNT_SECURITY_VALUE_NORMAL;
        else if (security == MODEST_PROTOCOL_SECURITY_SSL)
-               str_value = MODEST_ACCOUNT_OPTION_SECURITY_VALUE_SSL;
-       
-       if (str_value) {
-               gchar* pair = g_strdup_printf(MODEST_ACCOUNT_OPTION_SECURITY "=%s", str_value);
-               options_list = g_slist_append(options_list, pair);
-       }
+               str_value = MODEST_ACCOUNT_SECURITY_VALUE_SSL;
        
        /* Set it in the configuration: */
-       modest_account_mgr_set_list (self, account_name, MODEST_ACCOUNT_OPTIONS, options_list,
-                                                    MODEST_CONF_VALUE_STRING, TRUE);
-       
-       /* TODO: Should we free the items too, or just the list? */
-       g_slist_free (options_list);
+       modest_account_mgr_set_string (self, account_name, MODEST_ACCOUNT_SECURITY, str_value, TRUE);
 }
-                                         
+                    
+#if 0                     
 gchar*
 modest_account_mgr_get_server_account_option (ModestAccountMgr *self, 
        const gchar* account_name, const gchar* option_name)
@@ -232,8 +362,9 @@ modest_account_mgr_get_server_account_option (ModestAccountMgr *self,
                
        return result;
 }
+#endif
 
-static ModestServerAccountData*
+ModestServerAccountData*
 modest_account_mgr_get_server_account_data (ModestAccountMgr *self, const gchar* name)
 {
        ModestServerAccountData *data;
@@ -249,17 +380,29 @@ modest_account_mgr_get_server_account_data (ModestAccountMgr *self, const gchar*
        data->proto        = modest_protocol_info_get_protocol (proto);
        g_free (proto);
 
+       data->port         = modest_account_mgr_get_int (self, name, MODEST_ACCOUNT_PORT, TRUE);
+       
+       gchar *secure_auth_str = modest_account_mgr_get_string (self, name, MODEST_ACCOUNT_AUTH_MECH, TRUE);
+       data->secure_auth  = get_secure_auth_for_conf_string(secure_auth_str);
+       g_free (secure_auth_str);
+               
+       gchar *security_str = modest_account_mgr_get_string (self, name, MODEST_ACCOUNT_SECURITY, TRUE);
+       data->security     = get_security_for_conf_string(security_str);
+       g_free (security_str);
+       
        data->last_updated = modest_account_mgr_get_int    (self, name, MODEST_ACCOUNT_LAST_UPDATED,TRUE);
        
        data->password     = modest_account_mgr_get_string (self, name, MODEST_ACCOUNT_PASSWORD, TRUE);
        data->uri          = modest_account_mgr_get_string (self, name, MODEST_ACCOUNT_URI,TRUE);
        data->options = modest_account_mgr_get_list (self, name, MODEST_ACCOUNT_OPTIONS,
                                                     MODEST_CONF_VALUE_STRING, TRUE);
+                                                  
+       
        return data;
 }
 
 
-static void
+void
 modest_account_mgr_free_server_account_data (ModestAccountMgr *self,
                                             ModestServerAccountData* data)
 {
@@ -439,3 +582,91 @@ modest_account_mgr_get_from_string (ModestAccountMgr *self, const gchar* name)
 
        return from;
 }
+
+/* Add a number to the end of the text, or increment a number that is already there.
+ */
+static gchar*
+util_increment_name (const gchar* text)
+{
+       /* Get the end character,
+        * also doing a UTF-8 validation which is required for using g_utf8_prev_char().
+        */
+       const gchar* end = NULL;
+       if (!g_utf8_validate (text, -1, &end))
+               return NULL;
+  
+       if (!end)
+               return NULL;
+               
+       --end; /* Go to before the null-termination. */
+               
+       /* Look at each UTF-8 characer, starting at the end: */
+       const gchar* p = end;
+       const gchar* alpha_end = NULL;
+       while (p)
+       {       
+               /* Stop when we reach the first character that is not a numeric digit: */
+               const gunichar ch = g_utf8_get_char (p);
+               if (!g_unichar_isdigit (ch)) {
+                       alpha_end = p;
+                       break;
+               }
+               
+               p = g_utf8_prev_char (p);       
+       }
+       
+       if(!alpha_end) {
+               /* The text must consist completely of numeric digits. */
+               alpha_end = text;
+       }
+       else
+               ++alpha_end;
+       
+       /* Intepret and increment the number, if any: */
+       gint num = atol (alpha_end);
+       ++num;
+       
+       /* Get the name part: */
+       gint name_len = alpha_end - text;
+       gchar *name_without_number = g_malloc(name_len + 1);
+       memcpy (name_without_number, text, name_len);
+       name_without_number[name_len] = 0;\
+       
+    /* Concatenate the text part and the new number: */        
+       gchar *result = g_strdup_printf("%s%d", name_without_number, num);
+       g_free (name_without_number);
+       
+       return result;  
+}
+
+gchar*
+modest_account_mgr_get_unused_account_name (ModestAccountMgr *self, const gchar* starting_name,
+       gboolean server_account)
+{
+       gchar *account_name = g_strdup (starting_name);
+
+       while (modest_account_mgr_account_exists (self, 
+               account_name, server_account /*  server_account */)) {
+                       
+               gchar * account_name2 = util_increment_name (account_name);
+               g_free (account_name);
+               account_name = account_name2;
+       }
+       
+       return account_name;
+}
+
+gchar*
+modest_account_mgr_get_unused_account_display_name (ModestAccountMgr *self, const gchar* starting_name)
+{
+       gchar *account_name = g_strdup (starting_name);
+
+       while (modest_account_mgr_account_with_display_name_exists (self, account_name)) {
+                       
+               gchar * account_name2 = util_increment_name (account_name);
+               g_free (account_name);
+               account_name = account_name2;
+       }
+       
+       return account_name;
+}