1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 10:42:11 +02:00
falkonOfficial/src/history/historymodel.cpp

149 lines
4.2 KiB
C++
Raw Normal View History

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 "historymodel.h"
#include "webview.h"
#include "qupzilla.h"
2011-03-17 17:03:04 +01:00
HistoryModel::HistoryModel(QupZilla* mainClass, QObject* parent)
2011-03-02 16:57:41 +01:00
: QObject(parent)
,m_isSaving(true)
,p_QupZilla(mainClass)
{
loadSettings();
}
void HistoryModel::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_isSaving = settings.value("allowHistory",true).toBool();
2011-04-26 19:47:12 +02:00
settings.endGroup();
2011-03-02 16:57:41 +01:00
}
int HistoryModel::addHistoryEntry(const QString &url, QString &title)
{
if (!m_isSaving)
return -2;
if (url.contains("file://") || title.contains(tr("Failed loading page")) || url.isEmpty() || url.contains("about:blank") )
return -1;
2011-03-17 20:47:06 +01:00
if (title == "")
title=tr("No Named Page");
2011-03-02 16:57:41 +01:00
QSqlQuery query;
query.prepare("SELECT id FROM history WHERE url=?");
query.bindValue(0, url);
query.exec();
if (!query.next()) {
query.prepare("INSERT INTO history (count, date, url, title) VALUES (1,?,?,?)");
query.bindValue(0, QDateTime::currentMSecsSinceEpoch());
2011-03-02 16:57:41 +01:00
query.bindValue(1, url);
query.bindValue(2, title);
query.exec();
int id = query.lastInsertId().toInt();
HistoryEntry entry;
entry.id = id;
entry.count = 1;
entry.date = QDateTime::currentDateTime();
entry.url = url;
entry.title = title;
emit historyEntryAdded(entry);
} else {
2011-03-17 20:47:06 +01:00
query.prepare("UPDATE history SET count = count + 1, date=?, title=? WHERE url=?");
query.bindValue(0, QDateTime::currentMSecsSinceEpoch());
2011-03-17 20:47:06 +01:00
query.bindValue(1, title);
query.bindValue(2, url);
2011-03-02 16:57:41 +01:00
query.exec();
}
return query.lastInsertId().toInt();
}
2011-03-17 17:03:04 +01:00
int HistoryModel::addHistoryEntry(WebView* view)
2011-03-02 16:57:41 +01:00
{
if (!m_isSaving)
return -2;
2011-03-02 16:57:41 +01:00
QString url = view->url().toString();
QString title = view->title();
return addHistoryEntry(url, title);
}
bool HistoryModel::deleteHistoryEntry(int index)
{
QSqlQuery query;
query.prepare("SELECT id, count, date, url, title FROM history WHERE id=?");
query.bindValue(0, index);
query.exec();
if (!query.next())
return false;
HistoryEntry entry;
entry.id = query.value(0).toInt();
entry.count = query.value(1).toInt();
entry.date = QDateTime::fromMSecsSinceEpoch(query.value(2).toLongLong());
entry.url = query.value(3).toUrl();
entry.title = query.value(4).toString();
2011-03-02 16:57:41 +01:00
query.prepare("DELETE FROM history WHERE id=?");
query.bindValue(0, index);
if (query.exec()) {
emit historyEntryDeleted(entry);
2011-03-02 16:57:41 +01:00
return true;
}
return false;
2011-03-02 16:57:41 +01:00
}
bool HistoryModel::deleteHistoryEntry(const QString &url, const QString &title)
{
QSqlQuery query;
query.prepare("SELECT id FROM history WHERE url=? AND title=?");
2011-03-02 16:57:41 +01:00
query.bindValue(0, url);
query.bindValue(1, title);
query.exec();
if (query.next()) {
int id = query.value(0).toInt();
return deleteHistoryEntry(id);
}
return false;
2011-03-02 16:57:41 +01:00
}
bool HistoryModel::optimizeHistory()
{
QSqlQuery query;
return query.exec("VACUUM");
}
bool HistoryModel::clearHistory()
{
QSqlQuery query;
if (query.exec("DELETE FROM history")) {
emit historyClear();
return true;
}
return false;
2011-03-02 16:57:41 +01:00
}
void HistoryModel::setSaving(bool state)
{
m_isSaving = state;
}
bool HistoryModel::isSaving()
{
return m_isSaving;
}