pollymc/launcher/notifications/NotificationChecker.h

62 lines
1.2 KiB
C
Raw Normal View History

#pragma once
#include <QObject>
2015-02-09 06:21:14 +05:30
#include "net/NetJob.h"
#include "net/Download.h"
class NotificationChecker : public QObject
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
public:
2018-07-15 18:21:05 +05:30
explicit NotificationChecker(QObject *parent = 0);
void setNotificationsUrl(const QUrl &notificationsUrl);
void setApplicationPlatform(QString platform);
void setApplicationChannel(QString channel);
void setApplicationFullVersion(QString version);
struct NotificationEntry
{
int id;
QString message;
enum
{
Critical,
Warning,
Information
} type;
QString channel;
QString platform;
QString from;
QString to;
};
QList<NotificationEntry> notificationEntries() const;
public
slots:
2018-07-15 18:21:05 +05:30
void checkForNotifications();
private
slots:
2018-07-15 18:21:05 +05:30
void downloadSucceeded(int);
signals:
2018-07-15 18:21:05 +05:30
void notificationCheckFinished();
2015-02-07 17:25:18 +05:30
private:
2018-07-15 18:21:05 +05:30
bool entryApplies(const NotificationEntry &entry) const;
2015-02-07 17:25:18 +05:30
private:
2018-07-15 18:21:05 +05:30
QList<NotificationEntry> m_entries;
QUrl m_notificationsUrl;
NetJobPtr m_checkJob;
Net::Download::Ptr m_download;
QString m_appVersionChannel;
QString m_appPlatform;
QString m_appFullVersion;
};