1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/bookmarks/bookmarksimport/chromeimporter.cpp

128 lines
4.0 KiB
C++
Raw Normal View History

/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#include "chromeimporter.h"
#include "bookmarkitem.h"
#include "json.h"
#include <QDir>
#include <QFileDialog>
#include <QVariantList>
ChromeImporter::ChromeImporter(QObject* parent)
: BookmarksImporter(parent)
{
}
QString ChromeImporter::description() const
{
return BookmarksImporter::tr("Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. "
"This file is usually located in");
}
QString ChromeImporter::standardPath() const
{
#ifdef Q_OS_WIN
return QString("%APPDATA%/Chrome/");
#else
return QDir::homePath() + QLatin1String("/.config/chrome/");
#endif
}
QString ChromeImporter::getPath(QWidget* parent)
{
m_path = QFileDialog::getOpenFileName(parent, BookmarksImporter::tr("Choose file..."), standardPath(), "Bookmarks (Bookmarks)");
return m_path;
}
bool ChromeImporter::prepareImport()
{
m_file.setFileName(m_path);
if (!m_file.open(QFile::ReadOnly)) {
setError(BookmarksImporter::tr("Unable to open file."));
return false;
}
return true;
}
BookmarkItem* ChromeImporter::importBookmarks()
{
QString bookmarks = QString::fromUtf8(m_file.readAll());
m_file.close();
Json json;
const QVariant res = json.parse(bookmarks);
if (!json.ok() || res.type() != QVariant::Map) {
setError(BookmarksImporter::tr("Cannot parse JSON file!"));
return 0;
}
QVariantMap rootMap = res.toMap().value("roots").toMap();
BookmarkItem* root = new BookmarkItem(BookmarkItem::Folder);
root->setTitle("Chrome Import");
BookmarkItem* toolbar = new BookmarkItem(BookmarkItem::Folder, root);
toolbar->setTitle(rootMap.value("bookmark_bar").toMap().value("name").toString());
readBookmarks(rootMap.value("bookmark_bar").toMap().value("children").toList(), toolbar);
BookmarkItem* other = new BookmarkItem(BookmarkItem::Folder, root);
other->setTitle(rootMap.value("other").toMap().value("name").toString());
readBookmarks(rootMap.value("other").toMap().value("children").toList(), other);
BookmarkItem* synced = new BookmarkItem(BookmarkItem::Folder, root);
synced->setTitle(rootMap.value("synced").toMap().value("name").toString());
readBookmarks(rootMap.value("synced").toMap().value("synced").toList(), other);
return root;
}
void ChromeImporter::readBookmarks(const QVariantList &list, BookmarkItem* parent)
{
Q_ASSERT(parent);
foreach (const QVariant &entry, list) {
const QVariantMap map = entry.toMap();
const QString typeString = map.value("type").toString();
BookmarkItem::Type type;
if (typeString == QLatin1String("url")) {
type = BookmarkItem::Url;
}
else if (typeString == QLatin1String("folder")) {
type = BookmarkItem::Folder;
}
else {
continue;
}
BookmarkItem* item = new BookmarkItem(type, parent);
item->setTitle(map.value("name").toString());
if (item->isUrl()) {
item->setUrl(QUrl::fromEncoded(map.value("url").toByteArray()));
}
if (map.contains("children")) {
readBookmarks(map.value("children").toList(), item);
}
}
}