mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
168 lines
4.9 KiB
C++
168 lines
4.9 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2010-2011 nowrep
|
|
*
|
|
* 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 "mainapplication.h"
|
|
#include "bookmarksmodel.h"
|
|
#include "webview.h"
|
|
|
|
// SQLite DB -> table bookmarks + folders
|
|
// Unique in bookmarks table is id
|
|
// However from bookmark icon, it is not possible to add more than one bookmark
|
|
// Only from Ctrl+D dialog it is possible
|
|
|
|
BookmarksModel::BookmarksModel()
|
|
{
|
|
loadSettings();
|
|
}
|
|
|
|
void BookmarksModel::loadSettings()
|
|
{
|
|
QSettings settings(mApp->getActiveProfil()+"settings.ini", QSettings::IniFormat);
|
|
settings.beginGroup("Web-Browser-Settings");
|
|
m_showMostVisited = settings.value("showMostVisited",true).toBool();
|
|
settings.endGroup();
|
|
}
|
|
|
|
void BookmarksModel::setShowingMostVisited(bool state)
|
|
{
|
|
QSettings settings(mApp->getActiveProfil()+"settings.ini", QSettings::IniFormat);
|
|
settings.beginGroup("Web-Browser-Settings");
|
|
settings.setValue("showMostVisited",state);
|
|
settings.endGroup();
|
|
m_showMostVisited = state;
|
|
}
|
|
|
|
bool BookmarksModel::isBookmarked(QUrl url)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("SELECT count(id) FROM bookmarks WHERE url=?");
|
|
query.bindValue(0, url.toString());
|
|
query.exec();
|
|
query.next();
|
|
return query.value(0).toInt()>0;
|
|
}
|
|
|
|
// Bookmark search priority:
|
|
// Bookmarks in menu > bookmarks in toolbar -> user folders and unsorted
|
|
int BookmarksModel::bookmarkId(QUrl url)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("SELECT id FROM bookmarks WHERE url=? AND folder='bookmarksMenu' ");
|
|
query.bindValue(0, url.toString());
|
|
query.exec();
|
|
if (query.next())
|
|
return query.value(0).toInt();
|
|
|
|
query.prepare("SELECT id FROM bookmarks WHERE url=? AND folder='bookmarksToolbar' ");
|
|
query.bindValue(0, url.toString());
|
|
query.exec();
|
|
if (query.next())
|
|
return query.value(0).toInt();
|
|
|
|
query.prepare("SELECT id FROM bookmarks WHERE url=? ");
|
|
query.bindValue(0, url.toString());
|
|
query.exec();
|
|
if (query.next())
|
|
return query.value(0).toInt();
|
|
|
|
return -1;
|
|
}
|
|
|
|
int BookmarksModel::bookmarkId(QUrl url, QString title, QString folder)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("SELECT id FROM bookmarks WHERE url=? AND title=? AND folder=? ");
|
|
query.bindValue(0, url.toString());
|
|
query.bindValue(1, title);
|
|
query.bindValue(2, folder);
|
|
query.exec();
|
|
if (query.next())
|
|
return query.value(0).toInt();
|
|
return -1;
|
|
}
|
|
|
|
QStringList BookmarksModel::getBookmark(int id)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("SELECT url, title, folder FROM bookmarks WHERE id=?");
|
|
query.bindValue(0, id);
|
|
query.exec();
|
|
if (!query.next())
|
|
return QStringList();
|
|
QStringList list;
|
|
list.append(query.value(0).toString());
|
|
list.append(query.value(1).toString());
|
|
list.append(query.value(2).toString());
|
|
return list;
|
|
}
|
|
|
|
bool BookmarksModel::saveBookmark(QUrl url, QString title, QString folder)
|
|
{
|
|
if (url.isEmpty() || title.isEmpty() || folder.isEmpty())
|
|
return false;
|
|
|
|
QSqlQuery query;
|
|
query.prepare("INSERT INTO bookmarks (url, title, folder) VALUES (?,?,?)");
|
|
query.bindValue(0, url.toString());
|
|
query.bindValue(1, title);
|
|
query.bindValue(2, folder);
|
|
return query.exec();
|
|
}
|
|
|
|
bool BookmarksModel::saveBookmark(WebView* view, QString folder)
|
|
{
|
|
return saveBookmark(view->url(), view->title(), folder);
|
|
}
|
|
|
|
bool BookmarksModel::removeBookmark(int id)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("DELETE FROM bookmarks WHERE id = ?");
|
|
query.bindValue(0, id);
|
|
return query.exec();
|
|
}
|
|
|
|
bool BookmarksModel::removeBookmark(QUrl url)
|
|
{
|
|
return removeBookmark(bookmarkId(url));
|
|
}
|
|
|
|
bool BookmarksModel::removeBookmark(WebView* view)
|
|
{
|
|
return removeBookmark(bookmarkId(view->url()));
|
|
}
|
|
|
|
bool BookmarksModel::editBookmark(int id, QString title, QString folder)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("UPDATE bookmarks SET title=?, folder=? WHERE id=?");
|
|
query.bindValue(0, title);
|
|
query.bindValue(1, folder);
|
|
query.bindValue(2, id);
|
|
return query.exec();
|
|
}
|
|
|
|
bool BookmarksModel::editBookmark(int id, QUrl url, QString title)
|
|
{
|
|
QSqlQuery query;
|
|
query.prepare("UPDATE bookmarks SET title=?, url=? WHERE id=?");
|
|
query.bindValue(0, title);
|
|
query.bindValue(1, url.toString());
|
|
query.bindValue(2, id);
|
|
return query.exec();
|
|
}
|