]> git.0d.be Git - empathy.git/blob - src/empathy-call-observer.c
Merge branch 'gnome-3-6'
[empathy.git] / src / empathy-call-observer.c
1 /*
2  * Copyright (C) 2011 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: Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
19  */
20
21 #include <config.h>
22
23 #include <glib/gi18n-lib.h>
24
25 #include <telepathy-glib/telepathy-glib.h>
26
27 #include <libnotify/notification.h>
28
29 #include <libempathy/empathy-utils.h>
30
31 #include <libempathy-gtk/empathy-images.h>
32 #include <libempathy-gtk/empathy-notify-manager.h>
33
34 #include <extensions/extensions.h>
35
36 #include "empathy-call-observer.h"
37
38 #define DEBUG_FLAG EMPATHY_DEBUG_VOIP
39 #include <libempathy/empathy-debug.h>
40
41 struct _EmpathyCallObserverPriv {
42   EmpathyNotifyManager *notify_mgr;
43
44   TpBaseClient *observer;
45
46   /* Ongoing calls, as reffed TpChannels */
47   GList *channels;
48 };
49
50 /* The Call Observer looks at incoming and outgoing calls, and
51  * autorejects incoming ones if there are ongoing ones, since
52  * we don't cope with simultaneous calls quite well yet.
53  * At some point, we should ask the user if he wants to put the
54  * current call on hold and answer the incoming one instead,
55  * see https://bugzilla.gnome.org/show_bug.cgi?id=623348
56  */
57 G_DEFINE_TYPE (EmpathyCallObserver, empathy_call_observer, G_TYPE_OBJECT);
58
59 static EmpathyCallObserver * observer_singleton = NULL;
60
61 static void
62 on_channel_closed (TpProxy *proxy,
63     guint    domain,
64     gint     code,
65     gchar   *message,
66     EmpathyCallObserver *self)
67 {
68   DEBUG ("channel %s has been invalidated; stop observing it",
69       tp_proxy_get_object_path (proxy));
70
71   self->priv->channels = g_list_remove (self->priv->channels, proxy);
72   g_object_unref (proxy);
73 }
74
75 typedef struct
76 {
77   EmpathyCallObserver *self;
78   TpObserveChannelsContext *context;
79   TpChannel *main_channel;
80 } AutoRejectCtx;
81
82 static AutoRejectCtx *
83 auto_reject_ctx_new (EmpathyCallObserver *self,
84     TpObserveChannelsContext *context,
85     TpChannel *main_channel)
86 {
87   AutoRejectCtx *ctx = g_slice_new (AutoRejectCtx);
88
89   ctx->self = g_object_ref (self);
90   ctx->context = g_object_ref (context);
91   ctx->main_channel = g_object_ref (main_channel);
92   return ctx;
93 }
94
95 static void
96 auto_reject_ctx_free (AutoRejectCtx *ctx)
97 {
98   g_object_unref (ctx->self);
99   g_object_unref (ctx->context);
100   g_object_unref (ctx->main_channel);
101   g_slice_free (AutoRejectCtx, ctx);
102 }
103
104 static void
105 display_reject_notification (EmpathyCallObserver *self,
106     TpChannel *channel)
107 {
108   TpContact *contact;
109   NotifyNotification *notification;
110   gchar *summary, *body;
111   EmpathyContact *emp_contact;
112   GdkPixbuf *pixbuf;
113
114   contact = tp_channel_get_target_contact (channel);
115
116   summary = g_strdup_printf (_("Missed call from %s"),
117       tp_contact_get_alias (contact));
118   body = g_strdup_printf (
119       _("%s just tried to call you, but you were in another call."),
120       tp_contact_get_alias (contact));
121
122   notification = empathy_notify_manager_create_notification (summary, body,
123       NULL);
124
125   emp_contact = empathy_contact_dup_from_tp_contact (contact);
126   pixbuf = empathy_notify_manager_get_pixbuf_for_notification (
127       self->priv->notify_mgr, emp_contact, EMPATHY_IMAGE_AVATAR_DEFAULT);
128
129   if (pixbuf != NULL)
130     {
131       notify_notification_set_icon_from_pixbuf (notification, pixbuf);
132       g_object_unref (pixbuf);
133     }
134
135   notify_notification_show (notification, NULL);
136
137   g_object_unref (notification);
138   g_free (summary);
139   g_free (body);
140   g_object_unref (emp_contact);
141 }
142
143 static TpChannel *
144 find_main_channel (GList *channels)
145 {
146   GList *l;
147
148   for (l = channels; l != NULL; l = g_list_next (l))
149     {
150       TpChannel *channel = l->data;
151       GQuark channel_type;
152
153       if (tp_proxy_get_invalidated (channel) != NULL)
154         continue;
155
156       channel_type = tp_channel_get_channel_type_id (channel);
157
158       if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA ||
159           channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_CALL)
160         return channel;
161     }
162
163   return NULL;
164 }
165
166 static gboolean
167 has_ongoing_calls (EmpathyCallObserver *self)
168 {
169   GList *l;
170
171   for (l = self->priv->channels; l != NULL; l = l->next)
172     {
173       TpChannel *channel = TP_CHANNEL (l->data);
174       GQuark type = tp_channel_get_channel_type_id (channel);
175
176       /* Check that Call channels are not ended */
177       if (type == TP_IFACE_QUARK_CHANNEL_TYPE_CALL &&
178           tp_call_channel_get_state (TP_CALL_CHANNEL (channel),
179               NULL, NULL, NULL) == TP_CALL_STATE_ENDED)
180         continue;
181
182       return TRUE;
183     }
184
185   return FALSE;
186 }
187
188 static void
189 claim_and_leave_cb (GObject *source,
190     GAsyncResult *result,
191     gpointer user_data)
192 {
193   AutoRejectCtx *ctx = user_data;
194   GError *error = NULL;
195
196   if (!tp_channel_dispatch_operation_leave_channels_finish (
197         TP_CHANNEL_DISPATCH_OPERATION (source), result, &error))
198     {
199       DEBUG ("Failed to reject call: %s", error->message);
200
201       g_error_free (error);
202       goto out;
203     }
204
205   display_reject_notification (ctx->self, ctx->main_channel);
206
207 out:
208   auto_reject_ctx_free (ctx);
209 }
210
211 static void
212 observe_channels (TpSimpleObserver *observer,
213     TpAccount *account,
214     TpConnection *connection,
215     GList *channels,
216     TpChannelDispatchOperation *dispatch_operation,
217     GList *requests,
218     TpObserveChannelsContext *context,
219     gpointer user_data)
220 {
221   EmpathyCallObserver *self = EMPATHY_CALL_OBSERVER (user_data);
222   TpChannel *channel;
223   const GError *error;
224
225   channel = find_main_channel (channels);
226   if (channel == NULL)
227     {
228       GError err = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT,
229           "Unknown channel type" };
230
231       DEBUG ("Didn't find any Call or StreamedMedia channel; ignoring");
232
233       tp_observe_channels_context_fail (context, &err);
234       return;
235     }
236
237   /* Autoreject if there are other ongoing calls */
238   if (has_ongoing_calls (self))
239     {
240       AutoRejectCtx *ctx = auto_reject_ctx_new (self, context, channel);
241
242       DEBUG ("Autorejecting incoming call since there are others in "
243           "progress: %s", tp_proxy_get_object_path (channel));
244
245       tp_channel_dispatch_operation_leave_channels_async (dispatch_operation,
246           TP_CHANNEL_GROUP_CHANGE_REASON_BUSY, "Already in a call",
247           claim_and_leave_cb, ctx);
248
249       tp_observe_channels_context_accept (context);
250       return;
251     }
252
253   if ((error = tp_proxy_get_invalidated (channel)) != NULL)
254     {
255       DEBUG ("The channel has already been invalidated: %s",
256           error->message);
257
258       tp_observe_channels_context_fail (context, error);
259       return;
260     }
261
262   DEBUG ("Observing channel %s", tp_proxy_get_object_path (channel));
263
264   tp_g_signal_connect_object (channel, "invalidated",
265       G_CALLBACK (on_channel_closed), self, 0);
266   self->priv->channels = g_list_prepend (self->priv->channels,
267       g_object_ref (channel));
268
269   tp_observe_channels_context_accept (context);
270 }
271
272 static GObject *
273 observer_constructor (GType type,
274     guint n_props,
275     GObjectConstructParam *props)
276 {
277   GObject *retval;
278
279   if (observer_singleton)
280     {
281       retval = g_object_ref (observer_singleton);
282     }
283   else
284     {
285       retval = G_OBJECT_CLASS (empathy_call_observer_parent_class)->constructor
286           (type, n_props, props);
287
288       observer_singleton = EMPATHY_CALL_OBSERVER (retval);
289       g_object_add_weak_pointer (retval, (gpointer) &observer_singleton);
290     }
291
292   return retval;
293 }
294
295 static void
296 observer_dispose (GObject *object)
297 {
298   EmpathyCallObserver *self = EMPATHY_CALL_OBSERVER (object);
299
300   tp_clear_object (&self->priv->notify_mgr);
301   tp_clear_object (&self->priv->observer);
302   g_list_free_full (self->priv->channels, g_object_unref);
303   self->priv->channels = NULL;
304 }
305
306 static void
307 empathy_call_observer_class_init (EmpathyCallObserverClass *klass)
308 {
309   GObjectClass *object_class = G_OBJECT_CLASS (klass);
310
311   object_class->dispose = observer_dispose;
312   object_class->constructor = observer_constructor;
313
314   g_type_class_add_private (object_class, sizeof (EmpathyCallObserverPriv));
315 }
316
317 static void
318 empathy_call_observer_init (EmpathyCallObserver *self)
319 {
320   EmpathyCallObserverPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
321     EMPATHY_TYPE_CALL_OBSERVER, EmpathyCallObserverPriv);
322   TpAccountManager *am;
323   GError *error = NULL;
324
325   self->priv = priv;
326
327   self->priv->notify_mgr = empathy_notify_manager_dup_singleton ();
328
329   am = tp_account_manager_dup ();
330
331   self->priv->observer = tp_simple_observer_new_with_am (am, TRUE,
332       "Empathy.CallObserver", FALSE,
333       observe_channels, self, NULL);
334
335   /* Observe Call and StreamedMedia channels */
336   tp_base_client_take_observer_filter (self->priv->observer,
337       tp_asv_new (
338         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
339           TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
340         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
341           TP_HANDLE_TYPE_CONTACT,
342         NULL));
343   tp_base_client_take_observer_filter (self->priv->observer,
344       tp_asv_new (
345         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
346           TP_IFACE_CHANNEL_TYPE_CALL,
347         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
348           TP_HANDLE_TYPE_CONTACT,
349         NULL));
350
351   tp_base_client_set_observer_delay_approvers (self->priv->observer, TRUE);
352
353   if (!tp_base_client_register (self->priv->observer, &error))
354     {
355       DEBUG ("Failed to register observer: %s", error->message);
356       g_error_free (error);
357     }
358
359   g_object_unref (am);
360 }
361
362 EmpathyCallObserver *
363 empathy_call_observer_dup_singleton (void)
364 {
365   return g_object_new (EMPATHY_TYPE_CALL_OBSERVER, NULL);
366 }