1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
SPDX-FileCopyrightText: 2023-2026 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
code based on kdenlive
*/
#include "needupdateversionutils.h"
#include <KConfigGroup>
#include <KSharedConfig>
#include <QRegularExpression>
TextAddonsWidgets::NeedUpdateVersionUtils::ObsoleteVersion TextAddonsWidgets::NeedUpdateVersionUtils::obsoleteVersionStatus(const QString &str,
QDate currentDate)
{
static QRegularExpression regular{QStringLiteral("\\((.*)\\)")};
QRegularExpressionMatch match;
QString captured;
if (str.contains(regular, &match)) {
captured = match.captured(1);
} else {
captured = str;
}
if (!captured.isEmpty()) {
const QStringList version = captured.split(QLatin1Char('.'));
if (version.size() > 2) {
bool ok;
int year = version.at(0).toInt(&ok);
if (ok) {
const int month = version.at(1).toInt(&ok);
if (ok) {
if (year < 100) {
year += 2000;
}
const QDate releaseDate = QDate(year, month, 1);
if (releaseDate.isValid()) {
const int days = releaseDate.daysTo(currentDate);
if (days > 180) {
if (days > 360) {
return TextAddonsWidgets::NeedUpdateVersionUtils::ObsoleteVersion::OlderThan12Months;
}
return TextAddonsWidgets::NeedUpdateVersionUtils::ObsoleteVersion::OlderThan6Months;
}
}
}
}
}
} else {
return TextAddonsWidgets::NeedUpdateVersionUtils::ObsoleteVersion::Unknown;
}
return TextAddonsWidgets::NeedUpdateVersionUtils::ObsoleteVersion::NotObsoleteYet;
}
void TextAddonsWidgets::NeedUpdateVersionUtils::disableCheckVersion()
{
KSharedConfig::Ptr config = KSharedConfig::openConfig();
KConfigGroup group(config, QStringLiteral("Check Version"));
group.writeEntry("checkerVersionEnabled", false);
}
bool TextAddonsWidgets::NeedUpdateVersionUtils::checkVersion()
{
#if ENABLE_WARN_OUTDATED == 1
KSharedConfig::Ptr config = KSharedConfig::openConfig();
KConfigGroup group(config, QStringLiteral("Check Version"));
return group.readEntry("checkerVersionEnabled", true);
#else
return false;
#endif
}
QDate TextAddonsWidgets::NeedUpdateVersionUtils::compileDate()
{
return QDate::fromString(QStringLiteral(__DATE__), QStringLiteral("MMM dd yyyy"));
}
|