1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/lib/other/updater.cpp

158 lines
4.2 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
2011-03-03 18:29:20 +01:00
*
* 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 "updater.h"
#include "qupzilla.h"
#include "qztools.h"
#include "mainapplication.h"
2011-03-02 16:57:41 +01:00
#include "tabwidget.h"
#include "desktopnotificationsfactory.h"
2011-03-02 16:57:41 +01:00
#include <QTimer>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QNetworkReply>
Updater::Version::Version(const QString &s)
: isValid(false)
, majorVersion(-1)
, minorVersion(-1)
, revisionNumber(-1)
2011-03-02 16:57:41 +01:00
{
isValid = false;
2011-03-02 16:57:41 +01:00
QStringList v = s.split(QLatin1Char('.'));
if (v.count() != 3) {
return;
}
bool ok;
majorVersion = v.at(0).toInt(&ok);
if (!ok) {
return;
}
minorVersion = v.at(1).toInt(&ok);
if (!ok) {
return;
}
revisionNumber = v.at(2).toInt(&ok);
if (!ok) {
return;
}
isValid = majorVersion >= 0 && minorVersion >= 0 && revisionNumber >= 0;
}
bool Updater::Version::operator <(const Updater::Version &other) const
{
if (this->majorVersion != other.majorVersion) {
return this->majorVersion < other.majorVersion;
}
if (this->minorVersion != other.minorVersion) {
return this->minorVersion < other.minorVersion;
}
if (this->revisionNumber != other.revisionNumber) {
return this->revisionNumber < other.revisionNumber;
}
return false;
}
bool Updater::Version::operator >(const Updater::Version &other) const
{
if (*this == other) {
return false;
}
return !operator<(other);
}
bool Updater::Version::operator ==(const Updater::Version &other) const
{
return (this->majorVersion == other.majorVersion &&
this->minorVersion == other.minorVersion &&
this->revisionNumber == other.revisionNumber);
}
bool Updater::Version::operator >=(const Updater::Version &other) const
{
if (*this == other) {
return true;
}
return *this > other;
}
bool Updater::Version::operator <=(const Updater::Version &other) const
{
if (*this == other) {
return true;
}
return *this < other;
}
Updater::Updater(QupZilla* mainClass, QObject* parent)
: QObject(parent)
, p_QupZilla(mainClass)
{
QTimer::singleShot(60 * 1000, this, SLOT(start())); // Start checking after 1 minute
}
2011-03-02 16:57:41 +01:00
void Updater::start()
{
QUrl url = QUrl(QString("%1/update.php?v=%2&os=%3").arg(QupZilla::WWWADDRESS,
QupZilla::VERSION,
QzTools::operatingSystem()));
startDownloadingUpdateInfo(url);
2011-03-02 16:57:41 +01:00
}
void Updater::startDownloadingUpdateInfo(const QUrl &url)
{
QNetworkAccessManager* manager = new QNetworkAccessManager();
manager->get(QNetworkRequest(QUrl(url)));
2011-03-02 16:57:41 +01:00
2011-03-17 17:03:04 +01:00
connect(manager, SIGNAL(finished(QNetworkReply*)), this, SLOT(downCompleted(QNetworkReply*)));
2011-03-02 16:57:41 +01:00
}
void Updater::downCompleted(QNetworkReply* reply)
{
QString html = reply->readAll();
if (html.startsWith(QLatin1String("Version:"))) {
html.remove(QLatin1String("Version:"));
Version current(QupZilla::VERSION);
Version updated(html);
if (current.isValid && updated.isValid && current < updated) {
mApp->desktopNotifications()->showNotification(QPixmap(":icons/qupzillaupdate.png"), tr("Update available"), tr("New version of QupZilla is ready to download."));
}
}
2011-03-02 16:57:41 +01:00
reply->manager()->deleteLater();
}
void Updater::downloadNewVersion()
{
p_QupZilla->tabWidget()->addView(QUrl(QupZilla::WWWADDRESS + "/download"), tr("Update"), Qz::NT_NotSelectedTab);
}
2011-03-02 16:57:41 +01:00
Updater::~Updater()
{
}