]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-chat.c
81350220b0589691a5afe99ed36213c3e58d8474
[empathy.git] / libempathy-gtk / empathy-chat.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2002-2007 Imendio AB
4  * Copyright (C) 2007-2010 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Mikael Hallendal <micke@imendio.com>
22  *          Richard Hult <richard@imendio.com>
23  *          Martyn Russell <martyn@imendio.com>
24  *          Geert-Jan Van den Bogaerde <geertjan@gnome.org>
25  *          Xavier Claessens <xclaesse@gmail.com>
26  */
27
28 #include <config.h>
29
30 #include <string.h>
31 #include <stdlib.h>
32
33 #undef G_DISABLE_DEPRECATED /* for GCompletion */
34 #include <gdk/gdkkeysyms.h>
35 #include <glib/gi18n-lib.h>
36 #include <gtk/gtk.h>
37
38 #include <telepathy-glib/account-manager.h>
39 #include <telepathy-glib/util.h>
40 #include <telepathy-logger/log-manager.h>
41 #include <telepathy-logger/text-event.h>
42 #include <libempathy/empathy-contact-list.h>
43 #include <libempathy/empathy-gsettings.h>
44 #include <libempathy/empathy-keyring.h>
45 #include <libempathy/empathy-utils.h>
46 #include <libempathy/empathy-request-util.h>
47 #include <libempathy/empathy-chatroom-manager.h>
48
49 #include "empathy-chat.h"
50 #include "empathy-spell.h"
51 #include "empathy-contact-dialogs.h"
52 #include "empathy-individual-store-channel.h"
53 #include "empathy-individual-view.h"
54 #include "empathy-input-text-view.h"
55 #include "empathy-search-bar.h"
56 #include "empathy-theme-manager.h"
57 #include "empathy-theme-adium.h"
58 #include "empathy-smiley-manager.h"
59 #include "empathy-ui-utils.h"
60 #include "empathy-string-parser.h"
61 #include "extensions/extensions.h"
62
63 #define DEBUG_FLAG EMPATHY_DEBUG_CHAT
64 #include <libempathy/empathy-debug.h>
65
66 #define IS_ENTER(v) (v == GDK_KEY_Return || v == GDK_KEY_ISO_Enter || v == GDK_KEY_KP_Enter)
67 #define COMPOSING_STOP_TIMEOUT 5
68
69 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyChat)
70 struct _EmpathyChatPriv {
71         EmpathyTpChat     *tp_chat;
72         TpAccount         *account;
73         gchar             *id;
74         gchar             *name;
75         gchar             *subject;
76         EmpathyContact    *self_contact;
77         EmpathyContact    *remote_contact;
78         gboolean           show_contacts;
79
80         GSettings         *gsettings_chat;
81         GSettings         *gsettings_ui;
82
83         TplLogManager     *log_manager;
84         TpAccountManager  *account_manager;
85         GList             *input_history;
86         GList             *input_history_current;
87         GList             *compositors;
88         GCompletion       *completion;
89         guint              composing_stop_timeout_id;
90         guint              block_events_timeout_id;
91         TpHandleType       handle_type;
92         gint               contacts_width;
93         gboolean           has_input_vscroll;
94
95         /* TRUE if spell checking is enabled, FALSE otherwise.
96          * This is to keep track of the last state of spell checking
97          * when it changes. */
98         gboolean           spell_checking_enabled;
99
100         /* These store the signal handler ids for the enclosed text entry. */
101         gulong             insert_text_id;
102         gulong             delete_range_id;
103         gulong             notify_cursor_position_id;
104
105         /* Source func ID for update_misspelled_words () */
106         guint              update_misspelled_words_id;
107         /* Source func ID for save_paned_pos_timeout () */
108         guint              save_paned_pos_id;
109         /* Source func ID for chat_contacts_visible_timeout_cb () */
110         guint              contacts_visible_id;
111
112         GtkWidget         *widget;
113         GtkWidget         *hpaned;
114         GtkWidget         *vbox_left;
115         GtkWidget         *scrolled_window_chat;
116         GtkWidget         *scrolled_window_input;
117         GtkWidget         *scrolled_window_contacts;
118         GtkWidget         *hbox_topic;
119         GtkWidget         *expander_topic;
120         GtkWidget         *label_topic;
121         GtkWidget         *contact_list_view;
122         GtkWidget         *info_bar_vbox;
123         GtkWidget         *search_bar;
124
125         guint              unread_messages;
126         guint              unread_messages_when_offline;
127         /* TRUE if the pending messages can be displayed. This is to avoid to show
128          * pending messages *before* messages from logs. (#603980) */
129         gboolean           can_show_pending;
130
131         /* FIXME: retrieving_backlogs flag is a workaround for Bug#610994 and should
132          * be differently handled since it introduces another race condition, which
133          * is really hard to occur, but still possible.
134          *
135          * With the current workaround (which has the race above), we need to be
136          * sure to ACK any pending messages only when the retrieval of backlogs is
137          * finished, that's why using retrieving_backlogs flag.
138          * empathy_chat_messages_read () will check this variable and not ACK
139          * anything when TRUE. It will be set TRUE at chat_constructed () and set
140          * back to FALSE when the backlog has been retrieved and the pending
141          * messages actually showed to the user.
142          *
143          * Race condition introduced with this workaround:
144          * Scenario: a message is pending, the user is notified and selects the tab.
145          * the tab with a pending message is focused before the messages are properly
146          * shown (since the preparation of the window is slower AND async WRT the
147          * tab showing), which means the user won't see any new messages (rare but
148          * possible), if he/she will change tab focus before the messages are
149          * properly shown, the tab will be set as 'seen' and the user won't be
150          * notified again about the already notified pending messages when the
151          * messages in tab will be properly shown */
152         gboolean           retrieving_backlogs;
153         gboolean           sms_channel;
154
155         /* we need to know whether populate-popup happened in response to
156          * the keyboard or the mouse. We can't ask GTK for the most recent
157          * event, because it will be a notify event. Instead we track it here */
158         GdkEventType       most_recent_event_type;
159
160         /* A regex matching our own current nickname in the room, or %NULL if
161          * !empathy_chat_is_room(). */
162         GRegex            *highlight_regex;
163 };
164
165 typedef struct {
166         gchar *text; /* Original message that was specified
167                       * upon entry creation. */
168         gchar *modified_text; /* Message that was modified by user.
169                                * When no modifications were made, it is NULL */
170 } InputHistoryEntry;
171
172 enum {
173         COMPOSING,
174         NEW_MESSAGE,
175         PART_COMMAND_ENTERED,
176         LAST_SIGNAL
177 };
178
179 enum {
180         PROP_0,
181         PROP_TP_CHAT,
182         PROP_ACCOUNT,
183         PROP_ID,
184         PROP_NAME,
185         PROP_SUBJECT,
186         PROP_REMOTE_CONTACT,
187         PROP_SHOW_CONTACTS,
188         PROP_SMS_CHANNEL,
189         PROP_N_MESSAGES_SENDING,
190         PROP_NB_UNREAD_MESSAGES,
191 };
192
193 static guint signals[LAST_SIGNAL] = { 0 };
194
195 G_DEFINE_TYPE (EmpathyChat, empathy_chat, GTK_TYPE_BOX);
196
197 static gboolean update_misspelled_words (gpointer data);
198
199 static void
200 chat_get_property (GObject    *object,
201                    guint       param_id,
202                    GValue     *value,
203                    GParamSpec *pspec)
204 {
205         EmpathyChat *chat = EMPATHY_CHAT (object);
206         EmpathyChatPriv *priv = GET_PRIV (object);
207
208         switch (param_id) {
209         case PROP_TP_CHAT:
210                 g_value_set_object (value, priv->tp_chat);
211                 break;
212         case PROP_ACCOUNT:
213                 g_value_set_object (value, priv->account);
214                 break;
215         case PROP_NAME:
216                 g_value_take_string (value, empathy_chat_dup_name (chat));
217                 break;
218         case PROP_ID:
219                 g_value_set_string (value, priv->id);
220                 break;
221         case PROP_SUBJECT:
222                 g_value_set_string (value, priv->subject);
223                 break;
224         case PROP_REMOTE_CONTACT:
225                 g_value_set_object (value, priv->remote_contact);
226                 break;
227         case PROP_SHOW_CONTACTS:
228                 g_value_set_boolean (value, priv->show_contacts);
229                 break;
230         case PROP_SMS_CHANNEL:
231                 g_value_set_boolean (value, priv->sms_channel);
232                 break;
233         case PROP_N_MESSAGES_SENDING:
234                 g_value_set_uint (value,
235                         empathy_chat_get_n_messages_sending (chat));
236                 break;
237         case PROP_NB_UNREAD_MESSAGES:
238                 g_value_set_uint (value,
239                         empathy_chat_get_nb_unread_messages (chat));
240                 break;
241         default:
242                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
243                 break;
244         };
245 }
246
247 static void
248 chat_set_property (GObject      *object,
249                    guint         param_id,
250                    const GValue *value,
251                    GParamSpec   *pspec)
252 {
253         EmpathyChat *chat = EMPATHY_CHAT (object);
254
255         switch (param_id) {
256         case PROP_TP_CHAT:
257                 empathy_chat_set_tp_chat (chat, EMPATHY_TP_CHAT (g_value_get_object (value)));
258                 break;
259         case PROP_SHOW_CONTACTS:
260                 empathy_chat_set_show_contacts (chat, g_value_get_boolean (value));
261                 break;
262         default:
263                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
264                 break;
265         };
266 }
267
268 static void
269 account_reconnected (EmpathyChat *chat,
270                         TpAccount *account)
271 {
272         EmpathyChatPriv *priv = GET_PRIV (chat);
273
274         DEBUG ("Account reconnected, request a new Text channel");
275
276         /* FIXME: Ideally we should ask to handle ourself the channel so we can
277         * report the error if any but this is blocked by
278         * https://bugs.freedesktop.org/show_bug.cgi?id=13422 */
279         switch (priv->handle_type) {
280                 case TP_HANDLE_TYPE_CONTACT:
281                         if (priv->sms_channel)
282                                 empathy_sms_contact_id (
283                                         account, priv->id,
284                                         TP_USER_ACTION_TIME_NOT_USER_ACTION,
285                                         NULL, NULL);
286                         else
287                                 empathy_chat_with_contact_id (
288                                         account, priv->id,
289                                         TP_USER_ACTION_TIME_NOT_USER_ACTION,
290                                         NULL, NULL);
291                         break;
292                 case TP_HANDLE_TYPE_ROOM:
293                         empathy_join_muc (account, priv->id,
294                                 TP_USER_ACTION_TIME_NOT_USER_ACTION);
295                         break;
296                 case TP_HANDLE_TYPE_NONE:
297                 case TP_HANDLE_TYPE_LIST:
298                 case TP_HANDLE_TYPE_GROUP:
299                 default:
300                         g_assert_not_reached ();
301                         break;
302         }
303
304         g_object_unref (chat);
305 }
306
307 static void
308 chat_new_connection_cb (TpAccount   *account,
309                         guint        old_status,
310                         guint        new_status,
311                         guint        reason,
312                         gchar       *dbus_error_name,
313                         GHashTable  *details,
314                         EmpathyChat *chat)
315 {
316         EmpathyChatPriv *priv = GET_PRIV (chat);
317
318         if (new_status != TP_CONNECTION_STATUS_CONNECTED)
319                 return;
320
321         if (priv->tp_chat != NULL || account != priv->account ||
322             priv->handle_type == TP_HANDLE_TYPE_NONE ||
323             EMP_STR_EMPTY (priv->id))
324                 return;
325
326         g_object_ref (chat);
327
328         account_reconnected (chat, account);
329 }
330
331 static void
332 chat_composing_remove_timeout (EmpathyChat *chat)
333 {
334         EmpathyChatPriv *priv;
335
336         priv = GET_PRIV (chat);
337
338         if (priv->composing_stop_timeout_id) {
339                 g_source_remove (priv->composing_stop_timeout_id);
340                 priv->composing_stop_timeout_id = 0;
341         }
342 }
343
344 static void
345 set_chate_state_cb (GObject *source,
346                     GAsyncResult *result,
347                     gpointer user_data)
348 {
349         GError *error = NULL;
350
351         if (!tp_text_channel_set_chat_state_finish (TP_TEXT_CHANNEL (source), result,
352                 &error)) {
353                 DEBUG ("Failed to set chat state: %s", error->message);
354                 g_error_free (error);
355         }
356 }
357
358 static void
359 set_chat_state (EmpathyChat *self,
360                 TpChannelChatState state)
361 {
362         EmpathyChatPriv *priv = GET_PRIV (self);
363
364         if (!tp_proxy_has_interface_by_id (priv->tp_chat,
365                 TP_IFACE_QUARK_CHANNEL_INTERFACE_CHAT_STATE))
366                 return;
367
368         tp_text_channel_set_chat_state_async (TP_TEXT_CHANNEL (priv->tp_chat), state,
369                 set_chate_state_cb, self);
370 }
371
372 static gboolean
373 chat_composing_stop_timeout_cb (EmpathyChat *chat)
374 {
375         EmpathyChatPriv *priv;
376
377         priv = GET_PRIV (chat);
378
379         priv->composing_stop_timeout_id = 0;
380         set_chat_state (chat, TP_CHANNEL_CHAT_STATE_PAUSED);
381
382         return FALSE;
383 }
384
385 static void
386 chat_composing_start (EmpathyChat *chat)
387 {
388         EmpathyChatPriv *priv;
389
390         priv = GET_PRIV (chat);
391
392         if (priv->composing_stop_timeout_id) {
393                 /* Just restart the timeout */
394                 chat_composing_remove_timeout (chat);
395         } else {
396                 set_chat_state (chat, TP_CHANNEL_CHAT_STATE_COMPOSING);
397         }
398
399         priv->composing_stop_timeout_id = g_timeout_add_seconds (
400                 COMPOSING_STOP_TIMEOUT,
401                 (GSourceFunc) chat_composing_stop_timeout_cb,
402                 chat);
403 }
404
405 static void
406 chat_composing_stop (EmpathyChat *chat)
407 {
408         chat_composing_remove_timeout (chat);
409         set_chat_state (chat, TP_CHANNEL_CHAT_STATE_ACTIVE);
410 }
411
412 static gint
413 chat_input_history_entry_cmp (InputHistoryEntry *entry,
414                               const gchar *text)
415 {
416         if (!tp_strdiff (entry->text, text)) {
417                 if (entry->modified_text != NULL) {
418                         /* Modified entry and single string cannot be equal. */
419                         return 1;
420                 }
421                 return 0;
422         }
423         return 1;
424 }
425
426 static InputHistoryEntry *
427 chat_input_history_entry_new_with_text (const gchar *text)
428 {
429         InputHistoryEntry *entry;
430         entry = g_slice_new0 (InputHistoryEntry);
431         entry->text = g_strdup (text);
432
433         return entry;
434 }
435
436 static void
437 chat_input_history_entry_free (InputHistoryEntry *entry)
438 {
439         g_free (entry->text);
440         g_free (entry->modified_text);
441         g_slice_free (InputHistoryEntry, entry);
442 }
443
444 static void
445 chat_input_history_entry_revert (InputHistoryEntry *entry)
446 {
447         g_free (entry->modified_text);
448         entry->modified_text = NULL;
449 }
450
451 static void
452 chat_input_history_entry_update_text (InputHistoryEntry *entry,
453                                       const gchar *text)
454 {
455         gchar *old;
456
457         if (!tp_strdiff (text, entry->text)) {
458                 g_free (entry->modified_text);
459                 entry->modified_text = NULL;
460                 return;
461         }
462
463         old = entry->modified_text;
464         entry->modified_text = g_strdup (text);
465         g_free (old);
466 }
467
468 static const gchar *
469 chat_input_history_entry_get_text (InputHistoryEntry *entry)
470 {
471         if (entry == NULL) {
472                 return NULL;
473         }
474
475         if (entry->modified_text != NULL) {
476                 return entry->modified_text;
477         }
478         return entry->text;
479 }
480
481 static GList *
482 chat_input_history_remove_item (GList *list,
483                                 GList *item)
484 {
485         list = g_list_remove_link (list, item);
486         chat_input_history_entry_free (item->data);
487         g_list_free_1 (item);
488         return list;
489 }
490
491 static void
492 chat_input_history_revert (EmpathyChat *chat)
493 {
494         EmpathyChatPriv   *priv;
495         GList             *list;
496         GList             *item1;
497         GList             *item2;
498         InputHistoryEntry *entry;
499
500         priv = GET_PRIV (chat);
501         list = priv->input_history;
502
503         if (list == NULL) {
504                 DEBUG ("No input history");
505                 return;
506         }
507
508         /* Delete temporary entry */
509         if (priv->input_history_current != NULL) {
510                 item1 = list;
511                 list = chat_input_history_remove_item (list, item1);
512                 if (priv->input_history_current == item1) {
513                         /* Removed temporary entry was current entry */
514                         priv->input_history = list;
515                         priv->input_history_current = NULL;
516                         return;
517                 }
518         }
519         else {
520                 /* There is no entry to revert */
521                 return;
522         }
523
524         /* Restore the current history entry to original value */
525         item1 = priv->input_history_current;
526         entry = item1->data;
527         chat_input_history_entry_revert (entry);
528
529         /* Remove restored entry if there is other occurance before this entry */
530         item2 = g_list_find_custom (list, chat_input_history_entry_get_text (entry),
531                                     (GCompareFunc) chat_input_history_entry_cmp);
532         if (item2 != item1) {
533                 list = chat_input_history_remove_item (list, item1);
534         }
535         else {
536                 /* Remove other occurance of the restored entry */
537                 item2 = g_list_find_custom (item1->next,
538                                             chat_input_history_entry_get_text (entry),
539                                             (GCompareFunc) chat_input_history_entry_cmp);
540                 if (item2 != NULL) {
541                         list = chat_input_history_remove_item (list, item2);
542                 }
543         }
544
545         priv->input_history_current = NULL;
546         priv->input_history = list;
547 }
548
549 static void
550 chat_input_history_add (EmpathyChat  *chat,
551                         const gchar *str,
552                         gboolean temporary)
553 {
554         EmpathyChatPriv   *priv;
555         GList             *list;
556         GList             *item;
557         InputHistoryEntry *entry;
558
559         priv = GET_PRIV (chat);
560
561         list = priv->input_history;
562
563         /* Remove any other occurances of this entry, if not temporary */
564         if (!temporary) {
565                 while ((item = g_list_find_custom (list, str,
566                     (GCompareFunc) chat_input_history_entry_cmp)) != NULL) {
567                         list = chat_input_history_remove_item (list, item);
568                 }
569
570                 /* Trim the list to the last 10 items */
571                 while (g_list_length (list) > 10) {
572                         item = g_list_last (list);
573                         if (item != NULL) {
574                                 list = chat_input_history_remove_item (list, item);
575                         }
576                 }
577         }
578
579
580
581         /* Add new entry */
582         entry = chat_input_history_entry_new_with_text (str);
583         list = g_list_prepend (list, entry);
584
585         /* Set the list and the current item pointer */
586         priv->input_history = list;
587         if (temporary) {
588                 priv->input_history_current = list;
589         }
590         else {
591                 priv->input_history_current = NULL;
592         }
593 }
594
595 static const gchar *
596 chat_input_history_get_next (EmpathyChat *chat)
597 {
598         EmpathyChatPriv *priv;
599         GList           *item;
600         const gchar     *msg;
601
602         priv = GET_PRIV (chat);
603
604         if (priv->input_history == NULL) {
605                 DEBUG ("No input history, next entry is NULL");
606                 return NULL;
607         }
608         g_assert (priv->input_history_current != NULL);
609
610         if ((item = g_list_next (priv->input_history_current)) == NULL)
611         {
612                 item = priv->input_history_current;
613         }
614
615         msg = chat_input_history_entry_get_text (item->data);
616
617         DEBUG ("Returning next entry: '%s'", msg);
618
619         priv->input_history_current = item;
620
621         return msg;
622 }
623
624 static const gchar *
625 chat_input_history_get_prev (EmpathyChat *chat)
626 {
627         EmpathyChatPriv *priv;
628         GList           *item;
629         const gchar     *msg;
630
631         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
632
633         priv = GET_PRIV (chat);
634
635         if (priv->input_history == NULL) {
636                 DEBUG ("No input history, previous entry is NULL");
637                 return NULL;
638         }
639
640         if (priv->input_history_current == NULL)
641         {
642                 return NULL;
643         }
644         else if ((item = g_list_previous (priv->input_history_current)) == NULL)
645         {
646                 item = priv->input_history_current;
647         }
648
649         msg = chat_input_history_entry_get_text (item->data);
650
651         DEBUG ("Returning previous entry: '%s'", msg);
652
653         priv->input_history_current = item;
654
655         return msg;
656 }
657
658 static void
659 chat_input_history_update (EmpathyChat *chat,
660                            GtkTextBuffer *buffer)
661 {
662         EmpathyChatPriv      *priv;
663         GtkTextIter           start, end;
664         gchar                *text;
665         InputHistoryEntry    *entry;
666
667         priv = GET_PRIV (chat);
668
669         gtk_text_buffer_get_bounds (buffer, &start, &end);
670         text = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
671
672         if (priv->input_history_current == NULL) {
673                 /* Add the current text temporarily to the history */
674                 chat_input_history_add (chat, text, TRUE);
675                 g_free (text);
676                 return;
677         }
678
679         /* Save the changes in the history */
680         entry = priv->input_history_current->data;
681         if (tp_strdiff (chat_input_history_entry_get_text (entry), text)) {
682                 chat_input_history_entry_update_text (entry, text);
683         }
684
685         g_free (text);
686 }
687
688 typedef struct {
689         EmpathyChat *chat;
690         gchar *message;
691 } ChatCommandMsgData;
692
693 static void
694 chat_command_msg_cb (GObject *source,
695                               GAsyncResult *result,
696                               gpointer                  user_data)
697 {
698         ChatCommandMsgData *data = user_data;
699         GError *error = NULL;
700         TpChannel *channel;
701
702         channel = tp_account_channel_request_ensure_and_observe_channel_finish (
703                                         TP_ACCOUNT_CHANNEL_REQUEST (source), result, &error);
704
705         if (channel == NULL) {
706                 DEBUG ("Failed to get channel: %s", error->message);
707                 g_error_free (error);
708
709                 empathy_chat_view_append_event (data->chat->view,
710                         _("Failed to open private chat"));
711                 goto OUT;
712         }
713
714         if (!EMP_STR_EMPTY (data->message) && TP_IS_TEXT_CHANNEL (channel)) {
715                 TpTextChannel *text = (TpTextChannel *) channel;
716                 TpMessage *msg;
717
718                 msg = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL,
719                         data->message);
720
721                 tp_text_channel_send_message_async (text, msg, 0, NULL, NULL);
722
723                 g_object_unref (msg);
724         }
725
726         g_object_unref (channel);
727
728 OUT:
729         g_free (data->message);
730         g_slice_free (ChatCommandMsgData, data);
731 }
732
733 static gboolean
734 nick_command_supported (EmpathyChat *chat)
735 {
736         EmpathyChatPriv * priv = GET_PRIV (chat);
737         TpConnection    *connection;
738
739         connection = tp_channel_borrow_connection (TP_CHANNEL (priv->tp_chat));
740         return tp_proxy_has_interface_by_id (connection,
741                 EMP_IFACE_QUARK_CONNECTION_INTERFACE_RENAMING);
742 }
743
744 static gboolean
745 part_command_supported (EmpathyChat *chat)
746 {
747         EmpathyChatPriv * priv = GET_PRIV (chat);
748
749         return tp_proxy_has_interface_by_id (priv->tp_chat,
750                         TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP);
751 }
752
753 static void
754 chat_command_clear (EmpathyChat *chat,
755                     GStrv        strv)
756 {
757         empathy_chat_view_clear (chat->view);
758 }
759
760 static void
761 chat_command_topic (EmpathyChat *chat,
762                     GStrv        strv)
763 {
764         EmpathyChatPriv *priv = GET_PRIV (chat);
765
766         if (!empathy_tp_chat_supports_subject (priv->tp_chat)) {
767                 empathy_chat_view_append_event (chat->view,
768                         _("Topic not supported on this conversation"));
769                 return;
770         }
771
772         if (!empathy_tp_chat_can_set_subject (priv->tp_chat)) {
773                 empathy_chat_view_append_event (chat->view,
774                         _("You are not allowed to change the topic"));
775                 return;
776         }
777
778         empathy_tp_chat_set_subject (priv->tp_chat, strv[1]);
779 }
780
781 void
782 empathy_chat_join_muc (EmpathyChat *chat,
783                    const gchar   *room)
784 {
785         EmpathyChatPriv *priv = GET_PRIV (chat);
786
787         empathy_join_muc (priv->account, room,
788                 empathy_get_current_action_time ());
789 }
790
791 static void
792 chat_command_join (EmpathyChat *chat,
793                    GStrv        strv)
794 {
795         guint i = 0;
796
797         GStrv rooms = g_strsplit_set (strv[1], ", ", -1);
798
799         /* FIXME: Ideally we should ask to handle ourself the channel so we can
800         * report the error if any but this is blocked by
801         * https://bugs.freedesktop.org/show_bug.cgi?id=13422 */
802         while (rooms[i] != NULL) {
803                 /* ignore empty strings */
804                 if (!EMP_STR_EMPTY (rooms[i])) {
805                         empathy_chat_join_muc (chat, rooms[i]);
806                 }
807                 i++;
808         }
809         g_strfreev (rooms);
810 }
811
812 static void
813 chat_command_part (EmpathyChat *chat,
814                            GStrv        strv)
815 {
816         g_signal_emit (chat, signals[PART_COMMAND_ENTERED], 0, strv);
817 }
818
819 static void
820 chat_command_msg_internal (EmpathyChat *chat,
821                            const gchar *contact_id,
822                            const gchar *message)
823 {
824         EmpathyChatPriv *priv = GET_PRIV (chat);
825         ChatCommandMsgData *data;
826         TpAccountChannelRequest *req;
827         GHashTable *request;
828
829         request = tp_asv_new (
830                 TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
831                 TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
832                 TP_PROP_CHANNEL_TARGET_ID, G_TYPE_STRING, contact_id,
833                 NULL);
834
835         req = tp_account_channel_request_new (priv->account, request,
836                 empathy_get_current_action_time ());
837
838         /* FIXME: We should probably search in members alias. But this
839          * is enough for IRC */
840         data = g_slice_new (ChatCommandMsgData);
841         data->chat = chat;
842         data->message = g_strdup (message);
843
844         tp_account_channel_request_ensure_and_observe_channel_async (req,
845                 EMPATHY_CHAT_BUS_NAME, NULL, chat_command_msg_cb, data);
846
847         g_object_unref (req);
848         g_hash_table_unref (request);
849 }
850
851 static void
852 chat_command_query (EmpathyChat *chat,
853                     GStrv        strv)
854 {
855         /* If <message> part is not defined,
856          * strv[2] will be the terminal NULL */
857         chat_command_msg_internal (chat, strv[1], strv[2]);
858 }
859
860 static void
861 chat_command_msg (EmpathyChat *chat,
862                   GStrv        strv)
863 {
864         chat_command_msg_internal (chat, strv[1], strv[2]);
865 }
866
867 static void
868 callback_for_request_rename (TpProxy *proxy,
869                   const GError *error,
870                   gpointer user_data,
871                   GObject *weak_object)
872 {
873         if (error != NULL) {
874                 DEBUG ("Call to RequestRename method failed: %s",error->message);
875         }
876 }
877
878 static void
879 chat_command_nick (EmpathyChat *chat,
880                    GStrv        strv)
881 {
882         EmpathyChatPriv *priv = GET_PRIV (chat);
883         TpProxy *proxy;
884
885         proxy = TP_PROXY (tp_account_get_connection (priv->account));
886
887         emp_cli_connection_interface_renaming_call_request_rename (proxy, -1,
888                 strv[1], callback_for_request_rename, NULL, NULL, NULL);
889 }
890
891 static void
892 chat_command_me (EmpathyChat *chat,
893                   GStrv        strv)
894 {
895         EmpathyChatPriv *priv = GET_PRIV (chat);
896         TpMessage *message;
897         TpTextChannel *channel;
898
899         channel = (TpTextChannel *) (priv->tp_chat);
900
901         if (!tp_text_channel_supports_message_type (channel,
902                         TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION)) {
903                 /* Action message are not supported, 'simulate' the action */
904                 gchar *tmp;
905
906                 /* The TpChat can't be ready if it doesn't have the self contact */
907                 g_assert (priv->self_contact != NULL);
908
909                 tmp = g_strdup_printf ("%s %s", empathy_contact_get_alias (priv->self_contact),
910                         strv[1]);
911                 message = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL,
912                         tmp);
913                 g_free (tmp);
914         }
915         else {
916                 message = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION,
917                         strv[1]);
918         }
919
920         empathy_tp_chat_send (priv->tp_chat, message);
921         g_object_unref (message);
922 }
923
924 static void
925 chat_command_say (EmpathyChat *chat,
926                   GStrv        strv)
927 {
928         EmpathyChatPriv *priv = GET_PRIV (chat);
929         TpMessage *message;
930
931         message = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL,
932                 strv[1]);
933         empathy_tp_chat_send (priv->tp_chat, message);
934         g_object_unref (message);
935 }
936
937 static void
938 whois_got_contact_cb (TpConnection *connection,
939                       guint n_contacts,
940                       TpContact * const *contacts,
941                       const gchar * const *requested_ids,
942                       GHashTable *failed_id_errors,
943                       const GError *error,
944                       gpointer user_data,
945                       GObject *weak_object)
946 {
947         EmpathyChat *chat = EMPATHY_CHAT (weak_object);
948
949         g_return_if_fail (n_contacts <= 1);
950
951         if (n_contacts == 0) {
952                 GHashTableIter iter;
953                 gpointer key = NULL, value = NULL;
954                 gchar *id;
955                 GError *id_error;
956
957                 /* tp-glib guarantees that the contacts you requested will be
958                  * in failed_id_errors regardless of whether the individual
959                  * contact was invalid or the whole operation failed.
960                  */
961                 g_hash_table_iter_init (&iter, failed_id_errors);
962                 g_hash_table_iter_next (&iter, &key, &value);
963                 id = key;
964                 id_error = value;
965
966                 DEBUG ("Error getting TpContact for '%s': %s %u %s",
967                         id, g_quark_to_string (id_error->domain),
968                         id_error->code, id_error->message);
969
970                 if (error == NULL) {
971                         /* The specific ID failed. */
972                         gchar *event = g_strdup_printf (
973                                 _("“%s” is not a valid contact ID"), id);
974                         empathy_chat_view_append_event (chat->view, event);
975                         g_free (event);
976                 }
977                 /* Otherwise we're disconnected or something; so the window
978                  * will already say ‘Disconnected’, so let's not show anything.
979                  */
980         } else {
981                 EmpathyContact *empathy_contact;
982                 GtkWidget *window;
983
984                 g_return_if_fail (contacts[0] != NULL);
985                 empathy_contact = empathy_contact_dup_from_tp_contact (
986                         contacts[0]);
987
988                 window = gtk_widget_get_toplevel (GTK_WIDGET (chat));
989                 /* If we're alive and this command is running, we'd better be
990                  * in a window. */
991                 g_return_if_fail (window != NULL);
992                 g_return_if_fail (gtk_widget_is_toplevel (window));
993                 empathy_contact_information_dialog_show (empathy_contact,
994                         GTK_WINDOW (window));
995                 g_object_unref (empathy_contact);
996         }
997 }
998
999 static void
1000 chat_command_whois (EmpathyChat *chat,
1001                     GStrv strv)
1002 {
1003         EmpathyChatPriv *priv = GET_PRIV (chat);
1004         TpConnection *conn;
1005
1006         conn = tp_channel_borrow_connection ((TpChannel *) priv->tp_chat);
1007         tp_connection_get_contacts_by_id (conn,
1008                 /* Element 0 of 'strv' is "whois"; element 1 is the contact ID
1009                  * entered by the user (including spaces, if any). */
1010                 1, (const gchar * const *) strv + 1,
1011                 0, NULL,
1012                 whois_got_contact_cb, NULL, NULL, G_OBJECT (chat));
1013 }
1014
1015 static void
1016 chat_command_whale (EmpathyChat *chat,
1017                     GStrv        strv)
1018 {
1019         EmpathyChatPriv *priv = GET_PRIV (chat);
1020         TpMessage *message;
1021
1022         message = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL,
1023                 "\n\n\n"
1024                 "•_______________•");
1025         empathy_tp_chat_send (priv->tp_chat, message);
1026         g_object_unref (message);
1027 }
1028
1029 static void
1030 chat_command_babywhale (EmpathyChat *chat,
1031                         GStrv        strv)
1032 {
1033         EmpathyChatPriv *priv = GET_PRIV (chat);
1034         TpMessage *message;
1035
1036         message = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL,
1037                 "\n"
1038                 "•_____•");
1039         empathy_tp_chat_send (priv->tp_chat, message);
1040         g_object_unref (message);
1041 }
1042
1043 static void
1044 chat_command_inspector (EmpathyChat *chat,
1045                     GStrv        strv)
1046 {
1047         if (EMPATHY_IS_THEME_ADIUM (chat->view)) {
1048                 empathy_theme_adium_show_inspector (
1049                         EMPATHY_THEME_ADIUM (chat->view));
1050         }
1051 }
1052
1053 static void chat_command_help (EmpathyChat *chat, GStrv strv);
1054
1055 typedef void (*ChatCommandFunc) (EmpathyChat *chat, GStrv strv);
1056
1057 typedef struct {
1058         const gchar *prefix;
1059         guint min_parts;
1060         guint max_parts;
1061         ChatCommandFunc func;
1062         gboolean (*is_supported)(EmpathyChat *chat);
1063         const gchar *help;
1064 } ChatCommandItem;
1065
1066 static ChatCommandItem commands[] = {
1067         {"clear", 1, 1, chat_command_clear, NULL,
1068          N_("/clear: clear all messages from the current conversation")},
1069
1070         {"topic", 2, 2, chat_command_topic, NULL,
1071          N_("/topic <topic>: set the topic of the current conversation")},
1072
1073         {"join", 2, 2, chat_command_join, NULL,
1074          N_("/join <chat room ID>: join a new chat room")},
1075
1076         {"j", 2, 2, chat_command_join, NULL,
1077          N_("/j <chat room ID>: join a new chat room")},
1078
1079         /* FIXME: https://bugzilla.gnome.org/show_bug.cgi?id=643295 */
1080         {"part", 1, 3, chat_command_part, part_command_supported,
1081          N_("/part [<chat room ID>] [<reason>]: leave the chat room, "
1082             "by default the current one")},
1083
1084         {"query", 2, 3, chat_command_query, NULL,
1085          N_("/query <contact ID> [<message>]: open a private chat")},
1086
1087         {"msg", 3, 3, chat_command_msg, NULL,
1088          N_("/msg <contact ID> <message>: open a private chat")},
1089
1090         {"nick", 2, 2, chat_command_nick, nick_command_supported,
1091          N_("/nick <nickname>: change your nickname on the current server")},
1092
1093         {"me", 2, 2, chat_command_me, NULL,
1094          N_("/me <message>: send an ACTION message to the current conversation")},
1095
1096         {"say", 2, 2, chat_command_say, NULL,
1097          N_("/say <message>: send <message> to the current conversation. "
1098             "This is used to send a message starting with a '/'. For example: "
1099             "\"/say /join is used to join a new chat room\"")},
1100
1101         {"whois", 2, 2, chat_command_whois, NULL,
1102          N_("/whois <contact ID>: display information about a contact")},
1103
1104         {"help", 1, 2, chat_command_help, NULL,
1105          N_("/help [<command>]: show all supported commands. "
1106             "If <command> is defined, show its usage.")},
1107
1108         {"inspector", 1, 1, chat_command_inspector, NULL, NULL},
1109
1110         {"whale", 1, 1, chat_command_whale, NULL, NULL},
1111         {"babywhale", 1, 1, chat_command_babywhale, NULL, NULL},
1112 };
1113
1114 static void
1115 chat_command_show_help (EmpathyChat     *chat,
1116                         ChatCommandItem *item)
1117 {
1118         gchar *str;
1119
1120         if (item->help == NULL) {
1121                 return;
1122         }
1123
1124         str = g_strdup_printf (_("Usage: %s"), _(item->help));
1125         empathy_chat_view_append_event (chat->view, str);
1126         g_free (str);
1127 }
1128
1129 static void
1130 chat_command_help (EmpathyChat *chat,
1131                    GStrv        strv)
1132 {
1133         guint i;
1134
1135         /* If <command> part is not defined,
1136          * strv[1] will be the terminal NULL */
1137         if (strv[1] == NULL) {
1138                 for (i = 0; i < G_N_ELEMENTS (commands); i++) {
1139                         if (commands[i].is_supported != NULL) {
1140                                 if (!commands[i].is_supported (chat)) {
1141                                         continue;
1142                                 }
1143                         }
1144                         if (commands[i].help == NULL) {
1145                                 continue;
1146                         }
1147                         empathy_chat_view_append_event (chat->view,
1148                                 _(commands[i].help));
1149                 }
1150                 return;
1151         }
1152
1153         for (i = 0; i < G_N_ELEMENTS (commands); i++) {
1154                 if (g_ascii_strcasecmp (strv[1], commands[i].prefix) == 0) {
1155                         if (commands[i].is_supported != NULL) {
1156                                 if (!commands[i].is_supported (chat)) {
1157                                         break;
1158                                 }
1159                         }
1160                         if (commands[i].help == NULL) {
1161                                 break;
1162                         }
1163                         chat_command_show_help (chat, &commands[i]);
1164                         return;
1165                 }
1166         }
1167
1168         empathy_chat_view_append_event (chat->view,
1169                 _("Unknown command"));
1170 }
1171
1172 static GStrv
1173 chat_command_parse (const gchar *text, guint max_parts)
1174 {
1175         GPtrArray *array;
1176         gchar *item;
1177
1178         DEBUG ("Parse command, parts=%d text=\"%s\":", max_parts, text);
1179
1180         array = g_ptr_array_sized_new (max_parts + 1);
1181         while (max_parts > 1) {
1182                 const gchar *end;
1183
1184                 /* Skip white spaces */
1185                 while (g_ascii_isspace (*text)) {
1186                         text++;
1187                 }
1188
1189                 /* Search the end of this part, until first space. */
1190                 for (end = text; *end != '\0' && !g_ascii_isspace (*end); end++)
1191                         /* Do nothing */;
1192                 if (*end == '\0') {
1193                         break;
1194                 }
1195
1196                 item = g_strndup (text, end - text);
1197                 g_ptr_array_add (array, item);
1198                 DEBUG ("\tITEM: \"%s\"", item);
1199
1200                 text = end;
1201                 max_parts--;
1202         }
1203
1204         /* Append last part if not empty */
1205         item = g_strstrip (g_strdup (text));
1206         if (!EMP_STR_EMPTY (item)) {
1207                 g_ptr_array_add (array, item);
1208                 DEBUG ("\tITEM: \"%s\"", item);
1209         } else {
1210                 g_free (item);
1211         }
1212
1213         /* Make the array NULL-terminated */
1214         g_ptr_array_add (array, NULL);
1215
1216         return (GStrv) g_ptr_array_free (array, FALSE);
1217 }
1218
1219 static gboolean
1220 has_prefix_case (const gchar *s,
1221                   const gchar *prefix)
1222 {
1223         return g_ascii_strncasecmp (s, prefix, strlen (prefix)) == 0;
1224 }
1225
1226 static void
1227 chat_send (EmpathyChat  *chat,
1228            const gchar *msg)
1229 {
1230         EmpathyChatPriv *priv;
1231         TpMessage  *message;
1232         guint            i;
1233
1234         if (EMP_STR_EMPTY (msg)) {
1235                 return;
1236         }
1237
1238         priv = GET_PRIV (chat);
1239
1240         chat_input_history_add (chat, msg, FALSE);
1241
1242         if (msg[0] == '/') {
1243                 gboolean second_slash = FALSE;
1244                 const gchar *iter = msg + 1;
1245
1246                 for (i = 0; i < G_N_ELEMENTS (commands); i++) {
1247                         GStrv strv;
1248                         guint strv_len;
1249                         gchar c;
1250
1251                         if (!has_prefix_case (msg + 1, commands[i].prefix)) {
1252                                 continue;
1253                         }
1254                         c = *(msg + 1 + strlen (commands[i].prefix));
1255                         if (c != '\0' && !g_ascii_isspace (c)) {
1256                                 continue;
1257                         }
1258                         if (commands[i].is_supported != NULL) {
1259                                 if (!commands[i].is_supported (chat)) {
1260                                         continue;
1261                                 }
1262                         }
1263
1264                         /* We can't use g_strsplit here because it does
1265                          * not deal correctly if we have more than one space
1266                          * between args */
1267                         strv = chat_command_parse (msg + 1, commands[i].max_parts);
1268
1269                         strv_len = g_strv_length (strv);
1270                         if (strv_len < commands[i].min_parts ||
1271                             strv_len > commands[i].max_parts) {
1272                                 chat_command_show_help (chat, &commands[i]);
1273                                 g_strfreev (strv);
1274                                 return;
1275                         }
1276
1277                         commands[i].func (chat, strv);
1278                         g_strfreev (strv);
1279                         return;
1280                 }
1281
1282                 /* Also allow messages with two slashes before the
1283                  * first space, so it is possible to send a /unix/path.
1284                  * This heuristic is kind of crap. */
1285                 while (*iter != '\0' && !g_ascii_isspace (*iter)) {
1286                         if (*iter == '/') {
1287                                 second_slash = TRUE;
1288                                 break;
1289                         }
1290                         iter++;
1291                 }
1292
1293                 if (!second_slash) {
1294                         empathy_chat_view_append_event (chat->view,
1295                                 _("Unknown command; see /help for the available"
1296                                   " commands"));
1297                         return;
1298                 }
1299         }
1300
1301         message = tp_client_message_new_text (TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL,
1302                 msg);
1303         empathy_tp_chat_send (priv->tp_chat, message);
1304         g_object_unref (message);
1305 }
1306
1307 static void
1308 chat_input_text_view_send (EmpathyChat *chat)
1309 {
1310         GtkTextBuffer  *buffer;
1311         GtkTextIter     start, end;
1312         gchar          *msg;
1313
1314         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
1315
1316         gtk_text_buffer_get_bounds (buffer, &start, &end);
1317         msg = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
1318
1319         /* clear the input field */
1320         gtk_text_buffer_set_text (buffer, "", -1);
1321         /* delete input history modifications */
1322         chat_input_history_revert (chat);
1323
1324         chat_send (chat, msg);
1325         g_free (msg);
1326 }
1327
1328 static void
1329 chat_state_changed_cb (EmpathyTpChat      *tp_chat,
1330                        EmpathyContact     *contact,
1331                        TpChannelChatState  state,
1332                        EmpathyChat        *chat)
1333 {
1334         EmpathyChatPriv *priv;
1335         GList          *l;
1336         gboolean        was_composing;
1337
1338         priv = GET_PRIV (chat);
1339
1340         if (empathy_contact_is_user (contact)) {
1341                 /* We don't care about our own chat state */
1342                 return;
1343         }
1344
1345         was_composing = (priv->compositors != NULL);
1346
1347         /* Find the contact in the list. After that l is the list elem or NULL */
1348         for (l = priv->compositors; l; l = l->next) {
1349                 if (contact == l->data) {
1350                         break;
1351                 }
1352         }
1353
1354         switch (state) {
1355         case TP_CHANNEL_CHAT_STATE_GONE:
1356         case TP_CHANNEL_CHAT_STATE_INACTIVE:
1357         case TP_CHANNEL_CHAT_STATE_PAUSED:
1358         case TP_CHANNEL_CHAT_STATE_ACTIVE:
1359                 /* Contact is not composing */
1360                 if (l) {
1361                         priv->compositors = g_list_remove_link (priv->compositors, l);
1362                         g_object_unref (l->data);
1363                         g_list_free1 (l);
1364                 }
1365                 break;
1366         case TP_CHANNEL_CHAT_STATE_COMPOSING:
1367                 /* Contact is composing */
1368                 if (!l) {
1369                         priv->compositors = g_list_prepend (priv->compositors,
1370                                                             g_object_ref (contact));
1371                 }
1372                 break;
1373         default:
1374                 g_assert_not_reached ();
1375         }
1376
1377         DEBUG ("Was composing: %s now composing: %s",
1378                 was_composing ? "yes" : "no",
1379                 priv->compositors ? "yes" : "no");
1380
1381         if ((was_composing && !priv->compositors) ||
1382             (!was_composing && priv->compositors)) {
1383                 /* Composing state changed */
1384                 g_signal_emit (chat, signals[COMPOSING], 0,
1385                                priv->compositors != NULL);
1386         }
1387 }
1388
1389 static GRegex *
1390 get_highlight_regex_for (const gchar *name)
1391 {
1392         GRegex *regex;
1393         gchar *name_esc, *pattern;
1394         GError *error = NULL;
1395
1396         name_esc = g_regex_escape_string (name, -1);
1397         pattern = g_strdup_printf ("\\b%s\\b", name_esc);
1398         regex = g_regex_new (pattern, G_REGEX_CASELESS | G_REGEX_OPTIMIZE, 0,
1399                 &error);
1400
1401         if (regex == NULL) {
1402                 DEBUG ("couldn't compile regex /%s/: %s", pattern,
1403                         error->message);
1404
1405                 g_error_free (error);
1406         }
1407
1408         g_free (pattern);
1409         g_free (name_esc);
1410
1411         return regex;
1412 }
1413
1414 /* Called when priv->self_contact changes, or priv->self_contact:alias changes.
1415  * Only connected if empathy_chat_is_room() is TRUE, for obvious-ish reasons.
1416  */
1417 static void
1418 chat_self_contact_alias_changed_cb (EmpathyChat *chat)
1419 {
1420         EmpathyChatPriv *priv = GET_PRIV (chat);
1421
1422         tp_clear_pointer (&priv->highlight_regex, g_regex_unref);
1423
1424         if (priv->self_contact != NULL) {
1425                 const gchar *alias = empathy_contact_get_alias (priv->self_contact);
1426
1427                 g_return_if_fail (alias != NULL);
1428                 priv->highlight_regex = get_highlight_regex_for (alias);
1429         }
1430 }
1431
1432 static gboolean
1433 chat_should_highlight (EmpathyChat *chat,
1434         EmpathyMessage *message)
1435 {
1436         EmpathyChatPriv *priv = GET_PRIV (chat);
1437         const gchar   *msg;
1438         TpChannelTextMessageFlags flags;
1439
1440         g_return_val_if_fail (EMPATHY_IS_MESSAGE (message), FALSE);
1441
1442         if (!empathy_chat_is_room (chat)) {
1443                 return FALSE;
1444         }
1445
1446         if (!empathy_message_is_incoming (message)) {
1447                 return FALSE;
1448         }
1449
1450         msg = empathy_message_get_body (message);
1451         if (!msg) {
1452                 return FALSE;
1453         }
1454
1455         flags = empathy_message_get_flags (message);
1456         if (flags & TP_CHANNEL_TEXT_MESSAGE_FLAG_SCROLLBACK) {
1457                 /* FIXME: Ideally we shouldn't highlight scrollback messages only if they
1458                  * have already been received by the user before (and so are in the logs) */
1459                 return FALSE;
1460         }
1461
1462         if (priv->highlight_regex == NULL) {
1463                 return FALSE;
1464         }
1465
1466         return g_regex_match (priv->highlight_regex, msg, 0, NULL);
1467 }
1468
1469 static void
1470 chat_message_received (EmpathyChat *chat,
1471         EmpathyMessage *message,
1472         gboolean pending)
1473 {
1474         EmpathyChatPriv *priv = GET_PRIV (chat);
1475         EmpathyContact  *sender;
1476
1477         sender = empathy_message_get_sender (message);
1478
1479         if (empathy_message_is_edit (message)) {
1480                 DEBUG ("Editing message '%s' to '%s'",
1481                         empathy_message_get_supersedes (message),
1482                         empathy_message_get_body (message));
1483
1484                 empathy_chat_view_edit_message (chat->view, message);
1485         } else {
1486                 gboolean should_highlight = chat_should_highlight (chat, message);
1487                 DEBUG ("Appending new message '%s' from %s (%d)",
1488                         empathy_message_get_token (message),
1489                         empathy_contact_get_alias (sender),
1490                         empathy_contact_get_handle (sender));
1491
1492                 empathy_chat_view_append_message (chat->view, message, should_highlight);
1493
1494                 if (empathy_message_is_incoming (message)) {
1495                         priv->unread_messages++;
1496                         g_object_notify (G_OBJECT (chat), "nb-unread-messages");
1497                 }
1498
1499                 g_signal_emit (chat, signals[NEW_MESSAGE], 0, message, pending,
1500                                should_highlight);
1501         }
1502
1503         /* We received a message so the contact is no longer
1504          * composing */
1505         chat_state_changed_cb (priv->tp_chat, sender,
1506                                TP_CHANNEL_CHAT_STATE_ACTIVE,
1507                                chat);
1508 }
1509
1510 static void
1511 chat_message_received_cb (EmpathyTpChat  *tp_chat,
1512                           EmpathyMessage *message,
1513                           EmpathyChat    *chat)
1514 {
1515         chat_message_received (chat, message, FALSE);
1516 }
1517
1518 static void
1519 chat_message_acknowledged_cb (EmpathyTpChat  *tp_chat,
1520                               EmpathyMessage *message,
1521                               EmpathyChat    *chat)
1522 {
1523         EmpathyChatPriv *priv = GET_PRIV (chat);
1524
1525         empathy_chat_view_message_acknowledged (chat->view,
1526             message);
1527
1528         if (!empathy_message_is_edit (message)) {
1529                 priv->unread_messages--;
1530                 g_object_notify (G_OBJECT (chat), "nb-unread-messages");
1531         }
1532 }
1533
1534 static void
1535 append_balance_error (EmpathyChat *chat,
1536                       const gchar *message_body)
1537 {
1538         EmpathyChatPriv *priv = GET_PRIV (chat);
1539         TpConnection *conn = tp_channel_borrow_connection (TP_CHANNEL (priv->tp_chat));
1540         const gchar *uri = tp_connection_get_balance_uri (conn);
1541         const gchar *error = _("insufficient balance to send message");
1542         gchar *str, *str_markup = NULL;
1543
1544         if (message_body != NULL) {
1545                 str = g_strdup_printf (_("Error sending message '%s': %s"), message_body, error);
1546         } else {
1547                 str = g_strdup_printf (_("Error sending message: %s"), error);
1548         }
1549
1550         if (!tp_str_empty (uri)) {
1551                 /* translators: error used when user doesn't have enough credit on his
1552                  * account to send the message. */
1553                 gchar *markup_error = g_strdup_printf (_("insufficient balance to send message."
1554                                                          " <a href='%s'>Top up</a>."), uri);
1555
1556                 if (message_body != NULL) {
1557                         gchar *escaped_body = g_markup_escape_text (message_body, -1);
1558
1559                         str_markup = g_strdup_printf (_("Error sending message '%s': %s"),
1560                                 escaped_body, markup_error);
1561
1562                         g_free (escaped_body);
1563                 } else {
1564                         str_markup = g_strdup_printf (_("Error sending message: %s"), markup_error);
1565                 }
1566
1567                 g_free (markup_error);
1568         }
1569
1570         if (str_markup != NULL)
1571                 empathy_chat_view_append_event_markup (chat->view, str_markup, str);
1572         else
1573                 empathy_chat_view_append_event (chat->view, str);
1574
1575         g_free (str);
1576         g_free (str_markup);
1577 }
1578
1579 static void
1580 chat_send_error_cb (EmpathyTpChat          *tp_chat,
1581                     const gchar            *message_body,
1582                     TpChannelTextSendError  error_code,
1583                     const gchar            *dbus_error,
1584                     EmpathyChat            *chat)
1585 {
1586         const gchar *error = NULL;
1587         gchar       *str;
1588
1589         if (!tp_strdiff (dbus_error, TP_ERROR_STR_INSUFFICIENT_BALANCE)) {
1590                 append_balance_error (chat, message_body);
1591                 return;
1592         } else if (!tp_strdiff (dbus_error, TP_ERROR_STR_NOT_CAPABLE)) {
1593                 error = _("not capable");
1594         }
1595
1596         if (error == NULL) {
1597                 /* if we didn't find a dbus-error, try the old error */
1598                 switch (error_code) {
1599                 case TP_CHANNEL_TEXT_SEND_ERROR_OFFLINE:
1600                         error = _("offline");
1601                         break;
1602                 case TP_CHANNEL_TEXT_SEND_ERROR_INVALID_CONTACT:
1603                         error = _("invalid contact");
1604                         break;
1605                 case TP_CHANNEL_TEXT_SEND_ERROR_PERMISSION_DENIED:
1606                         error = _("permission denied");
1607                         break;
1608                 case TP_CHANNEL_TEXT_SEND_ERROR_TOO_LONG:
1609                         error = _("too long message");
1610                         break;
1611                 case TP_CHANNEL_TEXT_SEND_ERROR_NOT_IMPLEMENTED:
1612                         error = _("not implemented");
1613                         break;
1614                 case TP_CHANNEL_TEXT_SEND_ERROR_UNKNOWN:
1615                 default:
1616                         error = _("unknown");
1617                         break;
1618                 }
1619         }
1620
1621         if (message_body != NULL) {
1622                         str = g_strdup_printf (_("Error sending message '%s': %s"),
1623                                 message_body, error);
1624         }
1625         else {
1626                         str = g_strdup_printf (_("Error sending message: %s"), error);
1627         }
1628
1629         empathy_chat_view_append_event (chat->view, str);
1630         g_free (str);
1631 }
1632
1633 static void
1634 chat_topic_label_size_allocate_cb (GtkLabel *label,
1635                                    GtkAllocation *allocation,
1636                                    EmpathyChat *chat)
1637 {
1638         EmpathyChatPriv *priv = GET_PRIV (chat);
1639
1640         if (!gtk_label_get_line_wrap (label)) {
1641                 if (pango_layout_is_ellipsized (gtk_label_get_layout (label)))
1642                         gtk_widget_show (priv->expander_topic);
1643                 else
1644                         gtk_widget_hide (priv->expander_topic);
1645
1646                 return;
1647         }
1648 }
1649
1650 static void
1651 chat_topic_expander_activate_cb (GtkExpander *expander,
1652                                  GParamSpec *param_spec,
1653                                  EmpathyChat *chat)
1654 {
1655         EmpathyChatPriv *priv = GET_PRIV (chat);
1656
1657         if (gtk_expander_get_expanded (expander)) {
1658                 gtk_label_set_ellipsize (GTK_LABEL (priv->label_topic), PANGO_ELLIPSIZE_NONE);
1659                 gtk_label_set_line_wrap (GTK_LABEL (priv->label_topic), TRUE);
1660         } else {
1661                 gtk_label_set_ellipsize (GTK_LABEL (priv->label_topic), PANGO_ELLIPSIZE_END);
1662                 gtk_label_set_line_wrap (GTK_LABEL (priv->label_topic), FALSE);
1663         }
1664 }
1665
1666 static void
1667 chat_subject_changed_cb (EmpathyChat *chat)
1668 {
1669         EmpathyChatPriv *priv = GET_PRIV (chat);
1670
1671                 g_free (priv->subject);
1672                 priv->subject = g_strdup (empathy_tp_chat_get_subject (priv->tp_chat));
1673                 g_object_notify (G_OBJECT (chat), "subject");
1674
1675                 if (EMP_STR_EMPTY (priv->subject)) {
1676                         gtk_widget_hide (priv->hbox_topic);
1677                 } else {
1678                         gchar *markup_topic;
1679                         gchar *markup_text;
1680
1681                         markup_topic = empathy_add_link_markup (priv->subject);
1682                         markup_text = g_strdup_printf ("<span weight=\"bold\">%s</span> %s",
1683                                 _("Topic:"), markup_topic);
1684
1685                         gtk_label_set_markup (GTK_LABEL (priv->label_topic), markup_text);
1686                         g_free (markup_text);
1687                         g_free (markup_topic);
1688
1689                         gtk_widget_show (priv->hbox_topic);
1690                 }
1691                 if (priv->block_events_timeout_id == 0) {
1692                         gchar *str = NULL;
1693
1694                         if (!EMP_STR_EMPTY (priv->subject)) {
1695                                 str = g_strdup_printf (_("Topic set to: %s"), priv->subject);
1696                         } else if (empathy_tp_chat_supports_subject (priv->tp_chat)) {
1697                                 /* No need to display this 'event' is no topic can be defined anyway */
1698                                 str = g_strdup (_("No topic defined"));
1699                         }
1700
1701                         if (str != NULL) {
1702                                 empathy_chat_view_append_event (EMPATHY_CHAT (chat)->view, str);
1703                                 g_free (str);
1704                         }
1705                 }
1706 }
1707
1708 static void
1709 chat_title_changed_cb (EmpathyChat *chat)
1710 {
1711         EmpathyChatPriv *priv = GET_PRIV (chat);
1712
1713                 g_free (priv->name);
1714                 priv->name = g_strdup (empathy_tp_chat_get_title (priv->tp_chat));
1715                 g_object_notify (G_OBJECT (chat), "name");
1716 }
1717
1718 static gboolean
1719 chat_input_text_get_word_from_iter (GtkTextIter   *iter,
1720                                     GtkTextIter   *start,
1721                                     GtkTextIter   *end)
1722 {
1723         GtkTextIter word_start = *iter;
1724         GtkTextIter word_end = *iter;
1725         GtkTextIter tmp;
1726
1727         if (gtk_text_iter_inside_word (&word_end) &&
1728                         !gtk_text_iter_ends_word (&word_end)) {
1729                 gtk_text_iter_forward_word_end (&word_end);
1730         }
1731
1732         tmp = word_end;
1733
1734         if (gtk_text_iter_get_char (&tmp) == '\'') {
1735                 gtk_text_iter_forward_char (&tmp);
1736
1737                 if (g_unichar_isalpha (gtk_text_iter_get_char (&tmp))) {
1738                         gtk_text_iter_forward_word_end (&word_end);
1739                 }
1740         }
1741
1742
1743         if (gtk_text_iter_inside_word (&word_start) ||
1744                         gtk_text_iter_ends_word (&word_start)) {
1745                 if (!gtk_text_iter_starts_word (&word_start) ||
1746                                 gtk_text_iter_equal (&word_start, &word_end)) {
1747                         gtk_text_iter_backward_word_start (&word_start);
1748                 }
1749
1750                 tmp = word_start;
1751                 gtk_text_iter_backward_char (&tmp);
1752
1753                 if (gtk_text_iter_get_char (&tmp) == '\'') {
1754                         gtk_text_iter_backward_char (&tmp);
1755
1756                         if (g_unichar_isalpha (gtk_text_iter_get_char (&tmp))) {
1757                                 gtk_text_iter_backward_word_start (&word_start);
1758                         }
1759                 }
1760         }
1761
1762         *start = word_start;
1763         *end = word_end;
1764         return TRUE;
1765 }
1766
1767 static void
1768 chat_input_text_buffer_insert_text_cb (GtkTextBuffer *buffer,
1769                                        GtkTextIter   *location,
1770                                        gchar         *text,
1771                                        gint           len,
1772                                        EmpathyChat   *chat)
1773 {
1774         GtkTextIter iter, pos;
1775
1776         /* Remove all misspelled tags in the inserted text.
1777          * This happens when text is inserted within a misspelled word. */
1778         gtk_text_buffer_get_iter_at_offset (buffer, &iter,
1779                                             gtk_text_iter_get_offset (location) - len);
1780         gtk_text_buffer_remove_tag_by_name (buffer, "misspelled",
1781                                             &iter, location);
1782
1783         gtk_text_buffer_get_iter_at_mark (buffer, &pos, gtk_text_buffer_get_insert (buffer));
1784
1785         do {
1786                 GtkTextIter start, end;
1787                 gchar *str;
1788
1789                 if (!chat_input_text_get_word_from_iter (&iter, &start, &end))
1790                         continue;
1791
1792                 str = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
1793
1794                 if (gtk_text_iter_in_range (&pos, &start, &end) ||
1795                                 gtk_text_iter_equal (&pos, &end) ||
1796                                 empathy_spell_check (str)) {
1797                         gtk_text_buffer_remove_tag_by_name (buffer, "misspelled", &start, &end);
1798                 } else {
1799                         gtk_text_buffer_apply_tag_by_name (buffer, "misspelled", &start, &end);
1800                 }
1801
1802                 g_free (str);
1803
1804         } while (gtk_text_iter_forward_word_end (&iter) &&
1805                  gtk_text_iter_compare (&iter, location) <= 0);
1806 }
1807
1808 static void
1809 chat_input_text_buffer_delete_range_cb (GtkTextBuffer *buffer,
1810                                         GtkTextIter   *start,
1811                                         GtkTextIter   *end,
1812                                         EmpathyChat   *chat)
1813 {
1814         GtkTextIter word_start, word_end;
1815
1816         if (chat_input_text_get_word_from_iter (start, &word_start, &word_end)) {
1817                 gtk_text_buffer_remove_tag_by_name (buffer, "misspelled",
1818                                                     &word_start, &word_end);
1819         }
1820 }
1821
1822 static void
1823 chat_input_text_buffer_changed_cb (GtkTextBuffer *buffer,
1824                                    EmpathyChat    *chat)
1825 {
1826         if (gtk_text_buffer_get_char_count (buffer) == 0) {
1827                 chat_composing_stop (chat);
1828         } else {
1829                 chat_composing_start (chat);
1830         }
1831 }
1832
1833 static void
1834 chat_input_text_buffer_notify_cursor_position_cb (GtkTextBuffer *buffer,
1835                                                   GParamSpec    *pspec,
1836                                                   EmpathyChat    *chat)
1837 {
1838         GtkTextIter pos;
1839         GtkTextIter prev_pos;
1840         GtkTextIter word_start;
1841         GtkTextIter word_end;
1842         GtkTextMark *mark;
1843         gchar *str;
1844
1845         mark = gtk_text_buffer_get_mark (buffer, "previous-cursor-position");
1846
1847         gtk_text_buffer_get_iter_at_mark (buffer, &pos,
1848                                           gtk_text_buffer_get_insert (buffer));
1849         gtk_text_buffer_get_iter_at_mark (buffer, &prev_pos, mark);
1850
1851         if (!chat_input_text_get_word_from_iter (&prev_pos, &word_start, &word_end))
1852                 goto out;
1853
1854         if (!gtk_text_iter_in_range (&pos, &word_start, &word_end) &&
1855                         !gtk_text_iter_equal (&pos, &word_end)) {
1856                 str = gtk_text_buffer_get_text (buffer,
1857                                         &word_start, &word_end, FALSE);
1858
1859                 if (!empathy_spell_check (str)) {
1860                         gtk_text_buffer_apply_tag_by_name (buffer,
1861                                         "misspelled", &word_start, &word_end);
1862                 } else {
1863                         gtk_text_buffer_remove_tag_by_name (buffer,
1864                                         "misspelled", &word_start, &word_end);
1865                 }
1866
1867                 g_free (str);
1868         }
1869
1870 out:
1871         gtk_text_buffer_move_mark (buffer, mark, &pos);
1872 }
1873
1874 static gboolean
1875 empathy_isspace_cb (gunichar c,
1876                  gpointer data)
1877 {
1878         return g_unichar_isspace (c);
1879 }
1880
1881 static gboolean
1882 chat_input_key_press_event_cb (GtkWidget   *widget,
1883                                GdkEventKey *event,
1884                                EmpathyChat *chat)
1885 {
1886         EmpathyChatPriv *priv;
1887         GtkAdjustment  *adj;
1888         gdouble         val;
1889         GtkWidget      *text_view_sw;
1890
1891         priv = GET_PRIV (chat);
1892
1893         priv->most_recent_event_type = event->type;
1894
1895         /* Catch ctrl+up/down so we can traverse messages we sent */
1896         if ((event->state & GDK_CONTROL_MASK) &&
1897             (event->keyval == GDK_KEY_Up ||
1898              event->keyval == GDK_KEY_Down)) {
1899                 GtkTextBuffer *buffer;
1900                 const gchar   *str;
1901
1902                 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
1903                 chat_input_history_update (chat, buffer);
1904
1905                 if (event->keyval == GDK_KEY_Up) {
1906                         str = chat_input_history_get_next (chat);
1907                 } else {
1908                         str = chat_input_history_get_prev (chat);
1909                 }
1910
1911                 g_signal_handlers_block_by_func (buffer,
1912                                                  chat_input_text_buffer_changed_cb,
1913                                                  chat);
1914                 gtk_text_buffer_set_text (buffer, str ? str : "", -1);
1915                 g_signal_handlers_unblock_by_func (buffer,
1916                                                    chat_input_text_buffer_changed_cb,
1917                                                    chat);
1918
1919                 return TRUE;
1920         }
1921
1922         /* Catch enter but not ctrl/shift-enter */
1923         if (IS_ENTER (event->keyval) &&
1924             !(event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK))) {
1925                 GtkTextView *view;
1926
1927                 /* This is to make sure that kinput2 gets the enter. And if
1928                  * it's handled there we shouldn't send on it. This is because
1929                  * kinput2 uses Enter to commit letters. See:
1930                  * http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=104299
1931                  */
1932
1933                 view = GTK_TEXT_VIEW (chat->input_text_view);
1934                 if (gtk_text_view_im_context_filter_keypress (view, event)) {
1935                         gtk_text_view_reset_im_context (view);
1936                         return TRUE;
1937                 }
1938
1939                 chat_input_text_view_send (chat);
1940                 return TRUE;
1941         }
1942
1943         text_view_sw = gtk_widget_get_parent (GTK_WIDGET (chat->view));
1944
1945         if (IS_ENTER (event->keyval) &&
1946             (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK))) {
1947                 /* Newline for shift/control-enter. */
1948                 return FALSE;
1949         }
1950         if (!(event->state & GDK_CONTROL_MASK) &&
1951             event->keyval == GDK_KEY_Page_Up) {
1952                 adj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (text_view_sw));
1953                 gtk_adjustment_set_value (adj, gtk_adjustment_get_value (adj) - gtk_adjustment_get_page_size (adj));
1954                 return TRUE;
1955         }
1956         if ((event->state & GDK_CONTROL_MASK) != GDK_CONTROL_MASK &&
1957             event->keyval == GDK_KEY_Page_Down) {
1958                 adj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (text_view_sw));
1959                 val = MIN (gtk_adjustment_get_value (adj) + gtk_adjustment_get_page_size (adj),
1960                            gtk_adjustment_get_upper (adj) - gtk_adjustment_get_page_size (adj));
1961                 gtk_adjustment_set_value (adj, val);
1962                 return TRUE;
1963         }
1964         if (event->keyval == GDK_KEY_Escape) {
1965                 empathy_search_bar_hide (EMPATHY_SEARCH_BAR (priv->search_bar));
1966         }
1967         if (!(event->state & (GDK_CONTROL_MASK | GDK_SHIFT_MASK)) &&
1968             event->keyval == GDK_KEY_Tab) {
1969                 GtkTextBuffer *buffer;
1970                 GtkTextIter    start, current;
1971                 gchar         *nick, *completed;
1972                 GList         *list, *completed_list;
1973                 gboolean       is_start_of_buffer;
1974
1975                 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (EMPATHY_CHAT (chat)->input_text_view));
1976                 gtk_text_buffer_get_iter_at_mark (buffer, &current, gtk_text_buffer_get_insert (buffer));
1977
1978                 /* Get the start of the nick to complete. */
1979                 gtk_text_buffer_get_iter_at_mark (buffer, &start, gtk_text_buffer_get_insert (buffer));
1980                 if (gtk_text_iter_backward_find_char (&start, &empathy_isspace_cb, NULL, NULL)) {
1981                         gtk_text_iter_set_offset (&start, gtk_text_iter_get_offset (&start) + 1);
1982                 }
1983                 is_start_of_buffer = gtk_text_iter_is_start (&start);
1984
1985                 list = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (priv->tp_chat));
1986                 g_completion_add_items (priv->completion, list);
1987
1988                 nick = gtk_text_buffer_get_text (buffer, &start, &current, FALSE);
1989                 completed_list = g_completion_complete (priv->completion,
1990                                                         nick,
1991                                                         &completed);
1992
1993                 g_free (nick);
1994
1995                 if (completed) {
1996                         guint        len;
1997                         const gchar *text;
1998                         GString     *message = NULL;
1999                         GList       *l;
2000
2001                         gtk_text_buffer_delete (buffer, &start, &current);
2002
2003                         len = g_list_length (completed_list);
2004
2005                         if (len == 1) {
2006                                 /* If we only have one hit, use that text
2007                                  * instead of the text in completed since the
2008                                  * completed text will use the typed string
2009                                  * which might be cased all wrong.
2010                                  * Fixes #120876
2011                                  * */
2012                                 text = empathy_contact_get_alias (completed_list->data);
2013                         } else {
2014                                 text = completed;
2015
2016                                 /* Print all hits to the scrollback view, so the
2017                                  * user knows what possibilities he has.
2018                                  * Fixes #599779
2019                                  * */
2020                                  message = g_string_new ("");
2021                                  for (l = completed_list; l != NULL; l = l->next) {
2022                                         g_string_append (message, empathy_contact_get_alias (l->data));
2023                                         g_string_append (message, " - ");
2024                                  }
2025                                  empathy_chat_view_append_event (chat->view, message->str);
2026                                  g_string_free (message, TRUE);
2027                         }
2028
2029                         gtk_text_buffer_insert_at_cursor (buffer, text, strlen (text));
2030
2031                         if (len == 1 && is_start_of_buffer) {
2032                             gchar *complete_char;
2033
2034                             complete_char = g_settings_get_string (
2035                                     priv->gsettings_chat,
2036                                     EMPATHY_PREFS_CHAT_NICK_COMPLETION_CHAR);
2037
2038                             if (complete_char != NULL) {
2039                                 gtk_text_buffer_insert_at_cursor (buffer,
2040                                                                   complete_char,
2041                                                                   strlen (complete_char));
2042                                 gtk_text_buffer_insert_at_cursor (buffer, " ", 1);
2043                                 g_free (complete_char);
2044                             }
2045                         }
2046
2047                         g_free (completed);
2048                 }
2049
2050                 g_completion_clear_items (priv->completion);
2051
2052                 g_list_foreach (list, (GFunc) g_object_unref, NULL);
2053                 g_list_free (list);
2054
2055                 return TRUE;
2056         }
2057
2058         return FALSE;
2059 }
2060
2061 static gboolean
2062 chat_text_view_focus_in_event_cb (GtkWidget  *widget,
2063                                   GdkEvent   *event,
2064                                   EmpathyChat *chat)
2065 {
2066         gtk_widget_grab_focus (chat->input_text_view);
2067
2068         return TRUE;
2069 }
2070
2071 static void
2072 chat_input_realize_cb (GtkWidget   *widget,
2073                        EmpathyChat *chat)
2074 {
2075         DEBUG ("Setting focus to the input text view");
2076         if (gtk_widget_is_sensitive (widget)) {
2077                 gtk_widget_grab_focus (widget);
2078         }
2079 }
2080
2081 static void
2082 chat_input_has_focus_notify_cb (GtkWidget   *widget,
2083                                 GParamSpec  *pspec,
2084                                 EmpathyChat *chat)
2085 {
2086         empathy_chat_view_focus_toggled (chat->view, gtk_widget_has_focus (widget));
2087 }
2088
2089 static void
2090 chat_insert_smiley_activate_cb (EmpathySmileyManager *manager,
2091                                 EmpathySmiley        *smiley,
2092                                 gpointer              user_data)
2093 {
2094         EmpathyChat   *chat = EMPATHY_CHAT (user_data);
2095         GtkTextBuffer *buffer;
2096         GtkTextIter    iter;
2097
2098         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
2099
2100         gtk_text_buffer_get_end_iter (buffer, &iter);
2101         gtk_text_buffer_insert (buffer, &iter, smiley->str, -1);
2102
2103         gtk_text_buffer_get_end_iter (buffer, &iter);
2104         gtk_text_buffer_insert (buffer, &iter, " ", -1);
2105 }
2106
2107 typedef struct {
2108         EmpathyChat  *chat;
2109         gchar       *word;
2110
2111         GtkTextIter  start;
2112         GtkTextIter  end;
2113 } EmpathyChatSpell;
2114
2115 static EmpathyChatSpell *
2116 chat_spell_new (EmpathyChat  *chat,
2117                 const gchar *word,
2118                 GtkTextIter  start,
2119                 GtkTextIter  end)
2120 {
2121         EmpathyChatSpell *chat_spell;
2122
2123         chat_spell = g_slice_new0 (EmpathyChatSpell);
2124
2125         chat_spell->chat = g_object_ref (chat);
2126         chat_spell->word = g_strdup (word);
2127         chat_spell->start = start;
2128         chat_spell->end = end;
2129
2130         return chat_spell;
2131 }
2132
2133 static void
2134 chat_spell_free (EmpathyChatSpell *chat_spell)
2135 {
2136         g_object_unref (chat_spell->chat);
2137         g_free (chat_spell->word);
2138         g_slice_free (EmpathyChatSpell, chat_spell);
2139 }
2140
2141 static void
2142 chat_spelling_menu_activate_cb (GtkMenuItem     *menu_item,
2143                                                 EmpathyChatSpell *chat_spell)
2144 {
2145     empathy_chat_correct_word (chat_spell->chat,
2146                                &(chat_spell->start),
2147                                &(chat_spell->end),
2148                                gtk_menu_item_get_label (menu_item));
2149 }
2150
2151
2152 static GtkWidget *
2153 chat_spelling_build_suggestions_menu (const gchar *code,
2154                                       EmpathyChatSpell *chat_spell)
2155 {
2156         GList     *suggestions, *l;
2157         GtkWidget *menu, *menu_item;
2158
2159         suggestions = empathy_spell_get_suggestions (code, chat_spell->word);
2160         if (suggestions == NULL)
2161                 return NULL;
2162
2163         menu = gtk_menu_new ();
2164         for (l = suggestions; l; l = l->next) {
2165                 menu_item = gtk_menu_item_new_with_label (l->data);
2166                 g_signal_connect (G_OBJECT (menu_item), "activate",
2167                                   G_CALLBACK (chat_spelling_menu_activate_cb),
2168                                   chat_spell);
2169                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
2170         }
2171         empathy_spell_free_suggestions (suggestions);
2172
2173         gtk_widget_show_all (menu);
2174
2175         return menu;
2176 }
2177
2178 static GtkWidget *
2179 chat_spelling_build_menu (EmpathyChatSpell *chat_spell)
2180 {
2181         GtkWidget *menu, *submenu, *item;
2182         GList     *codes, *l;
2183
2184         codes = empathy_spell_get_enabled_language_codes ();
2185         g_assert (codes != NULL);
2186
2187         if (g_list_length (codes) > 1) {
2188                 menu = gtk_menu_new ();
2189
2190                 for (l = codes; l; l = l->next) {
2191                         const gchar *code, *name;
2192
2193                         code = l->data;
2194                         name = empathy_spell_get_language_name (code);
2195                         if (!name)
2196                                 continue;
2197
2198                         item = gtk_image_menu_item_new_with_label (name);
2199
2200                         submenu = chat_spelling_build_suggestions_menu (
2201                                         code, chat_spell);
2202                         if (submenu == NULL)
2203                                 gtk_widget_set_sensitive (item, FALSE);
2204                         else
2205                                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item),
2206                                                            submenu);
2207                         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2208                 }
2209         } else {
2210                 menu = chat_spelling_build_suggestions_menu (codes->data,
2211                                                              chat_spell);
2212                 if (menu == NULL) {
2213                         menu = gtk_menu_new ();
2214                         item = gtk_menu_item_new_with_label (_("(No Suggestions)"));
2215                         gtk_widget_set_sensitive (item, FALSE);
2216                         gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
2217                 }
2218         }
2219         g_list_free (codes);
2220
2221         gtk_widget_show_all (menu);
2222
2223         return menu;
2224 }
2225
2226 typedef struct {
2227         EmpathyChat  *chat;
2228         gchar        *word;
2229         gchar        *code;
2230 } EmpathyChatWord;
2231
2232 static EmpathyChatWord *
2233 chat_word_new (EmpathyChat  *chat,
2234                 const gchar  *word,
2235                 const gchar  *code)
2236 {
2237         EmpathyChatWord *chat_word;
2238
2239         chat_word = g_slice_new0 (EmpathyChatWord);
2240
2241         chat_word->chat = g_object_ref (chat);
2242         chat_word->word = g_strdup (word);
2243         chat_word->code = g_strdup (code);
2244
2245         return chat_word;
2246 }
2247
2248 static void
2249 chat_word_free (EmpathyChatWord *chat_word)
2250 {
2251         g_object_unref (chat_word->chat);
2252         g_free (chat_word->word);
2253         g_free (chat_word->code);
2254         g_slice_free (EmpathyChatWord, chat_word);
2255 }
2256
2257 static void
2258 chat_add_to_dictionary_activate_cb (GtkMenuItem     *menu_item,
2259                                     EmpathyChatWord *chat_word)
2260 {
2261         EmpathyChatPriv *priv = GET_PRIV (chat_word->chat);
2262
2263         empathy_spell_add_to_dictionary (chat_word->code,
2264                                          chat_word->word);
2265         priv->update_misspelled_words_id =
2266                 g_idle_add (update_misspelled_words, chat_word->chat);
2267 }
2268
2269 static GtkWidget *
2270 chat_spelling_build_add_to_dictionary_item (EmpathyChatSpell *chat_spell)
2271 {
2272         GtkWidget       *menu, *item, *lang_item, *image;
2273         GList           *codes, *l;
2274         gchar           *label;
2275         const gchar     *code, *name;
2276         EmpathyChatWord *chat_word;
2277
2278         codes = empathy_spell_get_enabled_language_codes ();
2279         g_assert (codes != NULL);
2280         if (g_list_length (codes) > 1) {
2281                 /* translators: %s is the selected word */
2282                 label = g_strdup_printf (_("Add '%s' to Dictionary"),
2283                                         chat_spell->word);
2284                 item = gtk_image_menu_item_new_with_mnemonic (label);
2285                 g_free (label);
2286                 image = gtk_image_new_from_icon_name (GTK_STOCK_ADD,
2287                                                       GTK_ICON_SIZE_MENU);
2288                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item),
2289                                                image);
2290
2291                 menu = gtk_menu_new ();
2292
2293                 for (l = codes; l; l = l->next) {
2294                         code = l->data;
2295                         name = empathy_spell_get_language_name (code);
2296                         if (name == NULL)
2297                                 continue;
2298
2299                         lang_item = gtk_image_menu_item_new_with_label (name);
2300
2301                         chat_word= chat_word_new (chat_spell->chat,
2302                                                   chat_spell->word, code);
2303                         g_object_set_data_full (G_OBJECT (lang_item),
2304                                 "chat-word", chat_word,
2305                                 (GDestroyNotify) chat_word_free);
2306
2307                         g_signal_connect (G_OBJECT (lang_item), "activate",
2308                                 G_CALLBACK (chat_add_to_dictionary_activate_cb),
2309                                 chat_word);
2310                         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), lang_item);
2311                 }
2312                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), menu);
2313         } else {
2314                 code = codes->data;
2315                 name = empathy_spell_get_language_name (code);
2316                 g_assert (name != NULL);
2317                 /* translators: first %s is the selected word,
2318                  * second %s is the language name of the target dictionary */
2319                 label = g_strdup_printf (_("Add '%s' to %s Dictionary"),
2320                                         chat_spell->word, name);
2321                 item = gtk_image_menu_item_new_with_mnemonic (label);
2322                 g_free (label);
2323                 image = gtk_image_new_from_icon_name (GTK_STOCK_ADD,
2324                                                       GTK_ICON_SIZE_MENU);
2325                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
2326
2327                 chat_word = chat_word_new (chat_spell->chat, chat_spell->word,
2328                                            code);
2329                 g_object_set_data_full (G_OBJECT (item), "chat-word", chat_word,
2330                                         (GDestroyNotify) chat_word_free);
2331
2332                 g_signal_connect (G_OBJECT (item), "activate",
2333                                   G_CALLBACK (chat_add_to_dictionary_activate_cb),
2334                                   chat_word);
2335         }
2336         g_list_free (codes);
2337
2338         gtk_widget_show_all (item);
2339
2340         return item;
2341 }
2342
2343 static void
2344 chat_text_send_cb (GtkMenuItem *menuitem,
2345                    EmpathyChat *chat)
2346 {
2347         chat_input_text_view_send (chat);
2348 }
2349
2350 static gboolean
2351 chat_input_button_press_event_cb (GtkTextView    *view,
2352                                   GdkEventButton *event,
2353                                   EmpathyChat    *chat)
2354 {
2355         EmpathyChatPriv *priv = GET_PRIV (chat);
2356
2357         priv->most_recent_event_type = event->type;
2358
2359         return FALSE;
2360 }
2361
2362 static void
2363 chat_input_populate_popup_cb (GtkTextView *view,
2364                               GtkMenu     *menu,
2365                               EmpathyChat *chat)
2366 {
2367         EmpathyChatPriv      *priv = GET_PRIV (chat);
2368         GtkTextBuffer        *buffer;
2369         GtkTextTagTable      *table;
2370         GtkTextTag           *tag;
2371         gint                  x, y;
2372         GtkTextIter           iter, start, end;
2373         GtkWidget            *item;
2374         gchar                *str = NULL;
2375         EmpathyChatSpell     *chat_spell;
2376         GtkWidget            *spell_menu;
2377         GtkWidget            *spell_item;
2378         EmpathySmileyManager *smiley_manager;
2379         GtkWidget            *smiley_menu;
2380         GtkWidget            *image;
2381
2382         buffer = gtk_text_view_get_buffer (view);
2383
2384         /* Add the emoticon menu. */
2385         item = gtk_separator_menu_item_new ();
2386         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2387         gtk_widget_show (item);
2388
2389         item = gtk_image_menu_item_new_with_mnemonic (_("Insert Smiley"));
2390         image = gtk_image_new_from_icon_name ("face-smile",
2391                                               GTK_ICON_SIZE_MENU);
2392         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
2393         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2394         gtk_widget_show (item);
2395
2396         smiley_manager = empathy_smiley_manager_dup_singleton ();
2397         smiley_menu = empathy_smiley_menu_new (smiley_manager,
2398                                                chat_insert_smiley_activate_cb,
2399                                                chat);
2400         gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), smiley_menu);
2401         g_object_unref (smiley_manager);
2402
2403         /* Add the Send menu item. */
2404         gtk_text_buffer_get_bounds (buffer, &start, &end);
2405         str = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
2406         if (!EMP_STR_EMPTY (str)) {
2407                 item = gtk_menu_item_new_with_mnemonic (_("_Send"));
2408                 g_signal_connect (G_OBJECT (item), "activate",
2409                                   G_CALLBACK (chat_text_send_cb), chat);
2410                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2411                 gtk_widget_show (item);
2412         }
2413         str = NULL;
2414
2415         /* Add the spell check menu item. */
2416         table = gtk_text_buffer_get_tag_table (buffer);
2417         tag = gtk_text_tag_table_lookup (table, "misspelled");
2418
2419         switch (priv->most_recent_event_type) {
2420             case GDK_BUTTON_PRESS:
2421                 /* get the location from the pointer */
2422                 gdk_window_get_device_position (gtk_widget_get_window (GTK_WIDGET (view)),
2423                         gdk_device_manager_get_client_pointer (gdk_display_get_device_manager (
2424                                 gtk_widget_get_display (GTK_WIDGET (view)))), &x, &y, NULL);
2425
2426                 gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (view),
2427                                                        GTK_TEXT_WINDOW_WIDGET,
2428                                                        x, y,
2429                                                        &x, &y);
2430                 gtk_text_view_get_iter_at_location (GTK_TEXT_VIEW (view),
2431                                                     &iter, x, y);
2432                 break;
2433
2434             default:
2435                 g_warn_if_reached ();
2436                 /* assume the KEY_PRESS case */
2437
2438             case GDK_KEY_PRESS:
2439                 /* get the location from the cursor */
2440                 gtk_text_buffer_get_iter_at_mark (buffer, &iter,
2441                                 gtk_text_buffer_get_insert (buffer));
2442                 break;
2443
2444         }
2445
2446         start = end = iter;
2447         if (gtk_text_iter_backward_to_tag_toggle (&start, tag) &&
2448             gtk_text_iter_forward_to_tag_toggle (&end, tag)) {
2449
2450                 str = gtk_text_buffer_get_text (buffer,
2451                                                 &start, &end, FALSE);
2452         }
2453         if (!EMP_STR_EMPTY (str)) {
2454                 chat_spell = chat_spell_new (chat, str, start, end);
2455                 g_object_set_data_full (G_OBJECT (menu),
2456                                         "chat-spell", chat_spell,
2457                                         (GDestroyNotify) chat_spell_free);
2458
2459                 item = gtk_separator_menu_item_new ();
2460                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2461                 gtk_widget_show (item);
2462
2463                 /* Spelling suggestions */
2464                 item = gtk_image_menu_item_new_with_mnemonic (_("_Spelling Suggestions"));
2465                 image = gtk_image_new_from_icon_name (GTK_STOCK_SPELL_CHECK,
2466                                                       GTK_ICON_SIZE_MENU);
2467                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
2468
2469                 spell_menu = chat_spelling_build_menu (chat_spell);
2470                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), spell_menu);
2471
2472
2473                 spell_item = gtk_separator_menu_item_new ();
2474                 gtk_menu_shell_append (GTK_MENU_SHELL (spell_menu), spell_item);
2475                 gtk_widget_show (spell_item);
2476
2477                 /* Add to dictionary */
2478                 spell_item = chat_spelling_build_add_to_dictionary_item (chat_spell);
2479
2480                 gtk_menu_shell_append (GTK_MENU_SHELL (spell_menu), spell_item);
2481                 gtk_widget_show (spell_item);
2482
2483                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2484                 gtk_widget_show (item);
2485         }
2486 }
2487
2488
2489 static gboolean
2490 chat_log_filter (TplEvent *event,
2491                  gpointer user_data)
2492 {
2493         EmpathyChat *chat = user_data;
2494         EmpathyMessage *message;
2495         EmpathyChatPriv *priv = GET_PRIV (chat);
2496         const GList *pending;
2497
2498         g_return_val_if_fail (TPL_IS_EVENT (event), FALSE);
2499         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), FALSE);
2500
2501         pending = empathy_tp_chat_get_pending_messages (priv->tp_chat);
2502         message = empathy_message_from_tpl_log_event (event);
2503
2504         for (; pending; pending = g_list_next (pending)) {
2505                 if (empathy_message_equal (message, pending->data)) {
2506                         g_object_unref (message);
2507                         return FALSE;
2508                 }
2509         }
2510
2511         g_object_unref (message);
2512         return TRUE;
2513 }
2514
2515
2516 static void
2517 show_pending_messages (EmpathyChat *chat) {
2518         EmpathyChatPriv *priv = GET_PRIV (chat);
2519         const GList *messages, *l;
2520
2521         g_return_if_fail (EMPATHY_IS_CHAT (chat));
2522
2523         if (chat->view == NULL || priv->tp_chat == NULL)
2524                 return;
2525
2526         if (!priv->can_show_pending)
2527                 return;
2528
2529         messages = empathy_tp_chat_get_pending_messages (priv->tp_chat);
2530
2531         for (l = messages; l != NULL ; l = g_list_next (l)) {
2532                 EmpathyMessage *message = EMPATHY_MESSAGE (l->data);
2533                 chat_message_received (chat, message, TRUE);
2534         }
2535 }
2536
2537
2538 static void
2539 got_filtered_messages_cb (GObject *manager,
2540                 GAsyncResult *result,
2541                 gpointer user_data)
2542 {
2543         GList *l;
2544         GList *messages;
2545         EmpathyChat *chat = EMPATHY_CHAT (user_data);
2546         EmpathyChatPriv *priv = GET_PRIV (chat);
2547         GError *error = NULL;
2548
2549         if (!tpl_log_manager_get_filtered_events_finish (TPL_LOG_MANAGER (manager),
2550                 result, &messages, &error)) {
2551                 DEBUG ("%s. Aborting.", error->message);
2552                 empathy_chat_view_append_event (chat->view,
2553                         _("Failed to retrieve recent logs"));
2554                 g_error_free (error);
2555                 goto out;
2556         }
2557
2558         for (l = messages; l; l = g_list_next (l)) {
2559                 EmpathyMessage *message;
2560
2561                 g_assert (TPL_IS_EVENT (l->data));
2562
2563                 message = empathy_message_from_tpl_log_event (l->data);
2564                 g_object_unref (l->data);
2565
2566                 if (empathy_message_is_edit (message)) {
2567                         /* this is an edited message, create a synthetic event
2568                          * using the supersedes token and
2569                          * original-message-sent timestamp, that we can then
2570                          * replace */
2571                         EmpathyMessage *syn_msg = g_object_new (
2572                                 EMPATHY_TYPE_MESSAGE,
2573                                 "body", "",
2574                                 "token", empathy_message_get_supersedes (message),
2575                                 "type", empathy_message_get_tptype (message),
2576                                 "timestamp", empathy_message_get_original_timestamp (message),
2577                                 "incoming", empathy_message_is_incoming (message),
2578                                 "is-backlog", TRUE,
2579                                 "receiver", empathy_message_get_receiver (message),
2580                                 "sender", empathy_message_get_sender (message),
2581                                 NULL);
2582
2583                         empathy_chat_view_append_message (chat->view, syn_msg,
2584                                                           chat_should_highlight (chat, syn_msg));
2585                         empathy_chat_view_edit_message (chat->view, message);
2586
2587                         g_object_unref (syn_msg);
2588                 } else {
2589                         /* append the latest message */
2590                         empathy_chat_view_append_message (chat->view, message,
2591                                                           chat_should_highlight (chat, message));
2592                 }
2593
2594                 g_object_unref (message);
2595         }
2596         g_list_free (messages);
2597
2598 out:
2599         /* in case of TPL error, skip backlog and show pending messages */
2600         priv->can_show_pending = TRUE;
2601         show_pending_messages (chat);
2602
2603         /* FIXME: See Bug#610994, we are forcing the ACK of the queue. See comments
2604          * about it in EmpathyChatPriv definition */
2605         priv->retrieving_backlogs = FALSE;
2606         empathy_chat_messages_read (chat);
2607
2608         /* Turn back on scrolling */
2609         empathy_chat_view_scroll (chat->view, TRUE);
2610 }
2611
2612 static void
2613 chat_add_logs (EmpathyChat *chat)
2614 {
2615         EmpathyChatPriv *priv = GET_PRIV (chat);
2616         TplEntity       *target;
2617
2618         if (!priv->id) {
2619                 return;
2620         }
2621
2622         /* Turn off scrolling temporarily */
2623         empathy_chat_view_scroll (chat->view, FALSE);
2624
2625         /* Add messages from last conversation */
2626         if (priv->handle_type == TP_HANDLE_TYPE_ROOM)
2627           target = tpl_entity_new_from_room_id (priv->id);
2628         else
2629           target = tpl_entity_new (priv->id, TPL_ENTITY_CONTACT, NULL, NULL);
2630
2631         priv->retrieving_backlogs = TRUE;
2632         tpl_log_manager_get_filtered_events_async (priv->log_manager,
2633                                                    priv->account,
2634                                                    target,
2635                                                    TPL_EVENT_MASK_TEXT,
2636                                                    5,
2637                                                    chat_log_filter,
2638                                                    chat,
2639                                                    got_filtered_messages_cb,
2640                                                    (gpointer) chat);
2641
2642         g_object_unref (target);
2643 }
2644
2645 static gint
2646 chat_contacts_completion_func (const gchar *s1,
2647                                const gchar *s2,
2648                                gsize        n)
2649 {
2650         gchar *tmp, *nick1, *nick2;
2651         gint   ret;
2652
2653         if (s1 == s2) {
2654                 return 0;
2655         }
2656         if (!s1 || !s2) {
2657                 return s1 ? -1 : +1;
2658         }
2659
2660         tmp = g_utf8_normalize (s1, -1, G_NORMALIZE_DEFAULT);
2661         nick1 = g_utf8_casefold (tmp, -1);
2662         g_free (tmp);
2663
2664         tmp = g_utf8_normalize (s2, -1, G_NORMALIZE_DEFAULT);
2665         nick2 = g_utf8_casefold (tmp, -1);
2666         g_free (tmp);
2667
2668         ret = strncmp (nick1, nick2, n);
2669
2670         g_free (nick1);
2671         g_free (nick2);
2672
2673         return ret;
2674 }
2675
2676 static gchar *
2677 build_part_message (guint           reason,
2678                     const gchar    *name,
2679                     EmpathyContact *actor,
2680                     const gchar    *message)
2681 {
2682         GString *s = g_string_new ("");
2683         const gchar *actor_name = NULL;
2684
2685         if (actor != NULL) {
2686                 actor_name = empathy_contact_get_alias (actor);
2687         }
2688
2689         /* Having an actor only really makes sense for a few actions... */
2690         switch (reason) {
2691         case TP_CHANNEL_GROUP_CHANGE_REASON_OFFLINE:
2692                 g_string_append_printf (s, _("%s has disconnected"), name);
2693                 break;
2694         case TP_CHANNEL_GROUP_CHANGE_REASON_KICKED:
2695                 if (actor_name != NULL) {
2696                         /* translators: reverse the order of these arguments
2697                          * if the kicked should come before the kicker in your locale.
2698                          */
2699                         g_string_append_printf (s, _("%1$s was kicked by %2$s"),
2700                                 name, actor_name);
2701                 } else {
2702                         g_string_append_printf (s, _("%s was kicked"), name);
2703                 }
2704                 break;
2705         case TP_CHANNEL_GROUP_CHANGE_REASON_BANNED:
2706                 if (actor_name != NULL) {
2707                         /* translators: reverse the order of these arguments
2708                          * if the banned should come before the banner in your locale.
2709                          */
2710                         g_string_append_printf (s, _("%1$s was banned by %2$s"),
2711                                 name, actor_name);
2712                 } else {
2713                         g_string_append_printf (s, _("%s was banned"), name);
2714                 }
2715                 break;
2716         default:
2717                 g_string_append_printf (s, _("%s has left the room"), name);
2718         }
2719
2720         if (!EMP_STR_EMPTY (message)) {
2721                 /* Note to translators: this string is appended to
2722                  * notifications like "foo has left the room", with the message
2723                  * given by the user living the room. If this poses a problem,
2724                  * please let us know. :-)
2725                  */
2726                 g_string_append_printf (s, _(" (%s)"), message);
2727         }
2728
2729         return g_string_free (s, FALSE);
2730 }
2731
2732 static void
2733 chat_members_changed_cb (EmpathyTpChat  *tp_chat,
2734                          EmpathyContact *contact,
2735                          EmpathyContact *actor,
2736                          guint           reason,
2737                          gchar          *message,
2738                          gboolean        is_member,
2739                          EmpathyChat    *chat)
2740 {
2741         EmpathyChatPriv *priv = GET_PRIV (chat);
2742         const gchar *name = empathy_contact_get_alias (contact);
2743         gchar *str;
2744
2745         g_return_if_fail (TP_CHANNEL_GROUP_CHANGE_REASON_RENAMED != reason);
2746
2747         if (priv->block_events_timeout_id != 0)
2748                 return;
2749
2750         if (is_member) {
2751                 str = g_strdup_printf (_("%s has joined the room"),
2752                                        name);
2753         } else {
2754                 str = build_part_message (reason, name, actor, message);
2755         }
2756
2757         empathy_chat_view_append_event (chat->view, str);
2758         g_free (str);
2759 }
2760
2761 static void
2762 chat_member_renamed_cb (EmpathyTpChat  *tp_chat,
2763                          EmpathyContact *old_contact,
2764                          EmpathyContact *new_contact,
2765                          guint           reason,
2766                          gchar          *message,
2767                          EmpathyChat    *chat)
2768 {
2769         EmpathyChatPriv *priv = GET_PRIV (chat);
2770
2771         g_return_if_fail (TP_CHANNEL_GROUP_CHANGE_REASON_RENAMED == reason);
2772
2773         if (priv->block_events_timeout_id == 0) {
2774                 gchar *str;
2775
2776                 str = g_strdup_printf (_("%s is now known as %s"),
2777                                        empathy_contact_get_alias (old_contact),
2778                                        empathy_contact_get_alias (new_contact));
2779                 empathy_chat_view_append_event (chat->view, str);
2780                 g_free (str);
2781         }
2782
2783 }
2784
2785 static gboolean
2786 chat_contacts_visible_timeout_cb (gpointer chat)
2787 {
2788         EmpathyChatPriv *priv = GET_PRIV (chat);
2789
2790         /* Relax the size request */
2791         gtk_widget_set_size_request (priv->vbox_left, -1, -1);
2792
2793         /* Set the position of the slider. This must be done here because
2794          * GtkPaned need to know its size allocation and it will be settled only
2795          * after the gtk_window_resize () tough effect. */
2796         if (priv->contacts_width > 0) {
2797                 gtk_paned_set_position (GTK_PANED (priv->hpaned),
2798                                         priv->contacts_width);
2799         }
2800
2801         priv->contacts_visible_id = 0;
2802
2803         return FALSE;
2804 }
2805
2806 static void
2807 chat_update_contacts_visibility (EmpathyChat *chat,
2808                          gboolean show)
2809 {
2810         EmpathyChatPriv *priv = GET_PRIV (chat);
2811
2812         if (!priv->scrolled_window_contacts) {
2813                 return;
2814         }
2815
2816         if (priv->remote_contact != NULL) {
2817                 show = FALSE;
2818         }
2819
2820         if (show && priv->contact_list_view == NULL) {
2821                 EmpathyIndividualStore *store;
2822                 gint                     min_width;
2823                 GtkAllocation            allocation;
2824
2825                 /* We are adding the contact list to the chat, we don't want the
2826                  * chat view to become too small. If the chat view is already
2827                  * smaller than 250 make sure that size won't change. If the
2828                  * chat view is bigger the contact list will take some space on
2829                  * it but we make sure the chat view don't become smaller than
2830                  * 250. Relax the size request once the resize is done */
2831                 gtk_widget_get_allocation (priv->vbox_left, &allocation);
2832                 min_width = MIN (allocation.width, 250);
2833                 gtk_widget_set_size_request (priv->vbox_left, min_width, -1);
2834
2835                 /* There is no way to know when the window resize will happen
2836                  * since it is WM's decision. Let's hope it won't be longer. */
2837                 if (priv->contacts_visible_id != 0)
2838                         g_source_remove (priv->contacts_visible_id);
2839                 priv->contacts_visible_id = g_timeout_add (500,
2840                         chat_contacts_visible_timeout_cb, chat);
2841
2842                 store = EMPATHY_INDIVIDUAL_STORE (
2843                                 empathy_individual_store_channel_new ((TpChannel *) priv->tp_chat));
2844
2845                 empathy_individual_store_set_show_groups (store, FALSE);
2846
2847                 priv->contact_list_view = GTK_WIDGET (empathy_individual_view_new (store,
2848                         EMPATHY_INDIVIDUAL_VIEW_FEATURE_INDIVIDUAL_TOOLTIP,
2849                         EMPATHY_INDIVIDUAL_FEATURE_ADD_CONTACT |
2850                         EMPATHY_INDIVIDUAL_FEATURE_CHAT |
2851                         EMPATHY_INDIVIDUAL_FEATURE_CALL |
2852                         EMPATHY_INDIVIDUAL_FEATURE_LOG |
2853                         EMPATHY_INDIVIDUAL_FEATURE_INFO));
2854
2855                 empathy_individual_view_set_show_offline (
2856                         EMPATHY_INDIVIDUAL_VIEW (priv->contact_list_view), TRUE);
2857                 empathy_individual_view_set_show_uninteresting (
2858                         EMPATHY_INDIVIDUAL_VIEW (priv->contact_list_view), TRUE);
2859
2860                 gtk_container_add (GTK_CONTAINER (priv->scrolled_window_contacts),
2861                                    priv->contact_list_view);
2862
2863                 gtk_widget_show (priv->contact_list_view);
2864                 gtk_widget_show (priv->scrolled_window_contacts);
2865                 g_object_unref (store);
2866         } else if (!show) {
2867                 priv->contacts_width = gtk_paned_get_position (GTK_PANED (priv->hpaned));
2868                 gtk_widget_hide (priv->scrolled_window_contacts);
2869                 if (priv->contact_list_view != NULL) {
2870                         gtk_widget_destroy (priv->contact_list_view);
2871                         priv->contact_list_view = NULL;
2872                 }
2873         }
2874 }
2875
2876 void
2877 empathy_chat_set_show_contacts (EmpathyChat *chat,
2878                                 gboolean     show)
2879 {
2880         EmpathyChatPriv *priv = GET_PRIV (chat);
2881
2882         priv->show_contacts = show;
2883
2884         chat_update_contacts_visibility (chat, show);
2885
2886         g_object_notify (G_OBJECT (chat), "show-contacts");
2887 }
2888
2889 static void
2890 chat_self_contact_changed_cb (EmpathyChat *chat)
2891 {
2892         EmpathyChatPriv *priv = GET_PRIV (chat);
2893
2894         if (priv->self_contact != NULL) {
2895                 g_signal_handlers_disconnect_by_func (priv->self_contact,
2896                                                       chat_self_contact_alias_changed_cb,
2897                                                       chat);
2898         }
2899         g_clear_object (&priv->self_contact);
2900
2901         priv->self_contact = empathy_tp_chat_get_self_contact (priv->tp_chat);
2902         if (priv->self_contact != NULL) {
2903                 g_object_ref (priv->self_contact);
2904
2905                 if (empathy_chat_is_room (chat)) {
2906                         g_signal_connect_swapped (priv->self_contact, "notify::alias",
2907                                           G_CALLBACK (chat_self_contact_alias_changed_cb),
2908                                           chat);
2909                 }
2910         }
2911
2912         chat_self_contact_alias_changed_cb (chat);
2913 }
2914
2915 static void
2916 chat_remote_contact_changed_cb (EmpathyChat *chat)
2917 {
2918         EmpathyChatPriv *priv = GET_PRIV (chat);
2919
2920         if (priv->remote_contact != NULL) {
2921                 g_object_unref (priv->remote_contact);
2922                 priv->remote_contact = NULL;
2923         }
2924
2925         g_free (priv->id);
2926
2927         priv->id = g_strdup (empathy_tp_chat_get_id (priv->tp_chat));
2928         priv->remote_contact = empathy_tp_chat_get_remote_contact (priv->tp_chat);
2929         if (priv->remote_contact != NULL) {
2930                 g_object_ref (priv->remote_contact);
2931                 priv->handle_type = TP_HANDLE_TYPE_CONTACT;
2932         }
2933         else if (priv->tp_chat != NULL) {
2934                 tp_channel_get_handle ((TpChannel *) priv->tp_chat, &priv->handle_type);
2935         }
2936
2937         chat_update_contacts_visibility (chat, priv->show_contacts);
2938
2939         g_object_notify (G_OBJECT (chat), "remote-contact");
2940         g_object_notify (G_OBJECT (chat), "id");
2941 }
2942
2943 static void
2944 chat_invalidated_cb (EmpathyTpChat *tp_chat,
2945                  guint domain,
2946                  gint code,
2947                  gchar *message,
2948                  EmpathyChat   *chat)
2949 {
2950         EmpathyChatPriv *priv;
2951
2952         priv = GET_PRIV (chat);
2953
2954         if (!priv->tp_chat) {
2955                 return;
2956         }
2957
2958         chat_composing_remove_timeout (chat);
2959         g_object_unref (priv->tp_chat);
2960         priv->tp_chat = NULL;
2961         g_object_notify (G_OBJECT (chat), "tp-chat");
2962
2963         empathy_chat_view_append_event (chat->view, _("Disconnected"));
2964         gtk_widget_set_sensitive (chat->input_text_view, FALSE);
2965
2966         chat_update_contacts_visibility (chat, FALSE);
2967
2968         priv->unread_messages_when_offline = priv->unread_messages;
2969 }
2970
2971 static gboolean
2972 update_misspelled_words (gpointer data)
2973 {
2974         EmpathyChat *chat = EMPATHY_CHAT (data);
2975         EmpathyChatPriv *priv = GET_PRIV (chat);
2976         GtkTextBuffer *buffer;
2977         GtkTextIter iter;
2978         gint length;
2979
2980         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
2981
2982         gtk_text_buffer_get_end_iter (buffer, &iter);
2983         length = gtk_text_iter_get_offset (&iter);
2984         chat_input_text_buffer_insert_text_cb (buffer, &iter,
2985                                                NULL, length, chat);
2986
2987         priv->update_misspelled_words_id = 0;
2988
2989         return FALSE;
2990 }
2991
2992 static void
2993 conf_spell_checking_cb (GSettings *gsettings_chat,
2994                         const gchar *key,
2995                         gpointer user_data)
2996 {
2997         EmpathyChat *chat = EMPATHY_CHAT (user_data);
2998         EmpathyChatPriv *priv = GET_PRIV (chat);
2999         gboolean spell_checker;
3000         GtkTextBuffer *buffer;
3001
3002         if (strcmp (key, EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED) != 0)
3003                 return;
3004
3005         spell_checker = g_settings_get_boolean (gsettings_chat,
3006                         EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED);
3007
3008         if (!empathy_spell_supported ()) {
3009                 spell_checker = FALSE;
3010         }
3011
3012         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
3013
3014         if (spell_checker == priv->spell_checking_enabled) {
3015                 if (spell_checker) {
3016                         /* Possibly changed dictionaries,
3017                          * update misspelled words. Need to do so in idle
3018                          * so the spell checker is updated. */
3019                         priv->update_misspelled_words_id =
3020                                 g_idle_add (update_misspelled_words, chat);
3021                 }
3022
3023                 return;
3024         }
3025
3026         if (spell_checker) {
3027                 GtkTextIter iter;
3028
3029                 priv->notify_cursor_position_id = tp_g_signal_connect_object  (
3030                                 buffer, "notify::cursor-position",
3031                                 G_CALLBACK (chat_input_text_buffer_notify_cursor_position_cb),
3032                                 chat, 0);
3033                 priv->insert_text_id = tp_g_signal_connect_object  (
3034                                 buffer, "insert-text",
3035                                 G_CALLBACK (chat_input_text_buffer_insert_text_cb),
3036                                 chat, G_CONNECT_AFTER);
3037                 priv->delete_range_id = tp_g_signal_connect_object  (
3038                                 buffer, "delete-range",
3039                                 G_CALLBACK (chat_input_text_buffer_delete_range_cb),
3040                                 chat, G_CONNECT_AFTER);
3041
3042                 gtk_text_buffer_create_tag (buffer, "misspelled",
3043                                             "underline", PANGO_UNDERLINE_ERROR,
3044                                             NULL);
3045
3046                 gtk_text_buffer_get_iter_at_mark (buffer, &iter,
3047                                                   gtk_text_buffer_get_insert (buffer));
3048                 gtk_text_buffer_create_mark (buffer, "previous-cursor-position",
3049                                              &iter, TRUE);
3050
3051                 /* Mark misspelled words in the existing buffer.
3052                  * Need to do so in idle so the spell checker is updated. */
3053                 priv->update_misspelled_words_id =
3054                         g_idle_add (update_misspelled_words, chat);
3055         } else {
3056                 GtkTextTagTable *table;
3057                 GtkTextTag *tag;
3058
3059                 g_signal_handler_disconnect (buffer, priv->notify_cursor_position_id);
3060                 priv->notify_cursor_position_id = 0;
3061                 g_signal_handler_disconnect (buffer, priv->insert_text_id);
3062                 priv->insert_text_id = 0;
3063                 g_signal_handler_disconnect (buffer, priv->delete_range_id);
3064                 priv->delete_range_id = 0;
3065
3066                 table = gtk_text_buffer_get_tag_table (buffer);
3067                 tag = gtk_text_tag_table_lookup (table, "misspelled");
3068                 gtk_text_tag_table_remove (table, tag);
3069
3070                 gtk_text_buffer_delete_mark_by_name (buffer,
3071                                                      "previous-cursor-position");
3072         }
3073
3074         priv->spell_checking_enabled = spell_checker;
3075 }
3076
3077 static gboolean
3078 save_paned_pos_timeout (gpointer data)
3079 {
3080         EmpathyChat *self = data;
3081         gint hpaned_pos;
3082
3083         hpaned_pos = gtk_paned_get_position (GTK_PANED (self->priv->hpaned));
3084
3085         g_settings_set_int (self->priv->gsettings_ui,
3086                             EMPATHY_PREFS_UI_CHAT_WINDOW_PANED_POS,
3087                             hpaned_pos);
3088
3089         return FALSE;
3090 }
3091
3092 static gboolean
3093 chat_hpaned_pos_changed_cb (GtkWidget* hpaned,
3094                 GParamSpec *spec,
3095                 gpointer user_data)
3096 {
3097         EmpathyChat *chat = EMPATHY_CHAT (user_data);
3098
3099         if (chat->priv->save_paned_pos_id != 0)
3100                 g_source_remove (chat->priv->save_paned_pos_id);
3101
3102         chat->priv->save_paned_pos_id = g_timeout_add_seconds (1,
3103                 save_paned_pos_timeout, chat);
3104
3105         return TRUE;
3106 }
3107
3108 static void
3109 chat_create_ui (EmpathyChat *chat)
3110 {
3111         EmpathyChatPriv *priv = GET_PRIV (chat);
3112         GtkBuilder      *gui;
3113         GList           *list = NULL;
3114         gchar           *filename;
3115         GtkTextBuffer   *buffer;
3116         EmpathyThemeManager *theme_mgr;
3117
3118         filename = empathy_file_lookup ("empathy-chat.ui",
3119                                         "libempathy-gtk");
3120         gui = empathy_builder_get_file (filename,
3121                                         "chat_widget", &priv->widget,
3122                                         "hpaned", &priv->hpaned,
3123                                         "vbox_left", &priv->vbox_left,
3124                                         "scrolled_window_chat", &priv->scrolled_window_chat,
3125                                         "scrolled_window_input", &priv->scrolled_window_input,
3126                                         "hbox_topic", &priv->hbox_topic,
3127                                         "expander_topic", &priv->expander_topic,
3128                                         "label_topic", &priv->label_topic,
3129                                         "scrolled_window_contacts", &priv->scrolled_window_contacts,
3130                                         "info_bar_vbox", &priv->info_bar_vbox,
3131                                         NULL);
3132
3133         empathy_builder_connect (gui, chat,
3134                 "expander_topic", "notify::expanded", chat_topic_expander_activate_cb,
3135                 "label_topic", "size-allocate", chat_topic_label_size_allocate_cb,
3136                 NULL);
3137
3138         g_free (filename);
3139
3140         /* Add message view. */
3141         theme_mgr = empathy_theme_manager_dup_singleton ();
3142         chat->view = empathy_theme_manager_create_view (theme_mgr);
3143         g_object_unref (theme_mgr);
3144         /* If this is a GtkTextView, it's set as a drag destination for text/plain
3145            and other types, even though it's non-editable and doesn't accept any
3146            drags.  This steals drag motion for anything inside the scrollbars,
3147            making drag destinations on chat windows far less useful.
3148          */
3149         gtk_drag_dest_unset (GTK_WIDGET (chat->view));
3150         g_signal_connect (chat->view, "focus_in_event",
3151                           G_CALLBACK (chat_text_view_focus_in_event_cb),
3152                           chat);
3153         gtk_container_add (GTK_CONTAINER (priv->scrolled_window_chat),
3154                            GTK_WIDGET (chat->view));
3155         gtk_widget_show (GTK_WIDGET (chat->view));
3156
3157         /* Add input GtkTextView */
3158         chat->input_text_view = empathy_input_text_view_new ();
3159         g_signal_connect (chat->input_text_view, "notify::has-focus",
3160                           G_CALLBACK (chat_input_has_focus_notify_cb),
3161                           chat);
3162         g_signal_connect (chat->input_text_view, "key-press-event",
3163                           G_CALLBACK (chat_input_key_press_event_cb),
3164                           chat);
3165         g_signal_connect (chat->input_text_view, "realize",
3166                           G_CALLBACK (chat_input_realize_cb),
3167                           chat);
3168         g_signal_connect (chat->input_text_view, "button-press-event",
3169                           G_CALLBACK (chat_input_button_press_event_cb),
3170                           chat);
3171         g_signal_connect (chat->input_text_view, "populate-popup",
3172                           G_CALLBACK (chat_input_populate_popup_cb),
3173                           chat);
3174         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
3175         tp_g_signal_connect_object  (buffer, "changed",
3176                           G_CALLBACK (chat_input_text_buffer_changed_cb),
3177                           chat, 0);
3178         tp_g_signal_connect_object (priv->gsettings_chat,
3179                         "changed::" EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED,
3180                         G_CALLBACK (conf_spell_checking_cb), chat, 0);
3181         conf_spell_checking_cb (priv->gsettings_chat,
3182                                 EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED, chat);
3183         gtk_container_add (GTK_CONTAINER (priv->scrolled_window_input),
3184                            chat->input_text_view);
3185         gtk_widget_show (chat->input_text_view);
3186
3187         /* Add the (invisible) search bar */
3188         priv->search_bar = empathy_search_bar_new (chat->view);
3189         gtk_box_pack_start (GTK_BOX(priv->vbox_left),
3190                             priv->search_bar,
3191                             FALSE, FALSE, 0);
3192         gtk_box_reorder_child (GTK_BOX(priv->vbox_left), priv->search_bar, 1);
3193
3194         /* Initialy hide the topic, will be shown if not empty */
3195         gtk_widget_hide (priv->hbox_topic);
3196
3197         g_signal_connect (priv->hpaned, "notify::position",
3198                           G_CALLBACK (chat_hpaned_pos_changed_cb),
3199                           chat);
3200
3201         /* Set widget focus order */
3202         list = g_list_append (NULL, priv->search_bar);
3203         list = g_list_append (list, priv->scrolled_window_input);
3204         gtk_container_set_focus_chain (GTK_CONTAINER (priv->vbox_left), list);
3205         g_list_free (list);
3206
3207         list = g_list_append (NULL, priv->vbox_left);
3208         list = g_list_append (list, priv->scrolled_window_contacts);
3209         gtk_container_set_focus_chain (GTK_CONTAINER (priv->hpaned), list);
3210         g_list_free (list);
3211
3212         list = g_list_append (NULL, priv->hpaned);
3213         list = g_list_append (list, priv->hbox_topic);
3214         gtk_container_set_focus_chain (GTK_CONTAINER (priv->widget), list);
3215         g_list_free (list);
3216
3217         /* Add the main widget in the chat widget */
3218         gtk_box_pack_start (GTK_BOX (chat), priv->widget, TRUE, TRUE, 0);
3219         g_object_unref (gui);
3220 }
3221
3222 static void
3223 chat_finalize (GObject *object)
3224 {
3225         EmpathyChat     *chat;
3226         EmpathyChatPriv *priv;
3227
3228         chat = EMPATHY_CHAT (object);
3229         priv = GET_PRIV (chat);
3230
3231         DEBUG ("Finalized: %p", object);
3232
3233         if (priv->update_misspelled_words_id != 0)
3234                 g_source_remove (priv->update_misspelled_words_id);
3235
3236         if (priv->save_paned_pos_id != 0)
3237                 g_source_remove (priv->save_paned_pos_id);
3238
3239         if (priv->contacts_visible_id != 0)
3240                 g_source_remove (priv->contacts_visible_id);
3241
3242         g_object_unref (priv->gsettings_chat);
3243         g_object_unref (priv->gsettings_ui);
3244
3245         g_list_foreach (priv->input_history, (GFunc) chat_input_history_entry_free, NULL);
3246         g_list_free (priv->input_history);
3247
3248         g_list_foreach (priv->compositors, (GFunc) g_object_unref, NULL);
3249         g_list_free (priv->compositors);
3250
3251         chat_composing_remove_timeout (chat);
3252
3253         g_object_unref (priv->account_manager);
3254         g_object_unref (priv->log_manager);
3255
3256         if (priv->tp_chat) {
3257                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3258                         chat_invalidated_cb, chat);
3259                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3260                         chat_message_received_cb, chat);
3261                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3262                         chat_message_acknowledged_cb, chat);
3263                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3264                         chat_send_error_cb, chat);
3265                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3266                         chat_state_changed_cb, chat);
3267                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3268                         chat_members_changed_cb, chat);
3269                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3270                         chat_self_contact_changed_cb, chat);
3271                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3272                         chat_remote_contact_changed_cb, chat);
3273                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3274                         chat_title_changed_cb, chat);
3275                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3276                         chat_subject_changed_cb, chat);
3277                 empathy_tp_chat_leave (priv->tp_chat, "");
3278                 g_object_unref (priv->tp_chat);
3279         }
3280         if (priv->account) {
3281                 g_object_unref (priv->account);
3282         }
3283         if (priv->self_contact) {
3284                 g_signal_handlers_disconnect_by_func (priv->self_contact,
3285                                                       chat_self_contact_alias_changed_cb,
3286                                                       chat);
3287                 g_object_unref (priv->self_contact);
3288         }
3289         if (priv->remote_contact) {
3290                 g_object_unref (priv->remote_contact);
3291         }
3292
3293         if (priv->block_events_timeout_id) {
3294                 g_source_remove (priv->block_events_timeout_id);
3295         }
3296
3297         g_free (priv->id);
3298         g_free (priv->name);
3299         g_free (priv->subject);
3300         g_completion_free (priv->completion);
3301
3302         tp_clear_pointer (&priv->highlight_regex, g_regex_unref);
3303
3304         G_OBJECT_CLASS (empathy_chat_parent_class)->finalize (object);
3305 }
3306
3307 static void
3308 chat_constructed (GObject *object)
3309 {
3310         EmpathyChat *chat = EMPATHY_CHAT (object);
3311         EmpathyChatPriv *priv = GET_PRIV (chat);
3312
3313         if (priv->handle_type != TP_HANDLE_TYPE_ROOM) {
3314                 /* First display logs from the logger and then display pending messages */
3315                 chat_add_logs (chat);
3316         }
3317          else {
3318                 /* Just display pending messages for rooms */
3319                 priv->can_show_pending = TRUE;
3320                 show_pending_messages (chat);
3321         }
3322 }
3323
3324 static void
3325 empathy_chat_class_init (EmpathyChatClass *klass)
3326 {
3327         GObjectClass   *object_class = G_OBJECT_CLASS (klass);
3328
3329         object_class->finalize = chat_finalize;
3330         object_class->get_property = chat_get_property;
3331         object_class->set_property = chat_set_property;
3332         object_class->constructed = chat_constructed;
3333
3334         g_object_class_install_property (object_class,
3335                                          PROP_TP_CHAT,
3336                                          g_param_spec_object ("tp-chat",
3337                                                               "Empathy tp chat",
3338                                                               "The tp chat object",
3339                                                               EMPATHY_TYPE_TP_CHAT,
3340                                                               G_PARAM_CONSTRUCT |
3341                                                               G_PARAM_READWRITE |
3342                                                               G_PARAM_STATIC_STRINGS));
3343         g_object_class_install_property (object_class,
3344                                          PROP_ACCOUNT,
3345                                          g_param_spec_object ("account",
3346                                                               "Account of the chat",
3347                                                               "The account of the chat",
3348                                                               TP_TYPE_ACCOUNT,
3349                                                               G_PARAM_READABLE |
3350                                                               G_PARAM_STATIC_STRINGS));
3351         g_object_class_install_property (object_class,
3352                                          PROP_ID,
3353                                          g_param_spec_string ("id",
3354                                                               "Chat's id",
3355                                                               "The id of the chat",
3356                                                               NULL,
3357                                                               G_PARAM_READABLE |
3358                                                               G_PARAM_STATIC_STRINGS));
3359         g_object_class_install_property (object_class,
3360                                          PROP_NAME,
3361                                          g_param_spec_string ("name",
3362                                                               "Chat's name",
3363                                                               "The name of the chat",
3364                                                               NULL,
3365                                                               G_PARAM_READABLE |
3366                                                               G_PARAM_STATIC_STRINGS));
3367         g_object_class_install_property (object_class,
3368                                          PROP_SUBJECT,
3369                                          g_param_spec_string ("subject",
3370                                                               "Chat's subject",
3371                                                               "The subject or topic of the chat",
3372                                                               NULL,
3373                                                               G_PARAM_READABLE |
3374                                                               G_PARAM_STATIC_STRINGS));
3375         g_object_class_install_property (object_class,
3376                                          PROP_REMOTE_CONTACT,
3377                                          g_param_spec_object ("remote-contact",
3378                                                               "The remote contact",
3379                                                               "The remote contact is any",
3380                                                               EMPATHY_TYPE_CONTACT,
3381                                                               G_PARAM_READABLE |
3382                                                               G_PARAM_STATIC_STRINGS));
3383         g_object_class_install_property (object_class,
3384                                          PROP_SHOW_CONTACTS,
3385                                          g_param_spec_boolean ("show-contacts",
3386                                                                "Contacts' visibility",
3387                                                                "The visibility of the contacts' list",
3388                                                                TRUE,
3389                                                                G_PARAM_READWRITE |
3390                                                                G_PARAM_STATIC_STRINGS));
3391
3392         g_object_class_install_property (object_class,
3393                                          PROP_SMS_CHANNEL,
3394                                          g_param_spec_boolean ("sms-channel",
3395                                                                "SMS Channel",
3396                                                                "TRUE if this channel is for sending SMSes",
3397                                                                FALSE,
3398                                                                G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
3399
3400         g_object_class_install_property (object_class,
3401                                          PROP_N_MESSAGES_SENDING,
3402                                          g_param_spec_uint ("n-messages-sending",
3403                                                             "Num Messages Sending",
3404                                                             "The number of messages being sent",
3405                                                             0, G_MAXUINT, 0,
3406                                                             G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
3407
3408         g_object_class_install_property (object_class,
3409                                          PROP_NB_UNREAD_MESSAGES,
3410                                          g_param_spec_uint ("nb-unread-messages",
3411                                                             "Num Unread Messages",
3412                                                             "The number of unread messages",
3413                                                             0, G_MAXUINT, 0,
3414                                                             G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
3415
3416         signals[COMPOSING] =
3417                 g_signal_new ("composing",
3418                               G_OBJECT_CLASS_TYPE (object_class),
3419                               G_SIGNAL_RUN_LAST,
3420                               0,
3421                               NULL, NULL,
3422                               g_cclosure_marshal_generic,
3423                               G_TYPE_NONE,
3424                               1, G_TYPE_BOOLEAN);
3425
3426         /**
3427          * EmpathyChat::new-message:
3428          * @self: the #EmpathyChat
3429          * @message: the new message
3430          * @pending: whether the message was in the pending queue when @self
3431          *  was created
3432          * @should_highlight: %TRUE if the message mentions the local user
3433          */
3434         signals[NEW_MESSAGE] =
3435                 g_signal_new ("new-message",
3436                               G_OBJECT_CLASS_TYPE (object_class),
3437                               G_SIGNAL_RUN_LAST,
3438                               0,
3439                               NULL, NULL,
3440                               g_cclosure_marshal_generic,
3441                               G_TYPE_NONE,
3442                               3, EMPATHY_TYPE_MESSAGE, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN);
3443
3444         signals[PART_COMMAND_ENTERED] =
3445                         g_signal_new ("part-command-entered",
3446                                   G_OBJECT_CLASS_TYPE (object_class),
3447                                   G_SIGNAL_RUN_LAST,
3448                                   0,
3449                                   NULL, NULL,
3450                                   g_cclosure_marshal_generic,
3451                                   G_TYPE_NONE,
3452                                   1, G_TYPE_STRV);
3453
3454         g_type_class_add_private (object_class, sizeof (EmpathyChatPriv));
3455 }
3456
3457 static gboolean
3458 chat_block_events_timeout_cb (gpointer data)
3459 {
3460         EmpathyChatPriv *priv = GET_PRIV (data);
3461
3462         priv->block_events_timeout_id = 0;
3463
3464         return FALSE;
3465 }
3466
3467 static void
3468 account_manager_prepared_cb (GObject *source_object,
3469                              GAsyncResult *result,
3470                              gpointer user_data)
3471 {
3472         GList *accounts, *l;
3473         TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
3474         EmpathyChat *chat = user_data;
3475         GError *error = NULL;
3476
3477         if (!tp_proxy_prepare_finish (account_manager, result, &error)) {
3478                 DEBUG ("Failed to prepare the account manager: %s", error->message);
3479                 g_error_free (error);
3480                 return;
3481         }
3482
3483         accounts = tp_account_manager_get_valid_accounts (account_manager);
3484
3485         for (l = accounts; l != NULL; l = l->next) {
3486                 TpAccount *account = l->data;
3487                 tp_g_signal_connect_object (account, "status-changed",
3488                                              G_CALLBACK (chat_new_connection_cb),
3489                                              chat, 0);
3490         }
3491
3492         g_list_free (accounts);
3493 }
3494
3495 static void
3496 empathy_chat_init (EmpathyChat *chat)
3497 {
3498         EmpathyChatPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (chat,
3499                 EMPATHY_TYPE_CHAT, EmpathyChatPriv);
3500
3501         chat->priv = priv;
3502         priv->log_manager = tpl_log_manager_dup_singleton ();
3503         priv->gsettings_chat = g_settings_new (EMPATHY_PREFS_CHAT_SCHEMA);
3504         priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
3505
3506         priv->contacts_width = g_settings_get_int (priv->gsettings_ui,
3507                 EMPATHY_PREFS_UI_CHAT_WINDOW_PANED_POS);
3508         priv->input_history = NULL;
3509         priv->input_history_current = NULL;
3510         priv->account_manager = tp_account_manager_dup ();
3511
3512         tp_proxy_prepare_async (priv->account_manager, NULL,
3513                                           account_manager_prepared_cb, chat);
3514
3515         priv->show_contacts = g_settings_get_boolean (priv->gsettings_chat,
3516                         EMPATHY_PREFS_CHAT_SHOW_CONTACTS_IN_ROOMS);
3517
3518         /* Block events for some time to avoid having "has come online" or
3519          * "joined" messages. */
3520         priv->block_events_timeout_id =
3521                 g_timeout_add_seconds (1, chat_block_events_timeout_cb, chat);
3522
3523         /* Add nick name completion */
3524         priv->completion = g_completion_new ((GCompletionFunc) empathy_contact_get_alias);
3525         g_completion_set_compare (priv->completion, chat_contacts_completion_func);
3526
3527         chat_create_ui (chat);
3528 }
3529
3530 EmpathyChat *
3531 empathy_chat_new (EmpathyTpChat *tp_chat)
3532 {
3533         return g_object_new (EMPATHY_TYPE_CHAT, "tp-chat", tp_chat, NULL);
3534 }
3535
3536 EmpathyTpChat *
3537 empathy_chat_get_tp_chat (EmpathyChat *chat)
3538 {
3539         EmpathyChatPriv *priv = GET_PRIV (chat);
3540
3541         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
3542
3543         return priv->tp_chat;
3544 }
3545
3546 typedef struct
3547 {
3548         EmpathyChat *self;
3549         GtkWidget *info_bar;
3550         gulong response_id;
3551         GtkWidget *button;
3552         GtkWidget *label;
3553         GtkWidget *entry;
3554         GtkWidget *spinner;
3555         gchar *password;
3556 } PasswordData;
3557
3558 static void
3559 passwd_remember_button_cb (GtkButton *button,
3560                           PasswordData *data)
3561 {
3562         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_OK);
3563 }
3564
3565 static void
3566 passwd_not_now_button_cb (GtkButton *button,
3567                           PasswordData *data)
3568 {
3569         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_NO);
3570 }
3571
3572 static void
3573 remember_password_infobar_response_cb (GtkWidget *info_bar,
3574                                        gint response_id,
3575                                        PasswordData *data)
3576 {
3577         EmpathyChatPriv *priv = GET_PRIV (data->self);
3578
3579         if (response_id == GTK_RESPONSE_OK) {
3580                 DEBUG ("Saving room password");
3581                 empathy_keyring_set_room_password_async (priv->account,
3582                                                          empathy_tp_chat_get_id (priv->tp_chat),
3583                                                          data->password,
3584                                                          NULL, NULL);
3585         }
3586
3587         gtk_widget_destroy (info_bar);
3588         g_free (data->password);
3589         g_slice_free (PasswordData, data);
3590 }
3591
3592 static void
3593 chat_prompt_to_save_password (EmpathyChat *self,
3594                               PasswordData *data)
3595 {
3596         GtkWidget *content_area;
3597         GtkWidget *hbox;
3598         GtkWidget *image;
3599         GtkWidget *label;
3600         GtkWidget *alig;
3601         GtkWidget *button;
3602
3603         /* save the password in case it needs to be saved */
3604         data->password = g_strdup (gtk_entry_get_text (GTK_ENTRY (data->entry)));
3605
3606         /* Remove all previous widgets */
3607         content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (data->info_bar));
3608         gtk_container_forall (GTK_CONTAINER (content_area),
3609                               (GtkCallback) gtk_widget_destroy, NULL);
3610         data->button = NULL;
3611         data->label = NULL;
3612         data->entry = NULL;
3613         data->spinner = NULL;
3614
3615         gtk_info_bar_set_message_type (GTK_INFO_BAR (data->info_bar),
3616                                        GTK_MESSAGE_QUESTION);
3617
3618         hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
3619         gtk_box_pack_start (GTK_BOX (content_area), hbox, TRUE, TRUE, 0);
3620
3621         /* Add image */
3622         image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_AUTHENTICATION,
3623                                           GTK_ICON_SIZE_DIALOG);
3624         gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
3625
3626         /* Add message */
3627         label = gtk_label_new (_("Would you like to store this password?"));
3628         gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, TRUE, 0);
3629
3630         /* Add 'Remember' button */
3631         alig = gtk_alignment_new (0, 0.5, 1, 0);
3632
3633         button = gtk_button_new_with_label (_("Remember"));
3634         gtk_container_add (GTK_CONTAINER (alig), button);
3635         gtk_box_pack_start (GTK_BOX (hbox), alig, FALSE, FALSE, 0);
3636
3637         g_signal_connect (button, "clicked", G_CALLBACK (passwd_remember_button_cb),
3638                           data);
3639
3640         /* Add 'Not now' button */
3641         alig = gtk_alignment_new (0, 0.5, 1, 0);
3642
3643         button = gtk_button_new_with_label (_("Not now"));
3644         gtk_container_add (GTK_CONTAINER (alig), button);
3645         gtk_box_pack_start (GTK_BOX (hbox), alig, FALSE, FALSE, 0);
3646
3647         g_signal_connect (button, "clicked", G_CALLBACK (passwd_not_now_button_cb),
3648                           data);
3649
3650         /* go! */
3651         g_signal_handler_disconnect (data->info_bar, data->response_id);
3652         g_signal_connect (data->info_bar, "response",
3653                           G_CALLBACK (remember_password_infobar_response_cb), data);
3654
3655         gtk_widget_show_all (data->info_bar);
3656 }
3657
3658 static void
3659 provide_password_cb (GObject *tp_chat,
3660                      GAsyncResult *res,
3661                      gpointer user_data)
3662 {
3663         PasswordData *data = user_data;
3664         EmpathyChat *self = data->self;
3665         EmpathyChatPriv *priv = GET_PRIV (self);
3666         GError *error = NULL;
3667
3668         if (!tp_channel_provide_password_finish (TP_CHANNEL (tp_chat), res,
3669                                                       &error)) {
3670                 DEBUG ("error: %s", error->message);
3671                 /* FIXME: what should we do if that's another error? Close the channel?
3672                  * Display the raw D-Bus error to the user isn't very useful */
3673                 if (g_error_matches (error, TP_ERRORS, TP_ERROR_AUTHENTICATION_FAILED)) {
3674                         /* entry */
3675                         gtk_entry_set_text (GTK_ENTRY (data->entry), "");
3676                         gtk_widget_set_sensitive (data->entry, TRUE);
3677                         gtk_widget_grab_focus (data->entry);
3678
3679                         /* info bar */
3680                         gtk_info_bar_set_message_type (
3681                             GTK_INFO_BAR (data->info_bar),
3682                             GTK_MESSAGE_ERROR);
3683
3684                         /* button */
3685                         gtk_widget_set_sensitive (data->button, TRUE);
3686                         gtk_button_set_label (GTK_BUTTON (data->button),
3687                             _("Retry"));
3688
3689                         /* label */
3690                         gtk_label_set_text (GTK_LABEL (data->label),
3691                             _("Wrong password; please try again:"));
3692
3693                         /* spinner */
3694                         gtk_spinner_stop (GTK_SPINNER (data->spinner));
3695                         gtk_widget_hide (data->spinner);
3696                 }
3697                 g_error_free (error);
3698                 return;
3699         }
3700
3701         if (empathy_keyring_is_available ()) {
3702                 /* ask whether they want to save the password */
3703                 chat_prompt_to_save_password (self, data);
3704         } else {
3705                 /* Get rid of the password info bar finally */
3706                 gtk_widget_destroy (data->info_bar);
3707                 g_slice_free (PasswordData, data);
3708         }
3709
3710         /* Room joined */
3711         gtk_widget_set_sensitive (priv->hpaned, TRUE);
3712         gtk_widget_set_sensitive (self->input_text_view, TRUE);
3713         gtk_widget_grab_focus (self->input_text_view);
3714 }
3715
3716 static void
3717 password_infobar_response_cb (GtkWidget *info_bar,
3718                               gint response_id,
3719                               PasswordData *data)
3720 {
3721         EmpathyChatPriv *priv = GET_PRIV (data->self);
3722         const gchar *password;
3723
3724         if (response_id != GTK_RESPONSE_OK) {
3725                 gtk_widget_destroy (info_bar);
3726                 g_slice_free (PasswordData, data);
3727                 return;
3728         }
3729
3730         password = gtk_entry_get_text (GTK_ENTRY (data->entry));
3731
3732         tp_channel_provide_password_async (TP_CHANNEL (priv->tp_chat), password,
3733                                                 provide_password_cb, data);
3734
3735         gtk_widget_set_sensitive (data->button, FALSE);
3736         gtk_widget_set_sensitive (data->entry, FALSE);
3737
3738         gtk_spinner_start (GTK_SPINNER (data->spinner));
3739         gtk_widget_show (data->spinner);
3740 }
3741
3742 static void
3743 password_entry_activate_cb (GtkWidget *entry,
3744                           PasswordData *data)
3745 {
3746         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_OK);
3747 }
3748
3749 static void
3750 passwd_join_button_cb (GtkButton *button,
3751                           PasswordData *data)
3752 {
3753         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_OK);
3754 }
3755
3756 static void
3757 clear_icon_released_cb (GtkEntry *entry,
3758                         GtkEntryIconPosition icon_pos,
3759                         GdkEvent *event,
3760                         PasswordData *data)
3761 {
3762         gtk_entry_set_text (entry, "");
3763 }
3764
3765 static void
3766 password_entry_changed_cb (GtkEditable *entry,
3767                            PasswordData *data)
3768 {
3769         const gchar *str;
3770
3771         str = gtk_entry_get_text (GTK_ENTRY (entry));
3772
3773         gtk_entry_set_icon_sensitive (GTK_ENTRY (entry),
3774             GTK_ENTRY_ICON_SECONDARY, !EMP_STR_EMPTY (str));
3775 }
3776
3777 static void
3778 infobar_chat_invalidated_cb (TpProxy       *proxy,
3779                            guint          domain,
3780                            gint           code,
3781                            gchar         *message,
3782                            gpointer       password_infobar)
3783 {
3784         /* Destroy the password infobar whenever a channel is invalidated
3785          * so we don't have multiple infobars when the MUC is rejoined */
3786         gtk_widget_destroy (GTK_WIDGET (password_infobar));
3787 }
3788
3789 static void
3790 display_password_info_bar (EmpathyChat *self)
3791 {
3792         EmpathyChatPriv *priv = GET_PRIV (self);
3793         GtkWidget *info_bar;
3794         GtkWidget *content_area;
3795         GtkWidget *hbox;
3796         GtkWidget *image;
3797         GtkWidget *label;
3798         GtkWidget *entry;
3799         GtkWidget *alig;
3800         GtkWidget *button;
3801         GtkWidget *spinner;
3802         PasswordData *data;
3803
3804         data = g_slice_new0 (PasswordData);
3805
3806         info_bar = gtk_info_bar_new ();
3807         gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar),
3808             GTK_MESSAGE_QUESTION);
3809
3810         content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar));
3811
3812         hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
3813         gtk_box_pack_start (GTK_BOX (content_area), hbox, TRUE, TRUE, 0);
3814
3815         /* Add image */
3816         image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_AUTHENTICATION,
3817                                           GTK_ICON_SIZE_DIALOG);
3818         gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
3819
3820         /* Add message */
3821         label = gtk_label_new (_("This room is protected by a password:"));
3822         gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
3823
3824         /* Add password entry */
3825         entry = gtk_entry_new ();
3826         gtk_entry_set_visibility (GTK_ENTRY (entry), FALSE);
3827         gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, TRUE, 0);
3828
3829         gtk_entry_set_icon_from_stock (GTK_ENTRY (entry),
3830                                        GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CLEAR);
3831         gtk_entry_set_icon_sensitive (GTK_ENTRY (entry),
3832                                       GTK_ENTRY_ICON_SECONDARY, FALSE);
3833
3834         g_signal_connect (entry, "icon-release",
3835                           G_CALLBACK (clear_icon_released_cb), data);
3836         g_signal_connect (entry, "changed",
3837                           G_CALLBACK (password_entry_changed_cb), data);
3838
3839         g_signal_connect (entry, "activate",
3840                           G_CALLBACK (password_entry_activate_cb), data);
3841
3842         /* Focus the password entry once it's realized */
3843         g_signal_connect (entry, "realize", G_CALLBACK (gtk_widget_grab_focus), NULL);
3844
3845         /* Add 'Join' button */
3846         alig = gtk_alignment_new (0, 0.5, 1, 0);
3847
3848         button = gtk_button_new_with_label (_("Join"));
3849         gtk_container_add (GTK_CONTAINER (alig), button);
3850         gtk_box_pack_start (GTK_BOX (hbox), alig, FALSE, FALSE, 0);
3851
3852         g_signal_connect (button, "clicked", G_CALLBACK (passwd_join_button_cb),
3853                           data);
3854
3855         /* Add spinner */
3856         spinner = gtk_spinner_new ();
3857         gtk_box_pack_end (GTK_BOX (hbox), spinner, FALSE, FALSE, 0);
3858
3859         /* Save some data for messing around with later */
3860         data->self = self;
3861         data->info_bar = info_bar;
3862         data->button = button;
3863         data->label = label;
3864         data->entry = entry;
3865         data->spinner = spinner;
3866
3867         gtk_box_pack_start (GTK_BOX (priv->info_bar_vbox), info_bar,
3868                             TRUE, TRUE, 3);
3869         gtk_widget_show_all (hbox);
3870
3871         tp_g_signal_connect_object (priv->tp_chat,
3872                                   "invalidated", G_CALLBACK (infobar_chat_invalidated_cb),
3873                                   info_bar, 0);
3874
3875         data->response_id = g_signal_connect (info_bar, "response",
3876                                               G_CALLBACK (password_infobar_response_cb), data);
3877
3878         gtk_widget_show_all (info_bar);
3879         /* ... but hide the spinner */
3880         gtk_widget_hide (spinner);
3881
3882         /* prevent the user from typing anything */
3883         gtk_widget_set_sensitive (self->input_text_view, FALSE);
3884 }
3885
3886 static void
3887 provide_saved_password_cb (GObject *tp_chat,
3888                            GAsyncResult *res,
3889                            gpointer user_data)
3890 {
3891         EmpathyChat *self = user_data;
3892         EmpathyChatPriv *priv = GET_PRIV (self);
3893         GError *error = NULL;
3894
3895         if (!tp_channel_provide_password_finish (TP_CHANNEL (tp_chat), res,
3896                                                       &error)) {
3897                 DEBUG ("error: %s", error->message);
3898                 /* FIXME: what should we do if that's another error? Close the channel?
3899                  * Display the raw D-Bus error to the user isn't very useful */
3900                 if (g_error_matches (error, TP_ERRORS, TP_ERROR_AUTHENTICATION_FAILED)) {
3901                         display_password_info_bar (self);
3902                         gtk_widget_set_sensitive (priv->hpaned, FALSE);
3903                 }
3904                 g_error_free (error);
3905                 return;
3906         }
3907
3908         /* Room joined */
3909         gtk_widget_set_sensitive (priv->hpaned, TRUE);
3910         gtk_widget_grab_focus (self->input_text_view);
3911 }
3912
3913 static void
3914 chat_room_got_password_cb (GObject *source,
3915                            GAsyncResult *result,
3916                            gpointer user_data)
3917 {
3918         EmpathyChat *self = user_data;
3919         EmpathyChatPriv *priv = GET_PRIV (self);
3920         const gchar *password;
3921         GError *error = NULL;
3922
3923         password = empathy_keyring_get_room_password_finish (priv->account,
3924             result, &error);
3925
3926         if (error != NULL) {
3927                 DEBUG ("Couldn't get room password: %s\n", error->message);
3928                 g_clear_error (&error);
3929
3930                 display_password_info_bar (self);
3931                 gtk_widget_set_sensitive (priv->hpaned, FALSE);
3932                 return;
3933         }
3934
3935         tp_channel_provide_password_async (TP_CHANNEL (priv->tp_chat), password,
3936                                                 provide_saved_password_cb, self);
3937 }
3938
3939 static void
3940 chat_password_needed_changed_cb (EmpathyChat *self)
3941 {
3942         EmpathyChatPriv *priv = GET_PRIV (self);
3943
3944         if (tp_channel_password_needed (TP_CHANNEL (priv->tp_chat))) {
3945                 empathy_keyring_get_room_password_async (priv->account,
3946                                                          empathy_tp_chat_get_id (priv->tp_chat),
3947                                                          chat_room_got_password_cb, self);
3948         }
3949 }
3950
3951 static void
3952 chat_sms_channel_changed_cb (EmpathyChat *self)
3953 {
3954         EmpathyChatPriv *priv = GET_PRIV (self);
3955
3956         priv->sms_channel = tp_text_channel_is_sms_channel (
3957                 (TpTextChannel *) priv->tp_chat);
3958         g_object_notify (G_OBJECT (self), "sms-channel");
3959 }
3960
3961 static void
3962 chat_n_messages_sending_changed_cb (EmpathyChat *self)
3963 {
3964         g_object_notify (G_OBJECT (self), "n-messages-sending");
3965 }
3966
3967 void
3968 empathy_chat_set_tp_chat (EmpathyChat   *chat,
3969                           EmpathyTpChat *tp_chat)
3970 {
3971         EmpathyChatPriv *priv = GET_PRIV (chat);
3972
3973         g_return_if_fail (EMPATHY_IS_CHAT (chat));
3974         g_return_if_fail (EMPATHY_IS_TP_CHAT (tp_chat));
3975
3976         if (priv->tp_chat) {
3977                 return;
3978         }
3979
3980         if (priv->account) {
3981                 g_object_unref (priv->account);
3982         }
3983
3984         priv->tp_chat = g_object_ref (tp_chat);
3985         priv->account = g_object_ref (empathy_tp_chat_get_account (priv->tp_chat));
3986
3987         g_signal_connect (tp_chat, "invalidated",
3988                           G_CALLBACK (chat_invalidated_cb),
3989                           chat);
3990         g_signal_connect (tp_chat, "message-received-empathy",
3991                           G_CALLBACK (chat_message_received_cb),
3992                           chat);
3993         g_signal_connect (tp_chat, "message_acknowledged",
3994                           G_CALLBACK (chat_message_acknowledged_cb),
3995                           chat);
3996         g_signal_connect (tp_chat, "send-error",
3997                           G_CALLBACK (chat_send_error_cb),
3998                           chat);
3999         g_signal_connect (tp_chat, "chat-state-changed-empathy",
4000                           G_CALLBACK (chat_state_changed_cb),
4001                           chat);
4002         g_signal_connect (tp_chat, "members-changed",
4003                           G_CALLBACK (chat_members_changed_cb),
4004                           chat);
4005         g_signal_connect (tp_chat, "member-renamed",
4006                           G_CALLBACK (chat_member_renamed_cb),
4007                           chat);
4008         g_signal_connect_swapped (tp_chat, "notify::self-contact",
4009                                   G_CALLBACK (chat_self_contact_changed_cb),
4010                                   chat);
4011         g_signal_connect_swapped (tp_chat, "notify::remote-contact",
4012                                   G_CALLBACK (chat_remote_contact_changed_cb),
4013                                   chat);
4014         g_signal_connect_swapped (tp_chat, "notify::password-needed",
4015                                   G_CALLBACK (chat_password_needed_changed_cb),
4016                                   chat);
4017         g_signal_connect_swapped (tp_chat, "notify::is-sms-channel",
4018                                   G_CALLBACK (chat_sms_channel_changed_cb),
4019                                   chat);
4020         g_signal_connect_swapped (tp_chat, "notify::n-messages-sending",
4021                                   G_CALLBACK (chat_n_messages_sending_changed_cb),
4022                                   chat);
4023         g_signal_connect_swapped (tp_chat, "notify::title",
4024                                   G_CALLBACK (chat_title_changed_cb),
4025                                   chat);
4026         g_signal_connect_swapped (tp_chat, "notify::subject",
4027                                   G_CALLBACK (chat_subject_changed_cb),
4028                                   chat);
4029
4030         /* Get initial value of properties */
4031         chat_sms_channel_changed_cb (chat);
4032         chat_self_contact_changed_cb (chat);
4033         chat_remote_contact_changed_cb (chat);
4034         chat_title_changed_cb (chat);
4035         chat_subject_changed_cb (chat);
4036
4037         if (chat->input_text_view) {
4038                 gtk_widget_set_sensitive (chat->input_text_view, TRUE);
4039                 if (priv->block_events_timeout_id == 0) {
4040                         empathy_chat_view_append_event (chat->view, _("Connected"));
4041                 }
4042         }
4043
4044         g_object_notify (G_OBJECT (chat), "tp-chat");
4045         g_object_notify (G_OBJECT (chat), "id");
4046         g_object_notify (G_OBJECT (chat), "account");
4047
4048         /* This is a noop when tp-chat is set at object construction time and causes
4049          * the pending messages to be show when it's set on the object after it has
4050          * been created */
4051         show_pending_messages (chat);
4052
4053         /* check if a password is needed */
4054         chat_password_needed_changed_cb (chat);
4055 }
4056
4057 TpAccount *
4058 empathy_chat_get_account (EmpathyChat *chat)
4059 {
4060         EmpathyChatPriv *priv = GET_PRIV (chat);
4061
4062         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4063
4064         return priv->account;
4065 }
4066
4067 const gchar *
4068 empathy_chat_get_id (EmpathyChat *chat)
4069 {
4070         EmpathyChatPriv *priv = GET_PRIV (chat);
4071
4072         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4073
4074         return priv->id;
4075 }
4076
4077 gchar *
4078 empathy_chat_dup_name (EmpathyChat *chat)
4079 {
4080         EmpathyChatPriv *priv = GET_PRIV (chat);
4081         const gchar *ret;
4082
4083         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4084
4085         ret = priv->name;
4086
4087         if (!ret && priv->remote_contact) {
4088                 ret = empathy_contact_get_alias (priv->remote_contact);
4089         }
4090
4091         if (!ret)
4092                 ret = priv->id;
4093
4094         if (!ret)
4095                 ret = _("Conversation");
4096
4097         if (priv->sms_channel)
4098                 /* Translators: this string is a something like
4099                  * "Escher Cat (SMS)" */
4100                 return g_strdup_printf (_("%s (SMS)"), ret);
4101         else
4102                 return g_strdup (ret);
4103 }
4104
4105 const gchar *
4106 empathy_chat_get_subject (EmpathyChat *chat)
4107 {
4108         EmpathyChatPriv *priv = GET_PRIV (chat);
4109
4110         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4111
4112         return priv->subject;
4113 }
4114
4115 EmpathyContact *
4116 empathy_chat_get_remote_contact (EmpathyChat *chat)
4117 {
4118         EmpathyChatPriv *priv = GET_PRIV (chat);
4119
4120         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4121
4122         return priv->remote_contact;
4123 }
4124
4125 GtkWidget *
4126 empathy_chat_get_contact_menu (EmpathyChat *chat)
4127 {
4128         EmpathyChatPriv *priv = GET_PRIV (chat);
4129         GtkWidget       *menu = NULL;
4130         FolksIndividual *individual;
4131         TpContact *contact;
4132
4133         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4134
4135         if (priv->remote_contact == NULL)
4136                 return NULL;
4137
4138         contact = empathy_contact_get_tp_contact (priv->remote_contact);
4139         if (contact == NULL)
4140                 return NULL;
4141
4142         individual = empathy_create_individual_from_tp_contact (contact);
4143         if (individual == NULL)
4144                 return NULL;
4145
4146         menu = empathy_individual_menu_new (individual,
4147                                          EMPATHY_INDIVIDUAL_FEATURE_CALL |
4148                                          EMPATHY_INDIVIDUAL_FEATURE_LOG |
4149                                          EMPATHY_INDIVIDUAL_FEATURE_INFO |
4150                                          EMPATHY_INDIVIDUAL_FEATURE_BLOCK, NULL);
4151
4152         g_object_unref (individual);
4153
4154         return menu;
4155 }
4156
4157 void
4158 empathy_chat_clear (EmpathyChat *chat)
4159 {
4160         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4161
4162         empathy_chat_view_clear (chat->view);
4163 }
4164
4165 void
4166 empathy_chat_scroll_down (EmpathyChat *chat)
4167 {
4168         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4169
4170         empathy_chat_view_scroll_down (chat->view);
4171 }
4172
4173 void
4174 empathy_chat_cut (EmpathyChat *chat)
4175 {
4176         GtkTextBuffer *buffer;
4177
4178         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4179
4180         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4181         if (gtk_text_buffer_get_has_selection (buffer)) {
4182                 GtkClipboard *clipboard;
4183
4184                 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4185
4186                 gtk_text_buffer_cut_clipboard (buffer, clipboard, TRUE);
4187         }
4188 }
4189
4190 void
4191 empathy_chat_copy (EmpathyChat *chat)
4192 {
4193         GtkTextBuffer *buffer;
4194
4195         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4196
4197         if (empathy_chat_view_get_has_selection (chat->view)) {
4198                 empathy_chat_view_copy_clipboard (chat->view);
4199                 return;
4200         }
4201
4202         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4203         if (gtk_text_buffer_get_has_selection (buffer)) {
4204                 GtkClipboard *clipboard;
4205
4206                 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4207
4208                 gtk_text_buffer_copy_clipboard (buffer, clipboard);
4209         }
4210         else {
4211                 gint start_offset;
4212                 gint end_offset;
4213                 EmpathyChatPriv *priv = GET_PRIV (chat);
4214
4215                 if (gtk_label_get_selection_bounds (GTK_LABEL (priv->label_topic),
4216                                                                &start_offset,
4217                                                                &end_offset)) {
4218                         gchar *start;
4219                         gchar *end;
4220                         gchar *selection;
4221                         const gchar *topic;
4222                         GtkClipboard *clipboard;
4223
4224                         topic = gtk_label_get_text (GTK_LABEL (priv->label_topic));
4225                         start = g_utf8_offset_to_pointer (topic, start_offset);
4226                         end = g_utf8_offset_to_pointer (topic, end_offset);
4227                         selection = g_strndup (start, end - start);
4228
4229                         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4230                         gtk_clipboard_set_text (clipboard, selection, -1);
4231
4232                         g_free (selection);
4233                 }
4234         }
4235 }
4236
4237 void
4238 empathy_chat_paste (EmpathyChat *chat)
4239 {
4240         GtkTextBuffer *buffer;
4241         GtkClipboard  *clipboard;
4242         EmpathyChatPriv *priv;
4243
4244         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4245
4246         priv = GET_PRIV (chat);
4247
4248         if (gtk_widget_get_visible (priv->search_bar)) {
4249                 empathy_search_bar_paste_clipboard (EMPATHY_SEARCH_BAR (priv->search_bar));
4250                 return;
4251         }
4252
4253         if (priv->tp_chat == NULL ||
4254             !gtk_widget_is_sensitive (chat->input_text_view))
4255                 return;
4256
4257         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4258         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4259
4260         gtk_text_buffer_paste_clipboard (buffer, clipboard, NULL, TRUE);
4261 }
4262
4263 void
4264 empathy_chat_find (EmpathyChat *chat)
4265 {
4266         EmpathyChatPriv *priv;
4267
4268         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4269
4270         priv = GET_PRIV (chat);
4271
4272         empathy_search_bar_show (EMPATHY_SEARCH_BAR (priv->search_bar));
4273 }
4274
4275 void
4276 empathy_chat_correct_word (EmpathyChat  *chat,
4277                           GtkTextIter *start,
4278                           GtkTextIter *end,
4279                           const gchar *new_word)
4280 {
4281         GtkTextBuffer *buffer;
4282
4283         g_return_if_fail (chat != NULL);
4284         g_return_if_fail (new_word != NULL);
4285
4286         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4287
4288         gtk_text_buffer_delete (buffer, start, end);
4289         gtk_text_buffer_insert (buffer, start,
4290                                 new_word,
4291                                 -1);
4292 }
4293
4294 gboolean
4295 empathy_chat_is_room (EmpathyChat *chat)
4296 {
4297         EmpathyChatPriv *priv = GET_PRIV (chat);
4298
4299         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), FALSE);
4300
4301         return (priv->handle_type == TP_HANDLE_TYPE_ROOM);
4302 }
4303
4304 guint
4305 empathy_chat_get_nb_unread_messages (EmpathyChat *self)
4306 {
4307         EmpathyChatPriv *priv = GET_PRIV (self);
4308
4309         g_return_val_if_fail (EMPATHY_IS_CHAT (self), 0);
4310
4311         return priv->unread_messages;
4312 }
4313
4314 /* called when the messages have been read by user */
4315 void
4316 empathy_chat_messages_read (EmpathyChat *self)
4317 {
4318         EmpathyChatPriv *priv = GET_PRIV (self);
4319
4320         g_return_if_fail (EMPATHY_IS_CHAT (self));
4321
4322         /* FIXME: See Bug#610994, See comments about it in EmpathyChatPriv
4323          * definition. If we are still retrieving the backlogs, do not ACK */
4324         if (priv->retrieving_backlogs)
4325                 return;
4326
4327         if (priv->tp_chat != NULL) {
4328                 tp_text_channel_ack_all_pending_messages_async (
4329                         TP_TEXT_CHANNEL (priv->tp_chat), NULL, NULL);
4330         }
4331
4332         if (priv->unread_messages_when_offline > 0) {
4333                 /* We can't ack those as the connection has gone away so just consider
4334                 * them as read. */
4335                 priv->unread_messages -= priv->unread_messages_when_offline;
4336                 g_object_notify (G_OBJECT (self), "nb-unread-messages");
4337                 priv->unread_messages_when_offline = 0;
4338         }
4339 }
4340
4341 /* Return TRUE if on of the contacts in this chat is composing */
4342 gboolean
4343 empathy_chat_is_composing (EmpathyChat *chat)
4344 {
4345   return chat->priv->compositors != NULL;
4346 }
4347
4348 gboolean
4349 empathy_chat_is_sms_channel (EmpathyChat *self)
4350 {
4351         EmpathyChatPriv *priv = GET_PRIV (self);
4352
4353         g_return_val_if_fail (EMPATHY_IS_CHAT (self), 0);
4354
4355         return priv->sms_channel;
4356 }
4357
4358 guint
4359 empathy_chat_get_n_messages_sending (EmpathyChat *self)
4360 {
4361         EmpathyChatPriv *priv;
4362
4363         g_return_val_if_fail (EMPATHY_IS_CHAT (self), 0);
4364
4365         priv = GET_PRIV (self);
4366
4367         if (priv->tp_chat == NULL) {
4368                 return 0;
4369         } else {
4370                 guint n_messages;
4371
4372                 g_object_get (priv->tp_chat,
4373                         "n-messages-sending", &n_messages,
4374                         NULL);
4375
4376                 return n_messages;
4377         }
4378 }
4379
4380 gchar *
4381 empathy_chat_dup_text (EmpathyChat *self)
4382 {
4383         GtkTextBuffer *buffer;
4384         GtkTextIter     start, end;
4385
4386         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (self->input_text_view));
4387
4388         gtk_text_buffer_get_bounds (buffer, &start, &end);
4389         return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
4390 }
4391
4392 void
4393 empathy_chat_set_text (EmpathyChat *self,
4394                        const gchar *text)
4395 {
4396         GtkTextBuffer *buffer;
4397
4398         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (self->input_text_view));
4399
4400         gtk_text_buffer_set_text (buffer, text, -1);
4401 }