aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-17 20:46:39 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-17 20:47:57 +0800
commit25b009d1f6a98f230c99f7b0c960c5df1f7d5cde (patch)
treee31ca121e3f61db1a5ece1ea43a4cc6645674e38
parent36c8a8859e9c22d797be6e70164e84e9dfeb7cf6 (diff)
downloadgsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.tar
gsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.tar.gz
gsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.tar.bz2
gsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.tar.lz
gsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.tar.xz
gsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.tar.zst
gsoc2013-empathy-25b009d1f6a98f230c99f7b0c960c5df1f7d5cde.zip
tp-chat: prepare the Password feature if needed
-rw-r--r--libempathy/empathy-tp-chat.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index 03014ea01..5cdcf28ad 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -59,6 +59,7 @@ struct _EmpathyTpChatPrivate
/* GSimpleAsyncResult used when preparing EMPATHY_TP_CHAT_FEATURE_CORE */
GSimpleAsyncResult *ready_result;
+ gboolean preparing_password;
};
enum
@@ -703,6 +704,9 @@ check_almost_ready (EmpathyTpChat *self)
if (self->priv->user == NULL)
return;
+ if (self->priv->preparing_password)
+ return;
+
/* We need either the members (room) or the remote contact (private chat).
* If the chat is protected by a password we can't get these information so
* consider the chat as ready so it can be presented to the user. */
@@ -1250,6 +1254,25 @@ empathy_tp_chat_get_feature_ready (void)
}
static void
+password_feature_prepare_cb (GObject *source,
+ GAsyncResult *result,
+ gpointer user_data)
+{
+ EmpathyTpChat *self = user_data;
+ GError *error;
+
+ if (!tp_proxy_prepare_finish (source, result, &error))
+ {
+ DEBUG ("Failed to prepare Password: %s", error->message);
+ g_error_free (error);
+ }
+
+ self->priv->preparing_password = FALSE;
+
+ check_almost_ready (self);
+}
+
+static void
tp_chat_prepare_ready_async (TpProxy *proxy,
const TpProxyFeature *feature,
GAsyncReadyCallback callback,
@@ -1267,6 +1290,21 @@ tp_chat_prepare_ready_async (TpProxy *proxy,
connection = tp_channel_borrow_connection (channel);
if (tp_proxy_has_interface_by_id (self,
+ TP_IFACE_QUARK_CHANNEL_INTERFACE_PASSWORD))
+ {
+ /* The password feature can't be a hard dep on our own feature has we
+ * depend on it only if the channel implements the
+ * Password interface.
+ */
+ GQuark features[] = { TP_CHANNEL_FEATURE_PASSWORD , 0 };
+
+ self->priv->preparing_password = TRUE;
+
+ tp_proxy_prepare_async (self, features, password_feature_prepare_cb,
+ self);
+ }
+
+ if (tp_proxy_has_interface_by_id (self,
TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP))
{
GPtrArray *contacts;