diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:03 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:03 +0800 |
commit | 8099574fb1fd23c010bf4e36f0d56d480f256284 (patch) | |
tree | 261e256fb2b40e976c31c16df233a69b8ef5052f /libempathy/empathy-utils.c | |
parent | 0ac4afe4ffd170309101271d4b0b5fde734b07e4 (diff) | |
download | gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.tar gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.tar.gz gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.tar.bz2 gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.tar.lz gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.tar.xz gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.tar.zst gsoc2013-empathy-8099574fb1fd23c010bf4e36f0d56d480f256284.zip |
Remove empathy_inspect_* and add empathy_channel_get_account
svn path=/trunk/; revision=906
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 79 |
1 files changed, 15 insertions, 64 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index c7b041e7a..230a7f29c 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -338,69 +338,6 @@ empathy_mission_control_new (void) return mc; } -gchar * -empathy_inspect_channel (McAccount *account, - TpChan *tp_chan) -{ - g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL); - g_return_val_if_fail (TELEPATHY_IS_CHAN (tp_chan), NULL); - - return empathy_inspect_handle (account, - tp_chan->handle, - tp_chan->handle_type); -} - -gchar * -empathy_inspect_handle (McAccount *account, - guint handle, - guint handle_type) -{ - MissionControl *mc; - TpConn *tp_conn; - GArray *handles; - gchar **names; - gchar *name; - GError *error = NULL; - - g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL); - g_return_val_if_fail (handle != 0, NULL); - g_return_val_if_fail (handle_type != 0, NULL); - - mc = empathy_mission_control_new (); - tp_conn = mission_control_get_connection (mc, account, NULL); - g_object_unref (mc); - - if (!tp_conn) { - return NULL; - } - - /* Get the handle's name */ - handles = g_array_new (FALSE, FALSE, sizeof (guint)); - g_array_append_val (handles, handle); - if (!tp_conn_inspect_handles (DBUS_G_PROXY (tp_conn), - handle_type, - handles, - &names, - &error)) { - empathy_debug (DEBUG_DOMAIN, - "Couldn't get id: %s", - error ? error->message : "No error given"); - - g_clear_error (&error); - g_array_free (handles, TRUE); - g_object_unref (tp_conn); - - return NULL; - } - - g_array_free (handles, TRUE); - name = *names; - g_free (names); - g_object_unref (tp_conn); - - return name; -} - void empathy_call_with_contact (EmpathyContact *contact) { @@ -448,7 +385,7 @@ empathy_call_with_contact (EmpathyContact *contact) object_path, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA, TP_HANDLE_TYPE_NONE, 0, NULL); - group = empathy_tp_group_new (account, channel); + group = empathy_tp_group_new (channel); empathy_run_until_ready (group); factory = empathy_contact_factory_new (); @@ -682,4 +619,18 @@ empathy_run_until_ready (gpointer object) NULL, NULL); } +McAccount * +empathy_channel_get_account (TpChannel *channel) +{ + TpConnection *connection; + McAccount *account; + MissionControl *mc; + g_object_get (channel, "connection", &connection, NULL); + mc = empathy_mission_control_new (); + account = mission_control_get_account_for_tpconnection (mc, connection, NULL); + g_object_unref (connection); + g_object_unref (mc); + + return account; +} |