aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-05-11 15:50:24 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-05-11 16:26:59 +0800
commit439ca2f1853454d22ac54eac4c56ac3ee1740f79 (patch)
tree08df63096887d301ef8726dbc99ded91da6f0812
parentca8b366a8c48cd74aa7b39ff6f58c08ba0f9aacd (diff)
downloadgsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.tar
gsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.tar.gz
gsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.tar.bz2
gsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.tar.lz
gsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.tar.xz
gsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.tar.zst
gsoc2013-empathy-439ca2f1853454d22ac54eac4c56ac3ee1740f79.zip
contact-chooser: use empathy_client_factory_dup_contact_by_id_async()
https://bugzilla.gnome.org/show_bug.cgi?id=675808
-rw-r--r--libempathy-gtk/empathy-contact-chooser.c62
1 files changed, 37 insertions, 25 deletions
diff --git a/libempathy-gtk/empathy-contact-chooser.c b/libempathy-gtk/empathy-contact-chooser.c
index 01e4b6a83..f873bdc79 100644
--- a/libempathy-gtk/empathy-contact-chooser.c
+++ b/libempathy-gtk/empathy-contact-chooser.c
@@ -17,6 +17,7 @@
#include "empathy-contact-chooser.h"
#include <libempathy/empathy-utils.h>
+#include <libempathy/empathy-client-factory.h>
#include <libempathy-gtk/empathy-individual-store-manager.h>
#include <libempathy-gtk/empathy-individual-view.h>
@@ -207,33 +208,38 @@ contact_capabilities_changed (TpContact *contact,
}
static void
-get_contacts_cb (TpConnection *connection,
- guint n_contacts,
- TpContact * const *contacts,
- const gchar * const *requested_ids,
- GHashTable *failed_id_errors,
- const GError *error,
- gpointer user_data,
- GObject *weak_object)
+get_contacts_cb (GObject *source,
+ GAsyncResult *result,
+ gpointer user_data)
{
- EmpathyContactChooser *self =
- (EmpathyContactChooser *) weak_object;
- AddTemporaryIndividualCtx *ctx = user_data;
+ TpWeakRef *wr = user_data;
+ AddTemporaryIndividualCtx *ctx;
+ EmpathyContactChooser *self;
+ GError *error = NULL;
FolksIndividual *individual;
TpContact *contact;
+ EmpathyContact *emp_contact;
- if (self->priv->add_temp_ctx != ctx)
- /* another request has been started */
- return;
+ self = tp_weak_ref_dup_object (wr);
+ if (self == NULL)
+ goto out;
- if (n_contacts != 1)
- return;
+ ctx = tp_weak_ref_get_user_data (wr);
- contact = contacts[0];
+ emp_contact = empathy_client_factory_dup_contact_by_id_finish (
+ EMPATHY_CLIENT_FACTORY (source), result, &error);
+ if (emp_contact == NULL)
+ goto out;
+
+ contact = empathy_contact_get_tp_contact (emp_contact);
+
+ if (self->priv->add_temp_ctx != ctx)
+ /* another request has been started */
+ goto out;
individual = empathy_create_individual_from_tp_contact (contact);
if (individual == NULL)
- return;
+ goto out;
/* tp-glib will unref the TpContact once we return from this callback
* but folks expect us to keep a reference on the TpContact.
@@ -255,6 +261,11 @@ get_contacts_cb (TpConnection *connection,
gtk_tree_view_get_selection (GTK_TREE_VIEW (self->priv->view)),
NULL, NULL))
empathy_individual_view_select_first (self->priv->view);
+
+out:
+ g_clear_object (&emp_contact);
+ g_clear_object (&self);
+ tp_weak_ref_destroy (wr);
}
static void
@@ -277,18 +288,19 @@ add_temporary_individuals (EmpathyContactChooser *self,
{
TpAccount *account = l->data;
TpConnection *conn;
- TpContactFeature features[] = { TP_CONTACT_FEATURE_ALIAS,
- TP_CONTACT_FEATURE_AVATAR_DATA,
- TP_CONTACT_FEATURE_PRESENCE,
- TP_CONTACT_FEATURE_CAPABILITIES };
+ EmpathyClientFactory *factory;
conn = tp_account_get_connection (account);
if (conn == NULL)
continue;
- tp_connection_get_contacts_by_id (conn, 1, &id, G_N_ELEMENTS (features),
- features, get_contacts_cb, self->priv->add_temp_ctx, NULL,
- G_OBJECT (self));
+ factory = empathy_client_factory_dup ();
+
+ empathy_client_factory_dup_contact_by_id_async (factory, conn, id,
+ get_contacts_cb,
+ tp_weak_ref_new (self, self->priv->add_temp_ctx, NULL));
+
+ g_object_unref (factory);
}
g_list_free (accounts);