]> git.0d.be Git - empathy.git/commitdiff
server-sasl-handler: add an account property
authorJonny Lamb <jonnylamb@gnome.org>
Fri, 3 Dec 2010 13:03:28 +0000 (13:03 +0000)
committerJonny Lamb <jonnylamb@gnome.org>
Fri, 3 Dec 2010 13:03:28 +0000 (13:03 +0000)
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
libempathy/empathy-auth-factory.c
libempathy/empathy-server-sasl-handler.c
libempathy/empathy-server-sasl-handler.h

index 29af7dd446ffc58384b7e33e364746904852458b..58b24dc4f8ed0b762891b1f2b59a11870cc793e4 100644 (file)
@@ -223,7 +223,8 @@ handle_channels_cb (TpSimpleHandler *handler,
   else if (tp_channel_get_channel_type_id (channel) ==
       TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_AUTHENTICATION)
     {
-      priv->sasl_handler = empathy_server_sasl_handler_new (channel);
+      priv->sasl_handler = empathy_server_sasl_handler_new (
+          account, channel);
 
       g_signal_connect (priv->sasl_handler, "invalidated",
           G_CALLBACK (sasl_handler_invalidated_cb), self);
index 5c1e9d2032aa9db41b6d01a5ebae5f1b61a9c70b..5c78591ed10b98bb8d665a8f4d5e96bb93f5b7fc 100644 (file)
@@ -27,6 +27,7 @@
 
 enum {
   PROP_CHANNEL = 1,
+  PROP_ACCOUNT,
   LAST_PROPERTY,
 };
 
@@ -40,6 +41,7 @@ static guint signals[LAST_SIGNAL] = {0};
 
 typedef struct {
   TpChannel *channel;
+  TpAccount *account;
 
   GSimpleAsyncResult *result;
 } EmpathyServerSASLHandlerPriv;
@@ -125,6 +127,9 @@ empathy_server_sasl_handler_get_property (GObject *object,
     case PROP_CHANNEL:
       g_value_set_object (value, priv->channel);
       break;
+    case PROP_ACCOUNT:
+      g_value_set_object (value, priv->account);
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
       break;
@@ -144,6 +149,9 @@ empathy_server_sasl_handler_set_property (GObject *object,
     case PROP_CHANNEL:
       priv->channel = g_value_dup_object (value);
       break;
+    case PROP_ACCOUNT:
+      priv->account = g_value_dup_object (value);
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
       break;
@@ -158,6 +166,7 @@ empathy_server_sasl_handler_dispose (GObject *object)
   DEBUG ("%p", object);
 
   tp_clear_object (&priv->channel);
+  tp_clear_object (&priv->account);
 
   G_OBJECT_CLASS (empathy_server_sasl_handler_parent_class)->dispose (object);
 }
@@ -181,6 +190,12 @@ empathy_server_sasl_handler_class_init (EmpathyServerSASLHandlerClass *klass)
       G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
   g_object_class_install_property (oclass, PROP_CHANNEL, pspec);
 
+  pspec = g_param_spec_object ("account", "The TpAccount",
+      "The TpAccount this channel belongs to.",
+      TP_TYPE_ACCOUNT,
+      G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
+  g_object_class_install_property (oclass, PROP_ACCOUNT, pspec);
+
   signals[INVALIDATED] = g_signal_new ("invalidated",
       G_TYPE_FROM_CLASS (klass),
       G_SIGNAL_RUN_LAST, 0,
@@ -197,12 +212,15 @@ empathy_server_sasl_handler_init (EmpathyServerSASLHandler *self)
 }
 
 EmpathyServerSASLHandler *
-empathy_server_sasl_handler_new (TpChannel *channel)
+empathy_server_sasl_handler_new (TpAccount *account,
+    TpChannel *channel)
 {
   g_return_val_if_fail (TP_IS_CHANNEL (channel), NULL);
 
   return g_object_new (EMPATHY_TYPE_SERVER_SASL_HANDLER,
-      "channel", channel, NULL);
+      "account", account,
+      "channel", channel,
+      NULL);
 }
 
 static void
@@ -262,3 +280,15 @@ empathy_server_sasl_handler_cancel (EmpathyServerSASLHandler *handler)
       "User cancelled the authentication",
       NULL, NULL, NULL, NULL);
 }
+
+TpAccount *
+empathy_server_sasl_handler_get_account (EmpathyServerSASLHandler *handler)
+{
+  EmpathyServerSASLHandlerPriv *priv;
+
+  g_return_val_if_fail (EMPATHY_IS_SERVER_SASL_HANDLER (handler), NULL);
+
+  priv = GET_PRIV (handler);
+
+  return priv->account;
+}
index 71f8d2a78af39477f7fa99927e843aa36883abfb..47f49e2a415db7339c224845bc4cccc0c21177e1 100644 (file)
@@ -23,6 +23,7 @@
 #include <glib-object.h>
 #include <gio/gio.h>
 
+#include <telepathy-glib/account.h>
 #include <telepathy-glib/channel.h>
 
 G_BEGIN_DECLS
@@ -58,13 +59,15 @@ GType empathy_server_sasl_handler_get_type (void);
   EmpathyServerSASLHandlerClass))
 
 EmpathyServerSASLHandler * empathy_server_sasl_handler_new (
-    TpChannel *channel);
+    TpAccount *account, TpChannel *channel);
 
 void empathy_server_sasl_handler_provide_password (
     EmpathyServerSASLHandler *handler, const gchar *password);
 
 void empathy_server_sasl_handler_cancel (EmpathyServerSASLHandler *handler);
 
+TpAccount * empathy_server_sasl_handler_get_account (
+    EmpathyServerSASLHandler *handler);
 
 G_END_DECLS