diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-16 16:53:11 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-27 15:54:17 +0800 |
commit | d3155798adce20b724b1059ce2ece927950a42a7 (patch) | |
tree | 2a138fe47a634d477d921532e5e06436e56ef836 | |
parent | 595c95a0f9237cda825ad343d76ed24f13f77dcc (diff) | |
download | gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.tar gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.tar.gz gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.tar.bz2 gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.tar.lz gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.tar.xz gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.tar.zst gsoc2013-empathy-d3155798adce20b724b1059ce2ece927950a42a7.zip |
contact: get capabilities from TpContact if available (#579813)
-rw-r--r-- | libempathy/empathy-contact.c | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 35cfd3a98..4c1b34cad 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -26,6 +26,7 @@ #include <glib/gi18n-lib.h> #include <telepathy-glib/account-manager.h> +#include <telepathy-glib/interfaces.h> #include <telepathy-glib/util.h> #ifdef ENABEL_TPL #include <telepathy-logger/contact.h> @@ -80,6 +81,9 @@ static void update_geocode (EmpathyContact *contact); static void empathy_contact_set_location (EmpathyContact *contact, GHashTable *location); +static void set_capabilities_from_tp_caps (EmpathyContact *self, + TpCapabilities *caps); + G_DEFINE_TYPE (EmpathyContact, empathy_contact, G_TYPE_OBJECT); enum @@ -138,6 +142,11 @@ tp_contact_notify_cb (TpContact *tp_contact, /* This will start a geoclue search to find the address if needed */ empathy_contact_set_location (EMPATHY_CONTACT (contact), location); } + else if (!tp_strdiff (param->name, "capabilities")) + { + set_capabilities_from_tp_caps (EMPATHY_CONTACT (contact), + tp_contact_get_capabilities (tp_contact)); + } } static void @@ -337,6 +346,9 @@ set_tp_contact (EmpathyContact *contact, if (location != NULL) empathy_contact_set_location (contact, location); + set_capabilities_from_tp_caps (contact, + tp_contact_get_capabilities (tp_contact)); + g_signal_connect (priv->tp_contact, "notify", G_CALLBACK (tp_contact_notify_cb), contact); } @@ -1382,3 +1394,73 @@ update_geocode (EmpathyContact *contact) g_hash_table_unref (address); } #endif + +static EmpathyCapabilities +tp_caps_to_capabilities (TpCapabilities *caps) +{ + EmpathyCapabilities capabilities = 0; + guint i; + GPtrArray *classes; + + classes = tp_capabilities_get_channel_classes (caps); + + for (i = 0; i < classes->len; i++) + { + GValueArray *class_struct; + GHashTable *fixed_prop; + GStrv allowed_prop; + TpHandleType handle_type; + const gchar *chan_type; + + class_struct = g_ptr_array_index (classes, i); + fixed_prop = g_value_get_boxed (g_value_array_get_nth (class_struct, 0)); + allowed_prop = g_value_get_boxed (g_value_array_get_nth ( + class_struct, 1)); + + handle_type = tp_asv_get_uint32 (fixed_prop, + TP_IFACE_CHANNEL ".TargetHandleType", NULL); + if (handle_type != TP_HANDLE_TYPE_CONTACT) + continue; + + chan_type = tp_asv_get_string (fixed_prop, + TP_IFACE_CHANNEL ".ChannelType"); + + if (!tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER)) + { + capabilities |= EMPATHY_CAPABILITIES_FT; + } + else if (!tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_STREAM_TUBE)) + { + capabilities |= EMPATHY_CAPABILITIES_STREAM_TUBE; + } + else if (!tp_strdiff (chan_type, + TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA)) + { + guint j; + + for (j = 0; allowed_prop[j] != NULL; j++) { + if (!tp_strdiff (allowed_prop[j], + TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialAudio")) + capabilities |= EMPATHY_CAPABILITIES_AUDIO; + else if (!tp_strdiff (allowed_prop[j], + TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialVideo")) + capabilities |= EMPATHY_CAPABILITIES_VIDEO; + } + } + } + + return capabilities; +} + +static void +set_capabilities_from_tp_caps (EmpathyContact *self, + TpCapabilities *caps) +{ + EmpathyCapabilities capabilities; + + if (caps == NULL) + return; + + capabilities = tp_caps_to_capabilities (caps); + empathy_contact_set_capabilities (self, capabilities); +} |