From 588247c8bba25fd9ed087e1f8f06997c5c7534f2 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 5 Aug 2011 13:13:31 +0200 Subject: factor out empathy_individual_can_audio_video_call() Also allow caller to get a ref on the EmpathyContact supporting audio/video. https://bugzilla.gnome.org/show_bug.cgi?id=661981 --- libempathy/empathy-utils.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++ libempathy/empathy-utils.h | 5 ++++ 2 files changed, 63 insertions(+) (limited to 'libempathy') diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 9eec82e74..c4c2780ac 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -1090,3 +1090,61 @@ out: g_clear_object (&persona_store); return retval; } + +/* Calculate whether the Individual can do audio or video calls. + * FIXME: We can remove this once libfolks has grown capabilities support + * again: bgo#626179. */ +void +empathy_individual_can_audio_video_call (FolksIndividual *individual, + gboolean *can_audio_call, + gboolean *can_video_call, + EmpathyContact **out_contact) +{ + GeeSet *personas; + GeeIterator *iter; + gboolean can_audio = FALSE, can_video = FALSE; + + personas = folks_individual_get_personas (individual); + iter = gee_iterable_iterator (GEE_ITERABLE (personas)); + while (gee_iterator_next (iter)) + { + FolksPersona *persona = gee_iterator_get (iter); + TpContact *tp_contact; + + if (!empathy_folks_persona_is_interesting (persona)) + goto while_finish; + + tp_contact = tpf_persona_get_contact (TPF_PERSONA (persona)); + if (tp_contact != NULL) + { + EmpathyContact *contact; + + contact = empathy_contact_dup_from_tp_contact (tp_contact); + empathy_contact_set_persona (contact, persona); + + can_audio = can_audio || empathy_contact_get_capabilities (contact) & + EMPATHY_CAPABILITIES_AUDIO; + can_video = can_video || empathy_contact_get_capabilities (contact) & + EMPATHY_CAPABILITIES_VIDEO; + + if (out_contact != NULL) + *out_contact = g_object_ref (contact); + + g_object_unref (contact); + } + +while_finish: + g_clear_object (&persona); + + if (can_audio && can_video) + break; + } + + g_clear_object (&iter); + + if (can_audio_call != NULL) + *can_audio_call = can_audio; + + if (can_video_call != NULL) + *can_video_call = can_video; +} diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h index ed603a80f..4983c89a6 100644 --- a/libempathy/empathy-utils.h +++ b/libempathy/empathy-utils.h @@ -113,6 +113,11 @@ gboolean empathy_account_has_uri_scheme_tel (TpAccount *account); TpContact * empathy_get_tp_contact_for_individual (FolksIndividual *individual, TpConnection *conn); +void empathy_individual_can_audio_video_call (FolksIndividual *individual, + gboolean *can_audio_call, + gboolean *can_video_call, + EmpathyContact **out_contact); + /* Copied from wocky/wocky-utils.h */ #define empathy_implement_finish_void(source, tag) \ -- cgit v1.2.3