1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
#define CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <string_view>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/scoped_temp_dir.h"
#include "base/gtest_prod_util.h"
#include "build/build_config.h"
#include "chrome/utility/importer/importer.h"
#include "components/favicon_base/favicon_usage_data.h"
#include "components/user_data_importer/common/imported_bookmark_entry.h"
class GURL;
namespace sql {
class Database;
}
// Importer for Mozilla Firefox.
// Firefox stores its persistent information in a system called places.
// http://wiki.mozilla.org/Places
class FirefoxImporter : public Importer {
public:
FirefoxImporter();
FirefoxImporter(const FirefoxImporter&) = delete;
FirefoxImporter& operator=(const FirefoxImporter&) = delete;
// Importer:
void StartImport(const user_data_importer::SourceProfile& source_profile,
uint16_t items,
ImporterBridge* bridge) override;
private:
// Location of favicons in Firefox profile. It may vary depending on Firefox
// version.
enum class FaviconsLocation {
// Favicons are stored in places.sqlite database (older Firefox versions).
kPlacesDatabase,
// Favicons are stored in favicons.sqlite (Firefox 55 and newer).
kFaviconsDatabase,
};
using FaviconMap = std::map<int64_t, std::set<GURL>>;
~FirefoxImporter() override;
FRIEND_TEST_ALL_PREFIXES(FirefoxImporterTest, ImportBookmarksV25);
void ImportBookmarks();
#if !BUILDFLAG(IS_MAC)
void ImportPasswords();
#endif
void ImportHistory();
// Import the user's home page, unless it is set to default home page as
// defined in browserconfig.properties.
void ImportHomepage();
void ImportAutofillFormData();
// The struct stores the information about a bookmark item.
struct BookmarkItem;
using BookmarkList = std::vector<std::unique_ptr<BookmarkItem>>;
// Gets the specific ID of bookmark node with given GUID from |db|.
// Returns -1 if not found.
int LoadNodeIDByGUID(sql::Database* db, const std::string& GUID);
// Loads all livemark IDs from database |db|.
void LoadLivemarkIDs(sql::Database* db, std::set<int>* livemark);
// Gets the bookmark folder with given ID, and adds the entry in |list|
// if successful.
void GetTopBookmarkFolder(sql::Database* db,
int folder_id,
BookmarkList* list);
// Loads all children of the given folder, and appends them to the |list|.
void GetWholeBookmarkFolder(sql::Database* db,
BookmarkList* list,
size_t position,
FaviconsLocation favicons_location,
bool* empty_folder);
// Loads the favicons given in the map from places.sqlite database, loads the
// data, and converts it into FaviconUsageData structures.
// This function supports older Firefox profiles (up to version 54).
void LoadFavicons(sql::Database* db,
const FaviconMap& favicon_map,
favicon_base::FaviconUsageDataList* favicons);
// Loads the favicons for |bookmarks| from favicons.sqlite database, loads the
// data, and converts it into FaviconUsageData structures.
// This function supports newer Firefox profiles (Firefox 55 and later).
void LoadFavicons(
const std::vector<user_data_importer::ImportedBookmarkEntry>& bookmarks,
favicon_base::FaviconUsageDataList* favicons);
// Copies |source_path_|/|base_file_name| to a temporary directory and returns
// the copy's path. Using the copy is safer, ensures we don't modify Firefox's
// profile. |base_file_name| must be ASCII. Returns empty path on I/O failure.
base::FilePath GetCopiedSourcePath(std::string_view base_file_name);
base::FilePath source_path_;
base::FilePath app_path_;
base::ScopedTempDir source_path_copy_;
#if BUILDFLAG(IS_POSIX)
// Stored because we can only access it from the UI thread.
std::string locale_;
#endif
};
#endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
|