aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2009-03-06 14:31:35 +0800
committerXan Lopez <xan@src.gnome.org>2009-03-06 14:31:35 +0800
commitc75eef21622050e25bf0e4449b1068e6011b7826 (patch)
tree272b4ebf61c1e703442495644bbf196a99a8d5ad /embed
parentc2bde457bf24816a0b5be5a4ab46f3b999e2345f (diff)
downloadgsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.tar
gsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.tar.gz
gsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.tar.bz2
gsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.tar.lz
gsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.tar.xz
gsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.tar.zst
gsoc2013-epiphany-c75eef21622050e25bf0e4449b1068e6011b7826.zip
webkit-embed.c: set security information.
Patch by Mario Sánchez Prada. Libsoup lacks the needed security API to do this properly, so for now just set SECURITY_HIGH when a site with 'https' protocol reaches load-committed. This at least means we are actually using SSL, otherwise libosup would have failed to load. Bug #551106 svn path=/trunk/; revision=8852
Diffstat (limited to 'embed')
-rw-r--r--embed/webkit/webkit-embed.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/embed/webkit/webkit-embed.c b/embed/webkit/webkit-embed.c
index f112f40ea..66b585c51 100644
--- a/embed/webkit/webkit-embed.c
+++ b/embed/webkit/webkit-embed.c
@@ -3,6 +3,7 @@
/*
* Copyright © 2007 Xan Lopez
* Copyright © 2008 Jan Alonzo
+ * Copyright © 2009 Igalia S.L.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -209,6 +210,7 @@ load_committed_cb (WebKitWebView *web_view,
EphyEmbed *embed)
{
const gchar* uri;
+ EphyEmbedSecurityLevel security_level;
uri = webkit_web_frame_get_uri (web_frame);
ephy_base_embed_location_changed (EPHY_BASE_EMBED (embed),
@@ -219,6 +221,18 @@ load_committed_cb (WebKitWebView *web_view,
uri,
FALSE,
FALSE);
+
+ /*
+ * FIXME: as a temporary workaround while soup lacks the needed
+ * security API, determine security level based on the existence of
+ * a 'https' prefix for the URI
+ */
+ if (uri && g_str_has_prefix (uri, "https"))
+ security_level = EPHY_EMBED_STATE_IS_SECURE_HIGH;
+ else
+ security_level = EPHY_EMBED_STATE_IS_UNKNOWN;
+
+ ephy_base_embed_set_security_level (EPHY_BASE_EMBED (embed), security_level);
}
static void
@@ -591,7 +605,16 @@ impl_get_security_level (EphyEmbed *embed,
EphyEmbedSecurityLevel *level,
char **description)
{
- if (level) *level = EPHY_EMBED_STATE_IS_UNKNOWN;
+ if (level) {
+ const gchar *uri = ephy_embed_get_address (embed);
+
+ /* FIXME: as a temporary workaround, determine security level
+ based on the existence of a 'https' prefix for the URI */
+ if (uri && g_str_has_prefix(uri, "https"))
+ *level = EPHY_EMBED_STATE_IS_SECURE_HIGH;
+ else
+ *level = EPHY_EMBED_STATE_IS_UNKNOWN;
+ }
}
static void