pollymc/launcher/notifications/NotificationChecker.cpp

130 lines
3.9 KiB
C++
Raw Normal View History

#include "NotificationChecker.h"
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonArray>
2015-02-07 17:25:18 +05:30
#include <QDebug>
2015-02-09 06:21:14 +05:30
#include "Env.h"
#include "net/Download.h"
2015-02-07 17:25:18 +05:30
NotificationChecker::NotificationChecker(QObject *parent)
2018-07-15 18:21:05 +05:30
: QObject(parent)
{
}
void NotificationChecker::setNotificationsUrl(const QUrl &notificationsUrl)
{
2018-07-15 18:21:05 +05:30
m_notificationsUrl = notificationsUrl;
}
2015-02-07 17:25:18 +05:30
void NotificationChecker::setApplicationChannel(QString channel)
{
2018-07-15 18:21:05 +05:30
m_appVersionChannel = channel;
2015-02-07 17:25:18 +05:30
}
void NotificationChecker::setApplicationFullVersion(QString version)
{
2018-07-15 18:21:05 +05:30
m_appFullVersion = version;
2015-02-07 17:25:18 +05:30
}
void NotificationChecker::setApplicationPlatform(QString platform)
{
2018-07-15 18:21:05 +05:30
m_appPlatform = platform;
2015-02-07 17:25:18 +05:30
}
QList<NotificationChecker::NotificationEntry> NotificationChecker::notificationEntries() const
{
2018-07-15 18:21:05 +05:30
return m_entries;
}
void NotificationChecker::checkForNotifications()
{
2018-07-15 18:21:05 +05:30
if (!m_notificationsUrl.isValid())
{
qCritical() << "Failed to check for notifications. No notifications URL set."
<< "If you'd like to use MultiMC's notification system, please pass the "
"URL to CMake at compile time.";
return;
}
if (m_checkJob)
{
return;
}
m_checkJob.reset(new NetJob("Checking for notifications"));
auto entry = ENV.metacache()->resolveEntry("root", "notifications.json");
entry->setStale(true);
m_checkJob->addNetAction(m_download = Net::Download::makeCached(m_notificationsUrl, entry));
connect(m_download.get(), &Net::Download::succeeded, this, &NotificationChecker::downloadSucceeded);
m_checkJob->start();
}
void NotificationChecker::downloadSucceeded(int)
{
2018-07-15 18:21:05 +05:30
m_entries.clear();
QFile file(m_download->getTargetFilepath());
if (file.open(QFile::ReadOnly))
{
QJsonArray root = QJsonDocument::fromJson(file.readAll()).array();
for (auto it = root.begin(); it != root.end(); ++it)
{
QJsonObject obj = (*it).toObject();
NotificationEntry entry;
entry.id = obj.value("id").toDouble();
entry.message = obj.value("message").toString();
entry.channel = obj.value("channel").toString();
entry.platform = obj.value("platform").toString();
entry.from = obj.value("from").toString();
entry.to = obj.value("to").toString();
const QString type = obj.value("type").toString("critical");
if (type == "critical")
{
entry.type = NotificationEntry::Critical;
}
else if (type == "warning")
{
entry.type = NotificationEntry::Warning;
}
else if (type == "information")
{
entry.type = NotificationEntry::Information;
}
if(entryApplies(entry))
m_entries.append(entry);
}
}
m_checkJob.reset();
emit notificationCheckFinished();
}
2015-02-07 17:25:18 +05:30
bool versionLessThan(const QString &v1, const QString &v2)
{
2018-07-15 18:21:05 +05:30
QStringList l1 = v1.split('.');
QStringList l2 = v2.split('.');
while (!l1.isEmpty() && !l2.isEmpty())
{
int one = l1.isEmpty() ? 0 : l1.takeFirst().toInt();
int two = l2.isEmpty() ? 0 : l2.takeFirst().toInt();
if (one != two)
{
return one < two;
}
}
return false;
}
2015-02-07 17:25:18 +05:30
bool NotificationChecker::entryApplies(const NotificationChecker::NotificationEntry& entry) const
{
2018-07-15 18:21:05 +05:30
bool channelApplies = entry.channel.isEmpty() || entry.channel == m_appVersionChannel;
bool platformApplies = entry.platform.isEmpty() || entry.platform == m_appPlatform;
bool fromApplies =
entry.from.isEmpty() || entry.from == m_appFullVersion || !versionLessThan(m_appFullVersion, entry.from);
bool toApplies =
entry.to.isEmpty() || entry.to == m_appFullVersion || !versionLessThan(entry.to, m_appFullVersion);
return channelApplies && platformApplies && fromApplies && toApplies;
2015-02-07 17:25:18 +05:30
}