Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
5.6 KiB
173 lines
5.6 KiB
/* |
|
* Bittorrent Client using Qt and libtorrent. |
|
* Copyright (C) 2021 Mike Tzou (Chocobo1) |
|
* Copyright (C) 2010 Christophe Dumez <chris@qbittorrent.org> |
|
* |
|
* 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 2 |
|
* 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, write to the Free Software |
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
* |
|
* In addition, as a special exception, the copyright holders give permission to |
|
* link this program with the OpenSSL project's "OpenSSL" library (or with |
|
* modified versions of it that use the same license as the "OpenSSL" library), |
|
* and distribute the linked executables. You must obey the GNU General Public |
|
* License in all respects for all of the code used other than "OpenSSL". If you |
|
* modify file(s), you may extend this exception to your version of the file(s), |
|
* but you are not obligated to do so. If you do not wish to do so, delete this |
|
* exception statement from your version. |
|
*/ |
|
|
|
#include "programupdater.h" |
|
|
|
#if defined(Q_OS_WIN) |
|
#include <Windows.h> |
|
#include <versionhelpers.h> // must follow after Windows.h |
|
#endif |
|
|
|
#include <QDebug> |
|
#include <QDesktopServices> |
|
#include <QRegularExpression> |
|
#include <QXmlStreamReader> |
|
|
|
#if defined(Q_OS_WIN) |
|
#include <QSysInfo> |
|
#endif |
|
|
|
#include "base/global.h" |
|
#include "base/net/downloadmanager.h" |
|
#include "base/utils/version.h" |
|
#include "base/version.h" |
|
|
|
namespace |
|
{ |
|
bool isVersionMoreRecent(const QString &remoteVersion) |
|
{ |
|
using Version = Utils::Version<int, 4, 3>; |
|
|
|
try |
|
{ |
|
const Version newVersion {remoteVersion}; |
|
const Version currentVersion {QBT_VERSION_MAJOR, QBT_VERSION_MINOR, QBT_VERSION_BUGFIX, QBT_VERSION_BUILD}; |
|
if (newVersion == currentVersion) |
|
{ |
|
const bool isDevVersion = QStringLiteral(QBT_VERSION_STATUS).contains( |
|
QRegularExpression(u"(alpha|beta|rc)"_qs)); |
|
if (isDevVersion) |
|
return true; |
|
} |
|
return (newVersion > currentVersion); |
|
} |
|
catch (const RuntimeError &) |
|
{ |
|
return false; |
|
} |
|
} |
|
} |
|
|
|
void ProgramUpdater::checkForUpdates() const |
|
{ |
|
const auto RSS_URL = u"https://www.fosshub.com/feed/5b8793a7f9ee5a5c3e97a3b2.xml"_qs; |
|
// Don't change this User-Agent. In case our updater goes haywire, |
|
// the filehost can identify it and contact us. |
|
Net::DownloadManager::instance()->download( |
|
Net::DownloadRequest(RSS_URL).userAgent(QStringLiteral("qBittorrent/" QBT_VERSION_2 " ProgramUpdater (www.qbittorrent.org)")) |
|
, this, &ProgramUpdater::rssDownloadFinished); |
|
} |
|
|
|
QString ProgramUpdater::getNewVersion() const |
|
{ |
|
return m_newVersion; |
|
} |
|
|
|
void ProgramUpdater::rssDownloadFinished(const Net::DownloadResult &result) |
|
{ |
|
if (result.status != Net::DownloadStatus::Success) |
|
{ |
|
qDebug() << "Downloading the new qBittorrent updates RSS failed:" << result.errorString; |
|
emit updateCheckFinished(); |
|
return; |
|
} |
|
|
|
qDebug("Finished downloading the new qBittorrent updates RSS"); |
|
|
|
const auto getStringValue = [](QXmlStreamReader &xml) -> QString |
|
{ |
|
xml.readNext(); |
|
return (xml.isCharacters() && !xml.isWhitespace()) |
|
? xml.text().toString() |
|
: QString {}; |
|
}; |
|
|
|
#ifdef Q_OS_MACOS |
|
const QString OS_TYPE = u"Mac OS X"_qs; |
|
#elif defined(Q_OS_WIN) |
|
const QString OS_TYPE = (::IsWindows7OrGreater() && QSysInfo::currentCpuArchitecture().endsWith(u"64")) |
|
? u"Windows x64"_qs |
|
: u"Windows"_qs; |
|
#endif |
|
|
|
bool inItem = false; |
|
QString version; |
|
QString updateLink; |
|
QString type; |
|
QXmlStreamReader xml(result.data); |
|
|
|
while (!xml.atEnd()) |
|
{ |
|
xml.readNext(); |
|
|
|
if (xml.isStartElement()) |
|
{ |
|
if (xml.name() == u"item") |
|
inItem = true; |
|
else if (inItem && (xml.name() == u"link")) |
|
updateLink = getStringValue(xml); |
|
else if (inItem && (xml.name() == u"type")) |
|
type = getStringValue(xml); |
|
else if (inItem && (xml.name() == u"version")) |
|
version = getStringValue(xml); |
|
} |
|
else if (xml.isEndElement()) |
|
{ |
|
if (inItem && (xml.name() == u"item")) |
|
{ |
|
if (type.compare(OS_TYPE, Qt::CaseInsensitive) == 0) |
|
{ |
|
qDebug("The last update available is %s", qUtf8Printable(version)); |
|
if (!version.isEmpty()) |
|
{ |
|
qDebug("Detected version is %s", qUtf8Printable(version)); |
|
if (isVersionMoreRecent(version)) |
|
{ |
|
m_newVersion = version; |
|
m_updateURL = updateLink; |
|
} |
|
} |
|
break; |
|
} |
|
|
|
inItem = false; |
|
updateLink.clear(); |
|
type.clear(); |
|
version.clear(); |
|
} |
|
} |
|
} |
|
|
|
emit updateCheckFinished(); |
|
} |
|
|
|
bool ProgramUpdater::updateProgram() const |
|
{ |
|
return QDesktopServices::openUrl(m_updateURL); |
|
}
|
|
|