2014-01-03 18:19:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "net/NetJob.h"
|
2016-05-28 18:54:17 +01:00
|
|
|
#include "net/Download.h"
|
2014-01-03 18:19:27 +00:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT NotificationChecker : public QObject
|
2014-01-03 18:19:27 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NotificationChecker(QObject *parent = 0);
|
|
|
|
|
|
|
|
void setNotificationsUrl(const QUrl ¬ificationsUrl);
|
2015-02-07 11:55:18 +00:00
|
|
|
void setApplicationPlatform(QString platform);
|
|
|
|
void setApplicationChannel(QString channel);
|
|
|
|
void setApplicationFullVersion(QString version);
|
2014-01-03 18:19:27 +00:00
|
|
|
|
|
|
|
struct NotificationEntry
|
|
|
|
{
|
|
|
|
int id;
|
|
|
|
QString message;
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Critical,
|
|
|
|
Warning,
|
|
|
|
Information
|
|
|
|
} type;
|
|
|
|
QString channel;
|
2014-01-08 00:09:05 +00:00
|
|
|
QString platform;
|
2014-01-03 18:19:27 +00:00
|
|
|
QString from;
|
|
|
|
QString to;
|
|
|
|
};
|
|
|
|
|
|
|
|
QList<NotificationEntry> notificationEntries() const;
|
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void checkForNotifications();
|
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2017-05-03 22:11:52 +01:00
|
|
|
void downloadSucceeded(int);
|
2014-01-03 18:19:27 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void notificationCheckFinished();
|
|
|
|
|
2015-02-07 11:55:18 +00:00
|
|
|
private:
|
|
|
|
bool entryApplies(const NotificationEntry &entry) const;
|
|
|
|
|
2014-01-03 18:19:27 +00:00
|
|
|
private:
|
|
|
|
QList<NotificationEntry> m_entries;
|
|
|
|
QUrl m_notificationsUrl;
|
|
|
|
NetJobPtr m_checkJob;
|
2016-05-28 18:54:17 +01:00
|
|
|
Net::Download::Ptr m_download;
|
2015-02-07 11:55:18 +00:00
|
|
|
|
|
|
|
QString m_appVersionChannel;
|
|
|
|
QString m_appPlatform;
|
|
|
|
QString m_appFullVersion;
|
2014-01-03 18:19:27 +00:00
|
|
|
};
|