]> git.0d.be Git - empathy.git/blob - src/empathy-event-manager.c
787c0e087d98e96ea14cae5f3993b603ce394a94
[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
24 #include <string.h>
25 #include <glib/gi18n.h>
26
27 #include <telepathy-glib/util.h>
28
29 #include <libempathy/empathy-dispatcher.h>
30 #include <libempathy/empathy-contact-factory.h>
31 #include <libempathy/empathy-contact-manager.h>
32 #include <libempathy/empathy-tp-chat.h>
33 #include <libempathy/empathy-tp-call.h>
34 #include <libempathy/empathy-utils.h>
35 #include <libempathy/empathy-call-factory.h>
36
37 #include <extensions/extensions.h>
38
39 #include <libempathy-gtk/empathy-images.h>
40 #include <libempathy-gtk/empathy-contact-dialogs.h>
41 #include <libempathy-gtk/empathy-ui-utils.h>
42
43 #include "empathy-event-manager.h"
44 #include "empathy-main-window.h"
45 #include "empathy-tube-dispatch.h"
46
47 #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
48 #include <libempathy/empathy-debug.h>
49
50 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyEventManager)
51
52 typedef struct {
53   EmpathyEventManager *manager;
54   EmpathyDispatchOperation *operation;
55   gulong approved_handler;
56   gulong claimed_handler;
57   gulong invalidated_handler;
58   /* Remove contact if applicable */
59   EmpathyContact *contact;
60   /* Tube dispatcher if applicable */
61   EmpathyTubeDispatch *tube_dispatch;
62   /* option signal handler */
63   gulong handler;
64   /* optional accept widget */
65   GtkWidget *dialog;
66 } EventManagerApproval;
67
68 typedef struct {
69   EmpathyDispatcher *dispatcher;
70   EmpathyContactManager *contact_manager;
71   GSList *events;
72   /* Ongoing approvals */
73   GSList *approvals;
74
75   /* voip ringing sound */
76   guint voip_timeout;
77   gint ringing;
78 } EmpathyEventManagerPriv;
79
80 typedef struct _EventPriv EventPriv;
81 typedef void (*EventFunc) (EventPriv *event);
82
83 struct _EventPriv {
84   EmpathyEvent public;
85   EmpathyEventManager *manager;
86   EventManagerApproval *approval;
87   EventFunc func;
88   gboolean inhibit;
89   gpointer user_data;
90 };
91
92 enum {
93   EVENT_ADDED,
94   EVENT_REMOVED,
95   EVENT_UPDATED,
96   LAST_SIGNAL
97 };
98
99 static guint signals[LAST_SIGNAL];
100
101 G_DEFINE_TYPE (EmpathyEventManager, empathy_event_manager, G_TYPE_OBJECT);
102
103 static EmpathyEventManager * manager_singleton = NULL;
104
105 static EventManagerApproval *
106 event_manager_approval_new (EmpathyEventManager *manager,
107   EmpathyDispatchOperation *operation)
108 {
109   EventManagerApproval *result = g_slice_new0 (EventManagerApproval);
110   result->operation = g_object_ref (operation);
111   result->manager = manager;
112
113   return result;
114 }
115
116 static void
117 event_manager_approval_free (EventManagerApproval *approval)
118 {
119   g_signal_handler_disconnect (approval->operation,
120     approval->approved_handler);
121   g_signal_handler_disconnect (approval->operation,
122     approval->claimed_handler);
123   g_signal_handler_disconnect (approval->operation,
124     approval->invalidated_handler);
125   g_object_unref (approval->operation);
126
127   if (approval->contact != NULL)
128     g_object_unref (approval->contact);
129
130   if (approval->tube_dispatch != NULL)
131     g_object_unref (approval->tube_dispatch);
132
133   if (approval->dialog != NULL)
134     {
135       gtk_widget_destroy (approval->dialog);
136     }
137
138   g_slice_free (EventManagerApproval, approval);
139 }
140
141 static void event_remove (EventPriv *event);
142
143 static void
144 event_free (EventPriv *event)
145 {
146   g_free (event->public.icon_name);
147   g_free (event->public.header);
148   g_free (event->public.message);
149
150   if (event->public.contact)
151     {
152       g_object_unref (event->public.contact);
153     }
154
155   g_slice_free (EventPriv, event);
156 }
157
158 static void event_manager_ringing_finished_cb (ca_context *c, guint id,
159   int error_code, gpointer user_data);
160
161 static gboolean
162 event_manager_ringing_timeout_cb (gpointer data)
163 {
164   EmpathyEventManager *manager = EMPATHY_EVENT_MANAGER (data);
165   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
166
167   priv->voip_timeout = 0;
168
169   empathy_sound_play_full (empathy_main_window_get (),
170       EMPATHY_SOUND_PHONE_INCOMING, event_manager_ringing_finished_cb,
171       manager);
172
173   return FALSE;
174 }
175
176 static gboolean
177 event_manager_ringing_idle_cb (gpointer data)
178 {
179   EmpathyEventManager *manager = EMPATHY_EVENT_MANAGER (data);
180   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
181
182   if (priv->ringing > 0)
183     priv->voip_timeout = g_timeout_add (500, event_manager_ringing_timeout_cb,
184       data);
185
186   return FALSE;
187 }
188
189 static void
190 event_manager_ringing_finished_cb (ca_context *c, guint id, int error_code,
191   gpointer user_data)
192 {
193   if (error_code == CA_ERROR_CANCELED)
194     return;
195
196   g_idle_add (event_manager_ringing_idle_cb, user_data);
197 }
198
199 static void
200 event_manager_start_ringing (EmpathyEventManager *manager)
201 {
202   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
203
204   priv->ringing++;
205
206   if (priv->ringing == 1)
207     {
208       empathy_sound_play_full (empathy_main_window_get (),
209         EMPATHY_SOUND_PHONE_INCOMING, event_manager_ringing_finished_cb,
210         manager);
211     }
212 }
213
214 static void
215 event_manager_stop_ringing (EmpathyEventManager *manager)
216 {
217   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
218
219   priv->ringing--;
220
221   if (priv->ringing > 0)
222     return;
223
224   empathy_sound_stop (EMPATHY_SOUND_PHONE_INCOMING);
225
226   if (priv->voip_timeout != 0)
227     {
228       g_source_remove (priv->voip_timeout);
229       priv->voip_timeout = 0;
230     }
231 }
232
233 static void
234 event_remove (EventPriv *event)
235 {
236   EmpathyEventManagerPriv *priv = GET_PRIV (event->manager);
237
238   DEBUG ("Removing event %p", event);
239   priv->events = g_slist_remove (priv->events, event);
240   g_signal_emit (event->manager, signals[EVENT_REMOVED], 0, event);
241   event_free (event);
242 }
243
244 static void
245 event_manager_add (EmpathyEventManager *manager, EmpathyContact *contact,
246   const gchar *icon_name, const gchar *header, const gchar *message,
247   EventManagerApproval *approval, EventFunc func, gpointer user_data)
248 {
249   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
250   EventPriv               *event;
251
252   event = g_slice_new0 (EventPriv);
253   event->public.contact = contact ? g_object_ref (contact) : NULL;
254   event->public.icon_name = g_strdup (icon_name);
255   event->public.header = g_strdup (header);
256   event->public.message = g_strdup (message);
257   event->inhibit = FALSE;
258   event->func = func;
259   event->user_data = user_data;
260   event->manager = manager;
261   event->approval = approval;
262
263   DEBUG ("Adding event %p", event);
264   priv->events = g_slist_prepend (priv->events, event);
265   g_signal_emit (event->manager, signals[EVENT_ADDED], 0, event);
266 }
267
268 static void
269 event_channel_process_func (EventPriv *event)
270 {
271   empathy_dispatch_operation_approve (event->approval->operation);
272 }
273
274 static void
275 event_text_channel_process_func (EventPriv *event)
276 {
277   EmpathyTpChat *tp_chat;
278
279   if (event->approval->handler != 0)
280     {
281       tp_chat = EMPATHY_TP_CHAT
282         (empathy_dispatch_operation_get_channel_wrapper (event->approval->operation));
283   
284       g_signal_handler_disconnect (tp_chat, event->approval->handler);
285       event->approval->handler = 0;
286     }
287
288   empathy_dispatch_operation_approve (event->approval->operation);
289 }
290
291 static EventPriv *
292 event_lookup_by_approval (EmpathyEventManager *manager,
293   EventManagerApproval *approval)
294 {
295   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
296   GSList *l;
297   EventPriv *retval = NULL;
298
299   for (l = priv->events; l; l = l->next)
300     {
301       EventPriv *event = l->data;
302
303       if (event->approval == approval)
304         {
305           retval = event;
306           break;
307         }
308     }
309
310   return retval;
311 }
312
313 static void
314 event_update (EmpathyEventManager *manager, EventPriv *event,
315   const char *icon_name, const char *header, const char *msg)
316 {
317   g_free (event->public.icon_name);
318   g_free (event->public.header);
319   g_free (event->public.message);
320
321   event->public.icon_name = g_strdup (icon_name);
322   event->public.header = g_strdup (header);
323   event->public.message = g_strdup (msg);
324
325   g_signal_emit (manager, signals[EVENT_UPDATED], 0, event);
326 }
327
328 static void
329 event_manager_call_window_confirmation_dialog_response_cb (GtkDialog *dialog,
330   gint response, gpointer user_data)
331 {
332   EventManagerApproval *approval = user_data;
333
334   gtk_widget_destroy (approval->dialog);
335   approval->dialog = NULL;
336
337   if (response != GTK_RESPONSE_ACCEPT)
338     {
339       EmpathyTpCall *call =
340         EMPATHY_TP_CALL (
341           empathy_dispatch_operation_get_channel_wrapper (
342             approval->operation));
343
344       g_object_ref (call);
345       if (empathy_dispatch_operation_claim (approval->operation))
346         empathy_tp_call_close (call);
347       g_object_unref (call);
348
349     }
350   else
351     {
352       EmpathyCallFactory *factory = empathy_call_factory_get ();
353       empathy_call_factory_claim_channel (factory, approval->operation);
354     }
355 }
356
357 static void
358 event_channel_process_voip_func (EventPriv *event)
359 {
360   GtkWidget *dialog;
361   GtkWidget *button;
362   GtkWidget *image;
363
364   if (event->approval->dialog != NULL)
365     {
366       gtk_window_present (GTK_WINDOW (event->approval->dialog));
367       return;
368     }
369
370   dialog = gtk_message_dialog_new (GTK_WINDOW (empathy_main_window_get()),
371       GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
372       GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, _("Incoming call"));
373   gtk_message_dialog_format_secondary_text (
374     GTK_MESSAGE_DIALOG (dialog),
375       _("%s is calling you, do you want to answer?"),
376       empathy_contact_get_name (event->approval->contact));
377
378   gtk_dialog_set_default_response (GTK_DIALOG (dialog),
379       GTK_RESPONSE_OK);
380
381   button = gtk_dialog_add_button (GTK_DIALOG (dialog),
382       _("_Reject"), GTK_RESPONSE_REJECT);
383   image = gtk_image_new_from_icon_name (GTK_STOCK_CANCEL,
384     GTK_ICON_SIZE_BUTTON);
385   gtk_button_set_image (GTK_BUTTON (button), image);
386
387   button = gtk_dialog_add_button (GTK_DIALOG (dialog),
388       _("_Answer"), GTK_RESPONSE_ACCEPT);
389
390   image = gtk_image_new_from_icon_name (GTK_STOCK_APPLY, GTK_ICON_SIZE_BUTTON);
391   gtk_button_set_image (GTK_BUTTON (button), image);
392
393   g_signal_connect (dialog, "response",
394       G_CALLBACK (event_manager_call_window_confirmation_dialog_response_cb),
395       event->approval);
396
397   gtk_widget_show (dialog);
398
399   event->approval->dialog = dialog;
400 }
401
402 static void
403 event_manager_chat_message_received_cb (EmpathyTpChat *tp_chat,
404   EmpathyMessage *message, EventManagerApproval *approval)
405 {
406   EmpathyContact  *sender;
407   gchar           *header;
408   const gchar     *msg;
409   TpChannel       *channel;
410   EventPriv       *event;
411
412   /* try to update the event if it's referring to a chat which is already in the
413    * queue. */
414   event = event_lookup_by_approval (approval->manager, approval);
415
416   if (event != NULL && event->inhibit && approval->handler != 0)
417     {
418       g_signal_handler_disconnect (tp_chat, approval->handler);
419       approval->handler = 0;
420       return;
421     }
422
423   sender = empathy_message_get_sender (message);
424   header = g_strdup_printf (_("New message from %s"),
425                             empathy_contact_get_name (sender));
426   msg = empathy_message_get_body (message);
427
428   channel = empathy_tp_chat_get_channel (tp_chat);
429
430   if (event != NULL)
431     event_update (approval->manager, event, EMPATHY_IMAGE_NEW_MESSAGE, header, msg);
432   else
433     event_manager_add (approval->manager, sender, EMPATHY_IMAGE_NEW_MESSAGE, header,
434       msg, approval, event_text_channel_process_func, NULL);
435
436   g_free (header);
437   empathy_sound_play (empathy_main_window_get (),
438     EMPATHY_SOUND_CONVERSATION_NEW);
439 }
440
441 static void
442 event_manager_approval_done (EventManagerApproval *approval)
443 {
444   EmpathyEventManagerPriv *priv = GET_PRIV (approval->manager);
445   GSList                  *l;
446
447   if (approval->operation != NULL)
448     {
449       GQuark channel_type;
450
451       channel_type = empathy_dispatch_operation_get_channel_type_id (
452           approval->operation);
453       if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA)
454         {
455           event_manager_stop_ringing (approval->manager);
456         }
457     }
458
459   priv->approvals = g_slist_remove (priv->approvals, approval);
460
461   for (l = priv->events; l; l = l->next)
462     {
463       EventPriv *event = l->data;
464
465       if (event->approval == approval)
466         {
467           event_remove (event);
468           break;
469         }
470     }
471
472   event_manager_approval_free (approval);
473 }
474
475 static void
476 event_manager_operation_approved_cb (EmpathyDispatchOperation *operation,
477   EventManagerApproval *approval)
478 {
479   event_manager_approval_done (approval);
480 }
481
482 static void
483 event_manager_operation_claimed_cb (EmpathyDispatchOperation *operation,
484   EventManagerApproval *approval)
485 {
486   event_manager_approval_done (approval);
487 }
488
489 static void
490 event_manager_operation_invalidated_cb (EmpathyDispatchOperation *operation,
491   guint domain, gint code, gchar *message,
492   EventManagerApproval *approval)
493 {
494   event_manager_approval_done (approval);
495 }
496
497 static void
498 event_manager_media_channel_got_name_cb (EmpathyContact *contact,
499   const GError *error, gpointer user_data, GObject *object)
500 {
501   EventManagerApproval *approval = user_data;
502   gchar *header;
503
504   if (error != NULL)
505     {
506       /* FIXME just returning assuming the operation will be invalidated as
507        * well */
508       return;
509     }
510
511   header = g_strdup_printf (_("Incoming call from %s"),
512     empathy_contact_get_name (contact));
513
514   event_manager_add (approval->manager,
515     approval->contact, EMPATHY_IMAGE_VOIP, header, NULL,
516     approval, event_channel_process_voip_func, NULL);
517
518   g_free (header);
519   event_manager_start_ringing (approval->manager);
520 }
521
522 static void
523 event_manager_media_channel_got_contact (EventManagerApproval *approval)
524 {
525   empathy_contact_call_when_ready (approval->contact,
526      EMPATHY_CONTACT_READY_NAME, event_manager_media_channel_got_name_cb,
527         approval, NULL, G_OBJECT (approval->manager));
528 }
529
530 static void
531 event_manager_media_channel_contact_changed_cb (EmpathyTpCall *call,
532   GParamSpec *param, EventManagerApproval *approval)
533 {
534   EmpathyContact *contact;
535
536   g_object_get (G_OBJECT (call), "contact", &contact, NULL);
537
538   if (contact == NULL)
539     return;
540
541   approval->contact = contact;
542   event_manager_media_channel_got_contact (approval);
543 }
544
545 static void
546 event_manager_tube_approved_cb (EventPriv *event)
547 {
548   empathy_tube_dispatch_handle (event->approval->tube_dispatch);
549 }
550
551 static void
552 event_manager_add_tube_approval (EventManagerApproval *approval,
553   EmpathyTubeDispatchAbility ability)
554 {
555   const gchar *icon_name;
556   gchar       *header;
557   const gchar *msg;
558
559   header = g_strdup_printf (_("%s is offering you an invitation"),
560     empathy_contact_get_name (approval->contact));
561
562   if (ability == EMPATHY_TUBE_DISPATCHABILITY_POSSIBLE)
563     {
564       icon_name = GTK_STOCK_EXECUTE;
565       msg = _("An external application will be started to handle it.");
566     }
567   else
568     {
569       icon_name = GTK_STOCK_DIALOG_ERROR;
570       msg = _("You don't have the needed external "
571               "application to handle it.");
572     }
573
574   event_manager_add (approval->manager, approval->contact, icon_name, header,
575     msg, approval, event_manager_tube_approved_cb, approval);
576
577   g_free (header);
578   /* FIXME better sound for incoming tubes ? */
579   empathy_sound_play (empathy_main_window_get (),
580     EMPATHY_SOUND_CONVERSATION_NEW);
581 }
582
583 static void
584 event_manager_tube_dispatch_ability_cb (GObject *object,
585    GParamSpec *spec, gpointer user_data)
586 {
587   EventManagerApproval *approval = (EventManagerApproval *)user_data;
588   EmpathyTubeDispatchAbility dispatchability;
589
590   dispatchability =
591     empathy_tube_dispatch_is_dispatchable (approval->tube_dispatch);
592
593   if (dispatchability != EMPATHY_TUBE_DISPATCHABILITY_UNKNOWN)
594     {
595       event_manager_add_tube_approval (approval, dispatchability);
596       g_signal_handler_disconnect (object, approval->handler);
597       approval->handler = 0;
598     }
599 }
600
601 static void
602 event_manager_tube_got_contact_name_cb (EmpathyContact *contact,
603   const GError *error, gpointer user_data, GObject *object)
604 {
605   EventManagerApproval *approval = (EventManagerApproval *)user_data;
606   EmpathyTubeDispatchAbility dispatchability;
607
608   if (error != NULL)
609     {
610       /* FIXME?, we assume that the operation gets invalidated as well (if it
611        * didn't already */
612        return;
613     }
614
615   dispatchability = empathy_tube_dispatch_is_dispatchable
616     (approval->tube_dispatch);
617
618
619   switch (dispatchability)
620     {
621       case EMPATHY_TUBE_DISPATCHABILITY_UNKNOWN:
622         approval->handler = g_signal_connect (approval->tube_dispatch,
623           "notify::dispatchability",
624           G_CALLBACK (event_manager_tube_dispatch_ability_cb), approval);
625         break;
626       case EMPATHY_TUBE_DISPATCHABILITY_POSSIBLE:
627         /* fallthrough */
628       case EMPATHY_TUBE_DISPATCHABILITY_IMPOSSIBLE:
629         event_manager_add_tube_approval (approval, dispatchability);
630         break;
631     }
632 }
633
634 static void
635 event_manager_approve_channel_cb (EmpathyDispatcher *dispatcher,
636   EmpathyDispatchOperation  *operation, EmpathyEventManager *manager)
637 {
638   const gchar *channel_type;
639   EventManagerApproval *approval;
640   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
641
642   channel_type = empathy_dispatch_operation_get_channel_type (operation);
643
644   approval = event_manager_approval_new (manager, operation);
645   priv->approvals = g_slist_prepend (priv->approvals, approval);
646
647   approval->approved_handler = g_signal_connect (operation, "approved",
648     G_CALLBACK (event_manager_operation_approved_cb), approval);
649
650   approval->claimed_handler = g_signal_connect (operation, "claimed",
651      G_CALLBACK (event_manager_operation_claimed_cb), approval);
652
653   approval->invalidated_handler = g_signal_connect (operation, "invalidated",
654      G_CALLBACK (event_manager_operation_invalidated_cb), approval);
655
656   if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TEXT))
657     {
658       EmpathyTpChat *tp_chat =
659         EMPATHY_TP_CHAT (
660           empathy_dispatch_operation_get_channel_wrapper (operation));
661
662       approval->handler = g_signal_connect (tp_chat, "message-received",
663         G_CALLBACK (event_manager_chat_message_received_cb), approval);
664
665     }
666   else if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA))
667     {
668       EmpathyContact *contact;
669       EmpathyTpCall *call = EMPATHY_TP_CALL (
670           empathy_dispatch_operation_get_channel_wrapper (operation));
671
672       g_object_get (G_OBJECT (call), "contact", &contact, NULL);
673
674       if (contact == NULL)
675         {
676           g_signal_connect (call, "notify::contact",
677             G_CALLBACK (event_manager_media_channel_contact_changed_cb),
678             approval);
679         }
680       else
681         {
682           approval->contact = contact;
683           event_manager_media_channel_got_contact (approval);
684         }
685
686     }
687   else if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_FILE_TRANSFER))
688     {
689       EmpathyContact        *contact;
690       gchar                 *header;
691       TpHandle               handle;
692       McAccount             *account;
693       EmpathyContactFactory *factory;
694       TpChannel *channel = empathy_dispatch_operation_get_channel (operation);
695
696       factory = empathy_contact_factory_dup_singleton ();
697       handle = tp_channel_get_handle (channel, NULL);
698       account = empathy_channel_get_account (channel);
699
700       contact = empathy_contact_factory_get_from_handle (factory, account,
701         handle);
702
703       empathy_contact_run_until_ready (contact,
704         EMPATHY_CONTACT_READY_NAME, NULL);
705
706       header = g_strdup_printf (_("Incoming file transfer from %s"),
707         empathy_contact_get_name (contact));
708
709       event_manager_add (manager, contact, EMPATHY_IMAGE_DOCUMENT_SEND,
710         header, NULL, approval, event_channel_process_func, NULL);
711
712       /* FIXME better sound for incoming file transfers ?*/
713       empathy_sound_play (empathy_main_window_get (),
714         EMPATHY_SOUND_CONVERSATION_NEW);
715
716       g_object_unref (factory);
717       g_object_unref (account);
718       g_free (header);
719     }
720   else if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_STREAM_TUBE) ||
721       !tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_DBUS_TUBE))
722     {
723       EmpathyContact        *contact;
724       TpHandle               handle;
725       TpHandleType           handle_type;
726       McAccount             *account;
727       EmpathyContactFactory *factory;
728       EmpathyTubeDispatch *tube_dispatch;
729       TpChannel *channel;
730
731       channel = empathy_dispatch_operation_get_channel (operation);
732
733       handle = tp_channel_get_handle (channel, &handle_type);
734
735       /* Only understand p2p tubes */
736       if (handle_type != TP_HANDLE_TYPE_CONTACT)
737         return;
738
739       factory = empathy_contact_factory_dup_singleton ();
740       account = empathy_channel_get_account (channel);
741
742       contact = empathy_contact_factory_get_from_handle (factory, account,
743         handle);
744
745       tube_dispatch = empathy_tube_dispatch_new (operation);
746
747       approval->contact = contact;
748       approval->tube_dispatch = tube_dispatch;
749
750       empathy_contact_call_when_ready (contact,
751         EMPATHY_CONTACT_READY_NAME, event_manager_tube_got_contact_name_cb,
752         approval, NULL, G_OBJECT (manager));
753
754       g_object_unref (factory);
755       g_object_unref (account);
756     }
757   else
758     {
759       DEBUG ("Unknown channel type, ignoring..");
760     }
761 }
762
763 static void
764 event_pending_subscribe_func (EventPriv *event)
765 {
766   empathy_subscription_dialog_show (event->public.contact, NULL);
767   event_remove (event);
768 }
769
770 static void
771 event_manager_pendings_changed_cb (EmpathyContactList  *list,
772   EmpathyContact *contact, EmpathyContact *actor,
773   guint reason, gchar *message, gboolean is_pending,
774   EmpathyEventManager *manager)
775 {
776   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
777   gchar                   *header, *event_msg;
778
779   if (!is_pending)
780     {
781       GSList *l;
782
783       for (l = priv->events; l; l = l->next)
784         {
785           EventPriv *event = l->data;
786
787       if (event->public.contact == contact &&
788           event->func == event_pending_subscribe_func)
789         {
790           event_remove (event);
791           break;
792         }
793       }
794
795       return;
796     }
797
798   empathy_contact_run_until_ready (contact, EMPATHY_CONTACT_READY_NAME, NULL);
799
800   header = g_strdup_printf (_("Subscription requested by %s"),
801     empathy_contact_get_name (contact));
802
803   if (!EMP_STR_EMPTY (message))
804     event_msg = g_strdup_printf (_("\nMessage: %s"), message);
805   else
806     event_msg = NULL;
807
808   event_manager_add (manager, contact, GTK_STOCK_DIALOG_QUESTION, header,
809     event_msg, NULL, event_pending_subscribe_func, NULL);
810
811   g_free (event_msg);
812   g_free (header);
813 }
814
815 static GObject *
816 event_manager_constructor (GType type,
817                            guint n_props,
818                            GObjectConstructParam *props)
819 {
820         GObject *retval;
821
822         if (manager_singleton) {
823                 retval = g_object_ref (manager_singleton);
824         } else {
825                 retval = G_OBJECT_CLASS (empathy_event_manager_parent_class)->constructor
826                         (type, n_props, props);
827
828                 manager_singleton = EMPATHY_EVENT_MANAGER (retval);
829                 g_object_add_weak_pointer (retval, (gpointer) &manager_singleton);
830         }
831
832         return retval;
833 }
834
835 static void
836 event_manager_finalize (GObject *object)
837 {
838   EmpathyEventManagerPriv *priv = GET_PRIV (object);
839
840   g_slist_foreach (priv->events, (GFunc) event_free, NULL);
841   g_slist_free (priv->events);
842   g_slist_foreach (priv->approvals, (GFunc) event_manager_approval_free, NULL);
843   g_slist_free (priv->approvals);
844   g_object_unref (priv->contact_manager);
845   g_object_unref (priv->dispatcher);
846 }
847
848 static void
849 empathy_event_manager_class_init (EmpathyEventManagerClass *klass)
850 {
851   GObjectClass *object_class = G_OBJECT_CLASS (klass);
852
853   object_class->finalize = event_manager_finalize;
854   object_class->constructor = event_manager_constructor;
855
856   signals[EVENT_ADDED] =
857     g_signal_new ("event-added",
858       G_TYPE_FROM_CLASS (klass),
859       G_SIGNAL_RUN_LAST,
860       0,
861       NULL, NULL,
862       g_cclosure_marshal_VOID__POINTER,
863       G_TYPE_NONE,
864       1, G_TYPE_POINTER);
865
866   signals[EVENT_REMOVED] =
867   g_signal_new ("event-removed",
868       G_TYPE_FROM_CLASS (klass),
869       G_SIGNAL_RUN_LAST,
870       0,
871       NULL, NULL,
872       g_cclosure_marshal_VOID__POINTER,
873       G_TYPE_NONE, 1, G_TYPE_POINTER);
874
875   signals[EVENT_UPDATED] =
876   g_signal_new ("event-updated",
877       G_TYPE_FROM_CLASS (klass),
878       G_SIGNAL_RUN_LAST,
879       0,
880       NULL, NULL,
881       g_cclosure_marshal_VOID__POINTER,
882       G_TYPE_NONE, 1, G_TYPE_POINTER);
883
884
885   g_type_class_add_private (object_class, sizeof (EmpathyEventManagerPriv));
886 }
887
888 static void
889 empathy_event_manager_init (EmpathyEventManager *manager)
890 {
891   EmpathyEventManagerPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (manager,
892     EMPATHY_TYPE_EVENT_MANAGER, EmpathyEventManagerPriv);
893
894   manager->priv = priv;
895
896   priv->dispatcher = empathy_dispatcher_dup_singleton ();
897   priv->contact_manager = empathy_contact_manager_dup_singleton ();
898   g_signal_connect (priv->dispatcher, "approve",
899     G_CALLBACK (event_manager_approve_channel_cb), manager);
900   g_signal_connect (priv->contact_manager, "pendings-changed",
901     G_CALLBACK (event_manager_pendings_changed_cb), manager);
902 }
903
904 EmpathyEventManager *
905 empathy_event_manager_dup_singleton (void)
906 {
907   return g_object_new (EMPATHY_TYPE_EVENT_MANAGER, NULL);
908 }
909
910 GSList *
911 empathy_event_manager_get_events (EmpathyEventManager *manager)
912 {
913   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
914
915   g_return_val_if_fail (EMPATHY_IS_EVENT_MANAGER (manager), NULL);
916
917   return priv->events;
918 }
919
920 EmpathyEvent *
921 empathy_event_manager_get_top_event (EmpathyEventManager *manager)
922 {
923   EmpathyEventManagerPriv *priv = GET_PRIV (manager);
924
925   g_return_val_if_fail (EMPATHY_IS_EVENT_MANAGER (manager), NULL);
926
927   return priv->events ? priv->events->data : NULL;
928 }
929
930 void
931 empathy_event_activate (EmpathyEvent *event_public)
932 {
933   EventPriv *event = (EventPriv*) event_public;
934
935   g_return_if_fail (event_public != NULL);
936
937   if (event->func)
938     event->func (event);
939   else
940     event_remove (event);
941 }
942
943 void
944 empathy_event_inhibit_updates (EmpathyEvent *event_public)
945 {
946   EventPriv *event = (EventPriv *) event_public;
947
948   g_return_if_fail (event_public != NULL);
949
950   event->inhibit = TRUE;
951 }
952