]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-theme-adium.c
Merge branch 'adium-events'
[empathy.git] / libempathy-gtk / empathy-theme-adium.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2008-2009 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include "config.h"
23
24 #include <string.h>
25 #include <glib/gi18n.h>
26
27 #include <webkit/webkit.h>
28 #include <telepathy-glib/dbus.h>
29 #include <telepathy-glib/util.h>
30
31 #include <gconf/gconf-client.h>
32 #include <pango/pango.h>
33 #include <gdk/gdk.h>
34
35 #include <libempathy/empathy-time.h>
36 #include <libempathy/empathy-utils.h>
37
38 #include "empathy-theme-adium.h"
39 #include "empathy-smiley-manager.h"
40 #include "empathy-conf.h"
41 #include "empathy-ui-utils.h"
42 #include "empathy-plist.h"
43
44 #define DEBUG_FLAG EMPATHY_DEBUG_CHAT
45 #include <libempathy/empathy-debug.h>
46
47 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyThemeAdium)
48
49 /* GConf key containing current value of font */
50 #define EMPATHY_GCONF_FONT_KEY_NAME       "/desktop/gnome/interface/font_name"
51 #define BORING_DPI_DEFAULT                96
52
53 /* "Join" consecutive messages with timestamps within five minutes */
54 #define MESSAGE_JOIN_PERIOD 5*60
55
56 typedef struct {
57         EmpathyAdiumData     *data;
58         EmpathySmileyManager *smiley_manager;
59         EmpathyContact       *last_contact;
60         time_t                last_timestamp;
61         gboolean              last_is_backlog;
62         gboolean              page_loaded;
63         GList                *message_queue;
64         guint                 notify_enable_webkit_developer_tools_id;
65         GtkWidget            *inspector_window;
66 } EmpathyThemeAdiumPriv;
67
68 struct _EmpathyAdiumData {
69         gint  ref_count;
70         gchar *path;
71         gchar *basedir;
72         gchar *default_avatar_filename;
73         gchar *default_incoming_avatar_filename;
74         gchar *default_outgoing_avatar_filename;
75         gchar *template_html;
76         gchar *in_content_html;
77         gsize  in_content_len;
78         gchar *in_context_html;
79         gsize  in_context_len;
80         gchar *in_nextcontent_html;
81         gsize  in_nextcontent_len;
82         gchar *in_nextcontext_html;
83         gsize  in_nextcontext_len;
84         gchar *out_content_html;
85         gsize  out_content_len;
86         gchar *out_context_html;
87         gsize  out_context_len;
88         gchar *out_nextcontent_html;
89         gsize  out_nextcontent_len;
90         gchar *out_nextcontext_html;
91         gsize  out_nextcontext_len;
92         gchar *status_html;
93         gsize  status_len;
94         GHashTable *info;
95 };
96
97 static void theme_adium_iface_init (EmpathyChatViewIface *iface);
98
99 enum {
100         PROP_0,
101         PROP_ADIUM_DATA,
102 };
103
104 G_DEFINE_TYPE_WITH_CODE (EmpathyThemeAdium, empathy_theme_adium,
105                          WEBKIT_TYPE_WEB_VIEW,
106                          G_IMPLEMENT_INTERFACE (EMPATHY_TYPE_CHAT_VIEW,
107                                                 theme_adium_iface_init));
108
109 static void
110 theme_adium_update_enable_webkit_developer_tools (EmpathyThemeAdium *theme)
111 {
112         WebKitWebView  *web_view = WEBKIT_WEB_VIEW (theme);
113         gboolean        enable_webkit_developer_tools;
114
115         if (!empathy_conf_get_bool (empathy_conf_get (),
116                                     EMPATHY_PREFS_CHAT_WEBKIT_DEVELOPER_TOOLS,
117                                     &enable_webkit_developer_tools)) {
118                 return;
119         }
120
121         g_object_set (G_OBJECT (webkit_web_view_get_settings (web_view)),
122                       "enable-developer-extras",
123                       enable_webkit_developer_tools,
124                       NULL);
125 }
126
127 static void
128 theme_adium_notify_enable_webkit_developer_tools_cb (EmpathyConf *conf,
129                                                      const gchar *key,
130                                                      gpointer     user_data)
131 {
132         EmpathyThemeAdium  *theme = user_data;
133
134         theme_adium_update_enable_webkit_developer_tools (theme);
135 }
136
137 static gboolean
138 theme_adium_navigation_policy_decision_requested_cb (WebKitWebView             *view,
139                                                      WebKitWebFrame            *web_frame,
140                                                      WebKitNetworkRequest      *request,
141                                                      WebKitWebNavigationAction *action,
142                                                      WebKitWebPolicyDecision   *decision,
143                                                      gpointer                   data)
144 {
145         const gchar *uri;
146
147         /* Only call url_show on clicks */
148         if (webkit_web_navigation_action_get_reason (action) !=
149             WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED) {
150                 webkit_web_policy_decision_use (decision);
151                 return TRUE;
152         }
153
154         uri = webkit_network_request_get_uri (request);
155         empathy_url_show (GTK_WIDGET (view), uri);
156
157         webkit_web_policy_decision_ignore (decision);
158         return TRUE;
159 }
160
161 static void
162 theme_adium_copy_address_cb (GtkMenuItem *menuitem,
163                              gpointer     user_data)
164 {
165         WebKitHitTestResult   *hit_test_result = WEBKIT_HIT_TEST_RESULT (user_data);
166         gchar                 *uri;
167         GtkClipboard          *clipboard;
168
169         g_object_get (G_OBJECT (hit_test_result), "link-uri", &uri, NULL);
170
171         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
172         gtk_clipboard_set_text (clipboard, uri, -1);
173
174         clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
175         gtk_clipboard_set_text (clipboard, uri, -1);
176
177         g_free (uri);
178 }
179
180 static void
181 theme_adium_open_address_cb (GtkMenuItem *menuitem,
182                              gpointer     user_data)
183 {
184         WebKitHitTestResult   *hit_test_result = WEBKIT_HIT_TEST_RESULT (user_data);
185         gchar                 *uri;
186
187         g_object_get (G_OBJECT (hit_test_result), "link-uri", &uri, NULL);
188
189         empathy_url_show (GTK_WIDGET (menuitem), uri);
190
191         g_free (uri);
192 }
193
194 static void
195 theme_adium_match_newline (const gchar *text,
196                            gssize len,
197                            EmpathyStringReplace replace_func,
198                            EmpathyStringParser *sub_parsers,
199                            gpointer user_data)
200 {
201         GString *string = user_data;
202         gint i;
203         gint prev = 0;
204
205         if (len < 0) {
206                 len = G_MAXSSIZE;
207         }
208
209         /* Replace \n by <br/> */
210         for (i = 0; i < len && text[i] != '\0'; i++) {
211                 if (text[i] == '\n') {
212                         empathy_string_parser_substr (text + prev,
213                                                       i - prev, sub_parsers,
214                                                       user_data);
215                         g_string_append (string, "<br/>");
216                         prev = i + 1;
217                 }
218         }
219         empathy_string_parser_substr (text + prev, i - prev,
220                                       sub_parsers, user_data);
221 }
222
223 static void
224 theme_adium_replace_link (const gchar *text,
225                           gssize len,
226                           gpointer match_data,
227                           gpointer user_data)
228 {
229         GString *string = user_data;
230         gchar *real_url;
231         gchar *escaped;
232
233         real_url = empathy_make_absolute_url_len (text, len);
234
235         /* The thing we are making a link of may contain
236          * characters which need escaping */
237         escaped = g_markup_escape_text (text, len);
238
239         /* Append the link inside <a href=""></a> tag */
240         g_string_append_printf (string, "<a href=\"%s\">%s</a>",
241                                 real_url, escaped);
242
243         g_free (real_url);
244         g_free (escaped);
245 }
246
247 static void
248 theme_adium_replace_smiley (const gchar *text,
249                             gssize len,
250                             gpointer match_data,
251                             gpointer user_data)
252 {
253         EmpathySmileyHit *hit = match_data;
254         GString *string = user_data;
255
256         /* Replace smiley by a <img/> tag */
257         g_string_append_printf (string,
258                                 "<img src=\"%s\" alt=\"%.*s\" title=\"%.*s\"/>",
259                                 hit->path, len, text, len, text);
260 }
261
262 static void
263 theme_adium_replace_escaped (const gchar *text,
264                              gssize len,
265                              gpointer match_data,
266                              gpointer user_data)
267 {
268         GString *string = user_data;
269         gchar *escaped;
270
271         escaped = g_markup_escape_text (text, len);
272         g_string_append (string, escaped);
273         g_free (escaped);
274 }
275
276 static EmpathyStringParser string_parsers[] = {
277         {empathy_string_match_link, theme_adium_replace_link},
278         {theme_adium_match_newline, NULL},
279         {empathy_string_match_all, theme_adium_replace_escaped},
280         {NULL, NULL}
281 };
282
283 static EmpathyStringParser string_parsers_with_smiley[] = {
284         {empathy_string_match_link, theme_adium_replace_link},
285         {empathy_string_match_smiley, theme_adium_replace_smiley},
286         {theme_adium_match_newline, NULL},
287         {empathy_string_match_all, theme_adium_replace_escaped},
288         {NULL, NULL}
289 };
290
291 static gchar *
292 theme_adium_parse_body (const gchar *text)
293 {
294         EmpathyStringParser *parsers;
295         GString *string;
296         gboolean use_smileys;
297
298         /* Check if we have to parse smileys */
299         empathy_conf_get_bool (empathy_conf_get (),
300                                EMPATHY_PREFS_CHAT_SHOW_SMILEYS,
301                                &use_smileys);
302         if (use_smileys)
303                 parsers = string_parsers_with_smiley;
304         else
305                 parsers = string_parsers;
306
307         /* Parse text and construct string with links and smileys replaced
308          * by html tags. Also escape text to make sure html code is
309          * displayed verbatim. */
310         string = g_string_sized_new (strlen (text));
311         empathy_string_parser_substr (text, -1, parsers, string);
312
313         return g_string_free (string, FALSE);
314 }
315
316 static void
317 escape_and_append_len (GString *string, const gchar *str, gint len)
318 {
319         while (*str != '\0' && len != 0) {
320                 switch (*str) {
321                 case '\\':
322                         /* \ becomes \\ */
323                         g_string_append (string, "\\\\");
324                         break;
325                 case '\"':
326                         /* " becomes \" */
327                         g_string_append (string, "\\\"");
328                         break;
329                 case '\n':
330                         /* Remove end of lines */
331                         break;
332                 default:
333                         g_string_append_c (string, *str);
334                 }
335
336                 str++;
337                 len--;
338         }
339 }
340
341 static gboolean
342 theme_adium_match (const gchar **str, const gchar *match)
343 {
344         gint len;
345
346         len = strlen (match);
347         if (strncmp (*str, match, len) == 0) {
348                 *str += len - 1;
349                 return TRUE;
350         }
351
352         return FALSE;
353 }
354
355 static void
356 theme_adium_append_html (EmpathyThemeAdium *theme,
357                          const gchar       *func,
358                          const gchar       *html, gsize len,
359                          const gchar       *message,
360                          const gchar       *avatar_filename,
361                          const gchar       *name,
362                          const gchar       *contact_id,
363                          const gchar       *service_name,
364                          const gchar       *message_classes,
365                          time_t             timestamp)
366 {
367         GString     *string;
368         const gchar *cur = NULL;
369         gchar       *script;
370
371         /* Make some search-and-replace in the html code */
372         string = g_string_sized_new (len + strlen (message));
373         g_string_append_printf (string, "%s(\"", func);
374         for (cur = html; *cur != '\0'; cur++) {
375                 const gchar *replace = NULL;
376                 gchar       *dup_replace = NULL;
377
378                 if (theme_adium_match (&cur, "%message%")) {
379                         replace = message;
380                 } else if (theme_adium_match (&cur, "%messageClasses%")) {
381                         replace = message_classes;
382                 } else if (theme_adium_match (&cur, "%userIconPath%")) {
383                         replace = avatar_filename;
384                 } else if (theme_adium_match (&cur, "%sender%")) {
385                         replace = name;
386                 } else if (theme_adium_match (&cur, "%senderScreenName%")) {
387                         replace = contact_id;
388                 } else if (theme_adium_match (&cur, "%senderDisplayName%")) {
389                         /* %senderDisplayName% -
390                          * "The serverside (remotely set) name of the sender,
391                          *  such as an MSN display name."
392                          *
393                          * We don't have access to that yet so we use local
394                          * alias instead.*/
395                         replace = name;
396                 } else if (theme_adium_match (&cur, "%service%")) {
397                         replace = service_name;
398                 } else if (theme_adium_match (&cur, "%shortTime%")) {
399                         dup_replace = empathy_time_to_string_local (timestamp,
400                                 EMPATHY_TIME_FORMAT_DISPLAY_SHORT);
401                         replace = dup_replace;
402                 } else if (theme_adium_match (&cur, "%time")) {
403                         gchar *format = NULL;
404                         gchar *end;
405                         /* Time can be in 2 formats:
406                          * %time% or %time{strftime format}%
407                          * Extract the time format if provided. */
408                         if (cur[1] == '{') {
409                                 cur += 2;
410                                 end = strstr (cur, "}%");
411                                 if (!end) {
412                                         /* Invalid string */
413                                         continue;
414                                 }
415                                 format = g_strndup (cur, end - cur);
416                                 cur = end + 1;
417                         } else {
418                                 cur++;
419                         }
420
421                         dup_replace = empathy_time_to_string_local (timestamp,
422                                 format ? format : EMPATHY_TIME_FORMAT_DISPLAY_SHORT);
423                         replace = dup_replace;
424                         g_free (format);
425                 } else {
426                         escape_and_append_len (string, cur, 1);
427                         continue;
428                 }
429
430                 /* Here we have a replacement to make */
431                 escape_and_append_len (string, replace, -1);
432                 g_free (dup_replace);
433         }
434         g_string_append (string, "\")");
435
436         script = g_string_free (string, FALSE);
437         webkit_web_view_execute_script (WEBKIT_WEB_VIEW (theme), script);
438         g_free (script);
439 }
440
441 static void
442 theme_adium_append_event_escaped (EmpathyChatView *view,
443                                   const gchar     *escaped)
444 {
445         EmpathyThemeAdium     *theme = EMPATHY_THEME_ADIUM (view);
446         EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
447
448         if (priv->data->status_html) {
449                 theme_adium_append_html (theme, "appendMessage",
450                                          priv->data->status_html,
451                                          priv->data->status_len,
452                                          escaped, NULL, NULL, NULL, NULL,
453                                          "event", empathy_time_get_current ());
454         }
455
456         /* There is no last contact */
457         if (priv->last_contact) {
458                 g_object_unref (priv->last_contact);
459                 priv->last_contact = NULL;
460         }
461 }
462
463 static void
464 theme_adium_append_message (EmpathyChatView *view,
465                             EmpathyMessage  *msg)
466 {
467         EmpathyThemeAdium     *theme = EMPATHY_THEME_ADIUM (view);
468         EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
469         EmpathyContact        *sender;
470         TpAccount             *account;
471         gchar                 *body_escaped;
472         const gchar           *body;
473         const gchar           *name;
474         const gchar           *contact_id;
475         EmpathyAvatar         *avatar;
476         const gchar           *avatar_filename = NULL;
477         time_t                 timestamp;
478         gchar                 *html = NULL;
479         gsize                  len = 0;
480         const gchar           *func;
481         const gchar           *service_name;
482         GString               *message_classes = NULL;
483         gboolean               is_backlog;
484         gboolean               consecutive;
485
486         if (!priv->page_loaded) {
487                 priv->message_queue = g_list_prepend (priv->message_queue,
488                                                       g_object_ref (msg));
489                 return;
490         }
491
492         /* Get information */
493         sender = empathy_message_get_sender (msg);
494         account = empathy_contact_get_account (sender);
495         service_name = empathy_protocol_name_to_display_name
496                 (tp_account_get_protocol (account));
497         if (service_name == NULL)
498                 service_name = tp_account_get_protocol (account);
499         timestamp = empathy_message_get_timestamp (msg);
500         body = empathy_message_get_body (msg);
501         body_escaped = theme_adium_parse_body (body);
502         name = empathy_contact_get_name (sender);
503         contact_id = empathy_contact_get_id (sender);
504
505         /* If this is a /me, append an event */
506         if (empathy_message_get_tptype (msg) == TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION) {
507                 gchar *str;
508
509                 str = g_strdup_printf ("%s %s", name, body_escaped);
510                 theme_adium_append_event_escaped (view, str);
511
512                 g_free (str);
513                 g_free (body_escaped);
514                 return;
515         }
516
517         /* Get the avatar filename, or a fallback */
518         avatar = empathy_contact_get_avatar (sender);
519         if (avatar) {
520                 avatar_filename = avatar->filename;
521         }
522         if (!avatar_filename) {
523                 if (empathy_contact_is_user (sender)) {
524                         avatar_filename = priv->data->default_outgoing_avatar_filename;
525                 } else {
526                         avatar_filename = priv->data->default_incoming_avatar_filename;
527                 }
528                 if (!avatar_filename) {
529                         if (!priv->data->default_avatar_filename) {
530                                 priv->data->default_avatar_filename =
531                                         empathy_filename_from_icon_name ("stock_person",
532                                                                          GTK_ICON_SIZE_DIALOG);
533                         }
534                         avatar_filename = priv->data->default_avatar_filename;
535                 }
536         }
537
538         /* We want to join this message with the last one if
539          * - senders are the same contact,
540          * - last message was recieved recently,
541          * - last message and this message both are/aren't backlog, and
542          * - DisableCombineConsecutive is not set in theme's settings */
543         is_backlog = empathy_message_is_backlog (msg);
544         consecutive = empathy_contact_equal (priv->last_contact, sender) &&
545                 (timestamp - priv->last_timestamp < MESSAGE_JOIN_PERIOD) &&
546                 (is_backlog == priv->last_is_backlog) &&
547                 !tp_asv_get_boolean (priv->data->info,
548                                      "DisableCombineConsecutive", NULL);
549
550         /* Define message classes */
551         message_classes = g_string_new ("message");
552         if (is_backlog) {
553                 g_string_append (message_classes, " history");
554         }
555         if (consecutive) {
556                 g_string_append (message_classes, " consecutive");
557         }
558         if (empathy_contact_is_user (sender)) {
559                 g_string_append (message_classes, " outgoing");
560         } else {
561                 g_string_append (message_classes, " incoming");
562         }
563
564         /* Define javascript function to use */
565         if (consecutive) {
566                 func = "appendNextMessage";
567         } else {
568                 func = "appendMessage";
569         }
570
571         /* Outgoing */
572         if (empathy_contact_is_user (sender)) {
573                 if (consecutive) {
574                         if (is_backlog) {
575                                 html = priv->data->out_nextcontext_html;
576                                 len = priv->data->out_nextcontext_len;
577                         }
578
579                         /* Not backlog, or fallback if NextContext.html
580                          * is missing */
581                         if (html == NULL) {
582                                 html = priv->data->out_nextcontent_html;
583                                 len = priv->data->out_nextcontent_len;
584                         }
585                 }
586
587                 /* Not consecutive, or fallback if NextContext.html and/or
588                  * NextContent.html are missing */
589                 if (html == NULL) {
590                         if (is_backlog) {
591                                 html = priv->data->out_context_html;
592                                 len = priv->data->out_context_len;
593                         }
594
595                         if (html == NULL) {
596                                 html = priv->data->out_content_html;
597                                 len = priv->data->out_content_len;
598                         }
599                 }
600         }
601
602         /* Incoming, or fallback if outgoing files are missing */
603         if (html == NULL) {
604                 if (consecutive) {
605                         if (is_backlog) {
606                                 html = priv->data->in_nextcontext_html;
607                                 len = priv->data->in_nextcontext_len;
608                         }
609
610                         /* Note backlog, or fallback if NextContext.html
611                          * is missing */
612                         if (html == NULL) {
613                                 html = priv->data->in_nextcontent_html;
614                                 len = priv->data->in_nextcontent_len;
615                         }
616                 }
617
618                 /* Not consecutive, or fallback if NextContext.html and/or
619                  * NextContent.html are missing */
620                 if (html == NULL) {
621                         if (is_backlog) {
622                                 html = priv->data->in_context_html;
623                                 len = priv->data->in_context_len;
624                         }
625
626                         if (html == NULL) {
627                                 html = priv->data->in_content_html;
628                                 len = priv->data->in_content_len;
629                         }
630                 }
631         }
632
633         if (html != NULL) {
634                 theme_adium_append_html (theme, func, html, len, body_escaped,
635                                          avatar_filename, name, contact_id,
636                                          service_name, message_classes->str,
637                                          timestamp);
638         } else {
639                 DEBUG ("Couldn't find HTML file for this message");
640         }
641
642         /* Keep the sender of the last displayed message */
643         if (priv->last_contact) {
644                 g_object_unref (priv->last_contact);
645         }
646         priv->last_contact = g_object_ref (sender);
647         priv->last_timestamp = timestamp;
648         priv->last_is_backlog = is_backlog;
649
650         g_free (body_escaped);
651         g_string_free (message_classes, TRUE);
652 }
653
654 static void
655 theme_adium_append_event (EmpathyChatView *view,
656                           const gchar     *str)
657 {
658         gchar *str_escaped;
659
660         str_escaped = g_markup_escape_text (str, -1);
661         theme_adium_append_event_escaped (view, str_escaped);
662         g_free (str_escaped);
663 }
664
665 static void
666 theme_adium_scroll (EmpathyChatView *view,
667                     gboolean         allow_scrolling)
668 {
669         /* FIXME: Is it possible? I guess we need a js function, but I don't
670          * see any... */
671 }
672
673 static void
674 theme_adium_scroll_down (EmpathyChatView *view)
675 {
676         webkit_web_view_execute_script (WEBKIT_WEB_VIEW (view), "scrollToBottom()");
677 }
678
679 static gboolean
680 theme_adium_get_has_selection (EmpathyChatView *view)
681 {
682         return webkit_web_view_has_selection (WEBKIT_WEB_VIEW (view));
683 }
684
685 static void
686 theme_adium_clear (EmpathyChatView *view)
687 {
688         EmpathyThemeAdiumPriv *priv = GET_PRIV (view);
689         gchar *basedir_uri;
690
691         priv->page_loaded = FALSE;
692         basedir_uri = g_strconcat ("file://", priv->data->basedir, NULL);
693         webkit_web_view_load_html_string (WEBKIT_WEB_VIEW (view),
694                                           priv->data->template_html,
695                                           basedir_uri);
696         g_free (basedir_uri);
697
698         /* Clear last contact to avoid trying to add a 'joined'
699          * message when we don't have an insertion point. */
700         if (priv->last_contact) {
701                 g_object_unref (priv->last_contact);
702                 priv->last_contact = NULL;
703         }
704 }
705
706 static gboolean
707 theme_adium_find_previous (EmpathyChatView *view,
708                            const gchar     *search_criteria,
709                            gboolean         new_search)
710 {
711         return webkit_web_view_search_text (WEBKIT_WEB_VIEW (view),
712                                             search_criteria, FALSE,
713                                             FALSE, TRUE);
714 }
715
716 static gboolean
717 theme_adium_find_next (EmpathyChatView *view,
718                        const gchar     *search_criteria,
719                        gboolean         new_search)
720 {
721         return webkit_web_view_search_text (WEBKIT_WEB_VIEW (view),
722                                             search_criteria, FALSE,
723                                             TRUE, TRUE);
724 }
725
726 static void
727 theme_adium_find_abilities (EmpathyChatView *view,
728                             const gchar    *search_criteria,
729                             gboolean       *can_do_previous,
730                             gboolean       *can_do_next)
731 {
732         /* FIXME: Does webkit provide an API for that? We have wrap=true in
733          * find_next and find_previous to work around this problem. */
734         if (can_do_previous)
735                 *can_do_previous = TRUE;
736         if (can_do_next)
737                 *can_do_next = TRUE;
738 }
739
740 static void
741 theme_adium_highlight (EmpathyChatView *view,
742                        const gchar     *text)
743 {
744         webkit_web_view_unmark_text_matches (WEBKIT_WEB_VIEW (view));
745         webkit_web_view_mark_text_matches (WEBKIT_WEB_VIEW (view),
746                                            text, FALSE, 0);
747         webkit_web_view_set_highlight_text_matches (WEBKIT_WEB_VIEW (view),
748                                                     TRUE);
749 }
750
751 static void
752 theme_adium_copy_clipboard (EmpathyChatView *view)
753 {
754         webkit_web_view_copy_clipboard (WEBKIT_WEB_VIEW (view));
755 }
756
757 static void
758 theme_adium_context_menu_selection_done_cb (GtkMenuShell *menu, gpointer user_data)
759 {
760         WebKitHitTestResult *hit_test_result = WEBKIT_HIT_TEST_RESULT (user_data);
761
762         g_object_unref (hit_test_result);
763 }
764
765 static void
766 theme_adium_context_menu_for_event (EmpathyThemeAdium *theme, GdkEventButton *event)
767 {
768         WebKitWebView              *view = WEBKIT_WEB_VIEW (theme);
769         WebKitHitTestResult        *hit_test_result;
770         WebKitHitTestResultContext  context;
771         GtkWidget                  *menu;
772         GtkWidget                  *item;
773
774         hit_test_result = webkit_web_view_get_hit_test_result (view, event);
775         g_object_get (G_OBJECT (hit_test_result), "context", &context, NULL);
776
777         /* The menu */
778         menu = gtk_menu_new ();
779
780         /* Select all item */
781         item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
782         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
783
784         g_signal_connect_swapped (item, "activate",
785                                   G_CALLBACK (webkit_web_view_select_all),
786                                   view);
787
788         /* Copy menu item */
789         if (webkit_web_view_can_copy_clipboard (view)) {
790                 item = gtk_image_menu_item_new_from_stock (GTK_STOCK_COPY, NULL);
791                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
792
793                 g_signal_connect_swapped (item, "activate",
794                                           G_CALLBACK (webkit_web_view_copy_clipboard),
795                                           view);
796         }
797
798         /* Clear menu item */
799         item = gtk_separator_menu_item_new ();
800         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
801
802         item = gtk_image_menu_item_new_from_stock (GTK_STOCK_CLEAR, NULL);
803         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
804
805         g_signal_connect_swapped (item, "activate",
806                                   G_CALLBACK (empathy_chat_view_clear),
807                                   view);
808
809         /* We will only add the following menu items if we are
810          * right-clicking a link */
811         if (context & WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK) {
812                 /* Separator */
813                 item = gtk_separator_menu_item_new ();
814                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
815
816                 /* Copy Link Address menu item */
817                 item = gtk_menu_item_new_with_mnemonic (_("_Copy Link Address"));
818                 g_signal_connect (item, "activate",
819                                   G_CALLBACK (theme_adium_copy_address_cb),
820                                   hit_test_result);
821                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
822
823                 /* Open Link menu item */
824                 item = gtk_menu_item_new_with_mnemonic (_("_Open Link"));
825                 g_signal_connect (item, "activate",
826                                   G_CALLBACK (theme_adium_open_address_cb),
827                                   hit_test_result);
828                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
829         }
830
831         g_signal_connect (GTK_MENU_SHELL (menu), "selection-done",
832                           G_CALLBACK (theme_adium_context_menu_selection_done_cb),
833                           hit_test_result);
834
835         /* Display the menu */
836         gtk_widget_show_all (menu);
837         gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
838                         event->button, event->time);
839 }
840
841 static gboolean
842 theme_adium_button_press_event (GtkWidget *widget, GdkEventButton *event)
843 {
844         if (event->button == 3) {
845                 gboolean developer_tools_enabled;
846
847                 g_object_get (G_OBJECT (webkit_web_view_get_settings (WEBKIT_WEB_VIEW (widget))),
848                               "enable-developer-extras", &developer_tools_enabled, NULL);
849
850                 /* We currently have no way to add an inspector menu
851                  * item ourselves, so we disable our customized menu
852                  * if the developer extras are enabled. */
853                 if (!developer_tools_enabled) {
854                         theme_adium_context_menu_for_event (EMPATHY_THEME_ADIUM (widget), event);
855                         return TRUE;
856                 }
857         }
858
859         return GTK_WIDGET_CLASS (empathy_theme_adium_parent_class)->button_press_event (widget, event);
860 }
861
862 static void
863 theme_adium_iface_init (EmpathyChatViewIface *iface)
864 {
865         iface->append_message = theme_adium_append_message;
866         iface->append_event = theme_adium_append_event;
867         iface->scroll = theme_adium_scroll;
868         iface->scroll_down = theme_adium_scroll_down;
869         iface->get_has_selection = theme_adium_get_has_selection;
870         iface->clear = theme_adium_clear;
871         iface->find_previous = theme_adium_find_previous;
872         iface->find_next = theme_adium_find_next;
873         iface->find_abilities = theme_adium_find_abilities;
874         iface->highlight = theme_adium_highlight;
875         iface->copy_clipboard = theme_adium_copy_clipboard;
876 }
877
878 static void
879 theme_adium_load_finished_cb (WebKitWebView  *view,
880                               WebKitWebFrame *frame,
881                               gpointer        user_data)
882 {
883         EmpathyThemeAdiumPriv *priv = GET_PRIV (view);
884         EmpathyChatView       *chat_view = EMPATHY_CHAT_VIEW (view);
885
886         DEBUG ("Page loaded");
887         priv->page_loaded = TRUE;
888
889         /* Display queued messages */
890         priv->message_queue = g_list_reverse (priv->message_queue);
891         while (priv->message_queue) {
892                 EmpathyMessage *message = priv->message_queue->data;
893
894                 theme_adium_append_message (chat_view, message);
895                 priv->message_queue = g_list_remove (priv->message_queue, message);
896                 g_object_unref (message);
897         }
898 }
899
900 static void
901 theme_adium_finalize (GObject *object)
902 {
903         EmpathyThemeAdiumPriv *priv = GET_PRIV (object);
904
905         empathy_adium_data_unref (priv->data);
906
907         empathy_conf_notify_remove (empathy_conf_get (),
908                                     priv->notify_enable_webkit_developer_tools_id);
909
910         G_OBJECT_CLASS (empathy_theme_adium_parent_class)->finalize (object);
911 }
912
913 static void
914 theme_adium_dispose (GObject *object)
915 {
916         EmpathyThemeAdiumPriv *priv = GET_PRIV (object);
917
918         if (priv->smiley_manager) {
919                 g_object_unref (priv->smiley_manager);
920                 priv->smiley_manager = NULL;
921         }
922
923         if (priv->last_contact) {
924                 g_object_unref (priv->last_contact);
925                 priv->last_contact = NULL;
926         }
927
928         if (priv->inspector_window) {
929                 gtk_widget_destroy (priv->inspector_window);
930                 priv->inspector_window = NULL;
931         }
932
933         G_OBJECT_CLASS (empathy_theme_adium_parent_class)->dispose (object);
934 }
935
936 static gboolean
937 theme_adium_inspector_show_window_cb (WebKitWebInspector *inspector,
938                                       EmpathyThemeAdium  *theme)
939 {
940         EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
941
942         if (priv->inspector_window) {
943                 gtk_widget_show_all (priv->inspector_window);
944         }
945
946         return TRUE;
947 }
948
949 static gboolean
950 theme_adium_inspector_close_window_cb (WebKitWebInspector *inspector,
951                                        EmpathyThemeAdium  *theme)
952 {
953         EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
954
955         if (priv->inspector_window) {
956                 gtk_widget_hide (priv->inspector_window);
957         }
958
959         return TRUE;
960 }
961
962 static WebKitWebView *
963 theme_adium_inspect_web_view_cb (WebKitWebInspector *inspector,
964                                  WebKitWebView      *web_view,
965                                  EmpathyThemeAdium  *theme)
966 {
967         EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
968         GtkWidget             *scrolled_window;
969         GtkWidget             *inspector_web_view;
970
971         if (!priv->inspector_window) {
972                 /* Create main window */
973                 priv->inspector_window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
974                 gtk_window_set_default_size (GTK_WINDOW (priv->inspector_window),
975                                              800, 600);
976                 g_signal_connect (priv->inspector_window, "delete-event",
977                                   G_CALLBACK (gtk_widget_hide_on_delete), NULL);
978
979                 /* Pack a scrolled window */
980                 scrolled_window = gtk_scrolled_window_new (NULL, NULL);
981                 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
982                                                 GTK_POLICY_AUTOMATIC,
983                                                 GTK_POLICY_AUTOMATIC);
984                 gtk_container_add (GTK_CONTAINER (priv->inspector_window),
985                                    scrolled_window);
986                 gtk_widget_show  (scrolled_window);
987
988                 /* Pack a webview in the scrolled window. That webview will be
989                  * used to render the inspector tool.  */
990                 inspector_web_view = webkit_web_view_new ();
991                 gtk_container_add (GTK_CONTAINER (scrolled_window),
992                                    inspector_web_view);
993                 gtk_widget_show (scrolled_window);
994
995                 return WEBKIT_WEB_VIEW (inspector_web_view);
996         }
997
998         return NULL;
999 }
1000
1001 static PangoFontDescription *
1002 theme_adium_get_default_font (void)
1003 {
1004         GConfClient *gconf_client;
1005         PangoFontDescription *pango_fd;
1006         gchar *gconf_font_family;
1007
1008         gconf_client = gconf_client_get_default ();
1009         if (gconf_client == NULL) {
1010                 return NULL;
1011         }
1012         gconf_font_family = gconf_client_get_string (gconf_client,
1013                      EMPATHY_GCONF_FONT_KEY_NAME,
1014                      NULL);
1015         if (gconf_font_family == NULL) {
1016                 g_object_unref (gconf_client);
1017                 return NULL;
1018         }
1019         pango_fd = pango_font_description_from_string (gconf_font_family);
1020         g_free (gconf_font_family);
1021         g_object_unref (gconf_client);
1022         return pango_fd;
1023 }
1024
1025 static void
1026 theme_adium_set_webkit_font (WebKitWebSettings *w_settings,
1027                              const gchar *name,
1028                              gint size)
1029 {
1030         g_object_set (w_settings, "default-font-family", name, NULL);
1031         g_object_set (w_settings, "default-font-size", size, NULL);
1032 }
1033
1034 static void
1035 theme_adium_set_default_font (WebKitWebSettings *w_settings)
1036 {
1037         PangoFontDescription *default_font_desc;
1038         GdkScreen *current_screen;
1039         gdouble dpi = 0;
1040         gint pango_font_size = 0;
1041
1042         default_font_desc = theme_adium_get_default_font ();
1043         if (default_font_desc == NULL)
1044                 return ;
1045         pango_font_size = pango_font_description_get_size (default_font_desc)
1046                 / PANGO_SCALE ;
1047         if (pango_font_description_get_size_is_absolute (default_font_desc)) {
1048                 current_screen = gdk_screen_get_default ();
1049                 if (current_screen != NULL) {
1050                         dpi = gdk_screen_get_resolution (current_screen);
1051                 } else {
1052                         dpi = BORING_DPI_DEFAULT;
1053                 }
1054                 pango_font_size = (gint) (pango_font_size / (dpi / 72));
1055         }
1056         theme_adium_set_webkit_font (w_settings,
1057                 pango_font_description_get_family (default_font_desc),
1058                 pango_font_size);
1059         pango_font_description_free (default_font_desc);
1060 }
1061
1062 static void
1063 theme_adium_constructed (GObject *object)
1064 {
1065         EmpathyThemeAdiumPriv *priv = GET_PRIV (object);
1066         gchar                 *basedir_uri;
1067         const gchar           *font_family = NULL;
1068         gint                   font_size = 0;
1069         WebKitWebView         *webkit_view = WEBKIT_WEB_VIEW (object);
1070         WebKitWebSettings     *webkit_settings;
1071         WebKitWebInspector    *webkit_inspector;
1072
1073         /* Set default settings */
1074         font_family = tp_asv_get_string (priv->data->info, "DefaultFontFamily");
1075         font_size = tp_asv_get_int32 (priv->data->info, "DefaultFontSize", NULL);
1076         webkit_settings = webkit_web_view_get_settings (webkit_view);
1077
1078         if (font_family && font_size) {
1079                 theme_adium_set_webkit_font (webkit_settings, font_family, font_size);
1080         } else {
1081                 theme_adium_set_default_font (webkit_settings);
1082         }
1083
1084         /* Setup webkit inspector */
1085         webkit_inspector = webkit_web_view_get_inspector (webkit_view);
1086         g_signal_connect (webkit_inspector, "inspect-web-view",
1087                           G_CALLBACK (theme_adium_inspect_web_view_cb),
1088                           object);
1089         g_signal_connect (webkit_inspector, "show-window",
1090                           G_CALLBACK (theme_adium_inspector_show_window_cb),
1091                           object);
1092         g_signal_connect (webkit_inspector, "close-window",
1093                           G_CALLBACK (theme_adium_inspector_close_window_cb),
1094                           object);
1095
1096         /* Load template */
1097         basedir_uri = g_strconcat ("file://", priv->data->basedir, NULL);
1098         webkit_web_view_load_html_string (WEBKIT_WEB_VIEW (object),
1099                                           priv->data->template_html,
1100                                           basedir_uri);
1101         g_free (basedir_uri);
1102 }
1103
1104 static void
1105 theme_adium_get_property (GObject    *object,
1106                           guint       param_id,
1107                           GValue     *value,
1108                           GParamSpec *pspec)
1109 {
1110         EmpathyThemeAdiumPriv *priv = GET_PRIV (object);
1111
1112         switch (param_id) {
1113         case PROP_ADIUM_DATA:
1114                 g_value_set_boxed (value, priv->data);
1115                 break;
1116         default:
1117                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
1118                 break;
1119         };
1120 }
1121
1122 static void
1123 theme_adium_set_property (GObject      *object,
1124                           guint         param_id,
1125                           const GValue *value,
1126                           GParamSpec   *pspec)
1127 {
1128         EmpathyThemeAdiumPriv *priv = GET_PRIV (object);
1129
1130         switch (param_id) {
1131         case PROP_ADIUM_DATA:
1132                 g_assert (priv->data == NULL);
1133                 priv->data = g_value_dup_boxed (value);
1134                 break;
1135         default:
1136                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
1137                 break;
1138         };
1139 }
1140
1141 static void
1142 empathy_theme_adium_class_init (EmpathyThemeAdiumClass *klass)
1143 {
1144         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1145         GtkWidgetClass* widget_class = GTK_WIDGET_CLASS (klass);
1146
1147         object_class->finalize = theme_adium_finalize;
1148         object_class->dispose = theme_adium_dispose;
1149         object_class->constructed = theme_adium_constructed;
1150         object_class->get_property = theme_adium_get_property;
1151         object_class->set_property = theme_adium_set_property;
1152
1153         widget_class->button_press_event = theme_adium_button_press_event;
1154
1155         g_object_class_install_property (object_class,
1156                                          PROP_ADIUM_DATA,
1157                                          g_param_spec_boxed ("adium-data",
1158                                                              "The theme data",
1159                                                              "Data for the adium theme",
1160                                                               EMPATHY_TYPE_ADIUM_DATA,
1161                                                               G_PARAM_CONSTRUCT_ONLY |
1162                                                               G_PARAM_READWRITE |
1163                                                               G_PARAM_STATIC_STRINGS));
1164
1165         g_type_class_add_private (object_class, sizeof (EmpathyThemeAdiumPriv));
1166 }
1167
1168 static void
1169 empathy_theme_adium_init (EmpathyThemeAdium *theme)
1170 {
1171         EmpathyThemeAdiumPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (theme,
1172                 EMPATHY_TYPE_THEME_ADIUM, EmpathyThemeAdiumPriv);
1173
1174         theme->priv = priv;
1175
1176         priv->smiley_manager = empathy_smiley_manager_dup_singleton ();
1177
1178         g_signal_connect (theme, "load-finished",
1179                           G_CALLBACK (theme_adium_load_finished_cb),
1180                           NULL);
1181         g_signal_connect (theme, "navigation-policy-decision-requested",
1182                           G_CALLBACK (theme_adium_navigation_policy_decision_requested_cb),
1183                           NULL);
1184
1185         priv->notify_enable_webkit_developer_tools_id =
1186                 empathy_conf_notify_add (empathy_conf_get (),
1187                                          EMPATHY_PREFS_CHAT_WEBKIT_DEVELOPER_TOOLS,
1188                                          theme_adium_notify_enable_webkit_developer_tools_cb,
1189                                          theme);
1190
1191         theme_adium_update_enable_webkit_developer_tools (theme);
1192 }
1193
1194 EmpathyThemeAdium *
1195 empathy_theme_adium_new (EmpathyAdiumData *data)
1196 {
1197         g_return_val_if_fail (data != NULL, NULL);
1198
1199         return g_object_new (EMPATHY_TYPE_THEME_ADIUM,
1200                              "adium-data", data,
1201                              NULL);
1202 }
1203
1204 gboolean
1205 empathy_adium_path_is_valid (const gchar *path)
1206 {
1207         gboolean ret;
1208         gchar   *file;
1209
1210         /* The theme is not valid if there is no Info.plist */
1211         file = g_build_filename (path, "Contents", "Info.plist",
1212                                  NULL);
1213         ret = g_file_test (file, G_FILE_TEST_EXISTS);
1214         g_free (file);
1215
1216         if (ret == FALSE)
1217                 return ret;
1218
1219         /* We ship a default Template.html as fallback if there is any problem
1220          * with the one inside the theme. The only other required file is
1221          * Content.html for incoming messages (outgoing fallback to use
1222          * incoming). */
1223         file = g_build_filename (path, "Contents", "Resources", "Incoming",
1224                                  "Content.html", NULL);
1225         ret = g_file_test (file, G_FILE_TEST_EXISTS);
1226         g_free (file);
1227
1228         return ret;
1229 }
1230
1231 GHashTable *
1232 empathy_adium_info_new (const gchar *path)
1233 {
1234         gchar *file;
1235         GValue *value;
1236         GHashTable *info = NULL;
1237
1238         g_return_val_if_fail (empathy_adium_path_is_valid (path), NULL);
1239
1240         file = g_build_filename (path, "Contents", "Info.plist", NULL);
1241         value = empathy_plist_parse_from_file (file);
1242         g_free (file);
1243
1244         if (value == NULL)
1245                 return NULL;
1246
1247         info = g_value_dup_boxed (value);
1248         tp_g_value_slice_free (value);
1249
1250         /* Insert the theme's path into the hash table,
1251          * keys have to be dupped */
1252         tp_asv_set_string (info, g_strdup ("path"), path);
1253
1254         return info;
1255 }
1256
1257 GType
1258 empathy_adium_data_get_type (void)
1259 {
1260   static GType type_id = 0;
1261
1262   if (!type_id)
1263     {
1264       type_id = g_boxed_type_register_static ("EmpathyAdiumData",
1265           (GBoxedCopyFunc) empathy_adium_data_ref,
1266           (GBoxedFreeFunc) empathy_adium_data_unref);
1267     }
1268
1269   return type_id;
1270 }
1271
1272 EmpathyAdiumData  *
1273 empathy_adium_data_new_with_info (const gchar *path, GHashTable *info)
1274 {
1275         EmpathyAdiumData *data;
1276         gchar            *file;
1277         gchar            *template_html = NULL;
1278         gsize             template_len;
1279         gchar            *footer_html = NULL;
1280         gsize             footer_len;
1281         GString          *string;
1282         gchar           **strv = NULL;
1283         gchar            *css_path;
1284         guint             len = 0;
1285         guint             i = 0;
1286
1287         g_return_val_if_fail (empathy_adium_path_is_valid (path), NULL);
1288
1289         data = g_slice_new0 (EmpathyAdiumData);
1290         data->ref_count = 1;
1291         data->path = g_strdup (path);
1292         data->basedir = g_strconcat (path, G_DIR_SEPARATOR_S "Contents"
1293                 G_DIR_SEPARATOR_S "Resources" G_DIR_SEPARATOR_S, NULL);
1294         data->info = g_hash_table_ref (info);
1295
1296         /* Load html files */
1297         file = g_build_filename (data->basedir, "Incoming", "Content.html", NULL);
1298         g_file_get_contents (file, &data->in_content_html, &data->in_content_len, NULL);
1299         g_free (file);
1300
1301         file = g_build_filename (data->basedir, "Incoming", "NextContent.html", NULL);
1302         g_file_get_contents (file, &data->in_nextcontent_html, &data->in_nextcontent_len, NULL);
1303         g_free (file);
1304
1305         file = g_build_filename (data->basedir, "Incoming", "Context.html", NULL);
1306         g_file_get_contents (file, &data->in_context_html, &data->in_context_len, NULL);
1307         g_free (file);
1308
1309         file = g_build_filename (data->basedir, "Incoming", "NextContext.html", NULL);
1310         g_file_get_contents (file, &data->in_nextcontext_html, &data->in_nextcontext_len, NULL);
1311         g_free (file);
1312
1313         file = g_build_filename (data->basedir, "Outgoing", "Content.html", NULL);
1314         g_file_get_contents (file, &data->out_content_html, &data->out_content_len, NULL);
1315         g_free (file);
1316
1317         file = g_build_filename (data->basedir, "Outgoing", "NextContent.html", NULL);
1318         g_file_get_contents (file, &data->out_nextcontent_html, &data->out_nextcontent_len, NULL);
1319         g_free (file);
1320
1321         file = g_build_filename (data->basedir, "Outgoing", "Context.html", NULL);
1322         g_file_get_contents (file, &data->out_context_html, &data->out_context_len, NULL);
1323         g_free (file);
1324
1325         file = g_build_filename (data->basedir, "Outgoing", "NextContext.html", NULL);
1326         g_file_get_contents (file, &data->out_nextcontext_html, &data->out_nextcontext_len, NULL);
1327         g_free (file);
1328
1329         file = g_build_filename (data->basedir, "Status.html", NULL);
1330         g_file_get_contents (file, &data->status_html, &data->status_len, NULL);
1331         g_free (file);
1332
1333         file = g_build_filename (data->basedir, "Footer.html", NULL);
1334         g_file_get_contents (file, &footer_html, &footer_len, NULL);
1335         g_free (file);
1336
1337         file = g_build_filename (data->basedir, "Incoming", "buddy_icon.png", NULL);
1338         if (g_file_test (file, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)) {
1339                 data->default_incoming_avatar_filename = file;
1340         } else {
1341                 g_free (file);
1342         }
1343
1344         file = g_build_filename (data->basedir, "Outgoing", "buddy_icon.png", NULL);
1345         if (g_file_test (file, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)) {
1346                 data->default_outgoing_avatar_filename = file;
1347         } else {
1348                 g_free (file);
1349         }
1350
1351         css_path = g_build_filename (data->basedir, "main.css", NULL);
1352
1353         /* There is 2 formats for Template.html: The old one has 4 parameters,
1354          * the new one has 5 parameters. */
1355         file = g_build_filename (data->basedir, "Template.html", NULL);
1356         if (g_file_get_contents (file, &template_html, &template_len, NULL)) {
1357                 strv = g_strsplit (template_html, "%@", -1);
1358                 len = g_strv_length (strv);
1359         }
1360         g_free (file);
1361
1362         if (len != 5 && len != 6) {
1363                 /* Either the theme has no template or it don't have the good
1364                  * number of parameters. Fallback to use our own template. */
1365                 g_free (template_html);
1366                 g_strfreev (strv);
1367
1368                 file = empathy_file_lookup ("Template.html", "data");
1369                 g_file_get_contents (file, &template_html, &template_len, NULL);
1370                 g_free (file);
1371                 strv = g_strsplit (template_html, "%@", -1);
1372                 len = g_strv_length (strv);
1373         }
1374
1375         /* Replace %@ with the needed information in the template html. */
1376         string = g_string_sized_new (template_len);
1377         g_string_append (string, strv[i++]);
1378         g_string_append (string, data->basedir);
1379         g_string_append (string, strv[i++]);
1380         if (len == 6) {
1381                 const gchar *variant;
1382
1383                 /* We include main.css by default */
1384                 g_string_append_printf (string, "@import url(\"%s\");", css_path);
1385                 g_string_append (string, strv[i++]);
1386                 variant = tp_asv_get_string (data->info, "DefaultVariant");
1387                 if (variant) {
1388                         g_string_append (string, "Variants/");
1389                         g_string_append (string, variant);
1390                         g_string_append (string, ".css");
1391                 }
1392         } else {
1393                 /* FIXME: We should set main.css OR the variant css */
1394                 g_string_append (string, css_path);
1395         }
1396         g_string_append (string, strv[i++]);
1397         g_string_append (string, ""); /* We don't want header */
1398         g_string_append (string, strv[i++]);
1399         /* FIXME: We should replace adium %macros% in footer */
1400         if (footer_html) {
1401                 g_string_append (string, footer_html);
1402         }
1403         g_string_append (string, strv[i++]);
1404         data->template_html = g_string_free (string, FALSE);
1405
1406         g_free (footer_html);
1407         g_free (template_html);
1408         g_free (css_path);
1409         g_strfreev (strv);
1410
1411         return data;
1412 }
1413
1414 EmpathyAdiumData  *
1415 empathy_adium_data_new (const gchar *path)
1416 {
1417         EmpathyAdiumData *data;
1418         GHashTable *info;
1419
1420         info = empathy_adium_info_new (path);
1421         data = empathy_adium_data_new_with_info (path, info);
1422         g_hash_table_unref (info);
1423
1424         return data;
1425 }
1426
1427 EmpathyAdiumData  *
1428 empathy_adium_data_ref (EmpathyAdiumData *data)
1429 {
1430         g_return_val_if_fail (data != NULL, NULL);
1431
1432         g_atomic_int_inc (&data->ref_count);
1433
1434         return data;
1435 }
1436
1437 void
1438 empathy_adium_data_unref (EmpathyAdiumData *data)
1439 {
1440         g_return_if_fail (data != NULL);
1441
1442         if (g_atomic_int_dec_and_test (&data->ref_count)) {
1443                 g_free (data->path);
1444                 g_free (data->basedir);
1445                 g_free (data->template_html);
1446                 g_free (data->in_content_html);
1447                 g_free (data->in_nextcontent_html);
1448                 g_free (data->in_context_html);
1449                 g_free (data->in_nextcontext_html);
1450                 g_free (data->out_content_html);
1451                 g_free (data->out_nextcontent_html);
1452                 g_free (data->out_context_html);
1453                 g_free (data->out_nextcontext_html);
1454                 g_free (data->default_avatar_filename);
1455                 g_free (data->default_incoming_avatar_filename);
1456                 g_free (data->default_outgoing_avatar_filename);
1457                 g_free (data->status_html);
1458                 g_hash_table_unref (data->info);
1459                 g_slice_free (EmpathyAdiumData, data);
1460         }
1461 }
1462
1463 GHashTable *
1464 empathy_adium_data_get_info (EmpathyAdiumData *data)
1465 {
1466         g_return_val_if_fail (data != NULL, NULL);
1467
1468         return data->info;
1469 }
1470
1471 const gchar *
1472 empathy_adium_data_get_path (EmpathyAdiumData *data)
1473 {
1474         g_return_val_if_fail (data != NULL, NULL);
1475
1476         return data->path;
1477 }
1478