aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-04-11 21:11:03 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-04-11 21:11:03 +0800
commit8099574fb1fd23c010bf4e36f0d56d480f256284 (patch)
tree261e256fb2b40e976c31c16df233a69b8ef5052f
parent0ac4afe4ffd170309101271d4b0b5fde734b07e4 (diff)
downloadgsoc2013-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
-rw-r--r--libempathy/empathy-utils.c79
-rw-r--r--libempathy/empathy-utils.h6
2 files changed, 16 insertions, 69 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;
+}
diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h
index b8da4a063..aed69cd5a 100644
--- a/libempathy/empathy-utils.h
+++ b/libempathy/empathy-utils.h
@@ -83,11 +83,6 @@ guint empathy_account_hash (gconstpointer key);
gboolean empathy_account_equal (gconstpointer a,
gconstpointer b);
MissionControl *empathy_mission_control_new (void);
-gchar * empathy_inspect_handle (McAccount *account,
- guint handle,
- guint handle_type);
-gchar * empathy_inspect_channel (McAccount *account,
- TpChan *tp_chan);
void empathy_call_with_contact (EmpathyContact *contact);
void empathy_call_with_contact_id (McAccount *account,
const gchar *contact_id);
@@ -108,6 +103,7 @@ void empathy_run_until_ready_full (gpointer object,
EmpathyRunUntilReadyFunc func,
gpointer user_data,
GMainLoop **loop);
+McAccount * empathy_channel_get_account (TpChannel *channel);
G_END_DECLS