/* * e-mail-display.c * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with the program; if not, see * * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ #ifdef HAVE_CONFIG_H #include #endif #include "e-mail-display.h" #include #include #include #include #include #include #include #include "e-util/e-marshal.h" #include "e-util/e-util.h" #include "e-util/e-plugin-ui.h" #include "e-util/e-file-request.h" #include "e-util/e-stock-request.h" #include "mail/em-composer-utils.h" #include "mail/em-utils.h" #include "mail/e-mail-request.h" #include "mail/e-http-request.h" #include "widgets/misc/e-attachment-bar.h" #include "widgets/misc/e-attachment-button.h" #include #include #define d(x) G_DEFINE_TYPE (EMailDisplay, e_mail_display, E_TYPE_WEB_VIEW) #define E_MAIL_DISPLAY_GET_PRIVATE(obj) \ (G_TYPE_INSTANCE_GET_PRIVATE \ ((obj), E_TYPE_MAIL_DISPLAY, EMailDisplayPrivate)) struct _EMailDisplayPrivate { EMailPartList *part_list; EMailFormatterMode mode; EMailFormatter *formatter; gboolean headers_collapsable; gboolean headers_collapsed; GtkActionGroup *mailto_actions; GtkActionGroup *images_actions; gint force_image_load: 1; GSettings *settings; GHashTable *widgets; }; enum { PROP_0, PROP_MODE, PROP_PART_LIST, PROP_HEADERS_COLLAPSABLE, PROP_HEADERS_COLLAPSED, }; static gpointer parent_class; static CamelDataCache *emd_global_http_cache = 0; static const gchar *ui = "" " " " " " " " " " " " " " " " " " " " " " " " " ""; static const gchar *image_ui = "" " " " " " " " " " " ""; static GtkActionEntry mailto_entries[] = { { "add-to-address-book", "contact-new", N_("_Add to Address Book..."), NULL, NULL, /* XXX Add a tooltip! */ NULL /* Handled by EMailReader */ }, { "search-folder-recipient", NULL, N_("_To This Address"), NULL, NULL, /* XXX Add a tooltip! */ NULL /* Handled by EMailReader */ }, { "search-folder-sender", NULL, N_("_From This Address"), NULL, NULL, /* XXX Add a tooltip! */ NULL /* Handled by EMailReader */ }, { "send-reply", NULL, N_("Send _Reply To..."), NULL, N_("Send a reply message to this address"), NULL /* Handled by EMailReader */ }, /*** Menus ***/ { "search-folder-menu", "folder-saved-search", N_("Create Search _Folder"), NULL, NULL, NULL } }; static GtkActionEntry image_entries[] = { { "image-save", GTK_STOCK_SAVE, N_("Save _Image..."), NULL, N_("Save the image to a file"), NULL /* Handled by EMailReader */ }, }; static void mail_display_webview_update_actions (EWebView *web_view, gpointer user_data) { const gchar *image_src; gboolean visible; GtkAction *action; g_return_if_fail (web_view != NULL); image_src = e_web_view_get_cursor_image_src (web_view); visible = image_src && g_str_has_prefix (image_src, "cid:"); if (!visible && image_src) { CamelStream *image_stream; image_stream = camel_data_cache_get (emd_global_http_cache, "http", image_src, NULL); visible = image_stream != NULL; if (image_stream) g_object_unref (image_stream); } action = e_web_view_get_action (web_view, "image-save"); if (action) gtk_action_set_visible (action, visible); } static void formatter_image_loading_policy_changed_cb (GObject *object, GParamSpec *pspec, gpointer user_data) { EMailDisplay *display = user_data; e_mail_display_load_images (display); } static void mail_display_update_formatter_colors (EMailDisplay *display) { GtkStyle *style; GtkStateType state; if (!display->priv->formatter) return; style = gtk_widget_get_style (GTK_WIDGET (display)); state = gtk_widget_get_state (GTK_WIDGET (display)); e_mail_formatter_set_style (display->priv->formatter, style, state); } static void mail_display_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { case PROP_PART_LIST: e_mail_display_set_parts_list ( E_MAIL_DISPLAY (object), g_value_get_pointer (value)); return; case PROP_MODE: e_mail_display_set_mode ( E_MAIL_DISPLAY (object), g_value_get_int (value)); return; case PROP_HEADERS_COLLAPSABLE: e_mail_display_set_headers_collapsable ( E_MAIL_DISPLAY (object), g_value_get_boolean (value)); return; case PROP_HEADERS_COLLAPSED: e_mail_display_set_headers_collapsed ( E_MAIL_DISPLAY (object), g_value_get_boolean (value)); return; } G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } static void mail_display_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { case PROP_PART_LIST: g_value_set_pointer ( value, e_mail_display_get_parts_list ( E_MAIL_DISPLAY (object))); return; case PROP_MODE: g_value_set_int ( value, e_mail_display_get_mode ( E_MAIL_DISPLAY (object))); return; case PROP_HEADERS_COLLAPSABLE: g_value_set_boolean ( value, e_mail_display_get_headers_collapsable ( E_MAIL_DISPLAY (object))); return; case PROP_HEADERS_COLLAPSED: g_value_set_boolean ( value, e_mail_display_get_headers_collapsed ( E_MAIL_DISPLAY (object))); return; } G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } static void mail_display_dispose (GObject *object) { EMailDisplayPrivate *priv; priv = E_MAIL_DISPLAY_GET_PRIVATE (object); if (priv->part_list) { g_object_unref (priv->part_list); priv->part_list = NULL; } if (priv->settings) { g_object_unref (priv->settings); priv->settings = NULL; } if (priv->widgets) { g_hash_table_destroy (priv->widgets); priv->widgets = NULL; } /* Chain up to parent's dispose() method. */ G_OBJECT_CLASS (parent_class)->dispose (object); } static void mail_display_realize (GtkWidget *widget) { /* Chain up to parent's realize() method. */ GTK_WIDGET_CLASS (parent_class)->realize (widget); mail_display_update_formatter_colors (E_MAIL_DISPLAY (widget)); } static void mail_display_style_set (GtkWidget *widget, GtkStyle *previous_style) { EMailDisplay *display = E_MAIL_DISPLAY (widget); mail_display_update_formatter_colors (display); /* Chain up to parent's style_set() method. */ GTK_WIDGET_CLASS (parent_class)->style_set (widget, previous_style); } static gboolean mail_display_process_mailto (EWebView *web_view, const gchar *mailto_uri, gpointer user_data) { g_return_val_if_fail (E_IS_WEB_VIEW (web_view), FALSE); g_return_val_if_fail (mailto_uri != NULL, FALSE); if (g_ascii_strncasecmp (mailto_uri, "mailto:", 7) == 0) { EShell *shell; EMailPartList *part_list; part_list = E_MAIL_DISPLAY (web_view)->priv->part_list; shell = e_shell_get_default (); em_utils_compose_new_message_with_mailto ( shell, mailto_uri, part_list->folder); return TRUE; } return FALSE; } static gboolean mail_display_link_clicked (WebKitWebView *web_view, WebKitWebFrame *frame, WebKitNetworkRequest *request, WebKitWebNavigationAction *navigation_action, WebKitWebPolicyDecision *policy_decision, gpointer user_data) { const gchar *uri = webkit_network_request_get_uri (request); if (g_str_has_prefix (uri, "file://")) { gchar *filename; filename = g_filename_from_uri (uri, NULL, NULL); if (g_file_test (filename, G_FILE_TEST_IS_DIR)) { webkit_web_policy_decision_ignore (policy_decision); webkit_network_request_set_uri (request, "about:blank"); g_free (filename); return TRUE; } g_free (filename); } if (mail_display_process_mailto (E_WEB_VIEW (web_view), uri, NULL)) { /* do nothing, function handled the "mailto:" uri already */ webkit_web_policy_decision_ignore (policy_decision); return TRUE; } else if (g_ascii_strncasecmp (uri, "thismessage:", 12) == 0) { /* ignore */ ; webkit_web_policy_decision_ignore (policy_decision); return TRUE; } else if (g_ascii_strncasecmp (uri, "cid:", 4) == 0) { /* ignore */ ; webkit_web_policy_decision_ignore (policy_decision); return TRUE; } /* Let webkit handle it */ return FALSE; } static void webkit_request_load_from_file (WebKitNetworkRequest *request, const gchar *path) { gchar *data = NULL; gsize length = 0; gboolean status; gchar *b64, *new_uri; gchar *ct; status = g_file_get_contents (path, &data, &length, NULL); if (!status) return; b64 = g_base64_encode ((guchar *) data, length); ct = g_content_type_guess (path, NULL, 0, NULL); new_uri = g_strdup_printf ("data:%s;base64,%s", ct, b64); webkit_network_request_set_uri (request, new_uri); g_free (b64); g_free (new_uri); g_free (ct); g_free (data); } static void mail_display_resource_requested (WebKitWebView *web_view, WebKitWebFrame *frame, WebKitWebResource *resource, WebKitNetworkRequest *request, WebKitNetworkResponse *response, gpointer user_data) { EMailDisplay *display = E_MAIL_DISPLAY (web_view); EMailPartList *part_list; const gchar *uri = webkit_network_request_get_uri (request); part_list = display->priv->part_list; if (!part_list) { return; } /* Redirect cid:part_id to mail://mail_id/cid:part_id */ if (g_str_has_prefix (uri, "cid:")) { /* Always write raw content of CID object */ gchar *new_uri = e_mail_part_build_uri ( part_list->folder, part_list->message_uid, "part_id", G_TYPE_STRING, uri, "mode", G_TYPE_INT, E_MAIL_FORMATTER_MODE_RAW, NULL); webkit_network_request_set_uri (request, new_uri); g_free (new_uri); /* WebKit won't allow to load a local file when displaing "remote" mail://, protocol, so we need to handle this manually */ } else if (g_str_has_prefix (uri, "file:")) { gchar *path; path = g_filename_from_uri (uri, NULL, NULL); if (!path) return; webkit_request_load_from_file (request, path); g_free (path); /* Redirect http(s) request to evo-http(s) protocol. See EMailRequest for * further details about this. */ } else if (g_str_has_prefix (uri, "http:") || g_str_has_prefix (uri, "https")) { gchar *new_uri, *mail_uri, *enc; SoupURI *soup_uri; GHashTable *query; gchar *uri_md5; CamelStream *stream; EMailImageLoadingPolicy image_policy; /* Open Evolution's cache */ uri_md5 = g_compute_checksum_for_string (G_CHECKSUM_MD5, uri, -1); stream = camel_data_cache_get ( emd_global_http_cache, "http", uri_md5, NULL); g_free (uri_md5); /* If the URI is not cached and we are not allowed to load it * then redirect to invalid URI, so that webkit would display * a native placeholder for it. */ image_policy = e_mail_formatter_get_image_loading_policy ( display->priv->formatter); if (!stream && !display->priv->force_image_load && (image_policy == E_MAIL_IMAGE_LOADING_POLICY_NEVER)) { webkit_network_request_set_uri (request, "about:blank"); return; } new_uri = g_strconcat ("evo-", uri, NULL); mail_uri = e_mail_part_build_uri (part_list->folder, part_list->message_uid, NULL, NULL); soup_uri = soup_uri_new (new_uri); if (soup_uri->query) { query = soup_form_decode (soup_uri->query); } else { query = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); } enc = soup_uri_encode (mail_uri, NULL); g_hash_table_insert (query, g_strdup ("__evo-mail"), enc); if (display->priv->force_image_load) { g_hash_table_insert (query, g_strdup ("__evo-load-images"), g_strdup ("true")); } g_free (mail_uri); soup_uri_set_query_from_form (soup_uri, query); g_free (new_uri); new_uri = soup_uri_to_string (soup_uri, FALSE); webkit_network_request_set_uri (request, new_uri); g_free (new_uri); soup_uri_free (soup_uri); g_hash_table_unref (query); } } static WebKitDOMElement * find_element_by_id (WebKitDOMDocument *document, const gchar *id) { WebKitDOMNodeList *frames; WebKitDOMElement *element; gulong i, length; if (!WEBKIT_DOM_IS_DOCUMENT (document)) return NULL; /* Try to look up the element in this DOM document */ element = webkit_dom_document_get_element_by_id (document, id); if (element) return element; /* If the element is not here then recursively scan all frames */ frames = webkit_dom_document_get_elements_by_tag_name(document, "iframe"); length = webkit_dom_node_list_get_length (frames); for (i = 0; i < length; i++) { WebKitDOMHTMLIFrameElement *iframe = WEBKIT_DOM_HTML_IFRAME_ELEMENT ( webkit_dom_node_list_item (frames, i)); WebKitDOMDocument *frame_doc = webkit_dom_html_iframe_element_get_content_document (iframe); WebKitDOMElement *el = find_element_by_id (frame_doc, id); if (el) return el; } return NULL; } static void mail_display_plugin_widget_resize (GObject *object, gpointer dummy, EMailDisplay *display) { GtkWidget *widget; WebKitDOMElement *parent_element; gchar *dim; gint height; widget = GTK_WIDGET (object); parent_element = g_object_get_data (object, "parent_element"); if (!parent_element || !WEBKIT_DOM_IS_ELEMENT (parent_element)) { d(printf("%s: %s does not have (valid) parent element!\n", G_STRFUNC, (gchar *) g_object_get_data (object, "uri"))); return; } /* For attachment bar, we need to ask for height it's parent, * GtkBox, because EAttachmentBar itself lies about it's real height. */ if (E_IS_ATTACHMENT_BAR (widget)) { widget = gtk_widget_get_parent (widget); } gtk_widget_get_preferred_height (widget, &height, NULL); /* Int -> Str */ dim = g_strdup_printf ("%d", height); /* Set height of the containment to match height of the * GtkWidget it contains */ webkit_dom_html_object_element_set_height ( WEBKIT_DOM_HTML_OBJECT_ELEMENT (parent_element), dim); g_free (dim); } static void mail_display_plugin_widget_realize_cb (GtkWidget *widget, gpointer user_data) { WebKitDOMHTMLElement *el; if (GTK_IS_BOX (widget)) { GList *children; children = gtk_container_get_children (GTK_CONTAINER (widget)); if (children && children->data && E_IS_ATTACHMENT_BAR (children->data)) { widget = children->data; } g_list_free (children); } /* First check if we are actually supposed to be visible */ el = g_object_get_data (G_OBJECT (widget), "parent_element"); if (!el || !WEBKIT_DOM_IS_HTML_ELEMENT (el)) { g_warning ("UAAAAA"); } else { if (webkit_dom_html_element_get_hidden (el)) { gtk_widget_hide (widget); return; } } /* Initial resize of the element when the widget * is displayed for the first time. */ mail_display_plugin_widget_resize (G_OBJECT (widget), NULL, user_data); } static void plugin_widget_set_parent_element (GtkWidget *widget, EMailDisplay *display) { const gchar *uri; WebKitDOMDocument *document; WebKitDOMElement *element; uri = g_object_get_data (G_OBJECT (widget), "uri"); if (!uri || !*uri) return; document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (display)); element = find_element_by_id (document, uri); if (!element || !WEBKIT_DOM_IS_ELEMENT (element)) { g_warning ("Failed to find parent for '%s' - no ID set?", uri); return; } /* Assign the WebKitDOMElement to "parent_element" data of the GtkWidget * and the GtkWidget to "widget" data of the DOM Element */ g_object_set_data (G_OBJECT (widget), "parent_element", element); g_object_set_data (G_OBJECT (element), "widget", widget); g_object_bind_property ( element, "hidden", widget, "visible", G_BINDING_SYNC_CREATE | G_BINDING_INVERT_BOOLEAN); } static void toggle_widget_visibility (EAttachmentButton *button, EMailDisplay *display, WebKitDOMElement *element) { gchar *id; GtkWidget *widget; id = webkit_dom_html_element_get_id (WEBKIT_DOM_HTML_ELEMENT (element)); if (!id || !*id) { return; } if (!display->priv->widgets) { g_free (id); return; } widget = g_hash_table_lookup (display->priv->widgets, id); g_free (id); if (!widget) { return; } /* If the widget encapsulates EAttachmentBar then check, whether * the attachment bar is not empty. We want to display it only * when there's at least one attachment */ if (GTK_IS_BOX (widget)) { GList *children; children = gtk_container_get_children (GTK_CONTAINER (widget)); if (children && children->data && E_IS_ATTACHMENT_BAR (children->data)) { EAttachmentStore *store; store = e_attachment_bar_get_store ( E_ATTACHMENT_BAR (children->data)); g_list_free (children); /* Don't allow to display such attachment bar, * but always allow to hide it */ if (e_attachment_button_get_expanded (button) && (e_attachment_store_get_num_attachments (store) == 0)) { return; } } } webkit_dom_html_element_set_hidden ( WEBKIT_DOM_HTML_ELEMENT (element), !e_attachment_button_get_expanded (button)); if (e_attachment_button_get_expanded (button)) { gtk_widget_show (widget); } else { gtk_widget_hide (widget); } } /** * @button: An #EAttachmentButton * @iframe: An iframe element containing document with an attachment * represented by the @button */ static void bind_iframe_content_visibility (WebKitDOMElement *iframe, EMailDisplay *display, EAttachmentButton *button) { WebKitDOMDocument *document; WebKitDOMNodeList *nodes; gulong i, length; if (!iframe || !WEBKIT_DOM_IS_HTML_IFRAME_ELEMENT (iframe)) return; document = webkit_dom_html_iframe_element_get_content_document ( WEBKIT_DOM_HTML_IFRAME_ELEMENT (iframe)); if (!WEBKIT_DOM_IS_DOCUMENT (document)) return; nodes = webkit_dom_document_get_elements_by_tag_name (document, "object"); length = webkit_dom_node_list_get_length (nodes); d ({ gchar *name = webkit_dom_html_iframe_element_get_name ( WEBKIT_DOM_HTML_IFRAME_ELEMENT (iframe)); printf("Found %ld objects within iframe %s\n", length, name); g_free (name); }); /* Iterate through all s and bind visibility of their widget * with expanded-state of related attachment button */ for (i = 0; i < length; i++) { WebKitDOMNode *node = webkit_dom_node_list_item (nodes, i); /* Initial sync */ toggle_widget_visibility (button, display, WEBKIT_DOM_ELEMENT (node)); } } static void attachment_button_expanded (GObject *object, GParamSpec *pspec, gpointer user_data) { EAttachmentButton *button = E_ATTACHMENT_BUTTON (object); EMailDisplay *display = user_data; WebKitDOMDocument *document; WebKitDOMElement *element; WebKitDOMCSSStyleDeclaration *css; gboolean expanded; gchar *id; d(printf("Attachment button %s has been %s!\n", (gchar *) g_object_get_data (object, "uri"), (e_attachment_button_get_expanded (button) ? "expanded" : "collapsed"))); expanded = e_attachment_button_get_expanded (button) && gtk_widget_get_visible (GTK_WIDGET (button)); document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (display)); element = find_element_by_id (document, g_object_get_data (object, "attachment_id")); if (!WEBKIT_DOM_IS_ELEMENT (element)) { d(printf("%s: Content
of attachment %s does not exist!!\n", G_STRFUNC, (gchar *) g_object_get_data (object, "uri"))); return; } /* Show or hide the DIV which contains the attachment (iframe, image...) */ css = webkit_dom_element_get_style (element); webkit_dom_css_style_declaration_set_property ( css, "display", expanded ? "block" : "none", "", NULL); id = g_strconcat (g_object_get_data (object, "attachment_id"), ".iframe", NULL); element = find_element_by_id (document, id); g_free (id); if (!WEBKIT_DOM_IS_HTML_IFRAME_ELEMENT (element)) { d(printf("%s: No