diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /toolkit/modules/ResetProfile.jsm | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/modules/ResetProfile.jsm')
-rw-r--r-- | toolkit/modules/ResetProfile.jsm | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/toolkit/modules/ResetProfile.jsm b/toolkit/modules/ResetProfile.jsm new file mode 100644 index 0000000000..98079fc17a --- /dev/null +++ b/toolkit/modules/ResetProfile.jsm @@ -0,0 +1,77 @@ +/* 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/. */ + +"use strict"; + +var EXPORTED_SYMBOLS = ["ResetProfile"]; + +const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm"); +const { AppConstants } = ChromeUtils.import( + "resource://gre/modules/AppConstants.jsm" +); + +const MOZ_APP_NAME = AppConstants.MOZ_APP_NAME; +const MOZ_BUILD_APP = AppConstants.MOZ_BUILD_APP; + +var ResetProfile = { + /** + * Check if reset is supported for the currently running profile. + * + * @return boolean whether reset is supported. + */ + resetSupported() { + if (Services.policies && !Services.policies.isAllowed("profileRefresh")) { + return false; + } + // Reset is only supported if the self-migrator used for reset exists. + let migrator = + "@mozilla.org/profile/migrator;1?app=" + + MOZ_BUILD_APP + + "&type=" + + MOZ_APP_NAME; + if (!(migrator in Cc)) { + return false; + } + // We also need to be using a profile the profile manager knows about. + let profileService = Cc[ + "@mozilla.org/toolkit/profile-service;1" + ].getService(Ci.nsIToolkitProfileService); + let currentProfileDir = Services.dirsvc.get("ProfD", Ci.nsIFile); + for (let profile of profileService.profiles) { + if (profile.rootDir && profile.rootDir.equals(currentProfileDir)) { + return true; + } + } + return false; + }, + + /** + * Ask the user if they wish to restart the application to reset the profile. + */ + openConfirmationDialog(window) { + // Prompt the user to confirm. + let params = { + reset: false, + }; + window.browsingContext.topChromeWindow.openDialog( + "chrome://global/content/resetProfile.xhtml", + null, + "modal,centerscreen,titlebar", + params + ); + if (!params.reset) { + return; + } + + // Set the reset profile environment variable. + let env = Cc["@mozilla.org/process/environment;1"].getService( + Ci.nsIEnvironment + ); + env.set("MOZ_RESET_PROFILE_RESTART", "1"); + + Services.startup.quit( + Ci.nsIAppStartup.eForceQuit | Ci.nsIAppStartup.eRestart + ); + }, +}; |