]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-chat.c
EmpathyChat: cache highlight regex.
[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;
1693
1694                         if (!EMP_STR_EMPTY (priv->subject)) {
1695                                 str = g_strdup_printf (_("Topic set to: %s"), priv->subject);
1696                         } else {
1697                                 str = g_strdup (_("No topic defined"));
1698                         }
1699                         empathy_chat_view_append_event (EMPATHY_CHAT (chat)->view, str);
1700                         g_free (str);
1701                 }
1702 }
1703
1704 static void
1705 chat_title_changed_cb (EmpathyChat *chat)
1706 {
1707         EmpathyChatPriv *priv = GET_PRIV (chat);
1708
1709                 g_free (priv->name);
1710                 priv->name = g_strdup (empathy_tp_chat_get_title (priv->tp_chat));
1711                 g_object_notify (G_OBJECT (chat), "name");
1712 }
1713
1714 static gboolean
1715 chat_input_text_get_word_from_iter (GtkTextIter   *iter,
1716                                     GtkTextIter   *start,
1717                                     GtkTextIter   *end)
1718 {
1719         GtkTextIter word_start = *iter;
1720         GtkTextIter word_end = *iter;
1721         GtkTextIter tmp;
1722
1723         if (gtk_text_iter_inside_word (&word_end) &&
1724                         !gtk_text_iter_ends_word (&word_end)) {
1725                 gtk_text_iter_forward_word_end (&word_end);
1726         }
1727
1728         tmp = word_end;
1729
1730         if (gtk_text_iter_get_char (&tmp) == '\'') {
1731                 gtk_text_iter_forward_char (&tmp);
1732
1733                 if (g_unichar_isalpha (gtk_text_iter_get_char (&tmp))) {
1734                         gtk_text_iter_forward_word_end (&word_end);
1735                 }
1736         }
1737
1738
1739         if (gtk_text_iter_inside_word (&word_start) ||
1740                         gtk_text_iter_ends_word (&word_start)) {
1741                 if (!gtk_text_iter_starts_word (&word_start) ||
1742                                 gtk_text_iter_equal (&word_start, &word_end)) {
1743                         gtk_text_iter_backward_word_start (&word_start);
1744                 }
1745
1746                 tmp = word_start;
1747                 gtk_text_iter_backward_char (&tmp);
1748
1749                 if (gtk_text_iter_get_char (&tmp) == '\'') {
1750                         gtk_text_iter_backward_char (&tmp);
1751
1752                         if (g_unichar_isalpha (gtk_text_iter_get_char (&tmp))) {
1753                                 gtk_text_iter_backward_word_start (&word_start);
1754                         }
1755                 }
1756         }
1757
1758         *start = word_start;
1759         *end = word_end;
1760         return TRUE;
1761 }
1762
1763 static void
1764 chat_input_text_buffer_insert_text_cb (GtkTextBuffer *buffer,
1765                                        GtkTextIter   *location,
1766                                        gchar         *text,
1767                                        gint           len,
1768                                        EmpathyChat   *chat)
1769 {
1770         GtkTextIter iter, pos;
1771
1772         /* Remove all misspelled tags in the inserted text.
1773          * This happens when text is inserted within a misspelled word. */
1774         gtk_text_buffer_get_iter_at_offset (buffer, &iter,
1775                                             gtk_text_iter_get_offset (location) - len);
1776         gtk_text_buffer_remove_tag_by_name (buffer, "misspelled",
1777                                             &iter, location);
1778
1779         gtk_text_buffer_get_iter_at_mark (buffer, &pos, gtk_text_buffer_get_insert (buffer));
1780
1781         do {
1782                 GtkTextIter start, end;
1783                 gchar *str;
1784
1785                 if (!chat_input_text_get_word_from_iter (&iter, &start, &end))
1786                         continue;
1787
1788                 str = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
1789
1790                 if (gtk_text_iter_in_range (&pos, &start, &end) ||
1791                                 gtk_text_iter_equal (&pos, &end) ||
1792                                 empathy_spell_check (str)) {
1793                         gtk_text_buffer_remove_tag_by_name (buffer, "misspelled", &start, &end);
1794                 } else {
1795                         gtk_text_buffer_apply_tag_by_name (buffer, "misspelled", &start, &end);
1796                 }
1797
1798                 g_free (str);
1799
1800         } while (gtk_text_iter_forward_word_end (&iter) &&
1801                  gtk_text_iter_compare (&iter, location) <= 0);
1802 }
1803
1804 static void
1805 chat_input_text_buffer_delete_range_cb (GtkTextBuffer *buffer,
1806                                         GtkTextIter   *start,
1807                                         GtkTextIter   *end,
1808                                         EmpathyChat   *chat)
1809 {
1810         GtkTextIter word_start, word_end;
1811
1812         if (chat_input_text_get_word_from_iter (start, &word_start, &word_end)) {
1813                 gtk_text_buffer_remove_tag_by_name (buffer, "misspelled",
1814                                                     &word_start, &word_end);
1815         }
1816 }
1817
1818 static void
1819 chat_input_text_buffer_changed_cb (GtkTextBuffer *buffer,
1820                                    EmpathyChat    *chat)
1821 {
1822         if (gtk_text_buffer_get_char_count (buffer) == 0) {
1823                 chat_composing_stop (chat);
1824         } else {
1825                 chat_composing_start (chat);
1826         }
1827 }
1828
1829 static void
1830 chat_input_text_buffer_notify_cursor_position_cb (GtkTextBuffer *buffer,
1831                                                   GParamSpec    *pspec,
1832                                                   EmpathyChat    *chat)
1833 {
1834         GtkTextIter pos;
1835         GtkTextIter prev_pos;
1836         GtkTextIter word_start;
1837         GtkTextIter word_end;
1838         GtkTextMark *mark;
1839         gchar *str;
1840
1841         mark = gtk_text_buffer_get_mark (buffer, "previous-cursor-position");
1842
1843         gtk_text_buffer_get_iter_at_mark (buffer, &pos,
1844                                           gtk_text_buffer_get_insert (buffer));
1845         gtk_text_buffer_get_iter_at_mark (buffer, &prev_pos, mark);
1846
1847         if (!chat_input_text_get_word_from_iter (&prev_pos, &word_start, &word_end))
1848                 goto out;
1849
1850         if (!gtk_text_iter_in_range (&pos, &word_start, &word_end) &&
1851                         !gtk_text_iter_equal (&pos, &word_end)) {
1852                 str = gtk_text_buffer_get_text (buffer,
1853                                         &word_start, &word_end, FALSE);
1854
1855                 if (!empathy_spell_check (str)) {
1856                         gtk_text_buffer_apply_tag_by_name (buffer,
1857                                         "misspelled", &word_start, &word_end);
1858                 } else {
1859                         gtk_text_buffer_remove_tag_by_name (buffer,
1860                                         "misspelled", &word_start, &word_end);
1861                 }
1862
1863                 g_free (str);
1864         }
1865
1866 out:
1867         gtk_text_buffer_move_mark (buffer, mark, &pos);
1868 }
1869
1870 static gboolean
1871 empathy_isspace_cb (gunichar c,
1872                  gpointer data)
1873 {
1874         return g_unichar_isspace (c);
1875 }
1876
1877 static gboolean
1878 chat_input_key_press_event_cb (GtkWidget   *widget,
1879                                GdkEventKey *event,
1880                                EmpathyChat *chat)
1881 {
1882         EmpathyChatPriv *priv;
1883         GtkAdjustment  *adj;
1884         gdouble         val;
1885         GtkWidget      *text_view_sw;
1886
1887         priv = GET_PRIV (chat);
1888
1889         priv->most_recent_event_type = event->type;
1890
1891         /* Catch ctrl+up/down so we can traverse messages we sent */
1892         if ((event->state & GDK_CONTROL_MASK) &&
1893             (event->keyval == GDK_KEY_Up ||
1894              event->keyval == GDK_KEY_Down)) {
1895                 GtkTextBuffer *buffer;
1896                 const gchar   *str;
1897
1898                 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
1899                 chat_input_history_update (chat, buffer);
1900
1901                 if (event->keyval == GDK_KEY_Up) {
1902                         str = chat_input_history_get_next (chat);
1903                 } else {
1904                         str = chat_input_history_get_prev (chat);
1905                 }
1906
1907                 g_signal_handlers_block_by_func (buffer,
1908                                                  chat_input_text_buffer_changed_cb,
1909                                                  chat);
1910                 gtk_text_buffer_set_text (buffer, str ? str : "", -1);
1911                 g_signal_handlers_unblock_by_func (buffer,
1912                                                    chat_input_text_buffer_changed_cb,
1913                                                    chat);
1914
1915                 return TRUE;
1916         }
1917
1918         /* Catch enter but not ctrl/shift-enter */
1919         if (IS_ENTER (event->keyval) &&
1920             !(event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK))) {
1921                 GtkTextView *view;
1922
1923                 /* This is to make sure that kinput2 gets the enter. And if
1924                  * it's handled there we shouldn't send on it. This is because
1925                  * kinput2 uses Enter to commit letters. See:
1926                  * http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=104299
1927                  */
1928
1929                 view = GTK_TEXT_VIEW (chat->input_text_view);
1930                 if (gtk_text_view_im_context_filter_keypress (view, event)) {
1931                         gtk_text_view_reset_im_context (view);
1932                         return TRUE;
1933                 }
1934
1935                 chat_input_text_view_send (chat);
1936                 return TRUE;
1937         }
1938
1939         text_view_sw = gtk_widget_get_parent (GTK_WIDGET (chat->view));
1940
1941         if (IS_ENTER (event->keyval) &&
1942             (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK))) {
1943                 /* Newline for shift/control-enter. */
1944                 return FALSE;
1945         }
1946         if (!(event->state & GDK_CONTROL_MASK) &&
1947             event->keyval == GDK_KEY_Page_Up) {
1948                 adj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (text_view_sw));
1949                 gtk_adjustment_set_value (adj, gtk_adjustment_get_value (adj) - gtk_adjustment_get_page_size (adj));
1950                 return TRUE;
1951         }
1952         if ((event->state & GDK_CONTROL_MASK) != GDK_CONTROL_MASK &&
1953             event->keyval == GDK_KEY_Page_Down) {
1954                 adj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (text_view_sw));
1955                 val = MIN (gtk_adjustment_get_value (adj) + gtk_adjustment_get_page_size (adj),
1956                            gtk_adjustment_get_upper (adj) - gtk_adjustment_get_page_size (adj));
1957                 gtk_adjustment_set_value (adj, val);
1958                 return TRUE;
1959         }
1960         if (event->keyval == GDK_KEY_Escape) {
1961                 empathy_search_bar_hide (EMPATHY_SEARCH_BAR (priv->search_bar));
1962         }
1963         if (!(event->state & (GDK_CONTROL_MASK | GDK_SHIFT_MASK)) &&
1964             event->keyval == GDK_KEY_Tab) {
1965                 GtkTextBuffer *buffer;
1966                 GtkTextIter    start, current;
1967                 gchar         *nick, *completed;
1968                 GList         *list, *completed_list;
1969                 gboolean       is_start_of_buffer;
1970
1971                 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (EMPATHY_CHAT (chat)->input_text_view));
1972                 gtk_text_buffer_get_iter_at_mark (buffer, &current, gtk_text_buffer_get_insert (buffer));
1973
1974                 /* Get the start of the nick to complete. */
1975                 gtk_text_buffer_get_iter_at_mark (buffer, &start, gtk_text_buffer_get_insert (buffer));
1976                 if (gtk_text_iter_backward_find_char (&start, &empathy_isspace_cb, NULL, NULL)) {
1977                         gtk_text_iter_set_offset (&start, gtk_text_iter_get_offset (&start) + 1);
1978                 }
1979                 is_start_of_buffer = gtk_text_iter_is_start (&start);
1980
1981                 list = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (priv->tp_chat));
1982                 g_completion_add_items (priv->completion, list);
1983
1984                 nick = gtk_text_buffer_get_text (buffer, &start, &current, FALSE);
1985                 completed_list = g_completion_complete (priv->completion,
1986                                                         nick,
1987                                                         &completed);
1988
1989                 g_free (nick);
1990
1991                 if (completed) {
1992                         guint        len;
1993                         const gchar *text;
1994                         GString     *message = NULL;
1995                         GList       *l;
1996
1997                         gtk_text_buffer_delete (buffer, &start, &current);
1998
1999                         len = g_list_length (completed_list);
2000
2001                         if (len == 1) {
2002                                 /* If we only have one hit, use that text
2003                                  * instead of the text in completed since the
2004                                  * completed text will use the typed string
2005                                  * which might be cased all wrong.
2006                                  * Fixes #120876
2007                                  * */
2008                                 text = empathy_contact_get_alias (completed_list->data);
2009                         } else {
2010                                 text = completed;
2011
2012                                 /* Print all hits to the scrollback view, so the
2013                                  * user knows what possibilities he has.
2014                                  * Fixes #599779
2015                                  * */
2016                                  message = g_string_new ("");
2017                                  for (l = completed_list; l != NULL; l = l->next) {
2018                                         g_string_append (message, empathy_contact_get_alias (l->data));
2019                                         g_string_append (message, " - ");
2020                                  }
2021                                  empathy_chat_view_append_event (chat->view, message->str);
2022                                  g_string_free (message, TRUE);
2023                         }
2024
2025                         gtk_text_buffer_insert_at_cursor (buffer, text, strlen (text));
2026
2027                         if (len == 1 && is_start_of_buffer) {
2028                             gchar *complete_char;
2029
2030                             complete_char = g_settings_get_string (
2031                                     priv->gsettings_chat,
2032                                     EMPATHY_PREFS_CHAT_NICK_COMPLETION_CHAR);
2033
2034                             if (complete_char != NULL) {
2035                                 gtk_text_buffer_insert_at_cursor (buffer,
2036                                                                   complete_char,
2037                                                                   strlen (complete_char));
2038                                 gtk_text_buffer_insert_at_cursor (buffer, " ", 1);
2039                                 g_free (complete_char);
2040                             }
2041                         }
2042
2043                         g_free (completed);
2044                 }
2045
2046                 g_completion_clear_items (priv->completion);
2047
2048                 g_list_foreach (list, (GFunc) g_object_unref, NULL);
2049                 g_list_free (list);
2050
2051                 return TRUE;
2052         }
2053
2054         return FALSE;
2055 }
2056
2057 static gboolean
2058 chat_text_view_focus_in_event_cb (GtkWidget  *widget,
2059                                   GdkEvent   *event,
2060                                   EmpathyChat *chat)
2061 {
2062         gtk_widget_grab_focus (chat->input_text_view);
2063
2064         return TRUE;
2065 }
2066
2067 static void
2068 chat_input_realize_cb (GtkWidget   *widget,
2069                        EmpathyChat *chat)
2070 {
2071         DEBUG ("Setting focus to the input text view");
2072         if (gtk_widget_is_sensitive (widget)) {
2073                 gtk_widget_grab_focus (widget);
2074         }
2075 }
2076
2077 static void
2078 chat_input_has_focus_notify_cb (GtkWidget   *widget,
2079                                 GParamSpec  *pspec,
2080                                 EmpathyChat *chat)
2081 {
2082         empathy_chat_view_focus_toggled (chat->view, gtk_widget_has_focus (widget));
2083 }
2084
2085 static void
2086 chat_insert_smiley_activate_cb (EmpathySmileyManager *manager,
2087                                 EmpathySmiley        *smiley,
2088                                 gpointer              user_data)
2089 {
2090         EmpathyChat   *chat = EMPATHY_CHAT (user_data);
2091         GtkTextBuffer *buffer;
2092         GtkTextIter    iter;
2093
2094         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
2095
2096         gtk_text_buffer_get_end_iter (buffer, &iter);
2097         gtk_text_buffer_insert (buffer, &iter, smiley->str, -1);
2098
2099         gtk_text_buffer_get_end_iter (buffer, &iter);
2100         gtk_text_buffer_insert (buffer, &iter, " ", -1);
2101 }
2102
2103 typedef struct {
2104         EmpathyChat  *chat;
2105         gchar       *word;
2106
2107         GtkTextIter  start;
2108         GtkTextIter  end;
2109 } EmpathyChatSpell;
2110
2111 static EmpathyChatSpell *
2112 chat_spell_new (EmpathyChat  *chat,
2113                 const gchar *word,
2114                 GtkTextIter  start,
2115                 GtkTextIter  end)
2116 {
2117         EmpathyChatSpell *chat_spell;
2118
2119         chat_spell = g_slice_new0 (EmpathyChatSpell);
2120
2121         chat_spell->chat = g_object_ref (chat);
2122         chat_spell->word = g_strdup (word);
2123         chat_spell->start = start;
2124         chat_spell->end = end;
2125
2126         return chat_spell;
2127 }
2128
2129 static void
2130 chat_spell_free (EmpathyChatSpell *chat_spell)
2131 {
2132         g_object_unref (chat_spell->chat);
2133         g_free (chat_spell->word);
2134         g_slice_free (EmpathyChatSpell, chat_spell);
2135 }
2136
2137 static void
2138 chat_spelling_menu_activate_cb (GtkMenuItem     *menu_item,
2139                                                 EmpathyChatSpell *chat_spell)
2140 {
2141     empathy_chat_correct_word (chat_spell->chat,
2142                                &(chat_spell->start),
2143                                &(chat_spell->end),
2144                                gtk_menu_item_get_label (menu_item));
2145 }
2146
2147
2148 static GtkWidget *
2149 chat_spelling_build_suggestions_menu (const gchar *code,
2150                                       EmpathyChatSpell *chat_spell)
2151 {
2152         GList     *suggestions, *l;
2153         GtkWidget *menu, *menu_item;
2154
2155         suggestions = empathy_spell_get_suggestions (code, chat_spell->word);
2156         if (suggestions == NULL)
2157                 return NULL;
2158
2159         menu = gtk_menu_new ();
2160         for (l = suggestions; l; l = l->next) {
2161                 menu_item = gtk_menu_item_new_with_label (l->data);
2162                 g_signal_connect (G_OBJECT (menu_item), "activate",
2163                                   G_CALLBACK (chat_spelling_menu_activate_cb),
2164                                   chat_spell);
2165                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
2166         }
2167         empathy_spell_free_suggestions (suggestions);
2168
2169         gtk_widget_show_all (menu);
2170
2171         return menu;
2172 }
2173
2174 static GtkWidget *
2175 chat_spelling_build_menu (EmpathyChatSpell *chat_spell)
2176 {
2177         GtkWidget *menu, *submenu, *item;
2178         GList     *codes, *l;
2179
2180         codes = empathy_spell_get_enabled_language_codes ();
2181         g_assert (codes != NULL);
2182
2183         if (g_list_length (codes) > 1) {
2184                 menu = gtk_menu_new ();
2185
2186                 for (l = codes; l; l = l->next) {
2187                         const gchar *code, *name;
2188
2189                         code = l->data;
2190                         name = empathy_spell_get_language_name (code);
2191                         if (!name)
2192                                 continue;
2193
2194                         item = gtk_image_menu_item_new_with_label (name);
2195
2196                         submenu = chat_spelling_build_suggestions_menu (
2197                                         code, chat_spell);
2198                         if (submenu == NULL)
2199                                 gtk_widget_set_sensitive (item, FALSE);
2200                         else
2201                                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item),
2202                                                            submenu);
2203                         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2204                 }
2205         } else {
2206                 menu = chat_spelling_build_suggestions_menu (codes->data,
2207                                                              chat_spell);
2208                 if (menu == NULL) {
2209                         menu = gtk_menu_new ();
2210                         item = gtk_menu_item_new_with_label (_("(No Suggestions)"));
2211                         gtk_widget_set_sensitive (item, FALSE);
2212                         gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
2213                 }
2214         }
2215         g_list_free (codes);
2216
2217         gtk_widget_show_all (menu);
2218
2219         return menu;
2220 }
2221
2222 typedef struct {
2223         EmpathyChat  *chat;
2224         gchar        *word;
2225         gchar        *code;
2226 } EmpathyChatWord;
2227
2228 static EmpathyChatWord *
2229 chat_word_new (EmpathyChat  *chat,
2230                 const gchar  *word,
2231                 const gchar  *code)
2232 {
2233         EmpathyChatWord *chat_word;
2234
2235         chat_word = g_slice_new0 (EmpathyChatWord);
2236
2237         chat_word->chat = g_object_ref (chat);
2238         chat_word->word = g_strdup (word);
2239         chat_word->code = g_strdup (code);
2240
2241         return chat_word;
2242 }
2243
2244 static void
2245 chat_word_free (EmpathyChatWord *chat_word)
2246 {
2247         g_object_unref (chat_word->chat);
2248         g_free (chat_word->word);
2249         g_free (chat_word->code);
2250         g_slice_free (EmpathyChatWord, chat_word);
2251 }
2252
2253 static void
2254 chat_add_to_dictionary_activate_cb (GtkMenuItem     *menu_item,
2255                                     EmpathyChatWord *chat_word)
2256 {
2257         EmpathyChatPriv *priv = GET_PRIV (chat_word->chat);
2258
2259         empathy_spell_add_to_dictionary (chat_word->code,
2260                                          chat_word->word);
2261         priv->update_misspelled_words_id =
2262                 g_idle_add (update_misspelled_words, chat_word->chat);
2263 }
2264
2265 static GtkWidget *
2266 chat_spelling_build_add_to_dictionary_item (EmpathyChatSpell *chat_spell)
2267 {
2268         GtkWidget       *menu, *item, *lang_item, *image;
2269         GList           *codes, *l;
2270         gchar           *label;
2271         const gchar     *code, *name;
2272         EmpathyChatWord *chat_word;
2273
2274         codes = empathy_spell_get_enabled_language_codes ();
2275         g_assert (codes != NULL);
2276         if (g_list_length (codes) > 1) {
2277                 /* translators: %s is the selected word */
2278                 label = g_strdup_printf (_("Add '%s' to Dictionary"),
2279                                         chat_spell->word);
2280                 item = gtk_image_menu_item_new_with_mnemonic (label);
2281                 g_free (label);
2282                 image = gtk_image_new_from_icon_name (GTK_STOCK_ADD,
2283                                                       GTK_ICON_SIZE_MENU);
2284                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item),
2285                                                image);
2286
2287                 menu = gtk_menu_new ();
2288
2289                 for (l = codes; l; l = l->next) {
2290                         code = l->data;
2291                         name = empathy_spell_get_language_name (code);
2292                         if (name == NULL)
2293                                 continue;
2294
2295                         lang_item = gtk_image_menu_item_new_with_label (name);
2296
2297                         chat_word= chat_word_new (chat_spell->chat,
2298                                                   chat_spell->word, code);
2299                         g_object_set_data_full (G_OBJECT (lang_item),
2300                                 "chat-word", chat_word,
2301                                 (GDestroyNotify) chat_word_free);
2302
2303                         g_signal_connect (G_OBJECT (lang_item), "activate",
2304                                 G_CALLBACK (chat_add_to_dictionary_activate_cb),
2305                                 chat_word);
2306                         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), lang_item);
2307                 }
2308                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), menu);
2309         } else {
2310                 code = codes->data;
2311                 name = empathy_spell_get_language_name (code);
2312                 g_assert (name != NULL);
2313                 /* translators: first %s is the selected word,
2314                  * second %s is the language name of the target dictionary */
2315                 label = g_strdup_printf (_("Add '%s' to %s Dictionary"),
2316                                         chat_spell->word, name);
2317                 item = gtk_image_menu_item_new_with_mnemonic (label);
2318                 g_free (label);
2319                 image = gtk_image_new_from_icon_name (GTK_STOCK_ADD,
2320                                                       GTK_ICON_SIZE_MENU);
2321                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
2322
2323                 chat_word = chat_word_new (chat_spell->chat, chat_spell->word,
2324                                            code);
2325                 g_object_set_data_full (G_OBJECT (item), "chat-word", chat_word,
2326                                         (GDestroyNotify) chat_word_free);
2327
2328                 g_signal_connect (G_OBJECT (item), "activate",
2329                                   G_CALLBACK (chat_add_to_dictionary_activate_cb),
2330                                   chat_word);
2331         }
2332         g_list_free (codes);
2333
2334         gtk_widget_show_all (item);
2335
2336         return item;
2337 }
2338
2339 static void
2340 chat_text_send_cb (GtkMenuItem *menuitem,
2341                    EmpathyChat *chat)
2342 {
2343         chat_input_text_view_send (chat);
2344 }
2345
2346 static gboolean
2347 chat_input_button_press_event_cb (GtkTextView    *view,
2348                                   GdkEventButton *event,
2349                                   EmpathyChat    *chat)
2350 {
2351         EmpathyChatPriv *priv = GET_PRIV (chat);
2352
2353         priv->most_recent_event_type = event->type;
2354
2355         return FALSE;
2356 }
2357
2358 static void
2359 chat_input_populate_popup_cb (GtkTextView *view,
2360                               GtkMenu     *menu,
2361                               EmpathyChat *chat)
2362 {
2363         EmpathyChatPriv      *priv = GET_PRIV (chat);
2364         GtkTextBuffer        *buffer;
2365         GtkTextTagTable      *table;
2366         GtkTextTag           *tag;
2367         gint                  x, y;
2368         GtkTextIter           iter, start, end;
2369         GtkWidget            *item;
2370         gchar                *str = NULL;
2371         EmpathyChatSpell     *chat_spell;
2372         GtkWidget            *spell_menu;
2373         GtkWidget            *spell_item;
2374         EmpathySmileyManager *smiley_manager;
2375         GtkWidget            *smiley_menu;
2376         GtkWidget            *image;
2377
2378         buffer = gtk_text_view_get_buffer (view);
2379
2380         /* Add the emoticon menu. */
2381         item = gtk_separator_menu_item_new ();
2382         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2383         gtk_widget_show (item);
2384
2385         item = gtk_image_menu_item_new_with_mnemonic (_("Insert Smiley"));
2386         image = gtk_image_new_from_icon_name ("face-smile",
2387                                               GTK_ICON_SIZE_MENU);
2388         gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
2389         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2390         gtk_widget_show (item);
2391
2392         smiley_manager = empathy_smiley_manager_dup_singleton ();
2393         smiley_menu = empathy_smiley_menu_new (smiley_manager,
2394                                                chat_insert_smiley_activate_cb,
2395                                                chat);
2396         gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), smiley_menu);
2397         g_object_unref (smiley_manager);
2398
2399         /* Add the Send menu item. */
2400         gtk_text_buffer_get_bounds (buffer, &start, &end);
2401         str = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
2402         if (!EMP_STR_EMPTY (str)) {
2403                 item = gtk_menu_item_new_with_mnemonic (_("_Send"));
2404                 g_signal_connect (G_OBJECT (item), "activate",
2405                                   G_CALLBACK (chat_text_send_cb), chat);
2406                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2407                 gtk_widget_show (item);
2408         }
2409         str = NULL;
2410
2411         /* Add the spell check menu item. */
2412         table = gtk_text_buffer_get_tag_table (buffer);
2413         tag = gtk_text_tag_table_lookup (table, "misspelled");
2414
2415         switch (priv->most_recent_event_type) {
2416             case GDK_BUTTON_PRESS:
2417                 /* get the location from the pointer */
2418                 gdk_window_get_device_position (gtk_widget_get_window (GTK_WIDGET (view)),
2419                         gdk_device_manager_get_client_pointer (gdk_display_get_device_manager (
2420                                 gtk_widget_get_display (GTK_WIDGET (view)))), &x, &y, NULL);
2421
2422                 gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (view),
2423                                                        GTK_TEXT_WINDOW_WIDGET,
2424                                                        x, y,
2425                                                        &x, &y);
2426                 gtk_text_view_get_iter_at_location (GTK_TEXT_VIEW (view),
2427                                                     &iter, x, y);
2428                 break;
2429
2430             default:
2431                 g_warn_if_reached ();
2432                 /* assume the KEY_PRESS case */
2433
2434             case GDK_KEY_PRESS:
2435                 /* get the location from the cursor */
2436                 gtk_text_buffer_get_iter_at_mark (buffer, &iter,
2437                                 gtk_text_buffer_get_insert (buffer));
2438                 break;
2439
2440         }
2441
2442         start = end = iter;
2443         if (gtk_text_iter_backward_to_tag_toggle (&start, tag) &&
2444             gtk_text_iter_forward_to_tag_toggle (&end, tag)) {
2445
2446                 str = gtk_text_buffer_get_text (buffer,
2447                                                 &start, &end, FALSE);
2448         }
2449         if (!EMP_STR_EMPTY (str)) {
2450                 chat_spell = chat_spell_new (chat, str, start, end);
2451                 g_object_set_data_full (G_OBJECT (menu),
2452                                         "chat-spell", chat_spell,
2453                                         (GDestroyNotify) chat_spell_free);
2454
2455                 item = gtk_separator_menu_item_new ();
2456                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2457                 gtk_widget_show (item);
2458
2459                 /* Spelling suggestions */
2460                 item = gtk_image_menu_item_new_with_mnemonic (_("_Spelling Suggestions"));
2461                 image = gtk_image_new_from_icon_name (GTK_STOCK_SPELL_CHECK,
2462                                                       GTK_ICON_SIZE_MENU);
2463                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
2464
2465                 spell_menu = chat_spelling_build_menu (chat_spell);
2466                 gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), spell_menu);
2467
2468
2469                 spell_item = gtk_separator_menu_item_new ();
2470                 gtk_menu_shell_append (GTK_MENU_SHELL (spell_menu), spell_item);
2471                 gtk_widget_show (spell_item);
2472
2473                 /* Add to dictionary */
2474                 spell_item = chat_spelling_build_add_to_dictionary_item (chat_spell);
2475
2476                 gtk_menu_shell_append (GTK_MENU_SHELL (spell_menu), spell_item);
2477                 gtk_widget_show (spell_item);
2478
2479                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
2480                 gtk_widget_show (item);
2481         }
2482 }
2483
2484
2485 static gboolean
2486 chat_log_filter (TplEvent *event,
2487                  gpointer user_data)
2488 {
2489         EmpathyChat *chat = user_data;
2490         EmpathyMessage *message;
2491         EmpathyChatPriv *priv = GET_PRIV (chat);
2492         const GList *pending;
2493
2494         g_return_val_if_fail (TPL_IS_EVENT (event), FALSE);
2495         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), FALSE);
2496
2497         pending = empathy_tp_chat_get_pending_messages (priv->tp_chat);
2498         message = empathy_message_from_tpl_log_event (event);
2499
2500         for (; pending; pending = g_list_next (pending)) {
2501                 if (empathy_message_equal (message, pending->data)) {
2502                         g_object_unref (message);
2503                         return FALSE;
2504                 }
2505         }
2506
2507         g_object_unref (message);
2508         return TRUE;
2509 }
2510
2511
2512 static void
2513 show_pending_messages (EmpathyChat *chat) {
2514         EmpathyChatPriv *priv = GET_PRIV (chat);
2515         const GList *messages, *l;
2516
2517         g_return_if_fail (EMPATHY_IS_CHAT (chat));
2518
2519         if (chat->view == NULL || priv->tp_chat == NULL)
2520                 return;
2521
2522         if (!priv->can_show_pending)
2523                 return;
2524
2525         messages = empathy_tp_chat_get_pending_messages (priv->tp_chat);
2526
2527         for (l = messages; l != NULL ; l = g_list_next (l)) {
2528                 EmpathyMessage *message = EMPATHY_MESSAGE (l->data);
2529                 chat_message_received (chat, message, TRUE);
2530         }
2531 }
2532
2533
2534 static void
2535 got_filtered_messages_cb (GObject *manager,
2536                 GAsyncResult *result,
2537                 gpointer user_data)
2538 {
2539         GList *l;
2540         GList *messages;
2541         EmpathyChat *chat = EMPATHY_CHAT (user_data);
2542         EmpathyChatPriv *priv = GET_PRIV (chat);
2543         GError *error = NULL;
2544
2545         if (!tpl_log_manager_get_filtered_events_finish (TPL_LOG_MANAGER (manager),
2546                 result, &messages, &error)) {
2547                 DEBUG ("%s. Aborting.", error->message);
2548                 empathy_chat_view_append_event (chat->view,
2549                         _("Failed to retrieve recent logs"));
2550                 g_error_free (error);
2551                 goto out;
2552         }
2553
2554         for (l = messages; l; l = g_list_next (l)) {
2555                 EmpathyMessage *message;
2556
2557                 g_assert (TPL_IS_EVENT (l->data));
2558
2559                 message = empathy_message_from_tpl_log_event (l->data);
2560                 g_object_unref (l->data);
2561
2562                 if (empathy_message_is_edit (message)) {
2563                         /* this is an edited message, create a synthetic event
2564                          * using the supersedes token and
2565                          * original-message-sent timestamp, that we can then
2566                          * replace */
2567                         EmpathyMessage *syn_msg = g_object_new (
2568                                 EMPATHY_TYPE_MESSAGE,
2569                                 "body", "",
2570                                 "token", empathy_message_get_supersedes (message),
2571                                 "type", empathy_message_get_tptype (message),
2572                                 "timestamp", empathy_message_get_original_timestamp (message),
2573                                 "incoming", empathy_message_is_incoming (message),
2574                                 "is-backlog", TRUE,
2575                                 "receiver", empathy_message_get_receiver (message),
2576                                 "sender", empathy_message_get_sender (message),
2577                                 NULL);
2578
2579                         empathy_chat_view_append_message (chat->view, syn_msg,
2580                                                           chat_should_highlight (chat, syn_msg));
2581                         empathy_chat_view_edit_message (chat->view, message);
2582
2583                         g_object_unref (syn_msg);
2584                 } else {
2585                         /* append the latest message */
2586                         empathy_chat_view_append_message (chat->view, message,
2587                                                           chat_should_highlight (chat, message));
2588                 }
2589
2590                 g_object_unref (message);
2591         }
2592         g_list_free (messages);
2593
2594 out:
2595         /* in case of TPL error, skip backlog and show pending messages */
2596         priv->can_show_pending = TRUE;
2597         show_pending_messages (chat);
2598
2599         /* FIXME: See Bug#610994, we are forcing the ACK of the queue. See comments
2600          * about it in EmpathyChatPriv definition */
2601         priv->retrieving_backlogs = FALSE;
2602         empathy_chat_messages_read (chat);
2603
2604         /* Turn back on scrolling */
2605         empathy_chat_view_scroll (chat->view, TRUE);
2606 }
2607
2608 static void
2609 chat_add_logs (EmpathyChat *chat)
2610 {
2611         EmpathyChatPriv *priv = GET_PRIV (chat);
2612         TplEntity       *target;
2613
2614         if (!priv->id) {
2615                 return;
2616         }
2617
2618         /* Turn off scrolling temporarily */
2619         empathy_chat_view_scroll (chat->view, FALSE);
2620
2621         /* Add messages from last conversation */
2622         if (priv->handle_type == TP_HANDLE_TYPE_ROOM)
2623           target = tpl_entity_new_from_room_id (priv->id);
2624         else
2625           target = tpl_entity_new (priv->id, TPL_ENTITY_CONTACT, NULL, NULL);
2626
2627         priv->retrieving_backlogs = TRUE;
2628         tpl_log_manager_get_filtered_events_async (priv->log_manager,
2629                                                    priv->account,
2630                                                    target,
2631                                                    TPL_EVENT_MASK_TEXT,
2632                                                    5,
2633                                                    chat_log_filter,
2634                                                    chat,
2635                                                    got_filtered_messages_cb,
2636                                                    (gpointer) chat);
2637
2638         g_object_unref (target);
2639 }
2640
2641 static gint
2642 chat_contacts_completion_func (const gchar *s1,
2643                                const gchar *s2,
2644                                gsize        n)
2645 {
2646         gchar *tmp, *nick1, *nick2;
2647         gint   ret;
2648
2649         if (s1 == s2) {
2650                 return 0;
2651         }
2652         if (!s1 || !s2) {
2653                 return s1 ? -1 : +1;
2654         }
2655
2656         tmp = g_utf8_normalize (s1, -1, G_NORMALIZE_DEFAULT);
2657         nick1 = g_utf8_casefold (tmp, -1);
2658         g_free (tmp);
2659
2660         tmp = g_utf8_normalize (s2, -1, G_NORMALIZE_DEFAULT);
2661         nick2 = g_utf8_casefold (tmp, -1);
2662         g_free (tmp);
2663
2664         ret = strncmp (nick1, nick2, n);
2665
2666         g_free (nick1);
2667         g_free (nick2);
2668
2669         return ret;
2670 }
2671
2672 static gchar *
2673 build_part_message (guint           reason,
2674                     const gchar    *name,
2675                     EmpathyContact *actor,
2676                     const gchar    *message)
2677 {
2678         GString *s = g_string_new ("");
2679         const gchar *actor_name = NULL;
2680
2681         if (actor != NULL) {
2682                 actor_name = empathy_contact_get_alias (actor);
2683         }
2684
2685         /* Having an actor only really makes sense for a few actions... */
2686         switch (reason) {
2687         case TP_CHANNEL_GROUP_CHANGE_REASON_OFFLINE:
2688                 g_string_append_printf (s, _("%s has disconnected"), name);
2689                 break;
2690         case TP_CHANNEL_GROUP_CHANGE_REASON_KICKED:
2691                 if (actor_name != NULL) {
2692                         /* translators: reverse the order of these arguments
2693                          * if the kicked should come before the kicker in your locale.
2694                          */
2695                         g_string_append_printf (s, _("%1$s was kicked by %2$s"),
2696                                 name, actor_name);
2697                 } else {
2698                         g_string_append_printf (s, _("%s was kicked"), name);
2699                 }
2700                 break;
2701         case TP_CHANNEL_GROUP_CHANGE_REASON_BANNED:
2702                 if (actor_name != NULL) {
2703                         /* translators: reverse the order of these arguments
2704                          * if the banned should come before the banner in your locale.
2705                          */
2706                         g_string_append_printf (s, _("%1$s was banned by %2$s"),
2707                                 name, actor_name);
2708                 } else {
2709                         g_string_append_printf (s, _("%s was banned"), name);
2710                 }
2711                 break;
2712         default:
2713                 g_string_append_printf (s, _("%s has left the room"), name);
2714         }
2715
2716         if (!EMP_STR_EMPTY (message)) {
2717                 /* Note to translators: this string is appended to
2718                  * notifications like "foo has left the room", with the message
2719                  * given by the user living the room. If this poses a problem,
2720                  * please let us know. :-)
2721                  */
2722                 g_string_append_printf (s, _(" (%s)"), message);
2723         }
2724
2725         return g_string_free (s, FALSE);
2726 }
2727
2728 static void
2729 chat_members_changed_cb (EmpathyTpChat  *tp_chat,
2730                          EmpathyContact *contact,
2731                          EmpathyContact *actor,
2732                          guint           reason,
2733                          gchar          *message,
2734                          gboolean        is_member,
2735                          EmpathyChat    *chat)
2736 {
2737         EmpathyChatPriv *priv = GET_PRIV (chat);
2738         const gchar *name = empathy_contact_get_alias (contact);
2739         gchar *str;
2740
2741         g_return_if_fail (TP_CHANNEL_GROUP_CHANGE_REASON_RENAMED != reason);
2742
2743         if (priv->block_events_timeout_id != 0)
2744                 return;
2745
2746         if (is_member) {
2747                 str = g_strdup_printf (_("%s has joined the room"),
2748                                        name);
2749         } else {
2750                 str = build_part_message (reason, name, actor, message);
2751         }
2752
2753         empathy_chat_view_append_event (chat->view, str);
2754         g_free (str);
2755 }
2756
2757 static void
2758 chat_member_renamed_cb (EmpathyTpChat  *tp_chat,
2759                          EmpathyContact *old_contact,
2760                          EmpathyContact *new_contact,
2761                          guint           reason,
2762                          gchar          *message,
2763                          EmpathyChat    *chat)
2764 {
2765         EmpathyChatPriv *priv = GET_PRIV (chat);
2766
2767         g_return_if_fail (TP_CHANNEL_GROUP_CHANGE_REASON_RENAMED == reason);
2768
2769         if (priv->block_events_timeout_id == 0) {
2770                 gchar *str;
2771
2772                 str = g_strdup_printf (_("%s is now known as %s"),
2773                                        empathy_contact_get_alias (old_contact),
2774                                        empathy_contact_get_alias (new_contact));
2775                 empathy_chat_view_append_event (chat->view, str);
2776                 g_free (str);
2777         }
2778
2779 }
2780
2781 static gboolean
2782 chat_contacts_visible_timeout_cb (gpointer chat)
2783 {
2784         EmpathyChatPriv *priv = GET_PRIV (chat);
2785
2786         /* Relax the size request */
2787         gtk_widget_set_size_request (priv->vbox_left, -1, -1);
2788
2789         /* Set the position of the slider. This must be done here because
2790          * GtkPaned need to know its size allocation and it will be settled only
2791          * after the gtk_window_resize () tough effect. */
2792         if (priv->contacts_width > 0) {
2793                 gtk_paned_set_position (GTK_PANED (priv->hpaned),
2794                                         priv->contacts_width);
2795         }
2796
2797         priv->contacts_visible_id = 0;
2798
2799         return FALSE;
2800 }
2801
2802 static void
2803 chat_update_contacts_visibility (EmpathyChat *chat,
2804                          gboolean show)
2805 {
2806         EmpathyChatPriv *priv = GET_PRIV (chat);
2807
2808         if (!priv->scrolled_window_contacts) {
2809                 return;
2810         }
2811
2812         if (priv->remote_contact != NULL) {
2813                 show = FALSE;
2814         }
2815
2816         if (show && priv->contact_list_view == NULL) {
2817                 EmpathyIndividualStore *store;
2818                 gint                     min_width;
2819                 GtkAllocation            allocation;
2820
2821                 /* We are adding the contact list to the chat, we don't want the
2822                  * chat view to become too small. If the chat view is already
2823                  * smaller than 250 make sure that size won't change. If the
2824                  * chat view is bigger the contact list will take some space on
2825                  * it but we make sure the chat view don't become smaller than
2826                  * 250. Relax the size request once the resize is done */
2827                 gtk_widget_get_allocation (priv->vbox_left, &allocation);
2828                 min_width = MIN (allocation.width, 250);
2829                 gtk_widget_set_size_request (priv->vbox_left, min_width, -1);
2830
2831                 /* There is no way to know when the window resize will happen
2832                  * since it is WM's decision. Let's hope it won't be longer. */
2833                 if (priv->contacts_visible_id != 0)
2834                         g_source_remove (priv->contacts_visible_id);
2835                 priv->contacts_visible_id = g_timeout_add (500,
2836                         chat_contacts_visible_timeout_cb, chat);
2837
2838                 store = EMPATHY_INDIVIDUAL_STORE (
2839                                 empathy_individual_store_channel_new ((TpChannel *) priv->tp_chat));
2840
2841                 empathy_individual_store_set_show_groups (store, FALSE);
2842
2843                 priv->contact_list_view = GTK_WIDGET (empathy_individual_view_new (store,
2844                         EMPATHY_INDIVIDUAL_VIEW_FEATURE_INDIVIDUAL_TOOLTIP,
2845                         EMPATHY_INDIVIDUAL_FEATURE_ADD_CONTACT |
2846                         EMPATHY_INDIVIDUAL_FEATURE_CHAT |
2847                         EMPATHY_INDIVIDUAL_FEATURE_CALL |
2848                         EMPATHY_INDIVIDUAL_FEATURE_LOG |
2849                         EMPATHY_INDIVIDUAL_FEATURE_INFO));
2850
2851                 empathy_individual_view_set_show_offline (
2852                         EMPATHY_INDIVIDUAL_VIEW (priv->contact_list_view), TRUE);
2853                 empathy_individual_view_set_show_uninteresting (
2854                         EMPATHY_INDIVIDUAL_VIEW (priv->contact_list_view), TRUE);
2855
2856                 gtk_container_add (GTK_CONTAINER (priv->scrolled_window_contacts),
2857                                    priv->contact_list_view);
2858
2859                 gtk_widget_show (priv->contact_list_view);
2860                 gtk_widget_show (priv->scrolled_window_contacts);
2861                 g_object_unref (store);
2862         } else if (!show) {
2863                 priv->contacts_width = gtk_paned_get_position (GTK_PANED (priv->hpaned));
2864                 gtk_widget_hide (priv->scrolled_window_contacts);
2865                 if (priv->contact_list_view != NULL) {
2866                         gtk_widget_destroy (priv->contact_list_view);
2867                         priv->contact_list_view = NULL;
2868                 }
2869         }
2870 }
2871
2872 void
2873 empathy_chat_set_show_contacts (EmpathyChat *chat,
2874                                 gboolean     show)
2875 {
2876         EmpathyChatPriv *priv = GET_PRIV (chat);
2877
2878         priv->show_contacts = show;
2879
2880         chat_update_contacts_visibility (chat, show);
2881
2882         g_object_notify (G_OBJECT (chat), "show-contacts");
2883 }
2884
2885 static void
2886 chat_self_contact_changed_cb (EmpathyChat *chat)
2887 {
2888         EmpathyChatPriv *priv = GET_PRIV (chat);
2889
2890         if (priv->self_contact != NULL) {
2891                 g_signal_handlers_disconnect_by_func (priv->self_contact,
2892                                                       chat_self_contact_alias_changed_cb,
2893                                                       chat);
2894         }
2895         g_clear_object (&priv->self_contact);
2896
2897         priv->self_contact = empathy_tp_chat_get_self_contact (priv->tp_chat);
2898         if (priv->self_contact != NULL) {
2899                 g_object_ref (priv->self_contact);
2900
2901                 if (empathy_chat_is_room (chat)) {
2902                         g_signal_connect_swapped (priv->self_contact, "notify::alias",
2903                                           G_CALLBACK (chat_self_contact_alias_changed_cb),
2904                                           chat);
2905                 }
2906         }
2907
2908         chat_self_contact_alias_changed_cb (chat);
2909 }
2910
2911 static void
2912 chat_remote_contact_changed_cb (EmpathyChat *chat)
2913 {
2914         EmpathyChatPriv *priv = GET_PRIV (chat);
2915
2916         if (priv->remote_contact != NULL) {
2917                 g_object_unref (priv->remote_contact);
2918                 priv->remote_contact = NULL;
2919         }
2920
2921         g_free (priv->id);
2922
2923         priv->id = g_strdup (empathy_tp_chat_get_id (priv->tp_chat));
2924         priv->remote_contact = empathy_tp_chat_get_remote_contact (priv->tp_chat);
2925         if (priv->remote_contact != NULL) {
2926                 g_object_ref (priv->remote_contact);
2927                 priv->handle_type = TP_HANDLE_TYPE_CONTACT;
2928         }
2929         else if (priv->tp_chat != NULL) {
2930                 tp_channel_get_handle ((TpChannel *) priv->tp_chat, &priv->handle_type);
2931         }
2932
2933         chat_update_contacts_visibility (chat, priv->show_contacts);
2934
2935         g_object_notify (G_OBJECT (chat), "remote-contact");
2936         g_object_notify (G_OBJECT (chat), "id");
2937 }
2938
2939 static void
2940 chat_invalidated_cb (EmpathyTpChat *tp_chat,
2941                  guint domain,
2942                  gint code,
2943                  gchar *message,
2944                  EmpathyChat   *chat)
2945 {
2946         EmpathyChatPriv *priv;
2947
2948         priv = GET_PRIV (chat);
2949
2950         if (!priv->tp_chat) {
2951                 return;
2952         }
2953
2954         chat_composing_remove_timeout (chat);
2955         g_object_unref (priv->tp_chat);
2956         priv->tp_chat = NULL;
2957         g_object_notify (G_OBJECT (chat), "tp-chat");
2958
2959         empathy_chat_view_append_event (chat->view, _("Disconnected"));
2960         gtk_widget_set_sensitive (chat->input_text_view, FALSE);
2961
2962         chat_update_contacts_visibility (chat, FALSE);
2963
2964         priv->unread_messages_when_offline = priv->unread_messages;
2965 }
2966
2967 static gboolean
2968 update_misspelled_words (gpointer data)
2969 {
2970         EmpathyChat *chat = EMPATHY_CHAT (data);
2971         EmpathyChatPriv *priv = GET_PRIV (chat);
2972         GtkTextBuffer *buffer;
2973         GtkTextIter iter;
2974         gint length;
2975
2976         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
2977
2978         gtk_text_buffer_get_end_iter (buffer, &iter);
2979         length = gtk_text_iter_get_offset (&iter);
2980         chat_input_text_buffer_insert_text_cb (buffer, &iter,
2981                                                NULL, length, chat);
2982
2983         priv->update_misspelled_words_id = 0;
2984
2985         return FALSE;
2986 }
2987
2988 static void
2989 conf_spell_checking_cb (GSettings *gsettings_chat,
2990                         const gchar *key,
2991                         gpointer user_data)
2992 {
2993         EmpathyChat *chat = EMPATHY_CHAT (user_data);
2994         EmpathyChatPriv *priv = GET_PRIV (chat);
2995         gboolean spell_checker;
2996         GtkTextBuffer *buffer;
2997
2998         if (strcmp (key, EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED) != 0)
2999                 return;
3000
3001         spell_checker = g_settings_get_boolean (gsettings_chat,
3002                         EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED);
3003
3004         if (!empathy_spell_supported ()) {
3005                 spell_checker = FALSE;
3006         }
3007
3008         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
3009
3010         if (spell_checker == priv->spell_checking_enabled) {
3011                 if (spell_checker) {
3012                         /* Possibly changed dictionaries,
3013                          * update misspelled words. Need to do so in idle
3014                          * so the spell checker is updated. */
3015                         priv->update_misspelled_words_id =
3016                                 g_idle_add (update_misspelled_words, chat);
3017                 }
3018
3019                 return;
3020         }
3021
3022         if (spell_checker) {
3023                 GtkTextIter iter;
3024
3025                 priv->notify_cursor_position_id = tp_g_signal_connect_object  (
3026                                 buffer, "notify::cursor-position",
3027                                 G_CALLBACK (chat_input_text_buffer_notify_cursor_position_cb),
3028                                 chat, 0);
3029                 priv->insert_text_id = tp_g_signal_connect_object  (
3030                                 buffer, "insert-text",
3031                                 G_CALLBACK (chat_input_text_buffer_insert_text_cb),
3032                                 chat, G_CONNECT_AFTER);
3033                 priv->delete_range_id = tp_g_signal_connect_object  (
3034                                 buffer, "delete-range",
3035                                 G_CALLBACK (chat_input_text_buffer_delete_range_cb),
3036                                 chat, G_CONNECT_AFTER);
3037
3038                 gtk_text_buffer_create_tag (buffer, "misspelled",
3039                                             "underline", PANGO_UNDERLINE_ERROR,
3040                                             NULL);
3041
3042                 gtk_text_buffer_get_iter_at_mark (buffer, &iter,
3043                                                   gtk_text_buffer_get_insert (buffer));
3044                 gtk_text_buffer_create_mark (buffer, "previous-cursor-position",
3045                                              &iter, TRUE);
3046
3047                 /* Mark misspelled words in the existing buffer.
3048                  * Need to do so in idle so the spell checker is updated. */
3049                 priv->update_misspelled_words_id =
3050                         g_idle_add (update_misspelled_words, chat);
3051         } else {
3052                 GtkTextTagTable *table;
3053                 GtkTextTag *tag;
3054
3055                 g_signal_handler_disconnect (buffer, priv->notify_cursor_position_id);
3056                 priv->notify_cursor_position_id = 0;
3057                 g_signal_handler_disconnect (buffer, priv->insert_text_id);
3058                 priv->insert_text_id = 0;
3059                 g_signal_handler_disconnect (buffer, priv->delete_range_id);
3060                 priv->delete_range_id = 0;
3061
3062                 table = gtk_text_buffer_get_tag_table (buffer);
3063                 tag = gtk_text_tag_table_lookup (table, "misspelled");
3064                 gtk_text_tag_table_remove (table, tag);
3065
3066                 gtk_text_buffer_delete_mark_by_name (buffer,
3067                                                      "previous-cursor-position");
3068         }
3069
3070         priv->spell_checking_enabled = spell_checker;
3071 }
3072
3073 static gboolean
3074 save_paned_pos_timeout (gpointer data)
3075 {
3076         EmpathyChat *self = data;
3077         gint hpaned_pos;
3078
3079         hpaned_pos = gtk_paned_get_position (GTK_PANED (self->priv->hpaned));
3080
3081         g_settings_set_int (self->priv->gsettings_ui,
3082                             EMPATHY_PREFS_UI_CHAT_WINDOW_PANED_POS,
3083                             hpaned_pos);
3084
3085         return FALSE;
3086 }
3087
3088 static gboolean
3089 chat_hpaned_pos_changed_cb (GtkWidget* hpaned,
3090                 GParamSpec *spec,
3091                 gpointer user_data)
3092 {
3093         EmpathyChat *chat = EMPATHY_CHAT (user_data);
3094
3095         if (chat->priv->save_paned_pos_id != 0)
3096                 g_source_remove (chat->priv->save_paned_pos_id);
3097
3098         chat->priv->save_paned_pos_id = g_timeout_add_seconds (1,
3099                 save_paned_pos_timeout, chat);
3100
3101         return TRUE;
3102 }
3103
3104 static void
3105 chat_create_ui (EmpathyChat *chat)
3106 {
3107         EmpathyChatPriv *priv = GET_PRIV (chat);
3108         GtkBuilder      *gui;
3109         GList           *list = NULL;
3110         gchar           *filename;
3111         GtkTextBuffer   *buffer;
3112         EmpathyThemeManager *theme_mgr;
3113
3114         filename = empathy_file_lookup ("empathy-chat.ui",
3115                                         "libempathy-gtk");
3116         gui = empathy_builder_get_file (filename,
3117                                         "chat_widget", &priv->widget,
3118                                         "hpaned", &priv->hpaned,
3119                                         "vbox_left", &priv->vbox_left,
3120                                         "scrolled_window_chat", &priv->scrolled_window_chat,
3121                                         "scrolled_window_input", &priv->scrolled_window_input,
3122                                         "hbox_topic", &priv->hbox_topic,
3123                                         "expander_topic", &priv->expander_topic,
3124                                         "label_topic", &priv->label_topic,
3125                                         "scrolled_window_contacts", &priv->scrolled_window_contacts,
3126                                         "info_bar_vbox", &priv->info_bar_vbox,
3127                                         NULL);
3128
3129         empathy_builder_connect (gui, chat,
3130                 "expander_topic", "notify::expanded", chat_topic_expander_activate_cb,
3131                 "label_topic", "size-allocate", chat_topic_label_size_allocate_cb,
3132                 NULL);
3133
3134         g_free (filename);
3135
3136         /* Add message view. */
3137         theme_mgr = empathy_theme_manager_dup_singleton ();
3138         chat->view = empathy_theme_manager_create_view (theme_mgr);
3139         g_object_unref (theme_mgr);
3140         /* If this is a GtkTextView, it's set as a drag destination for text/plain
3141            and other types, even though it's non-editable and doesn't accept any
3142            drags.  This steals drag motion for anything inside the scrollbars,
3143            making drag destinations on chat windows far less useful.
3144          */
3145         gtk_drag_dest_unset (GTK_WIDGET (chat->view));
3146         g_signal_connect (chat->view, "focus_in_event",
3147                           G_CALLBACK (chat_text_view_focus_in_event_cb),
3148                           chat);
3149         gtk_container_add (GTK_CONTAINER (priv->scrolled_window_chat),
3150                            GTK_WIDGET (chat->view));
3151         gtk_widget_show (GTK_WIDGET (chat->view));
3152
3153         /* Add input GtkTextView */
3154         chat->input_text_view = empathy_input_text_view_new ();
3155         g_signal_connect (chat->input_text_view, "notify::has-focus",
3156                           G_CALLBACK (chat_input_has_focus_notify_cb),
3157                           chat);
3158         g_signal_connect (chat->input_text_view, "key-press-event",
3159                           G_CALLBACK (chat_input_key_press_event_cb),
3160                           chat);
3161         g_signal_connect (chat->input_text_view, "realize",
3162                           G_CALLBACK (chat_input_realize_cb),
3163                           chat);
3164         g_signal_connect (chat->input_text_view, "button-press-event",
3165                           G_CALLBACK (chat_input_button_press_event_cb),
3166                           chat);
3167         g_signal_connect (chat->input_text_view, "populate-popup",
3168                           G_CALLBACK (chat_input_populate_popup_cb),
3169                           chat);
3170         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
3171         tp_g_signal_connect_object  (buffer, "changed",
3172                           G_CALLBACK (chat_input_text_buffer_changed_cb),
3173                           chat, 0);
3174         tp_g_signal_connect_object (priv->gsettings_chat,
3175                         "changed::" EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED,
3176                         G_CALLBACK (conf_spell_checking_cb), chat, 0);
3177         conf_spell_checking_cb (priv->gsettings_chat,
3178                                 EMPATHY_PREFS_CHAT_SPELL_CHECKER_ENABLED, chat);
3179         gtk_container_add (GTK_CONTAINER (priv->scrolled_window_input),
3180                            chat->input_text_view);
3181         gtk_widget_show (chat->input_text_view);
3182
3183         /* Add the (invisible) search bar */
3184         priv->search_bar = empathy_search_bar_new (chat->view);
3185         gtk_box_pack_start (GTK_BOX(priv->vbox_left),
3186                             priv->search_bar,
3187                             FALSE, FALSE, 0);
3188         gtk_box_reorder_child (GTK_BOX(priv->vbox_left), priv->search_bar, 1);
3189
3190         /* Initialy hide the topic, will be shown if not empty */
3191         gtk_widget_hide (priv->hbox_topic);
3192
3193         g_signal_connect (priv->hpaned, "notify::position",
3194                           G_CALLBACK (chat_hpaned_pos_changed_cb),
3195                           chat);
3196
3197         /* Set widget focus order */
3198         list = g_list_append (NULL, priv->search_bar);
3199         list = g_list_append (list, priv->scrolled_window_input);
3200         gtk_container_set_focus_chain (GTK_CONTAINER (priv->vbox_left), list);
3201         g_list_free (list);
3202
3203         list = g_list_append (NULL, priv->vbox_left);
3204         list = g_list_append (list, priv->scrolled_window_contacts);
3205         gtk_container_set_focus_chain (GTK_CONTAINER (priv->hpaned), list);
3206         g_list_free (list);
3207
3208         list = g_list_append (NULL, priv->hpaned);
3209         list = g_list_append (list, priv->hbox_topic);
3210         gtk_container_set_focus_chain (GTK_CONTAINER (priv->widget), list);
3211         g_list_free (list);
3212
3213         /* Add the main widget in the chat widget */
3214         gtk_box_pack_start (GTK_BOX (chat), priv->widget, TRUE, TRUE, 0);
3215         g_object_unref (gui);
3216 }
3217
3218 static void
3219 chat_finalize (GObject *object)
3220 {
3221         EmpathyChat     *chat;
3222         EmpathyChatPriv *priv;
3223
3224         chat = EMPATHY_CHAT (object);
3225         priv = GET_PRIV (chat);
3226
3227         DEBUG ("Finalized: %p", object);
3228
3229         if (priv->update_misspelled_words_id != 0)
3230                 g_source_remove (priv->update_misspelled_words_id);
3231
3232         if (priv->save_paned_pos_id != 0)
3233                 g_source_remove (priv->save_paned_pos_id);
3234
3235         if (priv->contacts_visible_id != 0)
3236                 g_source_remove (priv->contacts_visible_id);
3237
3238         g_object_unref (priv->gsettings_chat);
3239         g_object_unref (priv->gsettings_ui);
3240
3241         g_list_foreach (priv->input_history, (GFunc) chat_input_history_entry_free, NULL);
3242         g_list_free (priv->input_history);
3243
3244         g_list_foreach (priv->compositors, (GFunc) g_object_unref, NULL);
3245         g_list_free (priv->compositors);
3246
3247         chat_composing_remove_timeout (chat);
3248
3249         g_object_unref (priv->account_manager);
3250         g_object_unref (priv->log_manager);
3251
3252         if (priv->tp_chat) {
3253                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3254                         chat_invalidated_cb, chat);
3255                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3256                         chat_message_received_cb, chat);
3257                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3258                         chat_message_acknowledged_cb, chat);
3259                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3260                         chat_send_error_cb, chat);
3261                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3262                         chat_state_changed_cb, chat);
3263                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3264                         chat_members_changed_cb, chat);
3265                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3266                         chat_self_contact_changed_cb, chat);
3267                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3268                         chat_remote_contact_changed_cb, chat);
3269                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3270                         chat_title_changed_cb, chat);
3271                 g_signal_handlers_disconnect_by_func (priv->tp_chat,
3272                         chat_subject_changed_cb, chat);
3273                 empathy_tp_chat_leave (priv->tp_chat, "");
3274                 g_object_unref (priv->tp_chat);
3275         }
3276         if (priv->account) {
3277                 g_object_unref (priv->account);
3278         }
3279         if (priv->self_contact) {
3280                 g_signal_handlers_disconnect_by_func (priv->self_contact,
3281                                                       chat_self_contact_alias_changed_cb,
3282                                                       chat);
3283                 g_object_unref (priv->self_contact);
3284         }
3285         if (priv->remote_contact) {
3286                 g_object_unref (priv->remote_contact);
3287         }
3288
3289         if (priv->block_events_timeout_id) {
3290                 g_source_remove (priv->block_events_timeout_id);
3291         }
3292
3293         g_free (priv->id);
3294         g_free (priv->name);
3295         g_free (priv->subject);
3296         g_completion_free (priv->completion);
3297
3298         tp_clear_pointer (&priv->highlight_regex, g_regex_unref);
3299
3300         G_OBJECT_CLASS (empathy_chat_parent_class)->finalize (object);
3301 }
3302
3303 static void
3304 chat_constructed (GObject *object)
3305 {
3306         EmpathyChat *chat = EMPATHY_CHAT (object);
3307         EmpathyChatPriv *priv = GET_PRIV (chat);
3308
3309         if (priv->handle_type != TP_HANDLE_TYPE_ROOM) {
3310                 /* First display logs from the logger and then display pending messages */
3311                 chat_add_logs (chat);
3312         }
3313          else {
3314                 /* Just display pending messages for rooms */
3315                 priv->can_show_pending = TRUE;
3316                 show_pending_messages (chat);
3317         }
3318 }
3319
3320 static void
3321 empathy_chat_class_init (EmpathyChatClass *klass)
3322 {
3323         GObjectClass   *object_class = G_OBJECT_CLASS (klass);
3324
3325         object_class->finalize = chat_finalize;
3326         object_class->get_property = chat_get_property;
3327         object_class->set_property = chat_set_property;
3328         object_class->constructed = chat_constructed;
3329
3330         g_object_class_install_property (object_class,
3331                                          PROP_TP_CHAT,
3332                                          g_param_spec_object ("tp-chat",
3333                                                               "Empathy tp chat",
3334                                                               "The tp chat object",
3335                                                               EMPATHY_TYPE_TP_CHAT,
3336                                                               G_PARAM_CONSTRUCT |
3337                                                               G_PARAM_READWRITE |
3338                                                               G_PARAM_STATIC_STRINGS));
3339         g_object_class_install_property (object_class,
3340                                          PROP_ACCOUNT,
3341                                          g_param_spec_object ("account",
3342                                                               "Account of the chat",
3343                                                               "The account of the chat",
3344                                                               TP_TYPE_ACCOUNT,
3345                                                               G_PARAM_READABLE |
3346                                                               G_PARAM_STATIC_STRINGS));
3347         g_object_class_install_property (object_class,
3348                                          PROP_ID,
3349                                          g_param_spec_string ("id",
3350                                                               "Chat's id",
3351                                                               "The id of the chat",
3352                                                               NULL,
3353                                                               G_PARAM_READABLE |
3354                                                               G_PARAM_STATIC_STRINGS));
3355         g_object_class_install_property (object_class,
3356                                          PROP_NAME,
3357                                          g_param_spec_string ("name",
3358                                                               "Chat's name",
3359                                                               "The name of the chat",
3360                                                               NULL,
3361                                                               G_PARAM_READABLE |
3362                                                               G_PARAM_STATIC_STRINGS));
3363         g_object_class_install_property (object_class,
3364                                          PROP_SUBJECT,
3365                                          g_param_spec_string ("subject",
3366                                                               "Chat's subject",
3367                                                               "The subject or topic of the chat",
3368                                                               NULL,
3369                                                               G_PARAM_READABLE |
3370                                                               G_PARAM_STATIC_STRINGS));
3371         g_object_class_install_property (object_class,
3372                                          PROP_REMOTE_CONTACT,
3373                                          g_param_spec_object ("remote-contact",
3374                                                               "The remote contact",
3375                                                               "The remote contact is any",
3376                                                               EMPATHY_TYPE_CONTACT,
3377                                                               G_PARAM_READABLE |
3378                                                               G_PARAM_STATIC_STRINGS));
3379         g_object_class_install_property (object_class,
3380                                          PROP_SHOW_CONTACTS,
3381                                          g_param_spec_boolean ("show-contacts",
3382                                                                "Contacts' visibility",
3383                                                                "The visibility of the contacts' list",
3384                                                                TRUE,
3385                                                                G_PARAM_READWRITE |
3386                                                                G_PARAM_STATIC_STRINGS));
3387
3388         g_object_class_install_property (object_class,
3389                                          PROP_SMS_CHANNEL,
3390                                          g_param_spec_boolean ("sms-channel",
3391                                                                "SMS Channel",
3392                                                                "TRUE if this channel is for sending SMSes",
3393                                                                FALSE,
3394                                                                G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
3395
3396         g_object_class_install_property (object_class,
3397                                          PROP_N_MESSAGES_SENDING,
3398                                          g_param_spec_uint ("n-messages-sending",
3399                                                             "Num Messages Sending",
3400                                                             "The number of messages being sent",
3401                                                             0, G_MAXUINT, 0,
3402                                                             G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
3403
3404         g_object_class_install_property (object_class,
3405                                          PROP_NB_UNREAD_MESSAGES,
3406                                          g_param_spec_uint ("nb-unread-messages",
3407                                                             "Num Unread Messages",
3408                                                             "The number of unread messages",
3409                                                             0, G_MAXUINT, 0,
3410                                                             G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
3411
3412         signals[COMPOSING] =
3413                 g_signal_new ("composing",
3414                               G_OBJECT_CLASS_TYPE (object_class),
3415                               G_SIGNAL_RUN_LAST,
3416                               0,
3417                               NULL, NULL,
3418                               g_cclosure_marshal_generic,
3419                               G_TYPE_NONE,
3420                               1, G_TYPE_BOOLEAN);
3421
3422         /**
3423          * EmpathyChat::new-message:
3424          * @self: the #EmpathyChat
3425          * @message: the new message
3426          * @pending: whether the message was in the pending queue when @self
3427          *  was created
3428          * @should_highlight: %TRUE if the message mentions the local user
3429          */
3430         signals[NEW_MESSAGE] =
3431                 g_signal_new ("new-message",
3432                               G_OBJECT_CLASS_TYPE (object_class),
3433                               G_SIGNAL_RUN_LAST,
3434                               0,
3435                               NULL, NULL,
3436                               g_cclosure_marshal_generic,
3437                               G_TYPE_NONE,
3438                               3, EMPATHY_TYPE_MESSAGE, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN);
3439
3440         signals[PART_COMMAND_ENTERED] =
3441                         g_signal_new ("part-command-entered",
3442                                   G_OBJECT_CLASS_TYPE (object_class),
3443                                   G_SIGNAL_RUN_LAST,
3444                                   0,
3445                                   NULL, NULL,
3446                                   g_cclosure_marshal_generic,
3447                                   G_TYPE_NONE,
3448                                   1, G_TYPE_STRV);
3449
3450         g_type_class_add_private (object_class, sizeof (EmpathyChatPriv));
3451 }
3452
3453 static gboolean
3454 chat_block_events_timeout_cb (gpointer data)
3455 {
3456         EmpathyChatPriv *priv = GET_PRIV (data);
3457
3458         priv->block_events_timeout_id = 0;
3459
3460         return FALSE;
3461 }
3462
3463 static void
3464 account_manager_prepared_cb (GObject *source_object,
3465                              GAsyncResult *result,
3466                              gpointer user_data)
3467 {
3468         GList *accounts, *l;
3469         TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
3470         EmpathyChat *chat = user_data;
3471         GError *error = NULL;
3472
3473         if (!tp_proxy_prepare_finish (account_manager, result, &error)) {
3474                 DEBUG ("Failed to prepare the account manager: %s", error->message);
3475                 g_error_free (error);
3476                 return;
3477         }
3478
3479         accounts = tp_account_manager_get_valid_accounts (account_manager);
3480
3481         for (l = accounts; l != NULL; l = l->next) {
3482                 TpAccount *account = l->data;
3483                 tp_g_signal_connect_object (account, "status-changed",
3484                                              G_CALLBACK (chat_new_connection_cb),
3485                                              chat, 0);
3486         }
3487
3488         g_list_free (accounts);
3489 }
3490
3491 static void
3492 empathy_chat_init (EmpathyChat *chat)
3493 {
3494         EmpathyChatPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (chat,
3495                 EMPATHY_TYPE_CHAT, EmpathyChatPriv);
3496
3497         chat->priv = priv;
3498         priv->log_manager = tpl_log_manager_dup_singleton ();
3499         priv->gsettings_chat = g_settings_new (EMPATHY_PREFS_CHAT_SCHEMA);
3500         priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
3501
3502         priv->contacts_width = g_settings_get_int (priv->gsettings_ui,
3503                 EMPATHY_PREFS_UI_CHAT_WINDOW_PANED_POS);
3504         priv->input_history = NULL;
3505         priv->input_history_current = NULL;
3506         priv->account_manager = tp_account_manager_dup ();
3507
3508         tp_proxy_prepare_async (priv->account_manager, NULL,
3509                                           account_manager_prepared_cb, chat);
3510
3511         priv->show_contacts = g_settings_get_boolean (priv->gsettings_chat,
3512                         EMPATHY_PREFS_CHAT_SHOW_CONTACTS_IN_ROOMS);
3513
3514         /* Block events for some time to avoid having "has come online" or
3515          * "joined" messages. */
3516         priv->block_events_timeout_id =
3517                 g_timeout_add_seconds (1, chat_block_events_timeout_cb, chat);
3518
3519         /* Add nick name completion */
3520         priv->completion = g_completion_new ((GCompletionFunc) empathy_contact_get_alias);
3521         g_completion_set_compare (priv->completion, chat_contacts_completion_func);
3522
3523         chat_create_ui (chat);
3524 }
3525
3526 EmpathyChat *
3527 empathy_chat_new (EmpathyTpChat *tp_chat)
3528 {
3529         return g_object_new (EMPATHY_TYPE_CHAT, "tp-chat", tp_chat, NULL);
3530 }
3531
3532 EmpathyTpChat *
3533 empathy_chat_get_tp_chat (EmpathyChat *chat)
3534 {
3535         EmpathyChatPriv *priv = GET_PRIV (chat);
3536
3537         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
3538
3539         return priv->tp_chat;
3540 }
3541
3542 typedef struct
3543 {
3544         EmpathyChat *self;
3545         GtkWidget *info_bar;
3546         gulong response_id;
3547         GtkWidget *button;
3548         GtkWidget *label;
3549         GtkWidget *entry;
3550         GtkWidget *spinner;
3551         gchar *password;
3552 } PasswordData;
3553
3554 static void
3555 passwd_remember_button_cb (GtkButton *button,
3556                           PasswordData *data)
3557 {
3558         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_OK);
3559 }
3560
3561 static void
3562 passwd_not_now_button_cb (GtkButton *button,
3563                           PasswordData *data)
3564 {
3565         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_NO);
3566 }
3567
3568 static void
3569 remember_password_infobar_response_cb (GtkWidget *info_bar,
3570                                        gint response_id,
3571                                        PasswordData *data)
3572 {
3573         EmpathyChatPriv *priv = GET_PRIV (data->self);
3574
3575         if (response_id == GTK_RESPONSE_OK) {
3576                 DEBUG ("Saving room password");
3577                 empathy_keyring_set_room_password_async (priv->account,
3578                                                          empathy_tp_chat_get_id (priv->tp_chat),
3579                                                          data->password,
3580                                                          NULL, NULL);
3581         }
3582
3583         gtk_widget_destroy (info_bar);
3584         g_free (data->password);
3585         g_slice_free (PasswordData, data);
3586 }
3587
3588 static void
3589 chat_prompt_to_save_password (EmpathyChat *self,
3590                               PasswordData *data)
3591 {
3592         GtkWidget *content_area;
3593         GtkWidget *hbox;
3594         GtkWidget *image;
3595         GtkWidget *label;
3596         GtkWidget *alig;
3597         GtkWidget *button;
3598
3599         /* save the password in case it needs to be saved */
3600         data->password = g_strdup (gtk_entry_get_text (GTK_ENTRY (data->entry)));
3601
3602         /* Remove all previous widgets */
3603         content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (data->info_bar));
3604         gtk_container_forall (GTK_CONTAINER (content_area),
3605                               (GtkCallback) gtk_widget_destroy, NULL);
3606         data->button = NULL;
3607         data->label = NULL;
3608         data->entry = NULL;
3609         data->spinner = NULL;
3610
3611         gtk_info_bar_set_message_type (GTK_INFO_BAR (data->info_bar),
3612                                        GTK_MESSAGE_QUESTION);
3613
3614         hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
3615         gtk_box_pack_start (GTK_BOX (content_area), hbox, TRUE, TRUE, 0);
3616
3617         /* Add image */
3618         image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_AUTHENTICATION,
3619                                           GTK_ICON_SIZE_DIALOG);
3620         gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
3621
3622         /* Add message */
3623         label = gtk_label_new (_("Would you like to store this password?"));
3624         gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, TRUE, 0);
3625
3626         /* Add 'Remember' button */
3627         alig = gtk_alignment_new (0, 0.5, 1, 0);
3628
3629         button = gtk_button_new_with_label (_("Remember"));
3630         gtk_container_add (GTK_CONTAINER (alig), button);
3631         gtk_box_pack_start (GTK_BOX (hbox), alig, FALSE, FALSE, 0);
3632
3633         g_signal_connect (button, "clicked", G_CALLBACK (passwd_remember_button_cb),
3634                           data);
3635
3636         /* Add 'Not now' button */
3637         alig = gtk_alignment_new (0, 0.5, 1, 0);
3638
3639         button = gtk_button_new_with_label (_("Not now"));
3640         gtk_container_add (GTK_CONTAINER (alig), button);
3641         gtk_box_pack_start (GTK_BOX (hbox), alig, FALSE, FALSE, 0);
3642
3643         g_signal_connect (button, "clicked", G_CALLBACK (passwd_not_now_button_cb),
3644                           data);
3645
3646         /* go! */
3647         g_signal_handler_disconnect (data->info_bar, data->response_id);
3648         g_signal_connect (data->info_bar, "response",
3649                           G_CALLBACK (remember_password_infobar_response_cb), data);
3650
3651         gtk_widget_show_all (data->info_bar);
3652 }
3653
3654 static void
3655 provide_password_cb (GObject *tp_chat,
3656                      GAsyncResult *res,
3657                      gpointer user_data)
3658 {
3659         PasswordData *data = user_data;
3660         EmpathyChat *self = data->self;
3661         EmpathyChatPriv *priv = GET_PRIV (self);
3662         GError *error = NULL;
3663
3664         if (!tp_channel_provide_password_finish (TP_CHANNEL (tp_chat), res,
3665                                                       &error)) {
3666                 DEBUG ("error: %s", error->message);
3667                 /* FIXME: what should we do if that's another error? Close the channel?
3668                  * Display the raw D-Bus error to the user isn't very useful */
3669                 if (g_error_matches (error, TP_ERRORS, TP_ERROR_AUTHENTICATION_FAILED)) {
3670                         /* entry */
3671                         gtk_entry_set_text (GTK_ENTRY (data->entry), "");
3672                         gtk_widget_set_sensitive (data->entry, TRUE);
3673                         gtk_widget_grab_focus (data->entry);
3674
3675                         /* info bar */
3676                         gtk_info_bar_set_message_type (
3677                             GTK_INFO_BAR (data->info_bar),
3678                             GTK_MESSAGE_ERROR);
3679
3680                         /* button */
3681                         gtk_widget_set_sensitive (data->button, TRUE);
3682                         gtk_button_set_label (GTK_BUTTON (data->button),
3683                             _("Retry"));
3684
3685                         /* label */
3686                         gtk_label_set_text (GTK_LABEL (data->label),
3687                             _("Wrong password; please try again:"));
3688
3689                         /* spinner */
3690                         gtk_spinner_stop (GTK_SPINNER (data->spinner));
3691                         gtk_widget_hide (data->spinner);
3692                 }
3693                 g_error_free (error);
3694                 return;
3695         }
3696
3697         if (empathy_keyring_is_available ()) {
3698                 /* ask whether they want to save the password */
3699                 chat_prompt_to_save_password (self, data);
3700         } else {
3701                 /* Get rid of the password info bar finally */
3702                 gtk_widget_destroy (data->info_bar);
3703                 g_slice_free (PasswordData, data);
3704         }
3705
3706         /* Room joined */
3707         gtk_widget_set_sensitive (priv->hpaned, TRUE);
3708         gtk_widget_set_sensitive (self->input_text_view, TRUE);
3709         gtk_widget_grab_focus (self->input_text_view);
3710 }
3711
3712 static void
3713 password_infobar_response_cb (GtkWidget *info_bar,
3714                               gint response_id,
3715                               PasswordData *data)
3716 {
3717         EmpathyChatPriv *priv = GET_PRIV (data->self);
3718         const gchar *password;
3719
3720         if (response_id != GTK_RESPONSE_OK) {
3721                 gtk_widget_destroy (info_bar);
3722                 g_slice_free (PasswordData, data);
3723                 return;
3724         }
3725
3726         password = gtk_entry_get_text (GTK_ENTRY (data->entry));
3727
3728         tp_channel_provide_password_async (TP_CHANNEL (priv->tp_chat), password,
3729                                                 provide_password_cb, data);
3730
3731         gtk_widget_set_sensitive (data->button, FALSE);
3732         gtk_widget_set_sensitive (data->entry, FALSE);
3733
3734         gtk_spinner_start (GTK_SPINNER (data->spinner));
3735         gtk_widget_show (data->spinner);
3736 }
3737
3738 static void
3739 password_entry_activate_cb (GtkWidget *entry,
3740                           PasswordData *data)
3741 {
3742         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_OK);
3743 }
3744
3745 static void
3746 passwd_join_button_cb (GtkButton *button,
3747                           PasswordData *data)
3748 {
3749         gtk_info_bar_response (GTK_INFO_BAR (data->info_bar), GTK_RESPONSE_OK);
3750 }
3751
3752 static void
3753 clear_icon_released_cb (GtkEntry *entry,
3754                         GtkEntryIconPosition icon_pos,
3755                         GdkEvent *event,
3756                         PasswordData *data)
3757 {
3758         gtk_entry_set_text (entry, "");
3759 }
3760
3761 static void
3762 password_entry_changed_cb (GtkEditable *entry,
3763                            PasswordData *data)
3764 {
3765         const gchar *str;
3766
3767         str = gtk_entry_get_text (GTK_ENTRY (entry));
3768
3769         gtk_entry_set_icon_sensitive (GTK_ENTRY (entry),
3770             GTK_ENTRY_ICON_SECONDARY, !EMP_STR_EMPTY (str));
3771 }
3772
3773 static void
3774 infobar_chat_invalidated_cb (TpProxy       *proxy,
3775                            guint          domain,
3776                            gint           code,
3777                            gchar         *message,
3778                            gpointer       password_infobar)
3779 {
3780         /* Destroy the password infobar whenever a channel is invalidated
3781          * so we don't have multiple infobars when the MUC is rejoined */
3782         gtk_widget_destroy (GTK_WIDGET (password_infobar));
3783 }
3784
3785 static void
3786 display_password_info_bar (EmpathyChat *self)
3787 {
3788         EmpathyChatPriv *priv = GET_PRIV (self);
3789         GtkWidget *info_bar;
3790         GtkWidget *content_area;
3791         GtkWidget *hbox;
3792         GtkWidget *image;
3793         GtkWidget *label;
3794         GtkWidget *entry;
3795         GtkWidget *alig;
3796         GtkWidget *button;
3797         GtkWidget *spinner;
3798         PasswordData *data;
3799
3800         data = g_slice_new0 (PasswordData);
3801
3802         info_bar = gtk_info_bar_new ();
3803         gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar),
3804             GTK_MESSAGE_QUESTION);
3805
3806         content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar));
3807
3808         hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
3809         gtk_box_pack_start (GTK_BOX (content_area), hbox, TRUE, TRUE, 0);
3810
3811         /* Add image */
3812         image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_AUTHENTICATION,
3813                                           GTK_ICON_SIZE_DIALOG);
3814         gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
3815
3816         /* Add message */
3817         label = gtk_label_new (_("This room is protected by a password:"));
3818         gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
3819
3820         /* Add password entry */
3821         entry = gtk_entry_new ();
3822         gtk_entry_set_visibility (GTK_ENTRY (entry), FALSE);
3823         gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, TRUE, 0);
3824
3825         gtk_entry_set_icon_from_stock (GTK_ENTRY (entry),
3826                                        GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CLEAR);
3827         gtk_entry_set_icon_sensitive (GTK_ENTRY (entry),
3828                                       GTK_ENTRY_ICON_SECONDARY, FALSE);
3829
3830         g_signal_connect (entry, "icon-release",
3831                           G_CALLBACK (clear_icon_released_cb), data);
3832         g_signal_connect (entry, "changed",
3833                           G_CALLBACK (password_entry_changed_cb), data);
3834
3835         g_signal_connect (entry, "activate",
3836                           G_CALLBACK (password_entry_activate_cb), data);
3837
3838         /* Focus the password entry once it's realized */
3839         g_signal_connect (entry, "realize", G_CALLBACK (gtk_widget_grab_focus), NULL);
3840
3841         /* Add 'Join' button */
3842         alig = gtk_alignment_new (0, 0.5, 1, 0);
3843
3844         button = gtk_button_new_with_label (_("Join"));
3845         gtk_container_add (GTK_CONTAINER (alig), button);
3846         gtk_box_pack_start (GTK_BOX (hbox), alig, FALSE, FALSE, 0);
3847
3848         g_signal_connect (button, "clicked", G_CALLBACK (passwd_join_button_cb),
3849                           data);
3850
3851         /* Add spinner */
3852         spinner = gtk_spinner_new ();
3853         gtk_box_pack_end (GTK_BOX (hbox), spinner, FALSE, FALSE, 0);
3854
3855         /* Save some data for messing around with later */
3856         data->self = self;
3857         data->info_bar = info_bar;
3858         data->button = button;
3859         data->label = label;
3860         data->entry = entry;
3861         data->spinner = spinner;
3862
3863         gtk_box_pack_start (GTK_BOX (priv->info_bar_vbox), info_bar,
3864                             TRUE, TRUE, 3);
3865         gtk_widget_show_all (hbox);
3866
3867         tp_g_signal_connect_object (priv->tp_chat,
3868                                   "invalidated", G_CALLBACK (infobar_chat_invalidated_cb),
3869                                   info_bar, 0);
3870
3871         data->response_id = g_signal_connect (info_bar, "response",
3872                                               G_CALLBACK (password_infobar_response_cb), data);
3873
3874         gtk_widget_show_all (info_bar);
3875         /* ... but hide the spinner */
3876         gtk_widget_hide (spinner);
3877
3878         /* prevent the user from typing anything */
3879         gtk_widget_set_sensitive (self->input_text_view, FALSE);
3880 }
3881
3882 static void
3883 provide_saved_password_cb (GObject *tp_chat,
3884                            GAsyncResult *res,
3885                            gpointer user_data)
3886 {
3887         EmpathyChat *self = user_data;
3888         EmpathyChatPriv *priv = GET_PRIV (self);
3889         GError *error = NULL;
3890
3891         if (!tp_channel_provide_password_finish (TP_CHANNEL (tp_chat), res,
3892                                                       &error)) {
3893                 DEBUG ("error: %s", error->message);
3894                 /* FIXME: what should we do if that's another error? Close the channel?
3895                  * Display the raw D-Bus error to the user isn't very useful */
3896                 if (g_error_matches (error, TP_ERRORS, TP_ERROR_AUTHENTICATION_FAILED)) {
3897                         display_password_info_bar (self);
3898                         gtk_widget_set_sensitive (priv->hpaned, FALSE);
3899                 }
3900                 g_error_free (error);
3901                 return;
3902         }
3903
3904         /* Room joined */
3905         gtk_widget_set_sensitive (priv->hpaned, TRUE);
3906         gtk_widget_grab_focus (self->input_text_view);
3907 }
3908
3909 static void
3910 chat_room_got_password_cb (GObject *source,
3911                            GAsyncResult *result,
3912                            gpointer user_data)
3913 {
3914         EmpathyChat *self = user_data;
3915         EmpathyChatPriv *priv = GET_PRIV (self);
3916         const gchar *password;
3917         GError *error = NULL;
3918
3919         password = empathy_keyring_get_room_password_finish (priv->account,
3920             result, &error);
3921
3922         if (error != NULL) {
3923                 DEBUG ("Couldn't get room password: %s\n", error->message);
3924                 g_clear_error (&error);
3925
3926                 display_password_info_bar (self);
3927                 gtk_widget_set_sensitive (priv->hpaned, FALSE);
3928                 return;
3929         }
3930
3931         tp_channel_provide_password_async (TP_CHANNEL (priv->tp_chat), password,
3932                                                 provide_saved_password_cb, self);
3933 }
3934
3935 static void
3936 chat_password_needed_changed_cb (EmpathyChat *self)
3937 {
3938         EmpathyChatPriv *priv = GET_PRIV (self);
3939
3940         if (tp_channel_password_needed (TP_CHANNEL (priv->tp_chat))) {
3941                 empathy_keyring_get_room_password_async (priv->account,
3942                                                          empathy_tp_chat_get_id (priv->tp_chat),
3943                                                          chat_room_got_password_cb, self);
3944         }
3945 }
3946
3947 static void
3948 chat_sms_channel_changed_cb (EmpathyChat *self)
3949 {
3950         EmpathyChatPriv *priv = GET_PRIV (self);
3951
3952         priv->sms_channel = tp_text_channel_is_sms_channel (
3953                 (TpTextChannel *) priv->tp_chat);
3954         g_object_notify (G_OBJECT (self), "sms-channel");
3955 }
3956
3957 static void
3958 chat_n_messages_sending_changed_cb (EmpathyChat *self)
3959 {
3960         g_object_notify (G_OBJECT (self), "n-messages-sending");
3961 }
3962
3963 void
3964 empathy_chat_set_tp_chat (EmpathyChat   *chat,
3965                           EmpathyTpChat *tp_chat)
3966 {
3967         EmpathyChatPriv *priv = GET_PRIV (chat);
3968
3969         g_return_if_fail (EMPATHY_IS_CHAT (chat));
3970         g_return_if_fail (EMPATHY_IS_TP_CHAT (tp_chat));
3971
3972         if (priv->tp_chat) {
3973                 return;
3974         }
3975
3976         if (priv->account) {
3977                 g_object_unref (priv->account);
3978         }
3979
3980         priv->tp_chat = g_object_ref (tp_chat);
3981         priv->account = g_object_ref (empathy_tp_chat_get_account (priv->tp_chat));
3982
3983         g_signal_connect (tp_chat, "invalidated",
3984                           G_CALLBACK (chat_invalidated_cb),
3985                           chat);
3986         g_signal_connect (tp_chat, "message-received-empathy",
3987                           G_CALLBACK (chat_message_received_cb),
3988                           chat);
3989         g_signal_connect (tp_chat, "message_acknowledged",
3990                           G_CALLBACK (chat_message_acknowledged_cb),
3991                           chat);
3992         g_signal_connect (tp_chat, "send-error",
3993                           G_CALLBACK (chat_send_error_cb),
3994                           chat);
3995         g_signal_connect (tp_chat, "chat-state-changed-empathy",
3996                           G_CALLBACK (chat_state_changed_cb),
3997                           chat);
3998         g_signal_connect (tp_chat, "members-changed",
3999                           G_CALLBACK (chat_members_changed_cb),
4000                           chat);
4001         g_signal_connect (tp_chat, "member-renamed",
4002                           G_CALLBACK (chat_member_renamed_cb),
4003                           chat);
4004         g_signal_connect_swapped (tp_chat, "notify::self-contact",
4005                                   G_CALLBACK (chat_self_contact_changed_cb),
4006                                   chat);
4007         g_signal_connect_swapped (tp_chat, "notify::remote-contact",
4008                                   G_CALLBACK (chat_remote_contact_changed_cb),
4009                                   chat);
4010         g_signal_connect_swapped (tp_chat, "notify::password-needed",
4011                                   G_CALLBACK (chat_password_needed_changed_cb),
4012                                   chat);
4013         g_signal_connect_swapped (tp_chat, "notify::is-sms-channel",
4014                                   G_CALLBACK (chat_sms_channel_changed_cb),
4015                                   chat);
4016         g_signal_connect_swapped (tp_chat, "notify::n-messages-sending",
4017                                   G_CALLBACK (chat_n_messages_sending_changed_cb),
4018                                   chat);
4019         g_signal_connect_swapped (tp_chat, "notify::title",
4020                                   G_CALLBACK (chat_title_changed_cb),
4021                                   chat);
4022         g_signal_connect_swapped (tp_chat, "notify::subject",
4023                                   G_CALLBACK (chat_subject_changed_cb),
4024                                   chat);
4025
4026         /* Get initial value of properties */
4027         chat_sms_channel_changed_cb (chat);
4028         chat_self_contact_changed_cb (chat);
4029         chat_remote_contact_changed_cb (chat);
4030         chat_title_changed_cb (chat);
4031         chat_subject_changed_cb (chat);
4032
4033         if (chat->input_text_view) {
4034                 gtk_widget_set_sensitive (chat->input_text_view, TRUE);
4035                 if (priv->block_events_timeout_id == 0) {
4036                         empathy_chat_view_append_event (chat->view, _("Connected"));
4037                 }
4038         }
4039
4040         g_object_notify (G_OBJECT (chat), "tp-chat");
4041         g_object_notify (G_OBJECT (chat), "id");
4042         g_object_notify (G_OBJECT (chat), "account");
4043
4044         /* This is a noop when tp-chat is set at object construction time and causes
4045          * the pending messages to be show when it's set on the object after it has
4046          * been created */
4047         show_pending_messages (chat);
4048
4049         /* check if a password is needed */
4050         chat_password_needed_changed_cb (chat);
4051 }
4052
4053 TpAccount *
4054 empathy_chat_get_account (EmpathyChat *chat)
4055 {
4056         EmpathyChatPriv *priv = GET_PRIV (chat);
4057
4058         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4059
4060         return priv->account;
4061 }
4062
4063 const gchar *
4064 empathy_chat_get_id (EmpathyChat *chat)
4065 {
4066         EmpathyChatPriv *priv = GET_PRIV (chat);
4067
4068         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4069
4070         return priv->id;
4071 }
4072
4073 gchar *
4074 empathy_chat_dup_name (EmpathyChat *chat)
4075 {
4076         EmpathyChatPriv *priv = GET_PRIV (chat);
4077         const gchar *ret;
4078
4079         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4080
4081         ret = priv->name;
4082
4083         if (!ret && priv->remote_contact) {
4084                 ret = empathy_contact_get_alias (priv->remote_contact);
4085         }
4086
4087         if (!ret)
4088                 ret = priv->id;
4089
4090         if (!ret)
4091                 ret = _("Conversation");
4092
4093         if (priv->sms_channel)
4094                 /* Translators: this string is a something like
4095                  * "Escher Cat (SMS)" */
4096                 return g_strdup_printf (_("%s (SMS)"), ret);
4097         else
4098                 return g_strdup (ret);
4099 }
4100
4101 const gchar *
4102 empathy_chat_get_subject (EmpathyChat *chat)
4103 {
4104         EmpathyChatPriv *priv = GET_PRIV (chat);
4105
4106         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4107
4108         return priv->subject;
4109 }
4110
4111 EmpathyContact *
4112 empathy_chat_get_remote_contact (EmpathyChat *chat)
4113 {
4114         EmpathyChatPriv *priv = GET_PRIV (chat);
4115
4116         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4117
4118         return priv->remote_contact;
4119 }
4120
4121 GtkWidget *
4122 empathy_chat_get_contact_menu (EmpathyChat *chat)
4123 {
4124         EmpathyChatPriv *priv = GET_PRIV (chat);
4125         GtkWidget       *menu = NULL;
4126         FolksIndividual *individual;
4127         TpContact *contact;
4128
4129         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL);
4130
4131         if (priv->remote_contact == NULL)
4132                 return NULL;
4133
4134         contact = empathy_contact_get_tp_contact (priv->remote_contact);
4135         if (contact == NULL)
4136                 return NULL;
4137
4138         individual = empathy_create_individual_from_tp_contact (contact);
4139         if (individual == NULL)
4140                 return NULL;
4141
4142         menu = empathy_individual_menu_new (individual,
4143                                          EMPATHY_INDIVIDUAL_FEATURE_CALL |
4144                                          EMPATHY_INDIVIDUAL_FEATURE_LOG |
4145                                          EMPATHY_INDIVIDUAL_FEATURE_INFO |
4146                                          EMPATHY_INDIVIDUAL_FEATURE_BLOCK, NULL);
4147
4148         g_object_unref (individual);
4149
4150         return menu;
4151 }
4152
4153 void
4154 empathy_chat_clear (EmpathyChat *chat)
4155 {
4156         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4157
4158         empathy_chat_view_clear (chat->view);
4159 }
4160
4161 void
4162 empathy_chat_scroll_down (EmpathyChat *chat)
4163 {
4164         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4165
4166         empathy_chat_view_scroll_down (chat->view);
4167 }
4168
4169 void
4170 empathy_chat_cut (EmpathyChat *chat)
4171 {
4172         GtkTextBuffer *buffer;
4173
4174         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4175
4176         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4177         if (gtk_text_buffer_get_has_selection (buffer)) {
4178                 GtkClipboard *clipboard;
4179
4180                 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4181
4182                 gtk_text_buffer_cut_clipboard (buffer, clipboard, TRUE);
4183         }
4184 }
4185
4186 void
4187 empathy_chat_copy (EmpathyChat *chat)
4188 {
4189         GtkTextBuffer *buffer;
4190
4191         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4192
4193         if (empathy_chat_view_get_has_selection (chat->view)) {
4194                 empathy_chat_view_copy_clipboard (chat->view);
4195                 return;
4196         }
4197
4198         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4199         if (gtk_text_buffer_get_has_selection (buffer)) {
4200                 GtkClipboard *clipboard;
4201
4202                 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4203
4204                 gtk_text_buffer_copy_clipboard (buffer, clipboard);
4205         }
4206         else {
4207                 gint start_offset;
4208                 gint end_offset;
4209                 EmpathyChatPriv *priv = GET_PRIV (chat);
4210
4211                 if (gtk_label_get_selection_bounds (GTK_LABEL (priv->label_topic),
4212                                                                &start_offset,
4213                                                                &end_offset)) {
4214                         gchar *start;
4215                         gchar *end;
4216                         gchar *selection;
4217                         const gchar *topic;
4218                         GtkClipboard *clipboard;
4219
4220                         topic = gtk_label_get_text (GTK_LABEL (priv->label_topic));
4221                         start = g_utf8_offset_to_pointer (topic, start_offset);
4222                         end = g_utf8_offset_to_pointer (topic, end_offset);
4223                         selection = g_strndup (start, end - start);
4224
4225                         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4226                         gtk_clipboard_set_text (clipboard, selection, -1);
4227
4228                         g_free (selection);
4229                 }
4230         }
4231 }
4232
4233 void
4234 empathy_chat_paste (EmpathyChat *chat)
4235 {
4236         GtkTextBuffer *buffer;
4237         GtkClipboard  *clipboard;
4238         EmpathyChatPriv *priv;
4239
4240         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4241
4242         priv = GET_PRIV (chat);
4243
4244         if (gtk_widget_get_visible (priv->search_bar)) {
4245                 empathy_search_bar_paste_clipboard (EMPATHY_SEARCH_BAR (priv->search_bar));
4246                 return;
4247         }
4248
4249         if (priv->tp_chat == NULL ||
4250             !gtk_widget_is_sensitive (chat->input_text_view))
4251                 return;
4252
4253         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4254         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
4255
4256         gtk_text_buffer_paste_clipboard (buffer, clipboard, NULL, TRUE);
4257 }
4258
4259 void
4260 empathy_chat_find (EmpathyChat *chat)
4261 {
4262         EmpathyChatPriv *priv;
4263
4264         g_return_if_fail (EMPATHY_IS_CHAT (chat));
4265
4266         priv = GET_PRIV (chat);
4267
4268         empathy_search_bar_show (EMPATHY_SEARCH_BAR (priv->search_bar));
4269 }
4270
4271 void
4272 empathy_chat_correct_word (EmpathyChat  *chat,
4273                           GtkTextIter *start,
4274                           GtkTextIter *end,
4275                           const gchar *new_word)
4276 {
4277         GtkTextBuffer *buffer;
4278
4279         g_return_if_fail (chat != NULL);
4280         g_return_if_fail (new_word != NULL);
4281
4282         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
4283
4284         gtk_text_buffer_delete (buffer, start, end);
4285         gtk_text_buffer_insert (buffer, start,
4286                                 new_word,
4287                                 -1);
4288 }
4289
4290 gboolean
4291 empathy_chat_is_room (EmpathyChat *chat)
4292 {
4293         EmpathyChatPriv *priv = GET_PRIV (chat);
4294
4295         g_return_val_if_fail (EMPATHY_IS_CHAT (chat), FALSE);
4296
4297         return (priv->handle_type == TP_HANDLE_TYPE_ROOM);
4298 }
4299
4300 guint
4301 empathy_chat_get_nb_unread_messages (EmpathyChat *self)
4302 {
4303         EmpathyChatPriv *priv = GET_PRIV (self);
4304
4305         g_return_val_if_fail (EMPATHY_IS_CHAT (self), 0);
4306
4307         return priv->unread_messages;
4308 }
4309
4310 /* called when the messages have been read by user */
4311 void
4312 empathy_chat_messages_read (EmpathyChat *self)
4313 {
4314         EmpathyChatPriv *priv = GET_PRIV (self);
4315
4316         g_return_if_fail (EMPATHY_IS_CHAT (self));
4317
4318         /* FIXME: See Bug#610994, See comments about it in EmpathyChatPriv
4319          * definition. If we are still retrieving the backlogs, do not ACK */
4320         if (priv->retrieving_backlogs)
4321                 return;
4322
4323         if (priv->tp_chat != NULL) {
4324                 tp_text_channel_ack_all_pending_messages_async (
4325                         TP_TEXT_CHANNEL (priv->tp_chat), NULL, NULL);
4326         }
4327
4328         if (priv->unread_messages_when_offline > 0) {
4329                 /* We can't ack those as the connection has gone away so just consider
4330                 * them as read. */
4331                 priv->unread_messages -= priv->unread_messages_when_offline;
4332                 g_object_notify (G_OBJECT (self), "nb-unread-messages");
4333                 priv->unread_messages_when_offline = 0;
4334         }
4335 }
4336
4337 /* Return TRUE if on of the contacts in this chat is composing */
4338 gboolean
4339 empathy_chat_is_composing (EmpathyChat *chat)
4340 {
4341   return chat->priv->compositors != NULL;
4342 }
4343
4344 gboolean
4345 empathy_chat_is_sms_channel (EmpathyChat *self)
4346 {
4347         EmpathyChatPriv *priv = GET_PRIV (self);
4348
4349         g_return_val_if_fail (EMPATHY_IS_CHAT (self), 0);
4350
4351         return priv->sms_channel;
4352 }
4353
4354 guint
4355 empathy_chat_get_n_messages_sending (EmpathyChat *self)
4356 {
4357         EmpathyChatPriv *priv;
4358
4359         g_return_val_if_fail (EMPATHY_IS_CHAT (self), 0);
4360
4361         priv = GET_PRIV (self);
4362
4363         if (priv->tp_chat == NULL) {
4364                 return 0;
4365         } else {
4366                 guint n_messages;
4367
4368                 g_object_get (priv->tp_chat,
4369                         "n-messages-sending", &n_messages,
4370                         NULL);
4371
4372                 return n_messages;
4373         }
4374 }
4375
4376 gchar *
4377 empathy_chat_dup_text (EmpathyChat *self)
4378 {
4379         GtkTextBuffer *buffer;
4380         GtkTextIter     start, end;
4381
4382         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (self->input_text_view));
4383
4384         gtk_text_buffer_get_bounds (buffer, &start, &end);
4385         return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
4386 }
4387
4388 void
4389 empathy_chat_set_text (EmpathyChat *self,
4390                        const gchar *text)
4391 {
4392         GtkTextBuffer *buffer;
4393
4394         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (self->input_text_view));
4395
4396         gtk_text_buffer_set_text (buffer, text, -1);
4397 }