// -*- indent-tabs-mode: nil; js-indent-level: 4 -*- /* 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/. */ let Cc = Components.classes; let Ci = Components.interfaces; let Cu = Components.utils; Cu.import("resource://gre/modules/Services.jsm"); Cu.import("resource://gre/modules/XPCOMUtils.jsm"); Cu.import("resource://gre/modules/LoadContextInfo.jsm"); Cu.import("resource://gre/modules/FormHistory.jsm"); Cu.import("resource://gre/modules/Messaging.jsm"); function dump(a) { Services.console.logStringMessage(a); } this.EXPORTED_SYMBOLS = ["Sanitizer"]; let downloads = { dlmgr: Cc["@mozilla.org/download-manager;1"].getService(Ci.nsIDownloadManager), iterate: function (aCallback) { let dlmgr = downloads.dlmgr; let dbConn = dlmgr.DBConnection; let stmt = dbConn.createStatement("SELECT id FROM moz_downloads WHERE " + "state = ? OR state = ? OR state = ? OR state = ? OR state = ? OR state = ?"); stmt.bindByIndex(0, Ci.nsIDownloadManager.DOWNLOAD_FINISHED); stmt.bindByIndex(1, Ci.nsIDownloadManager.DOWNLOAD_FAILED); stmt.bindByIndex(2, Ci.nsIDownloadManager.DOWNLOAD_CANCELED); stmt.bindByIndex(3, Ci.nsIDownloadManager.DOWNLOAD_BLOCKED_PARENTAL); stmt.bindByIndex(4, Ci.nsIDownloadManager.DOWNLOAD_BLOCKED_POLICY); stmt.bindByIndex(5, Ci.nsIDownloadManager.DOWNLOAD_DIRTY); while (stmt.executeStep()) { aCallback(dlmgr.getDownload(stmt.row.id)); } stmt.finalize(); }, get canClear() { return this.dlmgr.canCleanUp; } }; function Sanitizer() {} Sanitizer.prototype = { clearItem: function (aItemName) { let item = this.items[aItemName]; let canClear = item.canClear; if (typeof canClear == "function") { canClear(function clearCallback(aCanClear) { if (aCanClear) item.clear(); }); } else if (canClear) { item.clear(); } }, items: { cache: { clear: function () { return new Promise(function(resolve, reject) { var cache = Cc["@mozilla.org/netwerk/cache-storage-service;1"].getService(Ci.nsICacheStorageService); try { cache.clear(); } catch(er) {} let imageCache = Cc["@mozilla.org/image/tools;1"].getService(Ci.imgITools) .getImgCacheForDocument(null); try { imageCache.clearCache(false); // true=chrome, false=content } catch(er) {} resolve(); }); }, get canClear() { return true; } }, cookies: { clear: function () { return new Promise(function(resolve, reject) { Services.cookies.removeAll(); resolve(); }); }, get canClear() { return true; } }, siteSettings: { clear: function () { return new Promise(function(resolve, reject) { // Clear site-specific permissions like "Allow this site to open popups" Services.perms.removeAll(); // Clear site-specific settings like page-zoom level Cc["@mozilla.org/content-pref/service;1"] .getService(Ci.nsIContentPrefService2) .removeAllDomains(null); // Clear "Never remember passwords for this site", which is not handled by // the permission manager var hosts = Services.logins.getAllDisabledHosts({}) for (var host of hosts) { Services.logins.setLoginSavingEnabled(host, true); } // Clear site security settings var sss = Cc["@mozilla.org/ssservice;1"] .getService(Ci.nsISiteSecurityService); sss.clearAll(); resolve(); }); }, get canClear() { return true; } }, offlineApps: { clear: function () { return new Promise(function(resolve, reject) { var cacheService = Cc["@mozilla.org/netwerk/cache-storage-service;1"].getService(Ci.nsICacheStorageService); var appCacheStorage = cacheService.appCacheStorage(LoadContextInfo.default, null); try { appCacheStorage.asyncEvictStorage(null); } catch(er) {} resolve(); }); }, get canClear() { return true; } }, history: { clear: function () { return Messaging.sendRequestForResult({ type: "Sanitize:ClearHistory" }) .catch(e => Cu.reportError("Java-side history clearing failed: " + e)) .then(function() { try { Services.obs.notifyObservers(null, "browser:purge-session-history", ""); } catch (e) { } try { var predictor = Cc["@mozilla.org/network/predictor;1"].getService(Ci.nsINetworkPredictor); predictor.reset(); } catch (e) { } }); }, get canClear() { // bug 347231: Always allow clearing history due to dependencies on // the browser:purge-session-history notification. (like error console) return true; } }, formdata: { clear: function () { return new Promise(function(resolve, reject) { FormHistory.update({ op: "remove" }); resolve(); }); }, canClear: function (aCallback) { let count = 0; let countDone = { handleResult: function(aResult) { count = aResult; }, handleError: function(aError) { Cu.reportError(aError); }, handleCompletion: function(aReason) { aCallback(aReason == 0 && count > 0); } }; FormHistory.count({}, countDone); } }, downloadFiles: { clear: function () { return new Promise(function(resolve, reject) { downloads.iterate(function (dl) { // Delete the downloaded files themselves let f = dl.targetFile; if (f.exists()) { f.remove(false); } // Also delete downloads from history dl.remove(); }); resolve(); }); }, get canClear() { return downloads.canClear; } }, passwords: { clear: function () { return new Promise(function(resolve, reject) { Services.logins.removeAllLogins(); resolve(); }); }, get canClear() { let count = Services.logins.countLogins("", "", ""); // count all logins return (count > 0); } }, sessions: { clear: function () { return new Promise(function(resolve, reject) { // clear all auth tokens var sdr = Cc["@mozilla.org/security/sdr;1"].getService(Ci.nsISecretDecoderRing); sdr.logoutAndTeardown(); // clear FTP and plain HTTP auth sessions Services.obs.notifyObservers(null, "net:clear-active-logins", null); resolve(); }); }, get canClear() { return true; } } } }; this.Sanitizer = new Sanitizer();