diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-04 20:45:38 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-24 19:28:44 +0800 |
commit | ef0d55ead126f53aa4544877d2df5ab712f00f28 (patch) | |
tree | 42dc29e21fd21344e89cf1806dae16b2e2e8196a /libempathy/empathy-utils.c | |
parent | edf88058847eb77f8ecc1e5b37fa76e7db9f7ad3 (diff) | |
download | gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.tar gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.tar.gz gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.tar.bz2 gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.tar.lz gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.tar.xz gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.tar.zst gsoc2013-empathy-ef0d55ead126f53aa4544877d2df5ab712f00f28.zip |
factor out empathy_create_individual_from_tp_contact()
https://bugzilla.gnome.org/show_bug.cgi?id=663387
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 83fe4ce7e..972abe65e 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -1163,3 +1163,35 @@ empathy_sasl_channel_supports_mechanism (TpChannel *channel, return tp_strv_contains (available_mechanisms, mechanism); } + +FolksIndividual * +empathy_create_individual_from_tp_contact (TpContact *contact) +{ + TpAccount *account; + TpConnection *connection; + TpfPersonaStore *store; + GeeSet *personas; + TpfPersona *persona; + FolksIndividual *individual; + + connection = tp_contact_get_connection (contact); + account = tp_connection_get_account (connection); + + store = tpf_persona_store_new (account); + + personas = GEE_SET ( + gee_hash_set_new (FOLKS_TYPE_PERSONA, g_object_ref, g_object_unref, + g_direct_hash, g_direct_equal)); + + persona = tpf_persona_new (contact, store); + + gee_collection_add (GEE_COLLECTION (personas), persona); + + individual = folks_individual_new (personas); + + g_clear_object (&persona); + g_clear_object (&personas); + g_object_unref (store); + + return individual; +} |