]> git.0d.be Git - empathy.git/blob - src/empathy-event-manager.c
Stop observing/approving StreamedMedia channels
[empathy.git] / src / empathy-event-manager.c
1 /*
2  * Copyright (C) 2007-2008 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Xavier Claessens <xclaesse@gmail.com>
19  *          Sjoerd Simons <sjoerd.simons@collabora.co.uk>
20  */
21
22 #include "config.h"
23 #include "empathy-event-manager.h"
24
25 #include <glib/gi18n.h>
26 #include <tp-account-widgets/tpaw-images.h>
27 #include <tp-account-widgets/tpaw-utils.h>
28 #include <telepathy-glib/telepathy-glib-dbus.h>
29
30 #include "empathy-call-utils.h"
31 #include "empathy-connection-aggregator.h"
32 #include "empathy-gsettings.h"
33 #include "empathy-images.h"
34 #include "empathy-presence-manager.h"
35 #include "empathy-sasl-mechanisms.h"
36 #include "empathy-sound-manager.h"
37 #include "empathy-subscription-dialog.h"
38 #include "empathy-tp-chat.h"
39 #include "empathy-ui-utils.h"
40 #include "empathy-utils.h"
41
42 #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
43 #include "empathy-debug.h"
44
45 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyEventManager)
46
47 #define NOTIFICATION_TIMEOUT 2 /* seconds */
48
49 #define ACCEPT_WITHOUT_VIDEO 1
50
51 /* The time interval in milliseconds between 2 incoming rings */
52 #define MS_BETWEEN_RING 500
53
54 typedef struct {
55   EmpathyEventManager *manager;
56   TpChannelDispatchOperation *operation;
57   gulong invalidated_handler;
58   /* Remove contact if applicable */
59   EmpathyContact *contact;
60   /* option signal handler and it's instance */
61   gulong handler;
62   GObject *handler_instance;
63   /* optional accept widget */
64   GtkWidget *dialog;
65   /* Channel of the CDO that will be used during the approval */
66   TpChannel *main_channel;
67   gboolean auto_approved;
68 } EventManagerApproval;
69
70 typedef struct {
71   TpBaseClient *approver;
72   TpBaseClient *auth_approver;
73   EmpathyConnectionAggregator *conn_aggregator;
74   GSList *events;
75   /* Ongoing approvals */
76   GSList *approvals;
77
78   gint ringing;
79
80   GSettings *gsettings_notif;
81   GSettings *gsettings_ui;
82
83   EmpathySoundManager *sound_mgr;
84
85   /* TpContact -> EmpathyContact */
86   GHashTable *contacts;
87 } EmpathyEventManagerPriv;
88
89 typedef struct _EventPriv EventPriv;
90 typedef void (*EventFunc) (EventPriv *event);
91
92 struct _EventPriv {
93   EmpathyEvent public;
94   EmpathyEventManager *manager;
95   EventManagerApproval *approval;
96   EventFunc func;
97   gboolean inhibit;
98   gpointer user_data;
99   guint autoremove_timeout_id;
100 };
101
102 enum {
103   EVENT_ADDED,
104   EVENT_REMOVED,
105   EVENT_UPDATED,
106   LAST_SIGNAL
107 };
108
109 static guint signals[LAST_SIGNAL];
110
111 G_DEFINE_TYPE (EmpathyEventManager, empathy_event_manager, G_TYPE_OBJECT);
112
113 static EmpathyEventManager * manager_singleton = NULL;
114
115 static EventManagerApproval *
116 event_manager_approval_new (EmpathyEventManager *manager,
117   TpChannelDispatchOperation *operation,
118   TpChannel *main_channel)
119 {
120   EventManagerApproval *result = g_slice_new0 (EventManagerApproval);
121   result->operation = g_object_ref (operation);
122   result->manager = manager;
123   result->main_channel = g_object_ref (main_channel);
124
125   return result;
126 }
127
128 static void
129 event_manager_approval_free (EventManagerApproval *approval)
130 {
131   g_signal_handler_disconnect (approval->operation,
132     approval->invalidated_handler);
133   g_object_unref (approval->operation);
134
135   g_object_unref (approval->main_channel);
136
137   if (approval->handler != 0)
138     g_signal_handler_disconnect (approval->handler_instance,
139       approval->handler);
140
141   if (approval->handler_instance != NULL)
142     g_object_unref (approval->handler_instance);
143
144   if (approval->contact != NULL)
145     g_object_unref (approval->contact);
146
147   if (approval->dialog != NULL)
148     {
149       gtk_widget_destroy (approval->dialog);
150     }
151
152   g_slice_free (EventManagerApproval, approval);
153 }
154
155 static void
156 event_free (EventPriv *event)
157 {
158   g_free (event->public.icon_name);
159   g_free (event->public.header);
160   g_free (event->public.message);
161
162   if (event->autoremove_timeout_id != 0)
163     g_source_remove (event->autoremove_timeout_id);
164
165   tp_clear_object (&(event->public.contact));
166   tp_clear_object (&(event->public.account));
167
168   g_slice_free (EventPriv, event);
169 }
170
171 static void
172 event_remove (EventPriv *event)
173 {
174   EmpathyEventManagerPriv *priv = GET_PRIV (event->manager);
175
176   DEBUG ("Removing event %p", event);
177
178   priv->events = g_slist_remove (priv->events, event);
179   g_signal_emit (event->manager, signals[EVENT_REMOVED], 0, event);
180   event_free (event);
181 }
182
183 void
184 empathy_event_remove (EmpathyEvent *event_public)
185 {
186   EventPriv *event = (EventPriv *) event_public;
187
188   event_remove (event);
189 }
190
191 static gboolean
192 autoremove_event_timeout_cb (EventPriv *event)
193 {
194   event->autoremove_timeout_id = 0;
195   event_remove (event);
196   return FALSE;
197 }
198
199 static gboolean
200 display_notify_area (EmpathyEventManager *self)
201 {
202   EmpathyEventManagerPriv *priv = GET_PRIV (self);
203
204   return g_settings_get_boolean (priv->gsettings_ui,
205       EMPATHY_PREFS_UI_EVENTS_NOTIFY_AREA);
206 }
207
208 static void
209 event_manager_add (EmpathyEventManager *manager,
210     TpAccount *account,
211     EmpathyContact *contact,
212     EmpathyEventType type,
213     const gchar *icon_name,
214     const gchar *header,
215     const gchar *message,
216     EventManagerApproval *approval,
217     EventFunc func,
218     gpointer user_data)
219 {
220   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
221   EventPriv               *event;
222
223   event = g_slice_new0 (EventPriv);
224   event->public.account = account != NULL ? g_object_ref (account) : NULL;
225   event->public.contact = contact ? g_object_ref (contact) : NULL;
226   event->public.type = type;
227   event->public.icon_name = g_strdup (icon_name);
228   event->public.header = g_strdup (header);
229   event->public.message = g_strdup (message);
230   event->public.must_ack = (func != NULL);
231   if (approval != NULL)
232     event->public.handler_instance = approval->handler_instance;
233   event->inhibit = FALSE;
234   event->func = func;
235   event->user_data = user_data;
236   event->manager = manager;
237   event->approval = approval;
238
239   DEBUG ("Adding event %p", event);
240   priv->events = g_slist_prepend (priv->events, event);
241
242   if (!display_notify_area (manager))
243     {
244       /* Don't fire the 'event-added' signal as we activate the event now */
245       if (approval != NULL)
246         approval->auto_approved = TRUE;
247
248       empathy_event_activate (&event->public);
249       return;
250     }
251
252   g_signal_emit (event->manager, signals[EVENT_ADDED], 0, event);
253
254   if (!event->public.must_ack)
255     {
256       event->autoremove_timeout_id = g_timeout_add_seconds (
257           NOTIFICATION_TIMEOUT, (GSourceFunc) autoremove_event_timeout_cb,
258           event);
259     }
260 }
261
262 static void
263 handle_with_cb (GObject *source,
264     GAsyncResult *result,
265     gpointer user_data)
266 {
267   TpChannelDispatchOperation *cdo = TP_CHANNEL_DISPATCH_OPERATION (source);
268   GError *error = NULL;
269
270   if (!tp_channel_dispatch_operation_handle_with_finish (cdo, result, &error))
271     {
272       DEBUG ("HandleWith failed: %s\n", error->message);
273       g_error_free (error);
274     }
275 }
276
277 static void
278 handle_with_time_cb (GObject *source,
279     GAsyncResult *result,
280     gpointer user_data)
281 {
282   TpChannelDispatchOperation *cdo = TP_CHANNEL_DISPATCH_OPERATION (source);
283   GError *error = NULL;
284
285   if (!tp_channel_dispatch_operation_handle_with_time_finish (cdo, result,
286         &error))
287     {
288       if (g_error_matches (error, TP_ERROR, TP_ERROR_NOT_IMPLEMENTED))
289         {
290           EventManagerApproval *approval = user_data;
291
292           DEBUG ("HandleWithTime() is not implemented, falling back to "
293               "HandleWith(). Please upgrade to telepathy-mission-control "
294               "5.5.0 or later");
295
296           tp_channel_dispatch_operation_handle_with_async (approval->operation,
297               NULL, handle_with_cb, approval);
298         }
299       else
300         {
301           DEBUG ("HandleWithTime failed: %s\n", error->message);
302         }
303       g_error_free (error);
304     }
305 }
306
307 static void
308 event_manager_approval_approve (EventManagerApproval *approval)
309 {
310   gint64 timestamp;
311
312   if (approval->auto_approved)
313     {
314       timestamp = TP_USER_ACTION_TIME_NOT_USER_ACTION;
315     }
316   else
317     {
318       timestamp = empathy_get_current_action_time ();
319     }
320
321   g_assert (approval->operation != NULL);
322
323   tp_channel_dispatch_operation_handle_with_time_async (approval->operation,
324       NULL, timestamp, handle_with_time_cb, approval);
325 }
326
327 static void
328 event_channel_process_func (EventPriv *event)
329 {
330   event_manager_approval_approve (event->approval);
331 }
332
333 static void
334 event_text_channel_process_func (EventPriv *event)
335 {
336   EmpathyTpChat *tp_chat;
337
338   if (event->approval->handler != 0)
339     {
340       tp_chat = EMPATHY_TP_CHAT (event->approval->handler_instance);
341
342       g_signal_handler_disconnect (tp_chat, event->approval->handler);
343       event->approval->handler = 0;
344     }
345
346   event_manager_approval_approve (event->approval);
347 }
348
349 static EventPriv *
350 event_lookup_by_approval (EmpathyEventManager *manager,
351   EventManagerApproval *approval)
352 {
353   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
354   GSList *l;
355   EventPriv *retval = NULL;
356
357   for (l = priv->events; l; l = l->next)
358     {
359       EventPriv *event = l->data;
360
361       if (event->approval == approval)
362         {
363           retval = event;
364           break;
365         }
366     }
367
368   return retval;
369 }
370
371 static void
372 event_update (EmpathyEventManager *manager, EventPriv *event,
373   const char *icon_name, const char *header, const char *msg)
374 {
375   g_free (event->public.icon_name);
376   g_free (event->public.header);
377   g_free (event->public.message);
378
379   event->public.icon_name = g_strdup (icon_name);
380   event->public.header = g_strdup (header);
381   event->public.message = g_strdup (msg);
382
383   g_signal_emit (manager, signals[EVENT_UPDATED], 0, event);
384 }
385
386 static void
387 reject_channel_claim_cb (GObject *source,
388     GAsyncResult *result,
389     gpointer user_data)
390 {
391   TpChannelDispatchOperation *cdo = TP_CHANNEL_DISPATCH_OPERATION (source);
392   GError *error = NULL;
393
394   if (!tp_channel_dispatch_operation_claim_with_finish (cdo, result, &error))
395     {
396       DEBUG ("Failed to claim channel: %s", error->message);
397
398       g_error_free (error);
399       goto out;
400     }
401
402   if (TP_IS_CALL_CHANNEL (user_data))
403     {
404       tp_call_channel_hangup_async (user_data,
405           TP_CALL_STATE_CHANGE_REASON_USER_REQUESTED,
406           "", "", NULL, NULL);
407       tp_channel_close_async (user_data, NULL, NULL);
408     }
409   else if (EMPATHY_IS_TP_CHAT (user_data))
410     {
411       empathy_tp_chat_leave (user_data, "");
412     }
413   else if (TP_IS_FILE_TRANSFER_CHANNEL (user_data))
414     {
415       tp_channel_close_async (user_data, NULL, NULL);
416     }
417
418 out:
419   g_object_unref (user_data);
420 }
421
422 static void
423 reject_approval (EventManagerApproval *approval)
424 {
425   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
426
427   /* We have to claim the channel before closing it */
428
429   /* Unfortunately, we need to special case the auth channels for the
430    * time being as they don't have a wrapper object handler in
431    * approval->handler_instance as they're not actually handled by
432    * this process, so we can just use a noddy callback to call Close()
433    * directly. */
434   if (approval->handler_instance != NULL)
435     {
436       tp_channel_dispatch_operation_claim_with_async (approval->operation,
437           priv->approver, reject_channel_claim_cb,
438           g_object_ref (approval->handler_instance));
439     }
440   else if (tp_channel_get_channel_type_id (approval->main_channel)
441       == TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_AUTHENTICATION)
442     {
443       tp_channel_dispatch_operation_close_channels_async (approval->operation,
444           NULL, NULL);
445     }
446 }
447
448 static void
449 event_manager_call_window_confirmation_dialog_response_cb (GtkDialog *dialog,
450   gint response, gpointer user_data)
451 {
452   EventManagerApproval *approval = user_data;
453
454   gtk_widget_destroy (approval->dialog);
455   approval->dialog = NULL;
456
457   if (response == GTK_RESPONSE_ACCEPT)
458     {
459       event_manager_approval_approve (approval);
460     }
461   else if (response == ACCEPT_WITHOUT_VIDEO)
462     {
463       empathy_call_channel_send_video (TP_CALL_CHANNEL (approval->main_channel),
464         FALSE);
465       event_manager_approval_approve (approval);
466     }
467   else
468     {
469       reject_approval (approval);
470     }
471 }
472
473 static void
474 event_channel_process_voip_func (EventPriv *event)
475 {
476   GtkWidget *dialog;
477   GtkWidget *button;
478   GtkWidget *image;
479   gboolean video;
480   gchar *title;
481   EmpathyEventType etype = event->public.type;
482
483   if (event->approval->dialog != NULL)
484     {
485       gtk_window_present (GTK_WINDOW (event->approval->dialog));
486       return;
487     }
488
489   if (etype == EMPATHY_EVENT_TYPE_CALL)
490     {
491       TpCallChannel *call;
492       call = TP_CALL_CHANNEL (event->approval->handler_instance);
493       video = tp_call_channel_has_initial_video (call, NULL);
494     }
495   else
496     {
497       g_warning ("Unknown event type: %d", event->public.type);
498       return;
499     }
500
501   dialog = gtk_message_dialog_new (NULL, 0,
502       GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
503       video ? _("Incoming video call"): _("Incoming call"));
504
505   gtk_message_dialog_format_secondary_text (
506     GTK_MESSAGE_DIALOG (dialog), video ?
507       _("%s is video calling you. Do you want to answer?"):
508       _("%s is calling you. Do you want to answer?"),
509       empathy_contact_get_alias (event->approval->contact));
510
511   title = g_strdup_printf (_("Incoming call from %s"),
512       empathy_contact_get_alias (event->approval->contact));
513
514   gtk_window_set_title (GTK_WINDOW (dialog), title);
515   g_free (title);
516
517   /* Set image of the dialog */
518   if (video)
519     {
520       image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VIDEO_CALL,
521           GTK_ICON_SIZE_DIALOG);
522     }
523   else
524     {
525       image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP,
526           GTK_ICON_SIZE_DIALOG);
527     }
528
529   gtk_message_dialog_set_image (GTK_MESSAGE_DIALOG (dialog), image);
530   gtk_widget_show (image);
531
532   gtk_dialog_set_default_response (GTK_DIALOG (dialog),
533       GTK_RESPONSE_OK);
534
535   button = gtk_dialog_add_button (GTK_DIALOG (dialog),
536       _("_Reject"), GTK_RESPONSE_REJECT);
537   image = gtk_image_new_from_icon_name ("call-stop",
538     GTK_ICON_SIZE_BUTTON);
539   gtk_button_set_image (GTK_BUTTON (button), image);
540
541   if (video && etype == EMPATHY_EVENT_TYPE_CALL)
542     {
543       button = gtk_dialog_add_button (GTK_DIALOG (dialog),
544         _("_Answer"), ACCEPT_WITHOUT_VIDEO);
545
546       image = gtk_image_new_from_icon_name ("call-start",
547         GTK_ICON_SIZE_BUTTON);
548       gtk_button_set_image (GTK_BUTTON (button), image);
549     }
550
551   button = gtk_dialog_add_button (GTK_DIALOG (dialog),
552     video ? _("_Answer with video") : _("_Answer"), GTK_RESPONSE_ACCEPT);
553
554   image = gtk_image_new_from_icon_name ("call-start",
555         GTK_ICON_SIZE_BUTTON);
556   gtk_button_set_image (GTK_BUTTON (button), image);
557
558   g_signal_connect (dialog, "response",
559     G_CALLBACK (event_manager_call_window_confirmation_dialog_response_cb),
560     event->approval);
561
562   gtk_widget_show (dialog);
563
564   event->approval->dialog = dialog;
565 }
566
567 static void
568 event_manager_chat_message_received_cb (EmpathyTpChat *tp_chat,
569   EmpathyMessage *message,
570   EventManagerApproval *approval)
571 {
572   EmpathyContact  *sender;
573   const gchar     *header;
574   const gchar     *msg;
575   EventPriv       *event;
576   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
577
578   /* try to update the event if it's referring to a chat which is already in the
579    * queue. */
580   event = event_lookup_by_approval (approval->manager, approval);
581
582   sender = empathy_message_get_sender (message);
583
584   /* We only want to show incoming messages */
585   if (empathy_contact_is_user (sender))
586     return;
587
588   header = empathy_contact_get_alias (sender);
589   msg = empathy_message_get_body (message);
590
591   if (event != NULL)
592     event_update (approval->manager, event, EMPATHY_IMAGE_NEW_MESSAGE, header,
593         msg);
594   else
595     event_manager_add (approval->manager, NULL, sender,
596         EMPATHY_EVENT_TYPE_CHAT, EMPATHY_IMAGE_NEW_MESSAGE, header, msg,
597         approval, event_text_channel_process_func, NULL);
598
599   empathy_sound_manager_play (priv->sound_mgr, NULL,
600       EMPATHY_SOUND_CONVERSATION_NEW);
601 }
602
603 static void
604 event_manager_approval_done (EventManagerApproval *approval)
605 {
606   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
607   GSList                  *l;
608
609   if (approval->operation != NULL)
610     {
611       GQuark channel_type;
612
613       channel_type = tp_channel_get_channel_type_id (approval->main_channel);
614
615       if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA ||
616           channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_CALL)
617         {
618           priv->ringing--;
619           if (priv->ringing == 0)
620             empathy_sound_manager_stop (priv->sound_mgr,
621                 EMPATHY_SOUND_PHONE_INCOMING);
622         }
623     }
624
625   priv->approvals = g_slist_remove (priv->approvals, approval);
626
627   for (l = priv->events; l; l = l->next)
628     {
629       EventPriv *event = l->data;
630
631       if (event->approval == approval)
632         {
633           event_remove (event);
634           break;
635         }
636     }
637
638   event_manager_approval_free (approval);
639 }
640
641 static void
642 cdo_invalidated_cb (TpProxy *cdo,
643     guint domain,
644     gint code,
645     gchar *message,
646     EventManagerApproval *approval)
647 {
648   DEBUG ("ChannelDispatchOperation has been invalidated: %s", message);
649
650   event_manager_approval_done (approval);
651 }
652
653 static void
654 event_manager_call_state_changed_cb (TpCallChannel *call,
655   TpCallState state,
656   TpCallFlags flags,
657   TpCallStateReason *reason,
658   GHashTable *details,
659   EventManagerApproval *approval)
660 {
661   if (state == TP_CALL_STATE_ENDED)
662     {
663       DEBUG ("Call ended, seems we missed it :/");
664       reject_approval (approval);
665     }
666 }
667
668 static void
669 invite_dialog_response_cb (GtkDialog *dialog,
670                            gint response,
671                            EventManagerApproval *approval)
672 {
673   gtk_widget_destroy (GTK_WIDGET (approval->dialog));
674   approval->dialog = NULL;
675
676   if (response != GTK_RESPONSE_OK)
677     {
678       /* close channel */
679       DEBUG ("Muc invitation rejected");
680
681       reject_approval (approval);
682
683       return;
684     }
685
686   DEBUG ("Muc invitation accepted");
687
688   /* We'll join the room when handling the channel */
689   event_manager_approval_approve (approval);
690 }
691
692 static void
693 event_room_channel_process_func (EventPriv *event)
694 {
695   GtkWidget *dialog, *button, *image;
696   TpChannel *channel = event->approval->main_channel;
697   gchar *title;
698
699   if (event->approval->dialog != NULL)
700     {
701       gtk_window_present (GTK_WINDOW (event->approval->dialog));
702       return;
703     }
704
705   /* create dialog */
706   dialog = gtk_message_dialog_new (NULL, 0,
707       GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, _("Room invitation"));
708
709   title = g_strdup_printf (_("Invitation to join %s"),
710       tp_channel_get_identifier (channel));
711
712   gtk_window_set_title (GTK_WINDOW (dialog), title);
713   g_free (title);
714
715   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
716       _("%s is inviting you to join %s"),
717       empathy_contact_get_alias (event->approval->contact),
718       tp_channel_get_identifier (channel));
719
720   gtk_dialog_set_default_response (GTK_DIALOG (dialog),
721       GTK_RESPONSE_OK);
722
723   button = gtk_dialog_add_button (GTK_DIALOG (dialog),
724       _("_Decline"), GTK_RESPONSE_CANCEL);
725   image = gtk_image_new_from_icon_name (GTK_STOCK_CANCEL, GTK_ICON_SIZE_BUTTON);
726   gtk_button_set_image (GTK_BUTTON (button), image);
727
728   button = gtk_dialog_add_button (GTK_DIALOG (dialog),
729       _("_Join"), GTK_RESPONSE_OK);
730   image = gtk_image_new_from_icon_name (GTK_STOCK_APPLY, GTK_ICON_SIZE_BUTTON);
731   gtk_button_set_image (GTK_BUTTON (button), image);
732
733   g_signal_connect (dialog, "response",
734       G_CALLBACK (invite_dialog_response_cb), event->approval);
735
736   gtk_widget_show (dialog);
737
738   event->approval->dialog = dialog;
739 }
740
741 static void
742 display_invite_room_dialog (EventManagerApproval *approval)
743 {
744   const gchar *invite_msg;
745   gchar *msg;
746   TpContact *self_contact;
747   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
748
749   self_contact = tp_channel_group_get_self_contact (approval->main_channel);
750   tp_channel_group_get_local_pending_contact_info (approval->main_channel,
751       self_contact, NULL, NULL, &invite_msg);
752
753   if (approval->contact != NULL)
754     {
755       msg = g_strdup_printf (_("%s invited you to join %s"),
756           empathy_contact_get_alias (approval->contact),
757           tp_channel_get_identifier (approval->main_channel));
758     }
759   else
760     {
761       msg = g_strdup_printf (_("You have been invited to join %s"),
762           tp_channel_get_identifier (approval->main_channel));
763     }
764
765   event_manager_add (approval->manager, NULL,
766       approval->contact, EMPATHY_EVENT_TYPE_INVITATION,
767       EMPATHY_IMAGE_GROUP_MESSAGE, msg, invite_msg, approval,
768       event_room_channel_process_func, NULL);
769
770   empathy_sound_manager_play (priv->sound_mgr, NULL,
771       EMPATHY_SOUND_CONVERSATION_NEW);
772
773   g_free (msg);
774 }
775
776 static void
777 event_manager_auth_process_func (EventPriv *event)
778 {
779   empathy_event_approve ((EmpathyEvent *) event);
780 }
781
782 /* If there is a file-transfer, media, or auth channel consider it as
783  * the main one. */
784 static TpChannel *
785 find_main_channel (GList *channels)
786 {
787   GList *l;
788   TpChannel *text = NULL;
789
790   for (l = channels; l != NULL; l = g_list_next (l))
791     {
792       TpChannel *channel = l->data;
793       GQuark channel_type;
794
795       if (tp_proxy_get_invalidated (channel) != NULL)
796         continue;
797
798       channel_type = tp_channel_get_channel_type_id (channel);
799
800       if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_CALL ||
801           channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER ||
802           channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_AUTHENTICATION)
803         return channel;
804
805       else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_TEXT)
806         text = channel;
807     }
808
809   return text;
810 }
811
812 static void
813 approve_text_channel (EmpathyEventManager *self,
814     EventManagerApproval *approval,
815     TpAddDispatchOperationContext *context,
816     EmpathyTpChat *tp_chat)
817 {
818   GList *messages, *l;
819
820   approval->handler_instance = g_object_ref (tp_chat);
821
822   if (tp_proxy_has_interface (tp_chat, TP_IFACE_CHANNEL_INTERFACE_GROUP))
823     {
824       /* Are we in local-pending ? */
825       TpContact *inviter;
826
827       if (empathy_tp_chat_is_invited (tp_chat, &inviter))
828         {
829           /* We are invited to a room */
830           DEBUG ("Have been invited to %s. Ask user if he wants to accept",
831               tp_channel_get_identifier (TP_CHANNEL_GROUP_CHANGE_REASON_NONE));
832
833           if (inviter != NULL)
834             {
835               approval->contact = empathy_contact_dup_from_tp_contact (
836                   inviter);
837             }
838
839           display_invite_room_dialog (approval);
840           tp_add_dispatch_operation_context_accept (context);
841
842           return;
843         }
844
845       /* We are not invited, approve the channel right now */
846       tp_add_dispatch_operation_context_accept (context);
847
848       approval->auto_approved = TRUE;
849       event_manager_approval_approve (approval);
850       return;
851     }
852
853   /* 1-1 text channel, wait for the first message */
854   approval->handler = g_signal_connect (tp_chat, "message-received-empathy",
855     G_CALLBACK (event_manager_chat_message_received_cb), approval);
856
857   messages = (GList *) empathy_tp_chat_get_pending_messages (tp_chat);
858   for (l = messages; l != NULL; l = g_list_next (l))
859     {
860       EmpathyMessage *msg = l->data;
861
862       event_manager_chat_message_received_cb (tp_chat, msg, approval);
863     }
864
865   tp_add_dispatch_operation_context_accept (context);
866 }
867
868 static void
869 approval_set_target_contact (EventManagerApproval *approval,
870     TpChannel *channel)
871 {
872   TpContact *contact;
873
874   contact = tp_channel_get_target_contact (channel);
875   approval->contact = empathy_contact_dup_from_tp_contact (contact);
876 }
877
878 static void
879 approve_call_channel (EmpathyEventManager *self,
880     EventManagerApproval *approval,
881     TpAddDispatchOperationContext *context,
882     TpCallChannel *call)
883 {
884   TpChannel *channel = TP_CHANNEL (call);
885   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
886   gchar *header;
887   gboolean video;
888
889   approval->handler_instance = g_object_ref (call);
890   approval_set_target_contact (approval, channel);
891
892   tp_add_dispatch_operation_context_accept (context);
893
894   if (tp_call_channel_get_state (call, NULL, NULL, NULL) == TP_CALL_STATE_ENDED)
895     {
896       DEBUG ("Call already ended, seems we missed it :/");
897       reject_approval (approval);
898       return;
899     }
900
901   approval->handler = g_signal_connect (call, "state-changed",
902     G_CALLBACK (event_manager_call_state_changed_cb), approval);
903
904   g_object_get (G_OBJECT (call), "initial-video", &video, NULL);
905
906   header = g_strdup_printf (
907     video ? _("Incoming video call from %s") :_("Incoming call from %s"),
908     empathy_contact_get_alias (approval->contact));
909
910   event_manager_add (approval->manager, NULL,
911       approval->contact, EMPATHY_EVENT_TYPE_CALL,
912       video ? EMPATHY_IMAGE_VIDEO_CALL : EMPATHY_IMAGE_VOIP,
913       header, NULL, approval,
914       event_channel_process_voip_func, NULL);
915
916   g_free (header);
917
918   priv->ringing++;
919   if (priv->ringing == 1)
920     {
921       TpAccountManager *am = tp_account_manager_dup ();
922       TpConnectionPresenceType presence;
923
924       presence = tp_account_manager_get_most_available_presence (am,
925           NULL, NULL);
926
927       if (presence != TP_CONNECTION_PRESENCE_TYPE_BUSY)
928         empathy_sound_manager_start_playing (priv->sound_mgr, NULL,
929             EMPATHY_SOUND_PHONE_INCOMING, MS_BETWEEN_RING);
930
931       g_object_unref (am);
932     }
933 }
934
935 static void
936 approve_ft_channel (EmpathyEventManager *self,
937     EventManagerApproval *approval,
938     TpAddDispatchOperationContext *context,
939     TpFileTransferChannel *ft)
940 {
941   TpChannel *channel = TP_CHANNEL (ft);
942   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
943   gchar *header;
944
945   approval->handler_instance = g_object_ref (ft);
946   approval_set_target_contact (approval, channel);
947
948   tp_add_dispatch_operation_context_accept (context);
949
950   header = g_strdup_printf (_("Incoming file transfer from %s"),
951       empathy_contact_get_alias (approval->contact));
952
953   event_manager_add (approval->manager, NULL,
954       approval->contact, EMPATHY_EVENT_TYPE_TRANSFER,
955       EMPATHY_IMAGE_DOCUMENT_SEND, header, NULL,
956       approval, event_channel_process_func, NULL);
957
958   /* FIXME better sound for incoming file transfers ?*/
959   empathy_sound_manager_play (priv->sound_mgr, NULL,
960       EMPATHY_SOUND_CONVERSATION_NEW);
961
962   g_free (header);
963 }
964
965 static void
966 approve_sasl_channel (EmpathyEventManager *self,
967     TpAccount *account,
968     EventManagerApproval *approval,
969     TpAddDispatchOperationContext *context,
970     TpChannel *channel)
971 {
972   if (empathy_sasl_channel_supports_mechanism (channel, "X-TELEPATHY-PASSWORD"))
973     {
974       event_manager_add (approval->manager, account, NULL,
975           EMPATHY_EVENT_TYPE_AUTH,
976           GTK_STOCK_DIALOG_AUTHENTICATION,
977           tp_account_get_display_name (account),
978           _("Password required"), approval,
979           event_manager_auth_process_func, NULL);
980     }
981   else
982     {
983       GError error = { TP_ERROR, TP_ERROR_NOT_IMPLEMENTED,
984           "Support only X-TELEPATHY-PASSWORD auth method" };
985
986       tp_add_dispatch_operation_context_fail (context, &error);
987       return;
988     }
989
990   tp_add_dispatch_operation_context_accept (context);
991 }
992
993 static void
994 approve_channels (TpSimpleApprover *approver,
995     TpAccount *account,
996     TpConnection *connection,
997     GList *channels,
998     TpChannelDispatchOperation *dispatch_operation,
999     TpAddDispatchOperationContext *context,
1000     gpointer user_data)
1001 {
1002   EmpathyEventManager *self = user_data;
1003   EmpathyEventManagerPriv *priv = GET_PRIV (self);
1004   TpChannel *channel;
1005   EventManagerApproval *approval;
1006   GQuark channel_type;
1007
1008   channel = find_main_channel (channels);
1009   if (channel == NULL)
1010     {
1011       GError error = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT,
1012           "Unknown channel type" };
1013
1014       DEBUG ("Failed to find the main channel; ignoring");
1015
1016       tp_add_dispatch_operation_context_fail (context, &error);
1017       return;
1018     }
1019
1020   approval = event_manager_approval_new (self, dispatch_operation, channel);
1021   priv->approvals = g_slist_prepend (priv->approvals, approval);
1022
1023   approval->invalidated_handler = g_signal_connect (dispatch_operation,
1024       "invalidated", G_CALLBACK (cdo_invalidated_cb), approval);
1025
1026   channel_type = tp_channel_get_channel_type_id (channel);
1027
1028   if (EMPATHY_IS_TP_CHAT (channel))
1029     {
1030       approve_text_channel (self, approval, context, EMPATHY_TP_CHAT (channel));
1031     }
1032   else if (TP_IS_CALL_CHANNEL (channel))
1033     {
1034       approve_call_channel (self, approval, context, TP_CALL_CHANNEL (channel));
1035     }
1036   else if (TP_IS_FILE_TRANSFER_CHANNEL (channel))
1037     {
1038       approve_ft_channel (self, approval, context,
1039           TP_FILE_TRANSFER_CHANNEL (channel));
1040     }
1041   else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_AUTHENTICATION)
1042     {
1043       approve_sasl_channel (self, account, approval, context, channel);
1044     }
1045   else
1046     {
1047       GError error = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT,
1048           "Invalid channel type" };
1049
1050       DEBUG ("Unknown channel type (%s), ignoring..",
1051           g_quark_to_string (channel_type));
1052
1053       tp_add_dispatch_operation_context_fail (context, &error);
1054       return;
1055     }
1056 }
1057
1058 static void
1059 event_pending_subscribe_func (EventPriv *event)
1060 {
1061   GtkWidget *dialog;
1062   FolksIndividual *individual;
1063
1064   individual = empathy_ensure_individual_from_tp_contact (
1065       empathy_contact_get_tp_contact (event->public.contact));
1066
1067   dialog = empathy_subscription_dialog_new (individual, event->public.message);
1068   gtk_window_present (GTK_WINDOW (dialog));
1069
1070   event_remove (event);
1071
1072   g_object_unref (individual);
1073 }
1074
1075 static void
1076 check_publish_state (EmpathyEventManager *self,
1077     TpContact *tp_contact)
1078 {
1079   EmpathyEventManagerPriv *priv = GET_PRIV (self);
1080   gchar *header, *event_msg;
1081   TpSubscriptionState state;
1082   EmpathyContact *contact;
1083   const gchar *message;
1084
1085   state = tp_contact_get_publish_state (tp_contact);
1086
1087   contact = empathy_contact_dup_from_tp_contact (tp_contact);
1088
1089   if (state != TP_SUBSCRIPTION_STATE_ASK)
1090     {
1091       GSList *l;
1092
1093       for (l = priv->events; l; l = l->next)
1094         {
1095           EventPriv *event = l->data;
1096
1097           if (event->public.contact == contact &&
1098               event->func == event_pending_subscribe_func)
1099             {
1100               event_remove (event);
1101               break;
1102             }
1103         }
1104
1105       goto out;
1106     }
1107
1108   header = g_strdup_printf (
1109       _("%s would like permission to see when you are online"),
1110       empathy_contact_get_alias (contact));
1111
1112   message = tp_contact_get_publish_request (tp_contact);
1113
1114   if (!TPAW_STR_EMPTY (message))
1115     event_msg = g_strdup_printf (_("\nMessage: %s"), message);
1116   else
1117     event_msg = NULL;
1118
1119   event_manager_add (self, NULL, contact, EMPATHY_EVENT_TYPE_SUBSCRIPTION,
1120       GTK_STOCK_DIALOG_QUESTION, header, event_msg, NULL,
1121       event_pending_subscribe_func, NULL);
1122
1123   g_free (event_msg);
1124   g_free (header);
1125
1126 out:
1127   g_object_unref (contact);
1128 }
1129
1130 static void
1131 event_manager_publish_state_changed_cb (TpContact *contact,
1132     GParamSpec *spec,
1133     EmpathyEventManager *self)
1134 {
1135   check_publish_state (self, contact);
1136 }
1137
1138 static void
1139 check_presence (EmpathyEventManager *manager,
1140     EmpathyContact *contact,
1141     TpConnectionPresenceType current,
1142     TpConnectionPresenceType previous)
1143 {
1144   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
1145   TpAccount *account;
1146   EmpathyPresenceManager *presence_mgr;
1147
1148   account = empathy_contact_get_account (contact);
1149   presence_mgr = empathy_presence_manager_dup_singleton ();
1150
1151   if (empathy_presence_manager_account_is_just_connected (presence_mgr, account))
1152     goto out;
1153
1154   if (tp_connection_presence_type_cmp_availability (previous,
1155         TP_CONNECTION_PRESENCE_TYPE_OFFLINE) > 0)
1156     {
1157       /* contact was online */
1158       if (tp_connection_presence_type_cmp_availability (current,
1159           TP_CONNECTION_PRESENCE_TYPE_OFFLINE) <= 0)
1160         {
1161           /* someone is logging off */
1162           empathy_sound_manager_play (priv->sound_mgr, NULL,
1163               EMPATHY_SOUND_CONTACT_DISCONNECTED);
1164
1165           if (g_settings_get_boolean (priv->gsettings_notif,
1166                 EMPATHY_PREFS_NOTIFICATIONS_CONTACT_SIGNOUT))
1167             {
1168               event_manager_add (manager, NULL, contact,
1169                   EMPATHY_EVENT_TYPE_PRESENCE_OFFLINE,
1170                   TPAW_IMAGE_AVATAR_DEFAULT,
1171                   empathy_contact_get_alias (contact), _("Disconnected"),
1172                   NULL, NULL, NULL);
1173             }
1174         }
1175     }
1176   else
1177     {
1178       /* contact was offline */
1179       if (tp_connection_presence_type_cmp_availability (current,
1180             TP_CONNECTION_PRESENCE_TYPE_OFFLINE) > 0)
1181         {
1182           /* someone is logging in */
1183           empathy_sound_manager_play (priv->sound_mgr, NULL,
1184               EMPATHY_SOUND_CONTACT_CONNECTED);
1185
1186           if (g_settings_get_boolean (priv->gsettings_notif,
1187                 EMPATHY_PREFS_NOTIFICATIONS_CONTACT_SIGNIN))
1188             {
1189               event_manager_add (manager, NULL, contact,
1190                   EMPATHY_EVENT_TYPE_PRESENCE_ONLINE,
1191                   TPAW_IMAGE_AVATAR_DEFAULT,
1192                   empathy_contact_get_alias (contact), _("Connected"),
1193                   NULL, NULL, NULL);
1194             }
1195         }
1196     }
1197
1198 out:
1199   g_object_unref (presence_mgr);
1200 }
1201
1202 static void
1203 event_manager_presence_changed_cb (EmpathyContact *contact,
1204     TpConnectionPresenceType current,
1205     TpConnectionPresenceType previous,
1206     EmpathyEventManager *manager)
1207 {
1208   check_presence (manager, contact, current, previous);
1209 }
1210
1211 static GObject *
1212 event_manager_constructor (GType type,
1213                            guint n_props,
1214                            GObjectConstructParam *props)
1215 {
1216         GObject *retval;
1217
1218         if (manager_singleton) {
1219                 retval = g_object_ref (manager_singleton);
1220         } else {
1221                 retval = G_OBJECT_CLASS (empathy_event_manager_parent_class)->constructor
1222                         (type, n_props, props);
1223
1224                 manager_singleton = EMPATHY_EVENT_MANAGER (retval);
1225                 g_object_add_weak_pointer (retval, (gpointer) &manager_singleton);
1226         }
1227
1228         return retval;
1229 }
1230
1231 static void
1232 event_manager_finalize (GObject *object)
1233 {
1234   EmpathyEventManagerPriv *priv = GET_PRIV (object);
1235
1236   if (priv->ringing > 0)
1237     empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_INCOMING);
1238
1239   g_slist_foreach (priv->events, (GFunc) event_free, NULL);
1240   g_slist_free (priv->events);
1241   g_slist_foreach (priv->approvals, (GFunc) event_manager_approval_free, NULL);
1242   g_slist_free (priv->approvals);
1243   g_object_unref (priv->conn_aggregator);
1244   g_object_unref (priv->approver);
1245   g_object_unref (priv->auth_approver);
1246   g_object_unref (priv->gsettings_notif);
1247   g_object_unref (priv->gsettings_ui);
1248   g_object_unref (priv->sound_mgr);
1249   g_hash_table_unref (priv->contacts);
1250 }
1251
1252 static void
1253 empathy_event_manager_class_init (EmpathyEventManagerClass *klass)
1254 {
1255   GObjectClass *object_class = G_OBJECT_CLASS (klass);
1256
1257   object_class->finalize = event_manager_finalize;
1258   object_class->constructor = event_manager_constructor;
1259
1260   signals[EVENT_ADDED] =
1261     g_signal_new ("event-added",
1262       G_TYPE_FROM_CLASS (klass),
1263       G_SIGNAL_RUN_LAST,
1264       0,
1265       NULL, NULL,
1266       g_cclosure_marshal_generic,
1267       G_TYPE_NONE,
1268       1, G_TYPE_POINTER);
1269
1270   signals[EVENT_REMOVED] =
1271   g_signal_new ("event-removed",
1272       G_TYPE_FROM_CLASS (klass),
1273       G_SIGNAL_RUN_LAST,
1274       0,
1275       NULL, NULL,
1276       g_cclosure_marshal_generic,
1277       G_TYPE_NONE, 1, G_TYPE_POINTER);
1278
1279   signals[EVENT_UPDATED] =
1280   g_signal_new ("event-updated",
1281       G_TYPE_FROM_CLASS (klass),
1282       G_SIGNAL_RUN_LAST,
1283       0,
1284       NULL, NULL,
1285       g_cclosure_marshal_generic,
1286       G_TYPE_NONE, 1, G_TYPE_POINTER);
1287
1288   g_type_class_add_private (object_class, sizeof (EmpathyEventManagerPriv));
1289 }
1290
1291 static void
1292 contact_list_changed_cb (EmpathyConnectionAggregator *aggregator,
1293     GPtrArray *added,
1294     GPtrArray *removed,
1295     EmpathyEventManager *self)
1296 {
1297   EmpathyEventManagerPriv *priv = GET_PRIV (self);
1298   guint i;
1299
1300   for (i = 0; i < added->len; i++)
1301     {
1302       TpContact *tp_contact = g_ptr_array_index (added, i);
1303       EmpathyContact *contact;
1304
1305       if (g_hash_table_lookup (priv->contacts, tp_contact) != NULL)
1306         continue;
1307
1308       contact = empathy_contact_dup_from_tp_contact (tp_contact);
1309
1310       tp_g_signal_connect_object (contact, "presence-changed",
1311           G_CALLBACK (event_manager_presence_changed_cb), self, 0);
1312
1313       check_presence (self, contact,
1314           empathy_contact_get_presence (contact),
1315           TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
1316
1317       tp_g_signal_connect_object (tp_contact, "notify::publish-state",
1318           G_CALLBACK (event_manager_publish_state_changed_cb), self, 0);
1319
1320       check_publish_state (self, tp_contact);
1321
1322       /* Pass ownership to the hash table */
1323       g_hash_table_insert (priv->contacts, g_object_ref (tp_contact), contact);
1324     }
1325
1326   for (i = 0; i < removed->len; i++)
1327     {
1328       TpContact *tp_contact = g_ptr_array_index (removed, i);
1329       EmpathyContact *contact;
1330
1331       contact = g_hash_table_lookup (priv->contacts, tp_contact);
1332       if (contact == NULL)
1333         continue;
1334
1335       g_signal_handlers_disconnect_by_func (contact,
1336           event_manager_presence_changed_cb, self);
1337
1338       g_signal_handlers_disconnect_by_func (tp_contact,
1339           event_manager_publish_state_changed_cb, self);
1340
1341       g_hash_table_remove (priv->contacts, tp_contact);
1342     }
1343 }
1344
1345 static void
1346 empathy_event_manager_init (EmpathyEventManager *manager)
1347 {
1348   EmpathyEventManagerPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (manager,
1349     EMPATHY_TYPE_EVENT_MANAGER, EmpathyEventManagerPriv);
1350   GError *error = NULL;
1351   TpAccountManager *am;
1352   GPtrArray *contacts, *empty;
1353
1354   manager->priv = priv;
1355
1356   priv->gsettings_notif = g_settings_new (EMPATHY_PREFS_NOTIFICATIONS_SCHEMA);
1357   priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
1358
1359   priv->sound_mgr = empathy_sound_manager_dup_singleton ();
1360
1361   priv->contacts = g_hash_table_new_full (NULL, NULL, g_object_unref,
1362       g_object_unref);
1363
1364   priv->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
1365
1366   tp_g_signal_connect_object (priv->conn_aggregator, "contact-list-changed",
1367       G_CALLBACK (contact_list_changed_cb), manager, 0);
1368
1369   contacts = empathy_connection_aggregator_dup_all_contacts (
1370       priv->conn_aggregator);
1371
1372   empty = g_ptr_array_new ();
1373
1374   contact_list_changed_cb (priv->conn_aggregator, contacts, empty, manager);
1375
1376   g_ptr_array_unref (contacts);
1377   g_ptr_array_unref (empty);
1378
1379   am = tp_account_manager_dup ();
1380
1381   priv->approver = tp_simple_approver_new_with_am (am, "Empathy.EventManager",
1382       FALSE, approve_channels, manager, NULL);
1383
1384   /* Private text channels */
1385   tp_base_client_take_approver_filter (priv->approver,
1386       tp_asv_new (
1387         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
1388         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
1389         NULL));
1390
1391   /* Muc text channels */
1392   tp_base_client_take_approver_filter (priv->approver,
1393       tp_asv_new (
1394         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
1395         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_ROOM,
1396         NULL));
1397
1398   /* File transfer */
1399   tp_base_client_take_approver_filter (priv->approver,
1400       tp_asv_new (
1401         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
1402           TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER,
1403         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
1404         NULL));
1405
1406   /* Calls */
1407   tp_base_client_take_approver_filter (priv->approver,
1408       tp_asv_new (
1409         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
1410           TP_IFACE_CHANNEL_TYPE_CALL,
1411         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
1412         NULL));
1413
1414   /* I don't feel good about doing this, and I'm sorry, but the
1415    * capabilities connection feature is added earlier because it's
1416    * needed for EmpathyTpChat. If the capabilities feature is required
1417    * then preparing an auth channel (which of course appears in the
1418    * CONNECTING state) will never be prepared. So the options are
1419    * either to create another approver like I've done, or to port
1420    * EmpathyTpChat and its users to not depend on the connection being
1421    * prepared with capabilities. I chose the former, obviously. :-) */
1422
1423   priv->auth_approver = tp_simple_approver_new_with_am (am,
1424       "Empathy.AuthEventManager", FALSE, approve_channels, manager,
1425       NULL);
1426
1427   /* SASL auth channels */
1428   tp_base_client_take_approver_filter (priv->auth_approver,
1429       tp_asv_new (
1430         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
1431           TP_IFACE_CHANNEL_TYPE_SERVER_AUTHENTICATION,
1432         TP_PROP_CHANNEL_TYPE_SERVER_AUTHENTICATION_AUTHENTICATION_METHOD,
1433           G_TYPE_STRING,
1434           TP_IFACE_CHANNEL_INTERFACE_SASL_AUTHENTICATION,
1435         NULL));
1436
1437   if (!tp_base_client_register (priv->approver, &error))
1438     {
1439       DEBUG ("Failed to register Approver: %s", error->message);
1440       g_error_free (error);
1441     }
1442
1443   if (!tp_base_client_register (priv->auth_approver, &error))
1444     {
1445       DEBUG ("Failed to register auth Approver: %s", error->message);
1446       g_error_free (error);
1447     }
1448
1449   g_object_unref (am);
1450 }
1451
1452 EmpathyEventManager *
1453 empathy_event_manager_dup_singleton (void)
1454 {
1455   return g_object_new (EMPATHY_TYPE_EVENT_MANAGER, NULL);
1456 }
1457
1458 GSList *
1459 empathy_event_manager_get_events (EmpathyEventManager *manager)
1460 {
1461   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
1462
1463   g_return_val_if_fail (EMPATHY_IS_EVENT_MANAGER (manager), NULL);
1464
1465   return priv->events;
1466 }
1467
1468 EmpathyEvent *
1469 empathy_event_manager_get_top_event (EmpathyEventManager *manager)
1470 {
1471   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
1472
1473   g_return_val_if_fail (EMPATHY_IS_EVENT_MANAGER (manager), NULL);
1474
1475   return priv->events ? priv->events->data : NULL;
1476 }
1477
1478 void
1479 empathy_event_activate (EmpathyEvent *event_public)
1480 {
1481   EventPriv *event = (EventPriv *) event_public;
1482
1483   g_return_if_fail (event_public != NULL);
1484
1485   if (event->func)
1486     event->func (event);
1487   else
1488     event_remove (event);
1489 }
1490
1491 void
1492 empathy_event_inhibit_updates (EmpathyEvent *event_public)
1493 {
1494   EventPriv *event = (EventPriv *) event_public;
1495
1496   g_return_if_fail (event_public != NULL);
1497
1498   event->inhibit = TRUE;
1499 }
1500
1501 void
1502 empathy_event_approve (EmpathyEvent *event_public)
1503 {
1504   EventPriv *event = (EventPriv *) event_public;
1505
1506   g_return_if_fail (event_public != NULL);
1507
1508   event_manager_approval_approve (event->approval);
1509 }
1510
1511 void
1512 empathy_event_decline (EmpathyEvent *event_public)
1513 {
1514   EventPriv *event = (EventPriv *) event_public;
1515
1516   g_return_if_fail (event_public != NULL);
1517
1518   reject_approval (event->approval);
1519 }