From b7329ee88d54447ed5b8a0de32a6b26a25ef5024 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 2 Mar 2010 10:25:46 +0100 Subject: factor out empathy_connect_new_account --- libempathy/empathy-utils.c | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'libempathy/empathy-utils.c') diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index fedb14b98..7d169ff94 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -606,3 +606,40 @@ empathy_account_manager_get_accounts_connected (gboolean *connecting) return out_connected; } + +/* Change the RequestedPresence of a newly created account to ensure that it + * is actually connected. */ +void +empathy_connect_new_account (TpAccount *account, + TpAccountManager *account_manager) +{ + TpConnectionPresenceType presence; + gchar *status, *message; + + /* only force presence if presence was offline, unknown or unset */ + presence = tp_account_get_requested_presence (account, NULL, NULL); + switch (presence) + { + case TP_CONNECTION_PRESENCE_TYPE_OFFLINE: + case TP_CONNECTION_PRESENCE_TYPE_UNKNOWN: + case TP_CONNECTION_PRESENCE_TYPE_UNSET: + presence = tp_account_manager_get_most_available_presence ( + account_manager, &status, &message); + + if (presence == TP_CONNECTION_PRESENCE_TYPE_OFFLINE) + /* Global presence is offline; we force it so user doesn't have to + * manually change the presence to connect his new account. */ + presence = TP_CONNECTION_PRESENCE_TYPE_AVAILABLE; + + tp_account_request_presence_async (account, presence, + status, NULL, NULL, NULL); + + g_free (status); + g_free (message); + break; + + default: + /* do nothing if the presence is not offline */ + break; + } +} -- cgit v1.2.3