* Rename `LicenseManager` to `License` * Rename `LicenseManager` to `License` * Move License class to gui lib * Rename license related classes * Refactor serial key parsing * Don't fail fast on containers * Move licensed product name from config to code * Fixed formatting * Update code coverage generator and fixed args * WIP: Converting license to chrono * WIP: Fixed compile errors, tests failing * Fixed all serial key and license tests * Disable verbose logging * Add missing </p> * Add missing include * Revert code coverage config * Handle parse errors * Move more classes into the new gui lib and improve license/serial object ownership * WIP: Fixing signal/slots in MainWindow * Fixed slot for about to quit * Rename manual slots to solve auto-connection warnings * Fixed logging issue * By default, don't close to tray * Add .env support and furthe refactor license code, also fixed some copyright dates * Remove test code * Fixed memory error in .env parser and refactor more licensing display code * Fixed color inconsistencies * Fixed link colors and made log view expand * Disable server components rather than hiding * Reset years of blind UI layout fiddling * Fixed clean Qt task * Only show notice when time limited * Fixed main window layout * Show connected clients * Set 15 spacing * Auto connect on start * More intentional screen size * Fixed tests related to license * Tests for expiry notifications * Reorg tests and remove death test * Update gtest * Tests for dotenv parser * Test command process * What the heck is that doing there? * Merge constants headers * Fixed magic includes * Remove helper function * Remove comment * Remove extern decl * Update ChangeLog
123 lines
4.2 KiB
C++
123 lines
4.2 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2012 Symless Ltd.
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file LICENSE that should have accompanied this file.
|
|
*
|
|
* This package 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 "VersionChecker.h"
|
|
|
|
#include <QLocale>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QNetworkRequest>
|
|
#include <QProcess>
|
|
#include <QRegularExpression>
|
|
#include <memory>
|
|
|
|
const char *const kVersion = SYNERGY_VERSION;
|
|
|
|
VersionChecker::VersionChecker(std::shared_ptr<QNetworkAccessManager> network)
|
|
: m_network(
|
|
network ? network : std::make_shared<QNetworkAccessManager>(this)) {
|
|
connect(
|
|
m_network.get(), SIGNAL(finished(QNetworkReply *)), this,
|
|
SLOT(replyFinished(QNetworkReply *)));
|
|
}
|
|
|
|
void VersionChecker::checkLatest() const {
|
|
const QString url =
|
|
qEnvironmentVariable("SYNERGY_VERSION_URL", SYNERGY_VERSION_URL);
|
|
auto request = QNetworkRequest(url);
|
|
auto userAgent = QString("Synergy %1 on %2")
|
|
.arg(kVersion)
|
|
.arg(QSysInfo::prettyProductName());
|
|
request.setHeader(QNetworkRequest::UserAgentHeader, userAgent);
|
|
request.setRawHeader("X-Synergy-Version", kVersion);
|
|
request.setRawHeader(
|
|
"X-Synergy-Language", QLocale::system().name().toStdString().c_str());
|
|
m_network->get(request);
|
|
}
|
|
|
|
void VersionChecker::replyFinished(QNetworkReply *reply) {
|
|
auto newestVersion = QString(reply->readAll());
|
|
if (!newestVersion.isEmpty() &&
|
|
compareVersions(SYNERGY_VERSION, newestVersion) > 0) {
|
|
emit updateFound(newestVersion);
|
|
}
|
|
}
|
|
|
|
int VersionChecker::getStageVersion(QString stage) {
|
|
const char *stableName = "stable";
|
|
const char *rcName = "rc";
|
|
const char *betaName = "beta";
|
|
|
|
// use max int for stable so it's always the highest value.
|
|
const int stableValue = INT_MAX;
|
|
const int rcValue = 2;
|
|
const int betaValue = 1;
|
|
const int otherValue = 0;
|
|
|
|
if (stage.isEmpty() || stage == stableName) {
|
|
return stableValue;
|
|
} else if (stage.toLower().startsWith(rcName)) {
|
|
QRegularExpression re("\\d*", QRegularExpression::CaseInsensitiveOption);
|
|
if (re.match(stage).hasMatch()) {
|
|
// return the rc value plus the rc number (e.g. 2 + 1)
|
|
// this should be ok since stable is max int.
|
|
return rcValue + re.match(stage).captured(1).toInt();
|
|
}
|
|
} else if (stage == betaName) {
|
|
return betaValue;
|
|
}
|
|
|
|
return otherValue;
|
|
}
|
|
|
|
int VersionChecker::compareVersions(const QString &left, const QString &right) {
|
|
if (left.compare(right) == 0)
|
|
return 0; // versions are same.
|
|
|
|
QStringList leftParts = left.split("-");
|
|
QStringList rightParts = right.split("-");
|
|
|
|
QString leftNumber = leftParts.at(0);
|
|
QString rightNumber = rightParts.at(0);
|
|
|
|
QStringList leftNumberParts = left.split(".");
|
|
QStringList rightNumberParts = right.split(".");
|
|
|
|
auto leftStagePart = leftParts.size() > 1 ? leftParts.at(1) : "";
|
|
auto rightStagePart = rightParts.size() > 1 ? rightParts.at(1) : "";
|
|
|
|
const int leftMajor = leftNumberParts.at(0).toInt();
|
|
const int leftMinor = leftNumberParts.at(1).toInt();
|
|
const int leftPatch = leftNumberParts.at(2).toInt();
|
|
const int leftStage = getStageVersion(leftStagePart);
|
|
|
|
const int rightMajor = rightNumberParts.at(0).toInt();
|
|
const int rightMinor = rightNumberParts.at(1).toInt();
|
|
const int rightPatch = rightNumberParts.at(2).toInt();
|
|
const int rightStage = getStageVersion(rightStagePart);
|
|
|
|
const bool rightWins =
|
|
(rightMajor > leftMajor) ||
|
|
((rightMajor >= leftMajor) && (rightMinor > leftMinor)) ||
|
|
((rightMajor >= leftMajor) && (rightMinor >= leftMinor) &&
|
|
(rightPatch > leftPatch)) ||
|
|
((rightMajor >= leftMajor) && (rightMinor >= leftMinor) &&
|
|
(rightPatch >= leftPatch) && (rightStage > leftStage));
|
|
|
|
return rightWins ? 1 : -1;
|
|
}
|