aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2010-12-22 19:49:47 +0800
committerJonny Lamb <jonnylamb@gnome.org>2010-12-22 19:49:47 +0800
commitf2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a (patch)
tree31355d5050af65e2b78ad4f28cf2b22b6f1c2a9a
parent218a0c003b0528423164b1670daf33ec360acd20 (diff)
downloadgsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.tar
gsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.tar.gz
gsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.tar.bz2
gsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.tar.lz
gsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.tar.xz
gsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.tar.zst
gsoc2013-empathy-f2e6bb42906ad6cd5e11ee61fab64d3d2e7e879a.zip
account-settings: migrate passwords from MC to gk ourselves
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
-rw-r--r--libempathy/empathy-account-settings.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c
index fe08f52c0..af8cd7b65 100644
--- a/libempathy/empathy-account-settings.c
+++ b/libempathy/empathy-account-settings.c
@@ -542,6 +542,53 @@ empathy_account_settings_check_readyness (EmpathyAccountSettings *self)
}
}
+ if (priv->supports_sasl && empathy_account_settings_get (
+ self, "password") != NULL)
+ {
+ /* mission-control still has our password, although the CM
+ * supports SASL. Let's try migrating it. */
+ const GValue *v;
+ const gchar *account_id;
+
+ account_id = tp_proxy_get_object_path (priv->account)
+ + strlen (TP_ACCOUNT_OBJECT_PATH_BASE);
+
+ g_print ("Trying to migrate password parameter from MC to the "
+ "keyring ourselves for account %s", account_id);
+
+ v = empathy_account_settings_get (self, "password");
+
+ /* I can't imagine why this would fail. */
+ if (G_VALUE_HOLDS_STRING (v))
+ {
+ const gchar *password = g_value_get_string (v);
+ const gchar *unset[] = { "password", NULL };
+
+ if (!EMP_STR_EMPTY (password))
+ {
+ GHashTable *empty = tp_asv_new (NULL, NULL);
+
+ empathy_keyring_set_password_async (priv->account, password,
+ NULL, NULL);
+
+ /* We don't want to request the password again, we
+ * already know it. */
+ priv->password_requested = TRUE;
+
+ priv->password = g_strdup (password);
+ priv->password_original = g_strdup (password);
+
+ /* Now clear the password MC has stored. */
+ tp_account_update_parameters_async (priv->account,
+ empty, unset, NULL, NULL);
+
+ g_hash_table_remove (priv->parameters, "password");
+
+ g_hash_table_unref (empty);
+ }
+ }
+ }
+
/* priv->account won't be a proper account if it's the account
* assistant showing this widget. */
if (priv->supports_sasl && !priv->password_requested