2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* 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/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "bookmarksmodel.h"
|
2011-04-15 20:45:22 +02:00
|
|
|
#include "mainapplication.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
#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
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
BookmarksModel::BookmarksModel(QObject *parent)
|
|
|
|
: QObject(parent)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
loadSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksModel::loadSettings()
|
|
|
|
{
|
2011-03-04 13:59:07 +01:00
|
|
|
QSettings settings(mApp->getActiveProfil()+"settings.ini", QSettings::IniFormat);
|
2011-03-02 16:57:41 +01:00
|
|
|
settings.beginGroup("Web-Browser-Settings");
|
|
|
|
m_showMostVisited = settings.value("showMostVisited",true).toBool();
|
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksModel::setShowingMostVisited(bool state)
|
|
|
|
{
|
2011-03-04 13:59:07 +01:00
|
|
|
QSettings settings(mApp->getActiveProfil()+"settings.ini", QSettings::IniFormat);
|
2011-03-02 16:57:41 +01:00
|
|
|
settings.beginGroup("Web-Browser-Settings");
|
|
|
|
settings.setValue("showMostVisited",state);
|
|
|
|
settings.endGroup();
|
|
|
|
m_showMostVisited = state;
|
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool BookmarksModel::isBookmarked(const QUrl &url)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
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
|
2011-04-15 20:45:22 +02:00
|
|
|
int BookmarksModel::bookmarkId(const QUrl &url)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
int BookmarksModel::bookmarkId(const QUrl &url, const QString &title, const QString &folder)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
BookmarksModel::Bookmark BookmarksModel::getBookmark(int id)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-04-15 20:45:22 +02:00
|
|
|
Bookmark bookmark;
|
2011-03-02 16:57:41 +01:00
|
|
|
QSqlQuery query;
|
|
|
|
query.prepare("SELECT url, title, folder FROM bookmarks WHERE id=?");
|
|
|
|
query.bindValue(0, id);
|
|
|
|
query.exec();
|
2011-04-15 20:45:22 +02:00
|
|
|
if (query.next()) {
|
|
|
|
bookmark.id = id;
|
|
|
|
bookmark.url = query.value(0).toUrl();
|
|
|
|
bookmark.title = query.value(1).toString();
|
|
|
|
bookmark.folder = query.value(2).toString();
|
|
|
|
}
|
|
|
|
return bookmark;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool BookmarksModel::saveBookmark(const QUrl &url, const QString &title, const QString &folder)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
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);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
|
|
|
if (!query.exec())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Bookmark bookmark;
|
|
|
|
bookmark.id = query.lastInsertId().toInt();
|
|
|
|
bookmark.url = url;
|
|
|
|
bookmark.title = title;
|
|
|
|
bookmark.folder = folder;
|
|
|
|
emit bookmarkAdded(bookmark);
|
|
|
|
return true;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool BookmarksModel::saveBookmark(WebView *view, const QString &folder)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
return saveBookmark(view->url(), view->title(), folder);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BookmarksModel::removeBookmark(int id)
|
|
|
|
{
|
|
|
|
QSqlQuery query;
|
2011-04-15 20:45:22 +02:00
|
|
|
query.prepare("SELECT url, title, folder FROM bookmarks WHERE id = ?");
|
2011-03-02 16:57:41 +01:00
|
|
|
query.bindValue(0, id);
|
2011-04-15 20:45:22 +02:00
|
|
|
query.exec();
|
|
|
|
if (!query.next())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Bookmark bookmark;
|
|
|
|
bookmark.id = id;
|
|
|
|
bookmark.url = query.value(0).toUrl();
|
|
|
|
bookmark.title = query.value(1).toString();
|
|
|
|
bookmark.folder = query.value(2).toString();
|
|
|
|
|
|
|
|
if (!query.exec("DELETE FROM bookmarks WHERE id = " + QString::number(id)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
emit bookmarkDeleted(bookmark);
|
|
|
|
return true;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool BookmarksModel::removeBookmark(const QUrl &url)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
return removeBookmark(bookmarkId(url));
|
|
|
|
}
|
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
bool BookmarksModel::removeBookmark(WebView* view)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
return removeBookmark(bookmarkId(view->url()));
|
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
//bool BookmarksModel::editBookmark(int id, const QString &title, const 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, const QUrl &url, const 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();
|
|
|
|
//}
|
|
|
|
|
|
|
|
bool BookmarksModel::editBookmark(int id, const QString &title, const QUrl &url, const QString &folder)
|
|
|
|
{
|
|
|
|
if (title.isEmpty() && url.isEmpty() && folder.isEmpty())
|
|
|
|
return false;
|
|
|
|
QSqlQuery query;
|
|
|
|
if (!query.exec("SELECT title, url, folder FROM bookmarks WHERE id = "+QString::number(id)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
query.next();
|
|
|
|
|
|
|
|
Bookmark before;
|
|
|
|
before.id = id;
|
|
|
|
before.title = query.value(0).toString();
|
|
|
|
before.url = query.value(1).toUrl();
|
|
|
|
before.folder = query.value(2).toString();
|
|
|
|
|
|
|
|
Bookmark after;
|
|
|
|
after.id = id;
|
|
|
|
after.title = title.isEmpty() ? before.title : title;
|
|
|
|
after.url = url.isEmpty() ? before.url : url;
|
|
|
|
after.folder = folder.isEmpty() ? before.folder : folder;
|
|
|
|
|
|
|
|
query.prepare("UPDATE bookmarks SET title=?, url=?, folder=? WHERE id = ?");
|
|
|
|
query.bindValue(0, after.title);
|
|
|
|
query.bindValue(1, after.url.toString());
|
|
|
|
query.bindValue(2, after.folder);
|
|
|
|
query.bindValue(3, id);
|
|
|
|
|
|
|
|
if (!query.exec())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
emit bookmarkEdited(before, after);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BookmarksModel::createFolder(const QString &name)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
QSqlQuery query;
|
2011-04-15 20:45:22 +02:00
|
|
|
query.prepare("INSERT INTO folders (name) VALUES (?)");
|
|
|
|
query.bindValue(0, name);
|
|
|
|
if (!query.exec())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
emit folderAdded(name);
|
|
|
|
return true;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool BookmarksModel::removeFolder(const QString &name)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-04-15 20:45:22 +02:00
|
|
|
if (name == tr("Bookmarks In Menu") || name == tr("Bookmarks In ToolBar"))
|
|
|
|
return false;
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
QSqlQuery query;
|
2011-04-15 20:45:22 +02:00
|
|
|
query.prepare("SELECT id FROM bookmarks WHERE folder = ? ");
|
|
|
|
query.bindValue(0, name);
|
|
|
|
if (!query.exec())
|
|
|
|
return false;
|
|
|
|
while (query.next())
|
|
|
|
removeBookmark(query.value(0).toInt());
|
|
|
|
|
|
|
|
query.prepare("DELETE FROM folders WHERE name=?");
|
|
|
|
query.bindValue(0, name);
|
|
|
|
if (!query.exec())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
query.prepare("DELETE FROM bookmarks WHERE folder=?");
|
|
|
|
query.bindValue(0, name);
|
|
|
|
if (!query.exec())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
emit folderDeleted(name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BookmarksModel::bookmarksEqual(const Bookmark &one, const Bookmark &two)
|
|
|
|
{
|
|
|
|
if (one.id != two.id)
|
|
|
|
return false;
|
|
|
|
if (one.title != two.title)
|
|
|
|
return false;
|
|
|
|
if (one.folder != two.folder)
|
|
|
|
return false;
|
|
|
|
if (one.url != two.url)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BookmarksModel::toTranslatedFolder(const QString &name)
|
|
|
|
{
|
|
|
|
QString trFolder;
|
|
|
|
if (name == "bookmarksMenu")
|
|
|
|
trFolder = tr("Bookmarks In Menu");
|
|
|
|
else if (name == "bookmarksToolbar")
|
|
|
|
trFolder = tr("Bookmarks In ToolBar");
|
|
|
|
else if (name == "unsorted")
|
|
|
|
trFolder = tr("Unsorted Bookmarks");
|
|
|
|
else
|
|
|
|
trFolder = name;
|
|
|
|
return trFolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BookmarksModel::fromTranslatedFolder(const QString &name)
|
|
|
|
{
|
|
|
|
QString folder;
|
|
|
|
if (name == tr("Bookmarks In Menu"))
|
|
|
|
folder = "bookmarksMenu";
|
|
|
|
else if (name == tr("Bookmarks In ToolBar"))
|
|
|
|
folder = "bookmarksToolbar";
|
|
|
|
else if (name == tr("Unsorted Bookmarks"))
|
|
|
|
folder = "unsorted";
|
|
|
|
else
|
|
|
|
folder = name;
|
|
|
|
return folder;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|