]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-roomlist.c
Merge branch 'sasl'
[empathy.git] / libempathy / empathy-tp-roomlist.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <string.h>
25
26 #include <telepathy-glib/channel.h>
27 #include <telepathy-glib/dbus.h>
28 #include <telepathy-glib/util.h>
29 #include <telepathy-glib/interfaces.h>
30
31 #include "empathy-tp-roomlist.h"
32 #include "empathy-chatroom.h"
33 #include "empathy-utils.h"
34
35 #define DEBUG_FLAG EMPATHY_DEBUG_TP
36 #include "empathy-debug.h"
37
38 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyTpRoomlist)
39 typedef struct {
40         TpConnection *connection;
41         TpChannel    *channel;
42         TpAccount    *account;
43         gboolean      is_listing;
44         gboolean      start_requested;
45 } EmpathyTpRoomlistPriv;
46
47 enum {
48         NEW_ROOM,
49         DESTROY,
50         ERROR,
51         LAST_SIGNAL
52 };
53
54 enum {
55         PROP_0,
56         PROP_ACCOUNT,
57         PROP_IS_LISTING,
58 };
59
60 static guint signals[LAST_SIGNAL];
61
62 G_DEFINE_TYPE (EmpathyTpRoomlist, empathy_tp_roomlist, G_TYPE_OBJECT);
63
64 static void
65 tp_roomlist_listing_cb (TpChannel *channel,
66                         gboolean   listing,
67                         gpointer   user_data,
68                         GObject   *list)
69 {
70         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
71
72         DEBUG ("Listing: %s", listing ? "Yes" : "No");
73         priv->is_listing = listing;
74         g_object_notify (list, "is-listing");
75 }
76
77 static void
78 tp_roomlist_chatrooms_free (gpointer data)
79 {
80         GSList *chatrooms = data;
81
82         g_slist_foreach (chatrooms, (GFunc) g_object_unref, NULL);
83         g_slist_free (chatrooms);
84 }
85
86 static void
87 tp_roomlist_inspect_handles_cb (TpConnection *connection,
88                                 const gchar **names,
89                                 const GError *error,
90                                 gpointer      user_data,
91                                 GObject      *list)
92 {
93         GSList *chatrooms = user_data;
94
95         if (error != NULL) {
96                 DEBUG ("Error: %s", error->message);
97                 return;
98         }
99
100         while (*names != NULL) {
101                 EmpathyChatroom *chatroom = chatrooms->data;
102
103                 empathy_chatroom_set_room (chatroom, *names);
104                 g_signal_emit (list, signals[NEW_ROOM], 0, chatroom);
105
106                 names++;
107                 chatrooms = chatrooms->next;
108         }
109 }
110
111 static void
112 tp_roomlist_got_rooms_cb (TpChannel       *channel,
113                           const GPtrArray *rooms,
114                           gpointer         user_data,
115                           GObject         *list)
116 {
117         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
118         EmpathyChatroom       *chatroom;
119         guint                  i;
120         GArray                *handles = NULL;
121         GSList                *chatrooms = NULL;
122
123         for (i = 0; i < rooms->len; i++) {
124                 const GValue *room_name_value;
125                 const GValue *handle_name_value;
126                 const GValue *room_members_value;
127                 const GValue *room_subject_value;
128                 const GValue *room_invite_value;
129                 const GValue *room_password_value;
130                 GValueArray  *room_struct;
131                 guint         handle;
132                 const gchar  *channel_type;
133                 GHashTable   *info;
134
135                 /* Get information */
136                 room_struct = g_ptr_array_index (rooms, i);
137                 handle = g_value_get_uint (g_value_array_get_nth (room_struct, 0));
138                 channel_type = g_value_get_string (g_value_array_get_nth (room_struct, 1));
139                 info = g_value_get_boxed (g_value_array_get_nth (room_struct, 2));
140                 room_name_value = g_hash_table_lookup (info, "name");
141                 handle_name_value = g_hash_table_lookup (info, "handle-name");
142                 room_subject_value = g_hash_table_lookup (info, "subject");
143                 room_members_value = g_hash_table_lookup (info, "members");
144                 room_invite_value = g_hash_table_lookup (info, "invite-only");
145                 room_password_value = g_hash_table_lookup (info, "password");
146
147                 if (tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TEXT)) {
148                         continue;
149                 }
150
151                 chatroom = empathy_chatroom_new (priv->account);
152
153                 if (room_name_value != NULL) {
154                         empathy_chatroom_set_name (chatroom,
155                                                    g_value_get_string (room_name_value));
156                 }
157
158                 if (room_members_value != NULL) {
159                         empathy_chatroom_set_members_count (chatroom,
160                                                    g_value_get_uint (room_members_value));
161                 }
162
163                 if (room_subject_value != NULL) {
164                         empathy_chatroom_set_subject (chatroom,
165                                                    g_value_get_string (room_subject_value));
166                 }
167
168                 if (room_invite_value != NULL) {
169                         empathy_chatroom_set_invite_only (chatroom,
170                                                    g_value_get_boolean (room_invite_value));
171                 }
172
173                 if (room_password_value != NULL) {
174                         empathy_chatroom_set_need_password (chatroom,
175                                                    g_value_get_boolean (room_password_value));
176                 }
177
178                 if (handle_name_value != NULL) {
179                         empathy_chatroom_set_room (chatroom,
180                                                    g_value_get_string (handle_name_value));
181
182                         /* We have the room ID, we can directly emit it */
183                         g_signal_emit (list, signals[NEW_ROOM], 0, chatroom);
184                         g_object_unref (chatroom);
185                 } else {
186                         /* We don't have the room ID, we'll inspect all handles
187                          * at once and then emit rooms */
188                         if (handles == NULL) {
189                                 handles = g_array_new (FALSE, FALSE, sizeof (guint));
190                         }
191
192                         g_array_append_val (handles, handle);
193                         chatrooms = g_slist_prepend (chatrooms, chatroom);
194                 }
195         }
196
197         if (handles != NULL) {
198                 chatrooms = g_slist_reverse (chatrooms);
199                 tp_cli_connection_call_inspect_handles (priv->connection, -1,
200                                                        TP_HANDLE_TYPE_ROOM,
201                                                        handles,
202                                                        tp_roomlist_inspect_handles_cb,
203                                                        chatrooms,
204                                                        tp_roomlist_chatrooms_free,
205                                                        list);
206                 g_array_free (handles, TRUE);
207         }
208 }
209
210 static void
211 tp_roomlist_get_listing_rooms_cb (TpChannel    *channel,
212                                   gboolean      is_listing,
213                                   const GError *error,
214                                   gpointer      user_data,
215                                   GObject      *list)
216 {
217         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
218
219         if (error) {
220                 DEBUG ("Error geting listing rooms: %s", error->message);
221                 return;
222         }
223
224         priv->is_listing = is_listing;
225         g_object_notify (list, "is-listing");
226 }
227
228 static void
229 tp_roomlist_invalidated_cb (TpChannel         *channel,
230                             guint              domain,
231                             gint               code,
232                             gchar             *message,
233                             EmpathyTpRoomlist *list)
234 {
235         DEBUG ("Channel invalidated: %s", message);
236         g_signal_emit (list, signals[DESTROY], 0);
237 }
238
239 static void
240 call_list_rooms_cb (TpChannel *proxy,
241                     const GError *error,
242                     gpointer list,
243                     GObject *weak_object)
244 {
245         if (error != NULL) {
246                 DEBUG ("Error listing rooms: %s", error->message);
247                 g_signal_emit_by_name (list, "error::start", error);
248         }
249 }
250
251 static void
252 stop_listing_cb (TpChannel *proxy,
253                  const GError *error,
254                  gpointer list,
255                  GObject *weak_object)
256 {
257         if (error != NULL) {
258                 DEBUG ("Error on stop listing: %s", error->message);
259                 g_signal_emit_by_name (list, "error::stop", error);
260         }
261 }
262
263 static void
264 tp_roomlist_create_channel_cb (GObject *source,
265                                 GAsyncResult *result,
266                                 gpointer      user_data)
267 {
268         EmpathyTpRoomlist *self = user_data;
269         EmpathyTpRoomlistPriv *priv = GET_PRIV (self);
270         GError *error = NULL;
271
272         priv->channel = tp_account_channel_request_create_and_handle_channel_finish (
273                 TP_ACCOUNT_CHANNEL_REQUEST (source), result, NULL, &error);
274
275         if (priv->channel == NULL) {
276                 DEBUG ("Error creating channel: %s", error->message);
277                 g_error_free (error);
278                 return;
279         }
280
281         g_signal_connect (priv->channel, "invalidated",
282                           G_CALLBACK (tp_roomlist_invalidated_cb), self);
283
284         tp_cli_channel_type_room_list_connect_to_listing_rooms (priv->channel,
285                                                                 tp_roomlist_listing_cb,
286                                                                 NULL, NULL,
287                                                                 G_OBJECT (self),
288                                                                 NULL);
289         tp_cli_channel_type_room_list_connect_to_got_rooms (priv->channel,
290                                                             tp_roomlist_got_rooms_cb,
291                                                             NULL, NULL,
292                                                             G_OBJECT (self),
293                                                             NULL);
294
295         tp_cli_channel_type_room_list_call_get_listing_rooms (priv->channel, -1,
296                                                               tp_roomlist_get_listing_rooms_cb,
297                                                               NULL, NULL,
298                                                               G_OBJECT (self));
299
300         if (priv->start_requested == TRUE) {
301                 tp_cli_channel_type_room_list_call_list_rooms (priv->channel, -1,
302                         call_list_rooms_cb, self, NULL, NULL);
303                 priv->start_requested = FALSE;
304         }
305 }
306
307 static void
308 tp_roomlist_finalize (GObject *object)
309 {
310         EmpathyTpRoomlistPriv *priv = GET_PRIV (object);
311
312         if (priv->channel) {
313                 DEBUG ("Closing channel...");
314                 g_signal_handlers_disconnect_by_func (priv->channel,
315                                                       tp_roomlist_invalidated_cb,
316                                                       object);
317                 tp_cli_channel_call_close (priv->channel, -1,
318                                            NULL, NULL, NULL, NULL);
319                 g_object_unref (priv->channel);
320         }
321
322         if (priv->account) {
323                 g_object_unref (priv->account);
324         }
325         if (priv->connection) {
326                 g_object_unref (priv->connection);
327         }
328
329         G_OBJECT_CLASS (empathy_tp_roomlist_parent_class)->finalize (object);
330 }
331
332 static void
333 tp_roomlist_constructed (GObject *list)
334 {
335         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
336         GHashTable *request;
337         TpAccountChannelRequest *req;
338
339         request = tp_asv_new (
340                 TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
341                   TP_IFACE_CHANNEL_TYPE_ROOM_LIST,
342                 TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_NONE,
343                 NULL);
344
345         priv->connection = tp_account_get_connection (priv->account);
346         g_object_ref (priv->connection);
347
348         req = tp_account_channel_request_new (priv->account, request,
349                 TP_USER_ACTION_TIME_CURRENT_TIME);
350
351         tp_account_channel_request_create_and_handle_channel_async (req, NULL,
352                 tp_roomlist_create_channel_cb, list);
353
354         g_hash_table_unref (request);
355         g_object_unref (req);
356 }
357
358 static void
359 tp_roomlist_get_property (GObject    *object,
360                           guint       param_id,
361                           GValue     *value,
362                           GParamSpec *pspec)
363 {
364         EmpathyTpRoomlistPriv *priv = GET_PRIV (object);
365
366         switch (param_id) {
367         case PROP_ACCOUNT:
368                 g_value_set_object (value, priv->account);
369                 break;
370         case PROP_IS_LISTING:
371                 g_value_set_boolean (value, priv->is_listing);
372                 break;
373         default:
374                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
375                 break;
376         };
377 }
378
379 static void
380 tp_roomlist_set_property (GObject      *object,
381                           guint         param_id,
382                           const GValue *value,
383                           GParamSpec   *pspec)
384 {
385         EmpathyTpRoomlistPriv *priv = GET_PRIV (object);
386
387         switch (param_id) {
388         case PROP_ACCOUNT:
389                 priv->account = g_value_dup_object (value);
390                 break;
391         default:
392                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
393                 break;
394         };
395 }
396
397 static void
398 empathy_tp_roomlist_class_init (EmpathyTpRoomlistClass *klass)
399 {
400         GObjectClass *object_class = G_OBJECT_CLASS (klass);
401
402         object_class->finalize = tp_roomlist_finalize;
403         object_class->constructed = tp_roomlist_constructed;
404         object_class->get_property = tp_roomlist_get_property;
405         object_class->set_property = tp_roomlist_set_property;
406
407         g_object_class_install_property (object_class,
408                                          PROP_ACCOUNT,
409                                          g_param_spec_object ("account",
410                                                               "The Account",
411                                                               "The account on which it lists rooms",
412                                                               TP_TYPE_ACCOUNT,
413                                                               G_PARAM_READWRITE |
414                                                               G_PARAM_CONSTRUCT_ONLY));
415         g_object_class_install_property (object_class,
416                                          PROP_IS_LISTING,
417                                          g_param_spec_boolean ("is-listing",
418                                                                "Is listing",
419                                                                "Are we listing rooms",
420                                                                FALSE,
421                                                                G_PARAM_READABLE));
422
423         signals[NEW_ROOM] =
424                 g_signal_new ("new-room",
425                               G_TYPE_FROM_CLASS (klass),
426                               G_SIGNAL_RUN_LAST,
427                               0,
428                               NULL, NULL,
429                               g_cclosure_marshal_VOID__OBJECT,
430                               G_TYPE_NONE,
431                               1, EMPATHY_TYPE_CHATROOM);
432
433         signals[DESTROY] =
434                 g_signal_new ("destroy",
435                               G_TYPE_FROM_CLASS (klass),
436                               G_SIGNAL_RUN_LAST,
437                               0,
438                               NULL, NULL,
439                               g_cclosure_marshal_VOID__VOID,
440                               G_TYPE_NONE,
441                               0);
442
443         signals[ERROR] =
444                 g_signal_new ("error",
445                               G_TYPE_FROM_CLASS (klass),
446                               G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
447                               0,
448                               NULL, NULL,
449                               g_cclosure_marshal_VOID__POINTER,
450                               G_TYPE_NONE,
451                               1, G_TYPE_POINTER);
452
453         g_type_class_add_private (object_class, sizeof (EmpathyTpRoomlistPriv));
454 }
455
456 static void
457 empathy_tp_roomlist_init (EmpathyTpRoomlist *list)
458 {
459         EmpathyTpRoomlistPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (list,
460                 EMPATHY_TYPE_TP_ROOMLIST, EmpathyTpRoomlistPriv);
461
462         list->priv = priv;
463         priv->start_requested = FALSE;
464         priv->is_listing = FALSE;
465 }
466
467 EmpathyTpRoomlist *
468 empathy_tp_roomlist_new (TpAccount *account)
469 {
470         EmpathyTpRoomlist *list;
471
472         list = g_object_new (EMPATHY_TYPE_TP_ROOMLIST,
473                              "account", account,
474                              NULL);
475
476         return list;
477 }
478
479 gboolean
480 empathy_tp_roomlist_is_listing (EmpathyTpRoomlist *list)
481 {
482         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
483
484         g_return_val_if_fail (EMPATHY_IS_TP_ROOMLIST (list), FALSE);
485
486         return priv->is_listing;
487 }
488
489 void
490 empathy_tp_roomlist_start (EmpathyTpRoomlist *list)
491 {
492         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
493
494         g_return_if_fail (EMPATHY_IS_TP_ROOMLIST (list));
495         if (priv->channel != NULL) {
496                 tp_cli_channel_type_room_list_call_list_rooms (priv->channel, -1,
497                         call_list_rooms_cb, list, NULL, NULL);
498         } else {
499                 priv->start_requested = TRUE;
500         }
501 }
502
503 void
504 empathy_tp_roomlist_stop (EmpathyTpRoomlist *list)
505 {
506         EmpathyTpRoomlistPriv *priv = GET_PRIV (list);
507
508         g_return_if_fail (EMPATHY_IS_TP_ROOMLIST (list));
509
510         if (priv->channel == NULL)
511                 return;
512
513         g_return_if_fail (TP_IS_CHANNEL (priv->channel));
514
515         tp_cli_channel_type_room_list_call_stop_listing (priv->channel, -1,
516                                                          stop_listing_cb, list, NULL, NULL);
517 }
518