aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--embed/ephy-embed.c13
-rw-r--r--embed/ephy-embed.h3
-rw-r--r--embed/mozilla/EphyBrowser.cpp36
-rw-r--r--embed/mozilla/EphyBrowser.h1
-rw-r--r--embed/mozilla/mozilla-embed.cpp9
6 files changed, 72 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index aa8a93e1a..e41e69f2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2004-11-16 Christian Persch <chpe@cvs.gnome.org>
+ * embed/ephy-embed.c: (ephy_embed_show_page_certificate):
+ * embed/ephy-embed.h:
+ * embed/mozilla/EphyBrowser.cpp:
+ * embed/mozilla/EphyBrowser.h:
+ * embed/mozilla/mozilla-embed.cpp:
+
+ Add a way to show the cert info dialogue for the page's certificate.
+
+2004-11-16 Christian Persch <chpe@cvs.gnome.org>
+
* embed/mozilla/mozilla-notifiers.cpp:
No need to include nsEmbedString.h.
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index 472d6f718..a8476cd5c 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -667,6 +667,19 @@ ephy_embed_get_security_level (EphyEmbed *embed,
EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
iface->get_security_level (embed, level, description);
}
+/**
+ * ephy_embed_show_page_certificate:
+ * @embed: an #EphyEmbed
+ *
+ * Shows a dialogue displaying the certificate of the currently loaded page
+ * of @embed, if it was loaded over a secure connection; else does nothing.
+ **/
+void
+ephy_embed_show_page_certificate (EphyEmbed *embed)
+{
+ EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
+ iface->show_page_certificate (embed);
+}
/**
* ephy_embed_find_set_properties:
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h
index daa9cba0e..c3d5a1a88 100644
--- a/embed/ephy-embed.h
+++ b/embed/ephy-embed.h
@@ -165,6 +165,7 @@ struct _EphyEmbedIface
void (* get_security_level) (EphyEmbed *embed,
EmbedSecurityLevel *level,
char **description);
+ void (* show_page_certificate) (EphyEmbed *embed);
void (* set_zoom) (EphyEmbed *embed,
float zoom);
float (* get_zoom) (EphyEmbed *embed);
@@ -243,6 +244,8 @@ void ephy_embed_get_security_level (EphyEmbed *embed,
EmbedSecurityLevel *level,
char **description);
+void ephy_embed_show_page_certificate (EphyEmbed *embed);
+
/* Zoom */
void ephy_embed_set_zoom (EphyEmbed *embed,
float zoom);
diff --git a/embed/mozilla/EphyBrowser.cpp b/embed/mozilla/EphyBrowser.cpp
index 316034c2d..de5def194 100644
--- a/embed/mozilla/EphyBrowser.cpp
+++ b/embed/mozilla/EphyBrowser.cpp
@@ -63,6 +63,8 @@
#include "nsIDOMNode.h"
#include "nsIDOMElement.h"
#include "nsIDOMWindow2.h"
+#include "nsIDOMDocumentView.h"
+#include "nsIDOMAbstractView.h"
#define MOZILLA_STRICT_API
#include "nsEmbedString.h"
#undef MOZILLA_STRICT_API
@@ -70,6 +72,7 @@
#include "nsIChannel.h"
#include "nsIScriptSecurityManager.h"
#include "nsIServiceManager.h"
+#include "nsIInterfaceRequestor.h"
#ifdef ALLOW_PRIVATE_API
/* not frozen yet */
@@ -80,6 +83,11 @@
#ifdef HAVE_MOZILLA_PSM
/* not sure about this one: */
#include <nsITransportSecurityInfo.h>
+/* these are in pipnss/, are they really private? */
+#include <nsISSLStatus.h>
+#include <nsISSLStatusProvider.h>
+#include <nsIX509Cert.h>
+#include <nsICertificateDialogs.h>
#endif
#endif
@@ -1081,3 +1089,31 @@ EphyBrowser::GetSecurityDescription (nsACString &aDescription)
return NS_ERROR_NOT_IMPLEMENTED;
#endif
}
+
+nsresult
+EphyBrowser::ShowCertificate ()
+{
+#ifdef HAVE_MOZILLA_PSM
+ if (!mSecurityInfo) return NS_ERROR_FAILURE;
+
+ nsCOMPtr<nsISSLStatusProvider> statusProvider (do_QueryInterface (mSecurityInfo));
+ NS_ENSURE_TRUE (statusProvider, NS_ERROR_FAILURE);
+
+ nsCOMPtr<nsISSLStatus> SSLStatus;
+ statusProvider->GetSSLStatus (getter_AddRefs (SSLStatus));
+ NS_ENSURE_TRUE (SSLStatus, NS_ERROR_FAILURE);
+
+ nsCOMPtr<nsIX509Cert> serverCert;
+ SSLStatus->GetServerCert (getter_AddRefs (serverCert));
+ NS_ENSURE_TRUE (serverCert, NS_ERROR_FAILURE);
+
+ nsCOMPtr<nsICertificateDialogs> certDialogs (do_GetService (NS_CERTIFICATEDIALOGS_CONTRACTID));
+ NS_ENSURE_TRUE (certDialogs, NS_ERROR_FAILURE);
+
+ nsCOMPtr<nsIInterfaceRequestor> requestor(do_QueryInterface (mDOMWindow));
+
+ return certDialogs->ViewCert (requestor, serverCert);
+#else
+ return NS_OK;
+#endif
+}
diff --git a/embed/mozilla/EphyBrowser.h b/embed/mozilla/EphyBrowser.h
index e2892797f..76a5b6bfd 100644
--- a/embed/mozilla/EphyBrowser.h
+++ b/embed/mozilla/EphyBrowser.h
@@ -136,6 +136,7 @@ public:
nsresult SetSecurityInfo (nsIRequest *aRequest);
nsresult GetSecurityDescription (nsACString &aDescription);
+ nsresult ShowCertificate ();
nsCOMPtr<nsIWebBrowser> mWebBrowser;
diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp
index c00fc26ab..dcd07d816 100644
--- a/embed/mozilla/mozilla-embed.cpp
+++ b/embed/mozilla/mozilla-embed.cpp
@@ -653,6 +653,14 @@ impl_get_security_level (EphyEmbed *embed,
}
static void
+impl_show_page_certificate (EphyEmbed *embed)
+{
+ MozillaEmbedPrivate *mpriv = MOZILLA_EMBED (embed)->priv;
+
+ mpriv->browser->ShowCertificate ();
+}
+
+static void
impl_print (EphyEmbed *embed)
{
MozillaEmbedPrivate *mpriv = MOZILLA_EMBED(embed)->priv;
@@ -1143,6 +1151,7 @@ ephy_embed_iface_init (EphyEmbedIface *iface)
iface->shistory_get_pos = impl_shistory_get_pos;
iface->shistory_go_nth = impl_shistory_go_nth;
iface->get_security_level = impl_get_security_level;
+ iface->show_page_certificate = impl_show_page_certificate;
iface->find_next = impl_find_next;
iface->activate = impl_activate;
iface->find_set_properties = impl_find_set_properties;