From 2e87bc47e7c03fa0d2145b2c3904df545b941a76 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Tue, 21 Jul 2009 19:11:50 +0100 Subject: Add api to remove accounts --- libempathy/empathy-account.c | 48 ++++++++++++++++++++++++++++++++++++++++++++ libempathy/empathy-account.h | 5 +++++ 2 files changed, 53 insertions(+) diff --git a/libempathy/empathy-account.c b/libempathy/empathy-account.c index 51dd26316..8d4909586 100644 --- a/libempathy/empathy-account.c +++ b/libempathy/empathy-account.c @@ -987,3 +987,51 @@ empathy_account_update_settings_finish (EmpathyAccount *account, return TRUE; } + +static void +empathy_account_remove_cb (TpAccount *proxy, + const GError *error, + gpointer user_data, + GObject *weak_object) +{ + GSimpleAsyncResult *result = G_SIMPLE_ASYNC_RESULT (user_data); + + if (error != NULL) + { + g_simple_async_result_set_from_error (result, (GError *) error); + } + + g_simple_async_result_complete (result); + g_object_unref (G_OBJECT (result)); +} + +void +empathy_account_remove_async (EmpathyAccount *account, + GAsyncReadyCallback callback, gpointer user_data) +{ + EmpathyAccountPriv *priv = GET_PRIV (account); + GSimpleAsyncResult *result = g_simple_async_result_new (G_OBJECT (account), + callback, user_data, empathy_account_remove_finish); + + tp_cli_account_call_remove (priv->account, + -1, + empathy_account_remove_cb, + result, + NULL, + G_OBJECT (account)); +} + +gboolean +empathy_account_remove_finish (EmpathyAccount *account, + GAsyncResult *result, GError **error) +{ + if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (result), + error)) + return FALSE; + + g_return_val_if_fail (g_simple_async_result_is_valid (result, + G_OBJECT (account), empathy_account_update_settings_finish), FALSE); + + return TRUE; +} + diff --git a/libempathy/empathy-account.h b/libempathy/empathy-account.h index 58f174eaa..00daa46ee 100644 --- a/libempathy/empathy-account.h +++ b/libempathy/empathy-account.h @@ -79,6 +79,11 @@ void empathy_account_update_settings_async (EmpathyAccount *account, gboolean empathy_account_update_settings_finish (EmpathyAccount *account, GAsyncResult *result, GError **error); +void empathy_account_remove_async (EmpathyAccount *account, + GAsyncReadyCallback callback, gpointer user_data); +gboolean empathy_account_remove_finish (EmpathyAccount *account, + GAsyncResult *result, GError **error); + void empathy_account_set_display_name (EmpathyAccount *account, const gchar *display_name); -- cgit v1.2.3