]> git.0d.be Git - empathy.git/blob - src/empathy-call-observer.c
de21506d51e51e98b570202c11cfa55964dd7aab
[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 = notify_notification_new (summary, body, NULL);
123
124   emp_contact = empathy_contact_dup_from_tp_contact (contact);
125   pixbuf = empathy_notify_manager_get_pixbuf_for_notification (
126       self->priv->notify_mgr, emp_contact, EMPATHY_IMAGE_AVATAR_DEFAULT);
127
128   if (pixbuf != NULL)
129     {
130       notify_notification_set_icon_from_pixbuf (notification, pixbuf);
131       g_object_unref (pixbuf);
132     }
133
134   notify_notification_show (notification, NULL);
135
136   g_object_unref (notification);
137   g_free (summary);
138   g_free (body);
139   g_object_unref (emp_contact);
140 }
141
142 static TpChannel *
143 find_main_channel (GList *channels)
144 {
145   GList *l;
146
147   for (l = channels; l != NULL; l = g_list_next (l))
148     {
149       TpChannel *channel = l->data;
150       GQuark channel_type;
151
152       if (tp_proxy_get_invalidated (channel) != NULL)
153         continue;
154
155       channel_type = tp_channel_get_channel_type_id (channel);
156
157       if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA ||
158           channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_CALL)
159         return channel;
160     }
161
162   return NULL;
163 }
164
165 static gboolean
166 has_ongoing_calls (EmpathyCallObserver *self)
167 {
168   GList *l;
169
170   for (l = self->priv->channels; l != NULL; l = l->next)
171     {
172       TpChannel *channel = TP_CHANNEL (l->data);
173       GQuark type = tp_channel_get_channel_type_id (channel);
174
175       /* Check that Call channels are not ended */
176       if (type == TP_IFACE_QUARK_CHANNEL_TYPE_CALL &&
177           tp_call_channel_get_state (TP_CALL_CHANNEL (channel),
178               NULL, NULL, NULL) == TP_CALL_STATE_ENDED)
179         continue;
180
181       return TRUE;
182     }
183
184   return FALSE;
185 }
186
187 static void
188 claim_and_leave_cb (GObject *source,
189     GAsyncResult *result,
190     gpointer user_data)
191 {
192   AutoRejectCtx *ctx = user_data;
193   GError *error = NULL;
194
195   if (!tp_channel_dispatch_operation_leave_channels_finish (
196         TP_CHANNEL_DISPATCH_OPERATION (source), result, &error))
197     {
198       DEBUG ("Failed to reject call: %s", error->message);
199
200       g_error_free (error);
201       goto out;
202     }
203
204   display_reject_notification (ctx->self, ctx->main_channel);
205
206 out:
207   auto_reject_ctx_free (ctx);
208 }
209
210 static void
211 observe_channels (TpSimpleObserver *observer,
212     TpAccount *account,
213     TpConnection *connection,
214     GList *channels,
215     TpChannelDispatchOperation *dispatch_operation,
216     GList *requests,
217     TpObserveChannelsContext *context,
218     gpointer user_data)
219 {
220   EmpathyCallObserver *self = EMPATHY_CALL_OBSERVER (user_data);
221   TpChannel *channel;
222   const GError *error;
223
224   channel = find_main_channel (channels);
225   if (channel == NULL)
226     {
227       GError err = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT,
228           "Unknown channel type" };
229
230       DEBUG ("Didn't find any Call or StreamedMedia channel; ignoring");
231
232       tp_observe_channels_context_fail (context, &err);
233       return;
234     }
235
236   /* Autoreject if there are other ongoing calls */
237   if (has_ongoing_calls (self))
238     {
239       AutoRejectCtx *ctx = auto_reject_ctx_new (self, context, channel);
240
241       DEBUG ("Autorejecting incoming call since there are others in "
242           "progress: %s", tp_proxy_get_object_path (channel));
243
244       tp_channel_dispatch_operation_leave_channels_async (dispatch_operation,
245           TP_CHANNEL_GROUP_CHANGE_REASON_BUSY, "Already in a call",
246           claim_and_leave_cb, ctx);
247
248       tp_observe_channels_context_accept (context);
249       return;
250     }
251
252   if ((error = tp_proxy_get_invalidated (channel)) != NULL)
253     {
254       DEBUG ("The channel has already been invalidated: %s",
255           error->message);
256
257       tp_observe_channels_context_fail (context, error);
258       return;
259     }
260
261   DEBUG ("Observing channel %s", tp_proxy_get_object_path (channel));
262
263   tp_g_signal_connect_object (channel, "invalidated",
264       G_CALLBACK (on_channel_closed), self, 0);
265   self->priv->channels = g_list_prepend (self->priv->channels,
266       g_object_ref (channel));
267
268   tp_observe_channels_context_accept (context);
269 }
270
271 static GObject *
272 observer_constructor (GType type,
273     guint n_props,
274     GObjectConstructParam *props)
275 {
276   GObject *retval;
277
278   if (observer_singleton)
279     {
280       retval = g_object_ref (observer_singleton);
281     }
282   else
283     {
284       retval = G_OBJECT_CLASS (empathy_call_observer_parent_class)->constructor
285           (type, n_props, props);
286
287       observer_singleton = EMPATHY_CALL_OBSERVER (retval);
288       g_object_add_weak_pointer (retval, (gpointer) &observer_singleton);
289     }
290
291   return retval;
292 }
293
294 static void
295 observer_dispose (GObject *object)
296 {
297   EmpathyCallObserver *self = EMPATHY_CALL_OBSERVER (object);
298
299   tp_clear_object (&self->priv->notify_mgr);
300   tp_clear_object (&self->priv->observer);
301   g_list_free_full (self->priv->channels, g_object_unref);
302   self->priv->channels = NULL;
303 }
304
305 static void
306 empathy_call_observer_class_init (EmpathyCallObserverClass *klass)
307 {
308   GObjectClass *object_class = G_OBJECT_CLASS (klass);
309
310   object_class->dispose = observer_dispose;
311   object_class->constructor = observer_constructor;
312
313   g_type_class_add_private (object_class, sizeof (EmpathyCallObserverPriv));
314 }
315
316 static void
317 empathy_call_observer_init (EmpathyCallObserver *self)
318 {
319   EmpathyCallObserverPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
320     EMPATHY_TYPE_CALL_OBSERVER, EmpathyCallObserverPriv);
321   TpAccountManager *am;
322   GError *error = NULL;
323
324   self->priv = priv;
325
326   self->priv->notify_mgr = empathy_notify_manager_dup_singleton ();
327
328   am = tp_account_manager_dup ();
329
330   self->priv->observer = tp_simple_observer_new_with_am (am, TRUE,
331       "Empathy.CallObserver", FALSE,
332       observe_channels, self, NULL);
333
334   /* Observe Call and StreamedMedia channels */
335   tp_base_client_take_observer_filter (self->priv->observer,
336       tp_asv_new (
337         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
338           TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
339         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
340           TP_HANDLE_TYPE_CONTACT,
341         NULL));
342   tp_base_client_take_observer_filter (self->priv->observer,
343       tp_asv_new (
344         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
345           TP_IFACE_CHANNEL_TYPE_CALL,
346         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT,
347           TP_HANDLE_TYPE_CONTACT,
348         NULL));
349
350   tp_base_client_set_observer_delay_approvers (self->priv->observer, TRUE);
351
352   if (!tp_base_client_register (self->priv->observer, &error))
353     {
354       DEBUG ("Failed to register observer: %s", error->message);
355       g_error_free (error);
356     }
357
358   g_object_unref (am);
359 }
360
361 EmpathyCallObserver *
362 empathy_call_observer_dup_singleton (void)
363 {
364   return g_object_new (EMPATHY_TYPE_CALL_OBSERVER, NULL);
365 }