diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2011-01-29 00:44:44 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2011-01-29 00:44:44 +0800 |
commit | 2e70e2fef401bcbe38d9caf8281992be7d0f6413 (patch) | |
tree | 6b1bd4fc0831f81cbd93568577b7fec42bfe6ecd | |
parent | cfab69400457247ece6cd9baf1d49e70d7d9ce9b (diff) | |
download | gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.tar gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.tar.gz gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.tar.bz2 gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.tar.lz gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.tar.xz gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.tar.zst gsoc2013-empathy-2e70e2fef401bcbe38d9caf8281992be7d0f6413.zip |
keyring: add set_room_password functions
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
-rw-r--r-- | libempathy/empathy-keyring.c | 62 | ||||
-rw-r--r-- | libempathy/empathy-keyring.h | 7 |
2 files changed, 69 insertions, 0 deletions
diff --git a/libempathy/empathy-keyring.c b/libempathy/empathy-keyring.c index bec08c0fe..bde950b78 100644 --- a/libempathy/empathy-keyring.c +++ b/libempathy/empathy-keyring.c @@ -33,6 +33,12 @@ static GnomeKeyringPasswordSchema account_keyring_schema = { "param-name", GNOME_KEYRING_ATTRIBUTE_TYPE_STRING }, { NULL } } }; +static GnomeKeyringPasswordSchema room_keyring_schema = + { GNOME_KEYRING_ITEM_GENERIC_SECRET, + { { "account-id", GNOME_KEYRING_ATTRIBUTE_TYPE_STRING }, + { "room-id", GNOME_KEYRING_ATTRIBUTE_TYPE_STRING }, + { NULL } } }; + gboolean empathy_keyring_is_available (void) { @@ -231,6 +237,41 @@ empathy_keyring_set_account_password_async (TpAccount *account, g_free (name); } +void +empathy_keyring_set_room_password_async (TpAccount *account, + const gchar *id, + const gchar *password, + GAsyncReadyCallback callback, + gpointer user_data) +{ + GSimpleAsyncResult *simple; + const gchar *account_id; + gchar *name; + + g_return_if_fail (TP_IS_ACCOUNT (account)); + g_return_if_fail (id != NULL); + g_return_if_fail (password != NULL); + + simple = g_simple_async_result_new (G_OBJECT (account), callback, + user_data, empathy_keyring_set_room_password_async); + + account_id = tp_proxy_get_object_path (account) + + strlen (TP_ACCOUNT_OBJECT_PATH_BASE); + + DEBUG ("Remembering password for room '%s' on account '%s'", id, account_id); + + name = g_strdup_printf ("Password for chatroom '%s' on account %s (%s)", + id, tp_account_get_display_name (account), account_id); + + gnome_keyring_store_password (&room_keyring_schema, NULL, name, password, + store_password_cb, simple, NULL, + "account-id", account_id, + "room-id", id, + NULL); + + g_free (name); +} + gboolean empathy_keyring_set_account_password_finish (TpAccount *account, GAsyncResult *result, @@ -252,6 +293,27 @@ empathy_keyring_set_account_password_finish (TpAccount *account, return TRUE; } +gboolean +empathy_keyring_set_room_password_finish (TpAccount *account, + GAsyncResult *result, + GError **error) +{ + GSimpleAsyncResult *simple; + + g_return_val_if_fail (TP_IS_ACCOUNT (account), FALSE); + g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (result), FALSE); + + simple = G_SIMPLE_ASYNC_RESULT (result); + + if (g_simple_async_result_propagate_error (simple, error)) + return FALSE; + + g_return_val_if_fail (g_simple_async_result_is_valid (result, + G_OBJECT (account), empathy_keyring_set_room_password_async), FALSE); + + return TRUE; +} + /* delete */ static void diff --git a/libempathy/empathy-keyring.h b/libempathy/empathy-keyring.h index 58a7adce7..92c8a6e9f 100644 --- a/libempathy/empathy-keyring.h +++ b/libempathy/empathy-keyring.h @@ -47,6 +47,13 @@ void empathy_keyring_set_account_password_async (TpAccount *account, gboolean empathy_keyring_set_account_password_finish (TpAccount *account, GAsyncResult *result, GError **error); +void empathy_keyring_set_room_password_async (TpAccount *account, + const gchar *id, const gchar *password, GAsyncReadyCallback callback, + gpointer user_data); + +gboolean empathy_keyring_set_room_password_finish (TpAccount *account, + GAsyncResult *result, GError **error); + void empathy_keyring_delete_account_password_async (TpAccount *account, GAsyncReadyCallback callback, gpointer user_data); |