/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ const Ci = Components.interfaces; const Cu = Components.utils; const Cc = Components.classes; Cu.import("resource://gre/modules/XPCOMUtils.jsm"); Cu.import("resource://gre/modules/Services.jsm"); // ----------------------------------------------------------------------- // NSS Dialog Service // ----------------------------------------------------------------------- function dump(a) { Components.classes["@mozilla.org/consoleservice;1"].getService(Ci.nsIConsoleService).logStringMessage(a); } function NSSDialogs() { } NSSDialogs.prototype = { classID: Components.ID("{cbc08081-49b6-4561-9c18-a7707a50bda1}"), QueryInterface: XPCOMUtils.generateQI([Ci.nsICertificateDialogs]), getString: function(aName) { if (!this.bundle) { this.bundle = Services.strings.createBundle("chrome://browser/locale/pippki.properties"); } return this.bundle.GetStringFromName(aName); }, showPrompt: function(aTitle, aText, aButtons, aInputs) { let msg = { type: "Prompt:Show", title: aTitle, text: aText, buttons: aButtons, inputs: aInputs }; let data = Cc["@mozilla.org/android/bridge;1"].getService(Ci.nsIAndroidBridge).handleGeckoMessage(JSON.stringify(msg)); return JSON.parse(data); }, confirmDownloadCACert: function(aCtx, aCert, aTrust) { while (true) { let response = this.showPrompt(this.getString("downloadCert.title"), this.getString("downloadCert.message1"), [ this.getString("nssdialogs.ok.label"), this.getString("downloadCert.viewCert.label"), this.getString("nssdialogs.cancel.label") ], [ { type: "checkbox", id: "trustSSL", label: this.getString("downloadCert.trustSSL"), checked: false }, { type: "checkbox", id: "trustEmail", label: this.getString("downloadCert.trustEmail"), checked: false }, { type: "checkbox", id: "trustSign", label: this.getString("downloadCert.trustObjSign"), checked: false } ]); if (response.button == 1) { // they hit the "view cert" button, so show the cert and try again this.viewCert(aCtx, aCert); continue; } else if (response.button != 0) { return false; } aTrust.value = Ci.nsIX509CertDB.UNTRUSTED; if (response.trustSSL == "true") aTrust.value |= Ci.nsIX509CertDB.TRUSTED_SSL; if (response.trustEmail == "true") aTrust.value |= Ci.nsIX509CertDB.TRUSTED_EMAIL; if (response.trustSign == "true") aTrust.value |= Ci.nsIX509CertDB.TRUSTED_OBJSIGN; return true; } }, notifyCACertExists: function(aCtx) { this.showPrompt(this.getString("caCertExists.title"), this.getString("caCertExists.message"), [], []); }, setPKCS12FilePassword: function(aCtx, aPassword) { // this dialog is never shown in Fennec; in Desktop it is shown while backing up a personal // certificate to a file via Preferences->Advanced->Encryption->View Certificates->Your Certificates throw "Unimplemented"; }, getPKCS12FilePassword: function(aCtx, aPassword) { // this dialog is never shown in Fennec; in Desktop it is shown while backing up a personal // certificate to a file via Preferences->Advanced->Encryption->View Certificates->Your Certificates throw "Unimplemented"; }, certInfoSection: function(aHeading, aDataPairs, aTrailingNewline = true) { var str = "" + this.getString(aHeading) + "
"; for (var i = 0; i < aDataPairs.length; i += 2) { str += this.getString(aDataPairs[i]) + ": " + aDataPairs[i+1] + "
"; } return str + (aTrailingNewline ? "
" : ""); }, viewCert: function(aCtx, aCert) { this.showPrompt(this.getString("certmgr.title"), "", [ this.getString("nssdialogs.ok.label") ], [ { type: "label", label: this.certInfoSection("certmgr.subjectinfo.label", ["certmgr.certdetail.cn", aCert.commonName, "certmgr.certdetail.o", aCert.organization, "certmgr.certdetail.ou", aCert.organizationalUnit, "certmgr.certdetail.serialnumber", aCert.serialNumber]) + this.certInfoSection("certmgr.issuerinfo.label", ["certmgr.certdetail.cn", aCert.issuerCommonName, "certmgr.certdetail.o", aCert.issuerOrganization, "certmgr.certdetail.ou", aCert.issuerOrganizationUnit]) + this.certInfoSection("certmgr.validity.label", ["certmgr.issued", aCert.validity.notBeforeLocalDay, "certmgr.expires", aCert.validity.notAfterLocalDay]) + this.certInfoSection("certmgr.fingerprints.label", ["certmgr.certdetail.sha1fingerprint", aCert.sha1Fingerprint, "certmgr.certdetail.md5fingerprint", aCert.md5Fingerprint], false) } ]); }, crlImportStatusDialog: function(aCtx, aCrl) { // this dialog is never shown in Fennec; in Desktop it is shown after importing a CRL // via Preferences->Advanced->Encryption->Revocation Lists->Import. throw "Unimplemented"; } }; this.NSGetFactory = XPCOMUtils.generateNSGetFactory([NSSDialogs]);