]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-contact-list.c
Remove usage of EmpathyTpGroup from EmpathyTpContactList
[empathy.git] / libempathy / empathy-tp-contact-list.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Xavier Claessens <xclaesse@gmail.com>
4  * Copyright (C) 2007-2009 Collabora Ltd.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <string.h>
26 #include <glib/gi18n-lib.h>
27
28 #include <telepathy-glib/channel.h>
29 #include <telepathy-glib/connection.h>
30 #include <telepathy-glib/util.h>
31 #include <telepathy-glib/dbus.h>
32
33 #include "empathy-tp-contact-list.h"
34 #include "empathy-tp-contact-factory.h"
35 #include "empathy-contact-list.h"
36 #include "empathy-utils.h"
37
38 #define DEBUG_FLAG EMPATHY_DEBUG_TP | EMPATHY_DEBUG_CONTACT
39 #include "empathy-debug.h"
40
41 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyTpContactList)
42 typedef struct {
43         EmpathyTpContactFactory *factory;
44         TpConnection   *connection;
45         const gchar    *protocol_group;
46
47         TpChannel      *publish;
48         TpChannel      *subscribe;
49         GHashTable     *members;
50         GHashTable     *pendings;
51         GHashTable     *groups;
52 } EmpathyTpContactListPriv;
53
54 typedef enum {
55         TP_CONTACT_LIST_TYPE_PUBLISH,
56         TP_CONTACT_LIST_TYPE_SUBSCRIBE,
57         TP_CONTACT_LIST_TYPE_UNKNOWN
58 } TpContactListType;
59
60 static void tp_contact_list_iface_init         (EmpathyContactListIface   *iface);
61
62 enum {
63         PROP_0,
64         PROP_CONNECTION,
65 };
66
67 G_DEFINE_TYPE_WITH_CODE (EmpathyTpContactList, empathy_tp_contact_list, G_TYPE_OBJECT,
68                          G_IMPLEMENT_INTERFACE (EMPATHY_TYPE_CONTACT_LIST,
69                                                 tp_contact_list_iface_init));
70
71 static void
72 tp_contact_list_group_invalidated_cb (TpChannel *channel,
73                                       guint      domain,
74                                       gint       code,
75                                       gchar     *message,
76                                       EmpathyTpContactList *list)
77 {
78         EmpathyTpContactListPriv *priv = GET_PRIV (list);
79         const TpIntSet *members;
80         TpIntSetIter iter;
81         const gchar *group_name;
82
83         group_name = tp_channel_get_identifier (channel);
84         DEBUG ("Group %s invalidated. Message: %s", group_name, message);
85
86         /* Signal that all members are not in that group anymore */
87         members = tp_channel_group_get_members (channel);
88         tp_intset_iter_init (&iter, members);
89         while (tp_intset_iter_next (&iter)) {
90                 EmpathyContact *contact;
91
92                 contact = g_hash_table_lookup (priv->members,
93                                                GUINT_TO_POINTER (iter.element));
94                 if (contact == NULL) {
95                         continue;
96                 }
97
98                 DEBUG ("Contact %s (%d) removed from group %s",
99                         empathy_contact_get_id (contact), iter.element,
100                         group_name);
101                 g_signal_emit_by_name (list, "groups-changed", contact,
102                                        group_name,
103                                        FALSE);
104         }
105
106         g_hash_table_remove (priv->groups, group_name);
107 }
108
109 static void
110 tp_contact_list_group_ready_cb (TpChannel *channel,
111                                 const GError *error,
112                                 gpointer list)
113 {
114         EmpathyTpContactListPriv *priv = GET_PRIV (list);
115
116         if (error) {
117                 DEBUG ("Error: %s", error->message);
118                 g_object_unref (channel);
119                 return;
120         }
121         
122         DEBUG ("Add group %s", tp_channel_get_identifier (channel));
123         g_hash_table_insert (priv->groups,
124                              (gpointer) tp_channel_get_identifier (channel),
125                              channel);
126
127         g_signal_connect (channel, "invalidated",
128                           G_CALLBACK (tp_contact_list_group_invalidated_cb),
129                           list);
130 }
131
132 static void
133 tp_contact_list_group_members_changed_cb (TpChannel     *channel,
134                                           gchar         *message,
135                                           GArray        *added,
136                                           GArray        *removed,
137                                           GArray        *local_pending,
138                                           GArray        *remote_pending,
139                                           guint          actor,
140                                           guint          reason,
141                                           EmpathyTpContactList *list)
142 {
143         EmpathyTpContactListPriv  *priv = GET_PRIV (list);
144         const gchar *group_name;
145         gint i;
146
147         group_name = tp_channel_get_identifier (channel);
148
149         for (i = 0; i < added->len; i++) {
150                 EmpathyContact *contact;
151                 TpHandle handle;
152
153                 handle = g_array_index (added, TpHandle, i);
154                 contact = g_hash_table_lookup (priv->members,
155                                                GUINT_TO_POINTER (handle));
156                 if (contact == NULL) {
157                         continue;
158                 }
159
160                 DEBUG ("Contact %s (%d) added to group %s",
161                         empathy_contact_get_id (contact), handle, group_name);
162                 g_signal_emit_by_name (list, "groups-changed", contact,
163                                        group_name,
164                                        TRUE);
165         }       
166
167         for (i = 0; i < removed->len; i++) {
168                 EmpathyContact *contact;
169                 TpHandle handle;
170
171                 handle = g_array_index (removed, TpHandle, i);
172                 contact = g_hash_table_lookup (priv->members,
173                                                GUINT_TO_POINTER (handle));
174                 if (contact == NULL) {
175                         continue;
176                 }
177
178                 DEBUG ("Contact %s (%d) removed from group %s",
179                         empathy_contact_get_id (contact), handle, group_name);
180
181                 g_signal_emit_by_name (list, "groups-changed", contact,
182                                        group_name,
183                                        FALSE);
184         }       
185 }
186
187 static TpChannel *
188 tp_contact_list_group_add_channel (EmpathyTpContactList *list,
189                                    const gchar          *object_path,
190                                    const gchar          *channel_type,
191                                    TpHandleType          handle_type,
192                                    guint                 handle)
193 {
194         EmpathyTpContactListPriv *priv = GET_PRIV (list);
195         TpChannel                *channel;
196
197         /* Only accept server-side contact groups */
198         if (tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_CONTACT_LIST) ||
199             handle_type != TP_HANDLE_TYPE_GROUP) {
200                 return NULL;
201         }
202
203         channel = tp_channel_new (priv->connection,
204                                   object_path, channel_type,
205                                   handle_type, handle, NULL);
206
207         /* TpChannel emits initial set of members just before being ready */
208         g_signal_connect (channel, "group-members-changed",
209                           G_CALLBACK (tp_contact_list_group_members_changed_cb),
210                           list);
211
212         /* Give the ref to the callback */
213         tp_channel_call_when_ready (channel,
214                                     tp_contact_list_group_ready_cb,
215                                     list);
216
217         return channel;
218 }
219
220 typedef struct {
221         GArray *handles;
222         TpHandle channel_handle;
223         guint ref_count;
224 } GroupAddData;
225
226 static void
227 tp_contact_list_group_add_data_unref (gpointer user_data)
228 {
229         GroupAddData *data = user_data;
230
231         if (--data->ref_count == 0) {
232                 g_array_free (data->handles, TRUE);
233                 g_slice_free (GroupAddData, data);
234         }
235 }
236
237 static void
238 tp_contact_list_group_add_ready_cb (TpChannel    *channel,
239                                     const GError *error,
240                                     gpointer      user_data)
241 {
242         GroupAddData *data = user_data;
243
244         if (error) {
245                 tp_contact_list_group_add_data_unref (data);
246                 return;
247         }
248
249         tp_cli_channel_interface_group_call_add_members (channel, -1,
250                 data->handles, NULL, NULL, NULL, NULL, NULL);
251         tp_contact_list_group_add_data_unref (data);
252 }
253
254 static void
255 tp_contact_list_group_request_channel_cb (TpConnection *connection,
256                                           const gchar  *object_path,
257                                           const GError *error,
258                                           gpointer      user_data,
259                                           GObject      *list)
260 {
261         GroupAddData *data = user_data;
262         TpChannel *channel;
263
264         if (error) {
265                 DEBUG ("Error: %s", error->message);
266                 return;
267         }
268
269         channel = tp_contact_list_group_add_channel (EMPATHY_TP_CONTACT_LIST (list),
270                                                      object_path,
271                                                      TP_IFACE_CHANNEL_TYPE_CONTACT_LIST,
272                                                      TP_HANDLE_TYPE_GROUP,
273                                                      data->channel_handle);
274
275         data->ref_count++;
276         tp_channel_call_when_ready (channel,
277                                     tp_contact_list_group_add_ready_cb,
278                                     data);
279 }
280
281 static void
282 tp_contact_list_group_request_handles_cb (TpConnection *connection,
283                                           const GArray *handles,
284                                           const GError *error,
285                                           gpointer      user_data,
286                                           GObject      *list)
287 {
288         GroupAddData *data = user_data;
289
290         if (error) {
291                 DEBUG ("Error: %s", error->message);
292                 return;
293         }
294
295         data->channel_handle = g_array_index (handles, TpHandle, 1);
296         data->ref_count++;
297         tp_cli_connection_call_request_channel (connection, -1,
298                                                 TP_IFACE_CHANNEL_TYPE_CONTACT_LIST,
299                                                 TP_HANDLE_TYPE_GROUP,
300                                                 data->channel_handle,
301                                                 TRUE,
302                                                 tp_contact_list_group_request_channel_cb,
303                                                 data, tp_contact_list_group_add_data_unref,
304                                                 list);
305 }
306
307 static void
308 tp_contact_list_group_add (EmpathyTpContactList *list,
309                            const gchar          *group_name,
310                            GArray               *handles)
311 {
312         EmpathyTpContactListPriv *priv = GET_PRIV (list);
313         TpChannel                *channel;
314         const gchar              *names[] = {group_name, NULL};
315         GroupAddData             *data;
316
317         channel = g_hash_table_lookup (priv->groups, group_name);
318         if (channel) {
319                 tp_cli_channel_interface_group_call_add_members (channel, -1,
320                         handles, NULL, NULL, NULL, NULL, NULL);
321                 g_array_free (handles, TRUE);
322                 return;
323         }
324
325         data = g_slice_new0 (GroupAddData);
326         data->handles = handles;
327         data->ref_count = 1;
328         tp_cli_connection_call_request_handles (priv->connection, -1,
329                                                 TP_HANDLE_TYPE_GROUP, names,
330                                                 tp_contact_list_group_request_handles_cb,
331                                                 data, tp_contact_list_group_add_data_unref,
332                                                 G_OBJECT (list));
333 }
334
335 static void
336 tp_contact_list_got_added_members_cb (EmpathyTpContactFactory *factory,
337                                       GList                   *contacts,
338                                       gpointer                 user_data,
339                                       GObject                 *list)
340 {
341         EmpathyTpContactListPriv *priv = GET_PRIV (list);
342         GList *l;
343
344         for (l = contacts; l; l = l->next) {
345                 EmpathyContact *contact = l->data;
346                 TpHandle handle;
347
348                 handle = empathy_contact_get_handle (contact);
349                 if (g_hash_table_lookup (priv->members, GUINT_TO_POINTER (handle)))
350                         continue;
351
352                 /* Add to the list and emit signal */
353                 g_hash_table_insert (priv->members, GUINT_TO_POINTER (handle),
354                                      g_object_ref (contact));
355                 g_signal_emit_by_name (list, "members-changed", contact,
356                                        0, 0, NULL, TRUE);
357
358                 /* This contact is now member, implicitly accept pending. */
359                 if (g_hash_table_lookup (priv->pendings, GUINT_TO_POINTER (handle))) {
360                         GArray handles = {(gchar*) &handle, 1};
361
362                         tp_cli_channel_interface_group_call_add_members (priv->publish,
363                                 -1, &handles, NULL, NULL, NULL, NULL, NULL);
364                 }
365         }
366 }
367
368 static void
369 tp_contact_list_got_local_pending_cb (EmpathyTpContactFactory *factory,
370                                       GList                   *contacts,
371                                       gpointer                 info,
372                                       GObject                 *list)
373 {
374         EmpathyTpContactListPriv *priv = GET_PRIV (list);
375         GList *l;
376
377         for (l = contacts; l; l = l->next) {
378                 EmpathyContact *contact = l->data;
379                 TpHandle handle;
380                 const gchar *message;
381                 TpChannelGroupChangeReason reason;
382
383                 handle = empathy_contact_get_handle (contact);
384                 if (g_hash_table_lookup (priv->members, GUINT_TO_POINTER (handle))) {
385                         GArray handles = {(gchar*) &handle, 1};
386
387                         /* This contact is already member, auto accept. */
388                         tp_cli_channel_interface_group_call_add_members (priv->publish,
389                                 -1, &handles, NULL, NULL, NULL, NULL, NULL);
390                 }
391                 else if (tp_channel_group_get_local_pending_info (priv->publish,
392                                                                   handle,
393                                                                   NULL,
394                                                                   &reason,
395                                                                   &message)) {
396                         /* Add contact to pendings */
397                         g_hash_table_insert (priv->pendings, GUINT_TO_POINTER (handle),
398                                              g_object_ref (contact));
399                         g_signal_emit_by_name (list, "pendings-changed", contact,
400                                                contact, reason, message, TRUE);
401                 }
402         }
403 }
404
405 static void
406 tp_contact_list_remove_handle (EmpathyTpContactList *list,
407                                GHashTable *table,
408                                TpHandle handle)
409 {
410         EmpathyTpContactListPriv *priv = GET_PRIV (list);
411         EmpathyContact *contact;
412         const gchar *signal;
413
414         if (table == priv->pendings)
415                 signal = "pendings-changed";
416         else if (table == priv->members)
417                 signal = "members-changed";
418         else
419                 return;
420
421         contact = g_hash_table_lookup (table, GUINT_TO_POINTER (handle));
422         if (contact) {
423                 g_object_ref (contact);
424                 g_hash_table_remove (table, GUINT_TO_POINTER (handle));
425                 g_signal_emit_by_name (list, signal, contact, 0, 0, NULL,
426                                        FALSE);
427                 g_object_unref (contact);
428         }
429 }
430
431 static void
432 tp_contact_list_publish_group_members_changed_cb (TpChannel     *channel,
433                                                   gchar         *message,
434                                                   GArray        *added,
435                                                   GArray        *removed,
436                                                   GArray        *local_pending,
437                                                   GArray        *remote_pending,
438                                                   TpHandle       actor,
439                                                   TpChannelGroupChangeReason reason,
440                                                   EmpathyTpContactList *list)
441 {
442         EmpathyTpContactListPriv *priv = GET_PRIV (list);
443         guint i;
444
445         /* We now send our presence to those contacts, remove them from pendings */
446         for (i = 0; i < added->len; i++) {
447                 tp_contact_list_remove_handle (list, priv->pendings,
448                         g_array_index (added, TpHandle, i));
449         }
450
451         /* We refuse to send our presence to those contacts, remove from pendings */
452         for (i = 0; i < removed->len; i++) {
453                 tp_contact_list_remove_handle (list, priv->pendings,
454                         g_array_index (added, TpHandle, i));
455         }
456
457         /* Those contacts want our presence, auto accept those that are already
458          * member, otherwise add in pendings. */
459         if (local_pending->len > 0) {
460                 empathy_tp_contact_factory_get_from_handles (priv->factory,
461                         local_pending->len, (TpHandle*) local_pending->data,
462                         tp_contact_list_got_local_pending_cb, NULL, NULL,
463                         G_OBJECT (list));
464         }
465 }
466
467 static void
468 tp_contact_list_publish_request_channel_cb (TpConnection *connection,
469                                             const gchar  *object_path,
470                                             const GError *error,
471                                             gpointer      user_data,
472                                             GObject      *list)
473 {
474         EmpathyTpContactListPriv *priv = GET_PRIV (list);
475
476         if (error) {
477                 DEBUG ("Error: %s", error->message);
478                 return;
479         }
480
481         priv->publish = tp_channel_new (connection, object_path,
482                                         TP_IFACE_CHANNEL_TYPE_CONTACT_LIST,
483                                         TP_HANDLE_TYPE_LIST,
484                                         GPOINTER_TO_UINT (user_data),
485                                         NULL);
486
487         /* TpChannel emits initial set of members just before being ready */
488         g_signal_connect (priv->publish, "group-members-changed",
489                           G_CALLBACK (tp_contact_list_publish_group_members_changed_cb),
490                           list);
491 }
492
493 static void
494 tp_contact_list_publish_request_handle_cb (TpConnection *connection,
495                                            const GArray *handles,
496                                            const GError *error,
497                                            gpointer      user_data,
498                                            GObject      *list)
499 {
500         TpHandle handle;
501
502         if (error) {
503                 DEBUG ("Error: %s", error->message);
504                 return;
505         }
506
507         handle = g_array_index (handles, TpHandle, 0);
508         tp_cli_connection_call_request_channel (connection, -1,
509                                                 TP_IFACE_CHANNEL_TYPE_CONTACT_LIST,
510                                                 TP_HANDLE_TYPE_LIST,
511                                                 handle,
512                                                 TRUE,
513                                                 tp_contact_list_publish_request_channel_cb,
514                                                 GUINT_TO_POINTER (handle), NULL,
515                                                 list);
516 }
517
518 static void
519 tp_contact_list_subscribe_group_members_changed_cb (TpChannel     *channel,
520                                                     gchar         *message,
521                                                     GArray        *added,
522                                                     GArray        *removed,
523                                                     GArray        *local_pending,
524                                                     GArray        *remote_pending,
525                                                     guint          actor,
526                                                     guint          reason,
527                                                     EmpathyTpContactList *list)
528 {
529         EmpathyTpContactListPriv *priv = GET_PRIV (list);
530         guint i;
531
532         /* We now get the presence of those contacts, add them to members */
533         if (added->len > 0) {
534                 empathy_tp_contact_factory_get_from_handles (priv->factory,
535                         added->len, (TpHandle*) added->data,
536                         tp_contact_list_got_added_members_cb, NULL, NULL,
537                         G_OBJECT (list));
538         }
539
540         /* Those contacts refuse to send us their presence, remove from members. */
541         for (i = 0; i < removed->len; i++) {
542                 tp_contact_list_remove_handle (list, priv->members,
543                         g_array_index (added, TpHandle, i));
544         }
545
546         /* We want those contacts in our contact list but we don't get their 
547          * presence yet. Add to members anyway. */
548         if (remote_pending->len > 0) {
549                 empathy_tp_contact_factory_get_from_handles (priv->factory,
550                         remote_pending->len, (TpHandle*) remote_pending->data,
551                         tp_contact_list_got_added_members_cb, NULL, NULL,
552                         G_OBJECT (list));
553         }
554 }
555
556 static void
557 tp_contact_list_subscribe_request_channel_cb (TpConnection *connection,
558                                               const gchar  *object_path,
559                                               const GError *error,
560                                               gpointer      user_data,
561                                               GObject      *list)
562 {
563         EmpathyTpContactListPriv *priv = GET_PRIV (list);
564
565         if (error) {
566                 DEBUG ("Error: %s", error->message);
567                 return;
568         }
569
570         priv->subscribe = tp_channel_new (connection, object_path,
571                                           TP_IFACE_CHANNEL_TYPE_CONTACT_LIST,
572                                           TP_HANDLE_TYPE_LIST,
573                                           GPOINTER_TO_UINT (user_data),
574                                           NULL);
575
576         /* TpChannel emits initial set of members just before being ready */
577         g_signal_connect (priv->subscribe, "group-members-changed",
578                           G_CALLBACK (tp_contact_list_subscribe_group_members_changed_cb),
579                           list);
580 }
581
582 static void
583 tp_contact_list_subscribe_request_handle_cb (TpConnection *connection,
584                                              const GArray *handles,
585                                              const GError *error,
586                                              gpointer      user_data,
587                                              GObject      *list)
588 {
589         TpHandle handle;
590
591         if (error) {
592                 DEBUG ("Error: %s", error->message);
593                 return;
594         }
595
596         handle = g_array_index (handles, TpHandle, 0);
597         tp_cli_connection_call_request_channel (connection, -1,
598                                                 TP_IFACE_CHANNEL_TYPE_CONTACT_LIST,
599                                                 TP_HANDLE_TYPE_LIST,
600                                                 handle,
601                                                 TRUE,
602                                                 tp_contact_list_subscribe_request_channel_cb,
603                                                 GUINT_TO_POINTER (handle), NULL,
604                                                 list);
605 }
606
607 static void
608 tp_contact_list_new_channel_cb (TpConnection *proxy,
609                                 const gchar  *object_path,
610                                 const gchar  *channel_type,
611                                 guint         handle_type,
612                                 guint         handle,
613                                 gboolean      suppress_handler,
614                                 gpointer      user_data,
615                                 GObject      *list)
616 {
617         tp_contact_list_group_add_channel (EMPATHY_TP_CONTACT_LIST (list),
618                                            object_path, channel_type,
619                                            handle_type, handle);
620 }
621
622 static void
623 tp_contact_list_list_channels_cb (TpConnection    *connection,
624                                   const GPtrArray *channels,
625                                   const GError    *error,
626                                   gpointer         user_data,
627                                   GObject         *list)
628 {
629         guint i;
630
631         if (error) {
632                 DEBUG ("Error: %s", error->message);
633                 return;
634         }
635
636         for (i = 0; i < channels->len; i++) {
637                 GValueArray  *chan_struct;
638                 const gchar  *object_path;
639                 const gchar  *channel_type;
640                 TpHandleType  handle_type;
641                 guint         handle;
642
643                 chan_struct = g_ptr_array_index (channels, i);
644                 object_path = g_value_get_boxed (g_value_array_get_nth (chan_struct, 0));
645                 channel_type = g_value_get_string (g_value_array_get_nth (chan_struct, 1));
646                 handle_type = g_value_get_uint (g_value_array_get_nth (chan_struct, 2));
647                 handle = g_value_get_uint (g_value_array_get_nth (chan_struct, 3));
648
649                 tp_contact_list_group_add_channel (EMPATHY_TP_CONTACT_LIST (list),
650                                                    object_path, channel_type,
651                                                    handle_type, handle);
652         }
653 }
654
655 static void
656 tp_contact_list_finalize (GObject *object)
657 {
658         EmpathyTpContactListPriv *priv;
659         EmpathyTpContactList     *list;
660         GHashTableIter            iter;
661         gpointer                  channel;
662
663         list = EMPATHY_TP_CONTACT_LIST (object);
664         priv = GET_PRIV (list);
665
666         DEBUG ("finalize: %p", object);
667
668         if (priv->subscribe) {
669                 g_object_unref (priv->subscribe);
670         }
671         if (priv->publish) {
672                 g_object_unref (priv->publish);
673         }
674
675         if (priv->connection) {
676                 g_object_unref (priv->connection);
677         }
678
679         if (priv->factory) {
680                 g_object_unref (priv->factory);
681         }
682
683         g_hash_table_iter_init (&iter, priv->groups);
684         while (g_hash_table_iter_next (&iter, NULL, &channel)) {
685                 g_signal_handlers_disconnect_by_func (channel,
686                         tp_contact_list_group_invalidated_cb, list);
687         }
688
689         g_hash_table_destroy (priv->groups);
690         g_hash_table_destroy (priv->members);
691         g_hash_table_destroy (priv->pendings);
692
693         G_OBJECT_CLASS (empathy_tp_contact_list_parent_class)->finalize (object);
694 }
695
696 static void
697 tp_contact_list_constructed (GObject *list)
698 {
699
700         EmpathyTpContactListPriv *priv = GET_PRIV (list);
701         const gchar              *protocol_name = NULL;
702         const gchar              *names[] = {NULL, NULL};
703
704         names[0] = "publish";
705         tp_cli_connection_call_request_handles (priv->connection,
706                                                 -1,
707                                                 TP_HANDLE_TYPE_LIST,
708                                                 names,
709                                                 tp_contact_list_publish_request_handle_cb,
710                                                 NULL, NULL,
711                                                 G_OBJECT (list));
712         names[0] = "subscribe";
713         tp_cli_connection_call_request_handles (priv->connection,
714                                                 -1,
715                                                 TP_HANDLE_TYPE_LIST,
716                                                 names,
717                                                 tp_contact_list_subscribe_request_handle_cb,
718                                                 NULL, NULL,
719                                                 G_OBJECT (list));
720
721         tp_cli_connection_call_list_channels (priv->connection, -1,
722                                               tp_contact_list_list_channels_cb,
723                                               NULL, NULL,
724                                               list);
725
726         tp_cli_connection_connect_to_new_channel (priv->connection,
727                                                   tp_contact_list_new_channel_cb,
728                                                   NULL, NULL,
729                                                   list, NULL);
730
731         /* Check for protocols that does not support contact groups. We can
732          * put all contacts into a special group in that case.
733          * FIXME: Default group should be an information in the profile */
734         //protocol_name = tp_connection_get_protocol (priv->connection);
735         if (!tp_strdiff (protocol_name, "local-xmpp") == 0) {
736                 priv->protocol_group = _("People nearby");
737         }
738 }
739
740 static void
741 tp_contact_list_get_property (GObject    *object,
742                               guint       param_id,
743                               GValue     *value,
744                               GParamSpec *pspec)
745 {
746         EmpathyTpContactListPriv *priv = GET_PRIV (object);
747
748         switch (param_id) {
749         case PROP_CONNECTION:
750                 g_value_set_object (value, priv->connection);
751                 break;
752         default:
753                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
754                 break;
755         };
756 }
757
758 static void
759 tp_contact_list_set_property (GObject      *object,
760                               guint         param_id,
761                               const GValue *value,
762                               GParamSpec   *pspec)
763 {
764         EmpathyTpContactListPriv *priv = GET_PRIV (object);
765
766         switch (param_id) {
767         case PROP_CONNECTION:
768                 priv->connection = g_value_dup_object (value);
769                 break;
770         default:
771                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
772                 break;
773         };
774 }
775
776 static void
777 empathy_tp_contact_list_class_init (EmpathyTpContactListClass *klass)
778 {
779         GObjectClass *object_class = G_OBJECT_CLASS (klass);
780
781         object_class->finalize = tp_contact_list_finalize;
782         object_class->constructed = tp_contact_list_constructed;
783         object_class->get_property = tp_contact_list_get_property;
784         object_class->set_property = tp_contact_list_set_property;
785
786         g_object_class_install_property (object_class,
787                                          PROP_CONNECTION,
788                                          g_param_spec_object ("connection",
789                                                               "The Connection",
790                                                               "The connection associated with the contact list",
791                                                               TP_TYPE_CONNECTION,
792                                                               G_PARAM_READWRITE |
793                                                               G_PARAM_CONSTRUCT_ONLY));
794
795         g_type_class_add_private (object_class, sizeof (EmpathyTpContactListPriv));
796 }
797
798 static void
799 empathy_tp_contact_list_init (EmpathyTpContactList *list)
800 {
801         EmpathyTpContactListPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (list,
802                 EMPATHY_TYPE_TP_CONTACT_LIST, EmpathyTpContactListPriv);
803
804         list->priv = priv;
805         priv->factory = empathy_tp_contact_factory_dup_singleton (priv->connection);
806
807         /* Map group's name to group's channel */
808         priv->groups = g_hash_table_new_full (g_str_hash, g_str_equal,
809                                               NULL,
810                                               (GDestroyNotify) g_object_unref);
811
812         /* Map contact's handle to EmpathyContact object */
813         priv->members = g_hash_table_new_full (g_direct_hash, g_direct_equal,
814                                                NULL,
815                                                (GDestroyNotify) g_object_unref);
816
817         /* Map contact's handle to EmpathyContact object */
818         priv->pendings = g_hash_table_new_full (g_direct_hash, g_direct_equal,
819                                                 NULL,
820                                                 (GDestroyNotify) g_object_unref);
821 }
822
823 EmpathyTpContactList *
824 empathy_tp_contact_list_new (TpConnection *connection)
825 {
826         return g_object_new (EMPATHY_TYPE_TP_CONTACT_LIST,
827                              "connection", connection,
828                              NULL);
829 }
830
831 TpConnection *
832 empathy_tp_contact_list_get_connection (EmpathyTpContactList *list)
833 {
834         EmpathyTpContactListPriv *priv;
835
836         g_return_val_if_fail (EMPATHY_IS_TP_CONTACT_LIST (list), NULL);
837
838         priv = GET_PRIV (list);
839
840         return priv->connection;
841 }
842
843 static void
844 tp_contact_list_add (EmpathyContactList *list,
845                      EmpathyContact     *contact,
846                      const gchar        *message)
847 {
848         EmpathyTpContactListPriv *priv = GET_PRIV (list);
849         TpHandle handle;
850         GArray handles = {(gchar *) &handle, 1};
851
852         handle = empathy_contact_get_handle (contact);
853         if (priv->subscribe) {
854                 tp_cli_channel_interface_group_call_add_members (priv->subscribe,
855                         -1, &handles, message, NULL, NULL, NULL, NULL);
856         }
857 }
858
859 static void
860 tp_contact_list_remove (EmpathyContactList *list,
861                         EmpathyContact     *contact,
862                         const gchar        *message)
863 {
864         EmpathyTpContactListPriv *priv = GET_PRIV (list);
865         TpHandle handle;
866         GArray handles = {(gchar *) &handle, 1};
867
868         handle = empathy_contact_get_handle (contact);
869         if (priv->subscribe) {
870                 tp_cli_channel_interface_group_call_remove_members (priv->subscribe,
871                         -1, &handles, message, NULL, NULL, NULL, NULL);
872         }
873         if (priv->publish) {
874                 tp_cli_channel_interface_group_call_remove_members (priv->publish,
875                         -1, &handles, message, NULL, NULL, NULL, NULL);
876         }
877 }
878
879 static GList *
880 tp_contact_list_get_members (EmpathyContactList *list)
881 {
882         EmpathyTpContactListPriv *priv = GET_PRIV (list);
883         GList *ret;
884
885         ret = g_hash_table_get_values (priv->members);
886         g_list_foreach (ret, (GFunc) g_object_ref, NULL);
887         return ret;
888 }
889
890 static GList *
891 tp_contact_list_get_pendings (EmpathyContactList *list)
892 {
893         EmpathyTpContactListPriv *priv = GET_PRIV (list);
894         GList *ret;
895
896         ret = g_hash_table_get_values (priv->pendings);
897         g_list_foreach (ret, (GFunc) g_object_ref, NULL);
898         return ret;
899 }
900
901 static GList *
902 tp_contact_list_get_all_groups (EmpathyContactList *list)
903 {
904         EmpathyTpContactListPriv *priv = GET_PRIV (list);
905         GList                    *ret, *l;
906
907         ret = g_hash_table_get_keys (priv->groups);
908         for (l = ret; l; l = l->next) {
909                 l->data = g_strdup (l->data);
910         }
911
912         if (priv->protocol_group) {
913                 ret = g_list_prepend (ret, g_strdup (priv->protocol_group));
914         }
915
916         return ret;
917 }
918
919 static GList *
920 tp_contact_list_get_groups (EmpathyContactList *list,
921                             EmpathyContact     *contact)
922 {
923         EmpathyTpContactListPriv  *priv = GET_PRIV (list);
924         GList                     *ret = NULL;
925         GHashTableIter             iter;
926         gpointer                   group_name;
927         gpointer                   channel;
928         TpHandle                   handle;
929
930         handle = empathy_contact_get_handle (contact);
931         g_hash_table_iter_init (&iter, priv->groups);
932         while (g_hash_table_iter_next (&iter, &group_name, &channel)) {
933                 const TpIntSet *members;
934
935                 members = tp_channel_group_get_members (channel);
936                 if (tp_intset_is_member (members, handle)) {
937                         ret = g_list_prepend (ret, g_strdup (group_name));
938                 }
939         }
940
941         if (priv->protocol_group) {
942                 ret = g_list_prepend (ret, g_strdup (priv->protocol_group));
943         }
944
945         return ret;
946 }
947
948 static void
949 tp_contact_list_add_to_group (EmpathyContactList *list,
950                               EmpathyContact     *contact,
951                               const gchar        *group_name)
952 {
953         TpHandle handle;
954         GArray *handles;
955
956         handle = empathy_contact_get_handle (contact);
957         handles = g_array_sized_new (FALSE, FALSE, sizeof (TpHandle), 1);
958         g_array_append_val (handles, handle);
959         tp_contact_list_group_add (EMPATHY_TP_CONTACT_LIST (list),
960                                    group_name, handles);
961 }
962
963 static void
964 tp_contact_list_remove_from_group (EmpathyContactList *list,
965                                    EmpathyContact     *contact,
966                                    const gchar        *group_name)
967 {
968         EmpathyTpContactListPriv *priv = GET_PRIV (list);
969         TpChannel                *channel;
970         TpHandle                  handle;
971         GArray                    handles = {(gchar *) &handle, 1};
972
973         channel = g_hash_table_lookup (priv->groups, group_name);
974         if (channel == NULL) {
975                 return;
976         }
977
978         handle = empathy_contact_get_handle (contact);
979         DEBUG ("remove contact %s (%d) from group %s",
980                 empathy_contact_get_id (contact), handle, group_name);
981
982         tp_cli_channel_interface_group_call_remove_members (channel, -1,
983                 &handles, NULL, NULL, NULL, NULL, NULL);
984 }
985
986 static void
987 tp_contact_list_rename_group (EmpathyContactList *list,
988                               const gchar        *old_group_name,
989                               const gchar        *new_group_name)
990 {
991         EmpathyTpContactListPriv *priv = GET_PRIV (list);
992         TpChannel                *channel;
993         const TpIntSet           *members;
994         GArray                   *handles;
995
996         channel = g_hash_table_lookup (priv->groups, old_group_name);
997         if (channel == NULL) {
998                 return;
999         }
1000
1001         DEBUG ("rename group %s to %s", old_group_name, new_group_name);
1002
1003         /* Remove all members and close the old channel */
1004         members = tp_channel_group_get_members (channel);
1005         handles = tp_intset_to_array (members);
1006         tp_cli_channel_interface_group_call_remove_members (channel, -1,
1007                 handles, NULL, NULL, NULL, NULL, NULL);
1008         tp_cli_channel_call_close (channel, -1, NULL, NULL, NULL, NULL);
1009
1010         tp_contact_list_group_add (EMPATHY_TP_CONTACT_LIST (list),
1011                                    new_group_name, handles);
1012 }
1013
1014 static void
1015 tp_contact_list_remove_group (EmpathyContactList *list,
1016                               const gchar *group_name)
1017 {
1018         EmpathyTpContactListPriv *priv = GET_PRIV (list);
1019         TpChannel                *channel;
1020         const TpIntSet           *members;
1021         GArray                   *handles;
1022
1023         channel = g_hash_table_lookup (priv->groups, group_name);
1024         if (channel == NULL) {
1025                 return;
1026         }
1027
1028         DEBUG ("remove group %s", group_name);
1029
1030         /* Remove all members and close the channel */
1031         members = tp_channel_group_get_members (channel);
1032         handles = tp_intset_to_array (members);
1033         tp_cli_channel_interface_group_call_remove_members (channel, -1,
1034                 handles, NULL, NULL, NULL, NULL, NULL);
1035         tp_cli_channel_call_close (channel, -1, NULL, NULL, NULL, NULL);
1036         g_array_free (handles, TRUE);
1037 }
1038
1039 static void
1040 tp_contact_list_iface_init (EmpathyContactListIface *iface)
1041 {
1042         iface->add               = tp_contact_list_add;
1043         iface->remove            = tp_contact_list_remove;
1044         iface->get_members       = tp_contact_list_get_members;
1045         iface->get_pendings      = tp_contact_list_get_pendings;
1046         iface->get_all_groups    = tp_contact_list_get_all_groups;
1047         iface->get_groups        = tp_contact_list_get_groups;
1048         iface->add_to_group      = tp_contact_list_add_to_group;
1049         iface->remove_from_group = tp_contact_list_remove_from_group;
1050         iface->rename_group      = tp_contact_list_rename_group;
1051         iface->remove_group      = tp_contact_list_remove_group;
1052 }
1053
1054 gboolean
1055 empathy_tp_contact_list_can_add (EmpathyTpContactList *list)
1056 {
1057         EmpathyTpContactListPriv *priv;
1058         TpChannelGroupFlags       flags;
1059
1060         g_return_val_if_fail (EMPATHY_IS_TP_CONTACT_LIST (list), FALSE);
1061
1062         priv = GET_PRIV (list);
1063
1064         if (priv->subscribe == NULL)
1065                 return FALSE;
1066
1067         flags = tp_channel_group_get_flags (priv->subscribe);
1068         return (flags & TP_CHANNEL_GROUP_FLAG_CAN_ADD) != 0;
1069 }
1070
1071 void
1072 empathy_tp_contact_list_remove_all (EmpathyTpContactList *list)
1073 {
1074         EmpathyTpContactListPriv *priv = GET_PRIV (list);
1075         GHashTableIter            iter;
1076         gpointer                  contact;
1077
1078         g_return_if_fail (EMPATHY_IS_TP_CONTACT_LIST (list));
1079
1080         /* Remove all contacts */
1081         g_hash_table_iter_init (&iter, priv->members);
1082         while (g_hash_table_iter_next (&iter, NULL, &contact)) {
1083                 g_signal_emit_by_name (list, "members-changed", contact,
1084                                        NULL, 0, NULL,
1085                                        FALSE);
1086         }
1087         g_hash_table_remove_all (priv->members);
1088
1089         g_hash_table_iter_init (&iter, priv->pendings);
1090         while (g_hash_table_iter_next (&iter, NULL, &contact)) {
1091                 g_signal_emit_by_name (list, "pendings-changed", contact,
1092                                        NULL, 0, NULL,
1093                                        FALSE);
1094         }
1095         g_hash_table_remove_all (priv->pendings);
1096 }
1097