mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
638c878b13
--HG-- extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
95 lines
3.5 KiB
JavaScript
95 lines
3.5 KiB
JavaScript
/* -*- Mode: js; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* vim: sw=2 ts=2 sts=2 et */
|
|
/* 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";
|
|
|
|
/*
|
|
* Migrates from a Firefox profile in a lossy manner in order to clean up a
|
|
* user's profile. Data is only migrated where the benefits outweigh the
|
|
* potential problems caused by importing undesired/invalid configurations
|
|
* from the source profile.
|
|
*/
|
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Components.utils.import("resource:///modules/MigrationUtils.jsm");
|
|
XPCOMUtils.defineLazyModuleGetter(this, "PlacesUtils",
|
|
"resource://gre/modules/PlacesUtils.jsm");
|
|
|
|
function FirefoxProfileMigrator() { }
|
|
|
|
FirefoxProfileMigrator.prototype = Object.create(MigratorPrototype);
|
|
|
|
FirefoxProfileMigrator.prototype.getResources = function() {
|
|
// Only allow migrating from the default (selected) profile since this will
|
|
// be the only one returned by the toolkit profile service after bug 214675.
|
|
let sourceProfile =
|
|
Components.classes["@mozilla.org/toolkit/profile-service;1"]
|
|
.getService(Components.interfaces.nsIToolkitProfileService)
|
|
.selectedProfile;
|
|
if (!sourceProfile)
|
|
return null;
|
|
|
|
let sourceProfileDir = sourceProfile.rootDir;
|
|
if (!sourceProfileDir || !sourceProfileDir.exists() ||
|
|
!sourceProfileDir.isReadable())
|
|
return null;
|
|
|
|
// Being a startup-only migrator, we can rely on
|
|
// MigrationUtils.profileStartup being set.
|
|
let currentProfileDir = MigrationUtils.profileStartup.directory;
|
|
|
|
// Surely data cannot be imported from the current profile.
|
|
if (sourceProfileDir.equals(currentProfileDir))
|
|
return null;
|
|
|
|
let getFileResource = function(aMigrationType, aFileNames) {
|
|
let files = [];
|
|
for (let fileName of aFileNames) {
|
|
let file = sourceProfileDir.clone();
|
|
file.append(fileName);
|
|
|
|
// File resources are monolithic. We don't make partial copies since
|
|
// they are not expected to work alone.
|
|
if (!file.exists())
|
|
return null;
|
|
|
|
files.push(file);
|
|
}
|
|
return {
|
|
type: aMigrationType,
|
|
migrate: function(aCallback) {
|
|
for (let file of files) {
|
|
file.copyTo(currentProfileDir, "");
|
|
}
|
|
aCallback(true);
|
|
}
|
|
};
|
|
};
|
|
|
|
let types = MigrationUtils.resourceTypes;
|
|
let places = getFileResource(types.HISTORY, ["places.sqlite"]);
|
|
let cookies = getFileResource(types.COOKIES, ["cookies.sqlite"]);
|
|
let passwords = getFileResource(types.PASSWORDS,
|
|
["signons.sqlite", "key3.db"]);
|
|
let formData = getFileResource(types.FORMDATA, ["formhistory.sqlite"]);
|
|
let bookmarksBackups = getFileResource(types.OTHERDATA,
|
|
[PlacesUtils.backups.profileRelativeFolderPath]);
|
|
|
|
return [r for each (r in [places, cookies, passwords, formData,
|
|
bookmarksBackups]) if (r)];
|
|
}
|
|
|
|
Object.defineProperty(FirefoxProfileMigrator.prototype, "startupOnlyMigrator", {
|
|
get: function() true
|
|
});
|
|
|
|
|
|
FirefoxProfileMigrator.prototype.classDescription = "Firefox Profile Migrator";
|
|
FirefoxProfileMigrator.prototype.contractID = "@mozilla.org/profile/migrator;1?app=browser&type=firefox";
|
|
FirefoxProfileMigrator.prototype.classID = Components.ID("{91185366-ba97-4438-acba-48deaca63386}");
|
|
|
|
const NSGetFactory = XPCOMUtils.generateNSGetFactory([FirefoxProfileMigrator]);
|