]> git.0d.be Git - empathy.git/blob - src/empathy-chat-manager.c
EmpathyTpChat: Use a READY property instead of our own ready code
[empathy.git] / src / empathy-chat-manager.c
1 /*
2  * empathy-chat-manager.c - Source for EmpathyChatManager
3  * Copyright (C) 2010 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19
20 #include <telepathy-glib/telepathy-glib.h>
21 #include <telepathy-glib/proxy-subclass.h>
22
23 #include <libempathy/empathy-channel-factory.h>
24 #include <libempathy/empathy-chatroom-manager.h>
25 #include <libempathy/empathy-request-util.h>
26 #include <libempathy/empathy-utils.h>
27
28 #include <libempathy-gtk/empathy-ui-utils.h>
29
30 #include "empathy-chat-window.h"
31
32 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
33 #include <libempathy/empathy-debug.h>
34
35 #include "empathy-chat-manager.h"
36
37 #include <extensions/extensions.h>
38
39 enum {
40   CLOSED_CHATS_CHANGED,
41   DISPLAYED_CHATS_CHANGED,
42   LAST_SIGNAL
43 };
44
45 static guint signals[LAST_SIGNAL];
46
47 static void svc_iface_init (gpointer, gpointer);
48
49 G_DEFINE_TYPE_WITH_CODE (EmpathyChatManager, empathy_chat_manager,
50     G_TYPE_OBJECT,
51     G_IMPLEMENT_INTERFACE (EMP_TYPE_SVC_CHAT_MANAGER,
52         svc_iface_init)
53     )
54
55 /* private structure */
56 typedef struct _EmpathyChatManagerPriv EmpathyChatManagerPriv;
57
58 struct _EmpathyChatManagerPriv
59 {
60   EmpathyChatroomManager *chatroom_mgr;
61   /* Queue of (ChatData *) representing the closed chats */
62   GQueue *closed_queue;
63
64   guint num_displayed_chat;
65
66   /* account path -> (GHashTable<(owned gchar *) contact ID
67    *                  -> (owned gchar *) non-NULL message>)
68    */
69   GHashTable *messages;
70
71   TpBaseClient *handler;
72 };
73
74 #define GET_PRIV(o) \
75   (G_TYPE_INSTANCE_GET_PRIVATE ((o), EMPATHY_TYPE_CHAT_MANAGER, \
76     EmpathyChatManagerPriv))
77
78 static EmpathyChatManager *chat_manager_singleton = NULL;
79
80 typedef struct
81 {
82   TpAccount *account;
83   gchar *id;
84   gboolean room;
85 } ChatData;
86
87 static ChatData *
88 chat_data_new (EmpathyChat *chat)
89 {
90   ChatData *data = NULL;
91
92   data = g_slice_new0 (ChatData);
93
94   data->account = g_object_ref (empathy_chat_get_account (chat));
95   data->id = g_strdup (empathy_chat_get_id (chat));
96   data->room = empathy_chat_is_room (chat);
97
98   return data;
99 }
100
101 static void
102 chat_data_free (ChatData *data)
103 {
104   if (data->account != NULL)
105     {
106       g_object_unref (data->account);
107       data->account = NULL;
108     }
109
110   if (data->id != NULL)
111     {
112       g_free (data->id);
113       data->id = NULL;
114     }
115
116   g_slice_free (ChatData, data);
117 }
118
119 static void
120 chat_destroyed_cb (gpointer data,
121     GObject *object)
122 {
123   EmpathyChatManager *self = data;
124   EmpathyChatManagerPriv *priv = GET_PRIV (self);
125
126   priv->num_displayed_chat--;
127
128   DEBUG ("Chat destroyed; we are now displaying %u chats",
129       priv->num_displayed_chat);
130
131   g_signal_emit (self, signals[DISPLAYED_CHATS_CHANGED], 0,
132       priv->num_displayed_chat);
133 }
134
135 static void
136 process_tp_chat (EmpathyChatManager *self,
137     EmpathyTpChat *tp_chat,
138     TpAccount *account,
139     gint64 user_action_time)
140 {
141   EmpathyChatManagerPriv *priv = GET_PRIV (self);
142   EmpathyChat *chat = NULL;
143   const gchar *id;
144
145   id = empathy_tp_chat_get_id (tp_chat);
146   if (!tp_str_empty (id))
147     {
148       chat = empathy_chat_window_find_chat (account, id,
149           empathy_tp_chat_is_sms_channel (tp_chat));
150     }
151
152   if (chat != NULL)
153     {
154       empathy_chat_set_tp_chat (chat, tp_chat);
155     }
156   else
157     {
158       GHashTable *chats = NULL;
159
160       chat = empathy_chat_new (tp_chat);
161       /* empathy_chat_new returns a floating reference as EmpathyChat is
162        * a GtkWidget. This reference will be taken by a container
163        * (a GtkNotebook) when we'll call empathy_chat_window_present_chat */
164
165       priv->num_displayed_chat++;
166
167       DEBUG ("Chat displayed; we are now displaying %u chat",
168           priv->num_displayed_chat);
169
170       g_signal_emit (self, signals[DISPLAYED_CHATS_CHANGED], 0,
171           priv->num_displayed_chat);
172
173       /* Set the saved message in the channel if we have one. */
174       chats = g_hash_table_lookup (priv->messages,
175           tp_proxy_get_object_path (account));
176
177       if (chats != NULL)
178         {
179           const gchar *msg = g_hash_table_lookup (chats, id);
180
181           if (msg != NULL)
182             empathy_chat_set_text (chat, msg);
183         }
184
185       g_object_weak_ref ((GObject *) chat, chat_destroyed_cb, self);
186     }
187   empathy_chat_window_present_chat (chat, user_action_time);
188
189   if (empathy_tp_chat_is_invited (tp_chat, NULL))
190     {
191       /* We have been invited to the room. Add ourself as member as this
192        * channel has been approved. */
193       empathy_tp_chat_join (tp_chat);
194     }
195 }
196
197 static void
198 handle_channels (TpSimpleHandler *handler,
199     TpAccount *account,
200     TpConnection *connection,
201     GList *channels,
202     GList *requests_satisfied,
203     gint64 user_action_time,
204     TpHandleChannelsContext *context,
205     gpointer user_data)
206 {
207   EmpathyChatManager *self = (EmpathyChatManager *) user_data;
208   GList *l;
209
210   for (l = channels; l != NULL; l = g_list_next (l))
211     {
212       EmpathyTpChat *tp_chat = l->data;
213
214       if (tp_proxy_get_invalidated (tp_chat) != NULL)
215         continue;
216
217       if (!EMPATHY_IS_TP_CHAT (tp_chat))
218         {
219           DEBUG ("Channel %s doesn't implement Messages; can't handle it",
220               tp_proxy_get_object_path (tp_chat));
221           continue;
222         }
223
224       DEBUG ("Now handling channel %s", tp_proxy_get_object_path (tp_chat));
225
226       process_tp_chat (self, tp_chat, account, user_action_time);
227     }
228
229   tp_handle_channels_context_accept (context);
230 }
231
232 static void
233 empathy_chat_manager_init (EmpathyChatManager *self)
234 {
235   EmpathyChatManagerPriv *priv = GET_PRIV (self);
236   TpDBusDaemon *dbus;
237   GError *error = NULL;
238   EmpathyChannelFactory *factory;
239
240   priv->closed_queue = g_queue_new ();
241   priv->messages = g_hash_table_new_full (g_str_hash, g_str_equal,
242       g_free, (GDestroyNotify) g_hash_table_unref);
243
244   dbus = tp_dbus_daemon_dup (&error);
245   if (dbus == NULL)
246     {
247       g_critical ("Failed to get D-Bus daemon: %s", error->message);
248       g_error_free (error);
249       return;
250     }
251
252   priv->chatroom_mgr = empathy_chatroom_manager_dup_singleton (NULL);
253
254   /* Text channels handler */
255   priv->handler = tp_simple_handler_new (dbus, FALSE, FALSE,
256       EMPATHY_CHAT_BUS_NAME_SUFFIX, FALSE, handle_channels, self, NULL);
257
258   /* EmpathyTpChat relies on these features being prepared */
259   tp_base_client_add_connection_features_varargs (priv->handler,
260     TP_CONNECTION_FEATURE_CAPABILITIES, 0);
261   tp_base_client_add_channel_features_varargs (priv->handler,
262       TP_CHANNEL_FEATURE_CHAT_STATES, 0);
263
264   g_object_unref (dbus);
265
266   tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
267         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
268         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
269         NULL));
270
271   tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
272         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
273         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_ROOM,
274         NULL));
275
276   tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
277         TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
278         TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_NONE,
279         NULL));
280
281   factory = empathy_channel_factory_dup ();
282
283   tp_base_client_set_channel_factory (priv->handler,
284       TP_CLIENT_CHANNEL_FACTORY (factory));
285
286   if (!tp_base_client_register (priv->handler, &error))
287     {
288       g_critical ("Failed to register text handler: %s", error->message);
289       g_error_free (error);
290     }
291
292   g_object_unref (factory);
293 }
294
295 static void
296 empathy_chat_manager_finalize (GObject *object)
297 {
298   EmpathyChatManager *self = EMPATHY_CHAT_MANAGER (object);
299   EmpathyChatManagerPriv *priv = GET_PRIV (self);
300
301   if (priv->closed_queue != NULL)
302     {
303       g_queue_foreach (priv->closed_queue, (GFunc) chat_data_free, NULL);
304       g_queue_free (priv->closed_queue);
305       priv->closed_queue = NULL;
306     }
307
308   tp_clear_pointer (&priv->messages, g_hash_table_unref);
309
310   tp_clear_object (&priv->handler);
311   tp_clear_object (&priv->chatroom_mgr);
312
313   G_OBJECT_CLASS (empathy_chat_manager_parent_class)->finalize (object);
314 }
315
316 static GObject *
317 empathy_chat_manager_constructor (GType type,
318     guint n_construct_params,
319     GObjectConstructParam *construct_params)
320 {
321   GObject *retval;
322
323   if (!chat_manager_singleton)
324     {
325       retval = G_OBJECT_CLASS (empathy_chat_manager_parent_class)->constructor
326         (type, n_construct_params, construct_params);
327
328       chat_manager_singleton = EMPATHY_CHAT_MANAGER (retval);
329       g_object_add_weak_pointer (retval, (gpointer) &chat_manager_singleton);
330     }
331   else
332     {
333       retval = g_object_ref (chat_manager_singleton);
334     }
335
336   return retval;
337 }
338
339 static void
340 empathy_chat_manager_constructed (GObject *obj)
341 {
342   TpDBusDaemon *dbus_daemon;
343
344   dbus_daemon = tp_dbus_daemon_dup (NULL);
345
346   if (dbus_daemon != NULL)
347     {
348       tp_dbus_daemon_register_object (dbus_daemon,
349           "/org/gnome/Empathy/ChatManager", obj);
350
351       g_object_unref (dbus_daemon);
352     }
353 }
354
355 static void
356 empathy_chat_manager_class_init (
357   EmpathyChatManagerClass *empathy_chat_manager_class)
358 {
359   GObjectClass *object_class = G_OBJECT_CLASS (empathy_chat_manager_class);
360
361   object_class->finalize = empathy_chat_manager_finalize;
362   object_class->constructor = empathy_chat_manager_constructor;
363   object_class->constructed = empathy_chat_manager_constructed;
364
365   signals[CLOSED_CHATS_CHANGED] =
366     g_signal_new ("closed-chats-changed",
367         G_TYPE_FROM_CLASS (object_class),
368         G_SIGNAL_RUN_LAST,
369         0,
370         NULL, NULL,
371         g_cclosure_marshal_VOID__UINT,
372         G_TYPE_NONE,
373         1, G_TYPE_UINT, NULL);
374
375   signals[DISPLAYED_CHATS_CHANGED] =
376     g_signal_new ("displayed-chats-changed",
377         G_TYPE_FROM_CLASS (object_class),
378         G_SIGNAL_RUN_LAST,
379         0,
380         NULL, NULL,
381         g_cclosure_marshal_VOID__UINT,
382         G_TYPE_NONE,
383         1, G_TYPE_UINT, NULL);
384
385   g_type_class_add_private (empathy_chat_manager_class,
386     sizeof (EmpathyChatManagerPriv));
387 }
388
389 EmpathyChatManager *
390 empathy_chat_manager_dup_singleton (void)
391 {
392   return g_object_new (EMPATHY_TYPE_CHAT_MANAGER, NULL);
393 }
394
395 void
396 empathy_chat_manager_closed_chat (EmpathyChatManager *self,
397     EmpathyChat *chat)
398 {
399   EmpathyChatManagerPriv *priv = GET_PRIV (self);
400   ChatData *data;
401   GHashTable *chats;
402   gchar *message;
403
404   data = chat_data_new (chat);
405
406   DEBUG ("Adding %s to closed queue: %s",
407       data->room ? "room" : "contact", data->id);
408
409   g_queue_push_tail (priv->closed_queue, data);
410
411   g_signal_emit (self, signals[CLOSED_CHATS_CHANGED], 0,
412       g_queue_get_length (priv->closed_queue));
413
414   /* If there was a message saved from last time it was closed
415    * (perhaps by accident?) save it to our hash table so it can be
416    * used again when the same chat pops up. Hot. */
417   message = empathy_chat_dup_text (chat);
418
419   chats = g_hash_table_lookup (priv->messages,
420       tp_proxy_get_object_path (data->account));
421
422   /* Don't create a new hash table if we don't already have one and we
423    * don't actually have a message to save. */
424   if (chats == NULL && tp_str_empty (message))
425     {
426       g_free (message);
427       return;
428     }
429   else if (chats == NULL && !tp_str_empty (message))
430     {
431       chats = g_hash_table_new_full (g_str_hash, g_str_equal,
432           g_free, g_free);
433
434       g_hash_table_insert (priv->messages,
435           g_strdup (tp_proxy_get_object_path (data->account)),
436           chats);
437     }
438
439   if (tp_str_empty (message))
440     {
441       g_hash_table_remove (chats, data->id);
442       /* might be '\0' */
443       g_free (message);
444     }
445   else
446     {
447       /* takes ownership of message */
448       g_hash_table_insert (chats, g_strdup (data->id), message);
449     }
450 }
451
452 void
453 empathy_chat_manager_undo_closed_chat (EmpathyChatManager *self,
454     gint64 timestamp)
455 {
456   EmpathyChatManagerPriv *priv = GET_PRIV (self);
457   ChatData *data;
458
459   data = g_queue_pop_tail (priv->closed_queue);
460
461   if (data == NULL)
462     return;
463
464   DEBUG ("Removing %s from closed queue and starting a chat with: %s",
465       data->room ? "room" : "contact", data->id);
466
467   if (data->room)
468     empathy_join_muc (data->account, data->id, timestamp);
469   else
470     empathy_chat_with_contact_id (data->account, data->id, timestamp);
471
472   g_signal_emit (self, signals[CLOSED_CHATS_CHANGED], 0,
473       g_queue_get_length (priv->closed_queue));
474
475   chat_data_free (data);
476 }
477
478 guint
479 empathy_chat_manager_get_num_closed_chats (EmpathyChatManager *self)
480 {
481   EmpathyChatManagerPriv *priv = GET_PRIV (self);
482
483   return g_queue_get_length (priv->closed_queue);
484 }
485
486 static void
487 empathy_chat_manager_dbus_undo_closed_chat (EmpSvcChatManager *manager,
488     gint64 timestamp,
489     DBusGMethodInvocation *context)
490 {
491   empathy_chat_manager_undo_closed_chat ((EmpathyChatManager *) manager,
492       timestamp);
493
494   emp_svc_chat_manager_return_from_undo_closed_chat (context);
495 }
496
497 static void
498 svc_iface_init (gpointer g_iface,
499     gpointer iface_data)
500 {
501   EmpSvcChatManagerClass *klass = (EmpSvcChatManagerClass *) g_iface;
502
503 #define IMPLEMENT(x) emp_svc_chat_manager_implement_##x (\
504     klass, empathy_chat_manager_dbus_##x)
505   IMPLEMENT(undo_closed_chat);
506 #undef IMPLEMENT
507 }
508
509 void
510 empathy_chat_manager_call_undo_closed_chat (void)
511 {
512   TpDBusDaemon *dbus_daemon = tp_dbus_daemon_dup (NULL);
513   TpProxy *proxy;
514
515   if (dbus_daemon == NULL)
516     return;
517
518   proxy = g_object_new (TP_TYPE_PROXY,
519       "dbus-daemon", dbus_daemon,
520       "dbus-connection", tp_proxy_get_dbus_connection (TP_PROXY (dbus_daemon)),
521       "bus-name", EMPATHY_CHAT_BUS_NAME,
522       "object-path", "/org/gnome/Empathy/ChatManager",
523       NULL);
524
525   tp_proxy_add_interface_by_id (proxy, EMP_IFACE_QUARK_CHAT_MANAGER);
526
527   emp_cli_chat_manager_call_undo_closed_chat (proxy, -1, empathy_get_current_action_time (),
528       NULL, NULL, NULL, NULL);
529
530   g_object_unref (proxy);
531   g_object_unref (dbus_daemon);
532 }