80 lines
2.6 KiB
C++
80 lines
2.6 KiB
C++
/*****************************************************************************
|
|
* gta5view Grand Theft Auto V Profile Viewer
|
|
* Copyright (C) 2018 Syping
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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/>.
|
|
*****************************************************************************/
|
|
|
|
#ifndef TELEMETRYCLASS_H
|
|
#define TELEMETRYCLASS_H
|
|
|
|
#include <QNetworkReply>
|
|
#include <QApplication>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QUrl>
|
|
|
|
enum class TelemetryCategory : int { OperatingSystemSpec = 0, HardwareSpec = 1, UserLocaleData = 2, ApplicationConf = 3, UserFeedback = 4, ApplicationSpec = 5, PersonalData = 6, CustomEmitted = 99 };
|
|
|
|
class TelemetryClass : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static TelemetryClass* getInstance() { return &telemetryClassInstance; }
|
|
static QString categoryToString(TelemetryCategory category);
|
|
static QUrl getWebURL();
|
|
bool canPush();
|
|
bool canRegister();
|
|
bool isEnabled();
|
|
bool isStateForced();
|
|
bool isRegistered();
|
|
void init();
|
|
void work();
|
|
void refresh();
|
|
void setEnabled(bool enabled);
|
|
void setDisabled(bool disabled);
|
|
void push(TelemetryCategory category);
|
|
void push(TelemetryCategory category, const QJsonDocument json);
|
|
void registerClient();
|
|
QString getRegisteredID();
|
|
|
|
private:
|
|
static TelemetryClass telemetryClassInstance;
|
|
QString telemetryClientID;
|
|
bool telemetryEnabled;
|
|
bool telemetryStateForced;
|
|
bool telemetryPushAppConf;
|
|
|
|
void work_p(bool doWork);
|
|
QJsonDocument getOperatingSystem();
|
|
QJsonDocument getSystemHardware();
|
|
QJsonDocument getApplicationSpec();
|
|
QJsonDocument getApplicationConf();
|
|
QJsonDocument getSystemLocaleList();
|
|
|
|
private slots:
|
|
void pushFinished(QNetworkReply *reply);
|
|
void registerFinished(QNetworkReply *reply);
|
|
void work_pd(bool doWork);
|
|
|
|
signals:
|
|
void pushed(bool isSucessful);
|
|
void registered(bool isSucessful);
|
|
};
|
|
|
|
extern TelemetryClass telemetryClass;
|
|
|
|
#define Telemetry TelemetryClass::getInstance()
|
|
|
|
#endif // TELEMETRYCLASS_H
|