2018-01-11 08:41:00 +01:00
|
|
|
/*****************************************************************************
|
2018-05-24 22:32:00 +02:00
|
|
|
* gta5view Grand Theft Auto V Profile Viewer
|
2018-01-11 08:41:00 +01:00
|
|
|
* 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/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "TelemetryClassAuthenticator.h"
|
|
|
|
#include "TelemetryClass.h"
|
2018-01-26 07:48:59 +01:00
|
|
|
#include "StandardPaths.h"
|
2018-01-11 08:41:00 +01:00
|
|
|
#include "AppEnv.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkRequest>
|
|
|
|
#include <QHttpMultiPart>
|
|
|
|
#include <QStringBuilder>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QSysInfo>
|
|
|
|
#include <QLocale>
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QDir>
|
|
|
|
|
2018-01-16 00:13:08 +01:00
|
|
|
#ifndef GTA5SYNC_TELEMETRY_WEBURL
|
|
|
|
#define GTA5SYNC_TELEMETRY_WEBURL ""
|
|
|
|
#endif
|
|
|
|
|
2020-09-26 16:12:55 +02:00
|
|
|
#ifdef Q_OS_WIN
|
2018-01-11 08:41:00 +01:00
|
|
|
#include "windows.h"
|
|
|
|
#include "intrin.h"
|
2018-07-13 09:06:53 +02:00
|
|
|
#include "d3d9.h"
|
2018-01-11 08:41:00 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
TelemetryClass TelemetryClass::telemetryClassInstance;
|
|
|
|
|
|
|
|
void TelemetryClass::init()
|
|
|
|
{
|
|
|
|
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
|
|
|
settings.beginGroup("Telemetry");
|
2018-05-31 06:12:47 +02:00
|
|
|
telemetryEnabled = true;
|
2018-01-16 00:13:08 +01:00
|
|
|
telemetryStateForced = true;
|
2018-01-26 07:48:59 +01:00
|
|
|
QString telemetryLegacyClientID = settings.value("ClientID", QString()).toString();
|
2018-01-26 07:53:24 +01:00
|
|
|
if (telemetryLegacyClientID.isEmpty() || telemetryLegacyClientID == "v2+")
|
2018-01-26 07:48:59 +01:00
|
|
|
{
|
|
|
|
telemetryClientID = QString::fromUtf8(QByteArray::fromBase64(settings.value("Identification", QByteArray()).toByteArray()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QDir dir;
|
|
|
|
dir.mkpath(StandardPaths::dataLocation());
|
|
|
|
dir.setPath(StandardPaths::dataLocation());
|
|
|
|
QString dirPath = dir.absolutePath();
|
|
|
|
QString portLoc = dirPath % "/.ported";
|
|
|
|
bool telemetryPortedKey = settings.value("IsPorted", false).toBool();
|
|
|
|
bool telemetryPortedFile = QFile::exists(portLoc);
|
|
|
|
if (!telemetryPortedKey && !telemetryPortedFile)
|
|
|
|
{
|
|
|
|
QFile portFile(portLoc);
|
|
|
|
if (portFile.open(QFile::WriteOnly))
|
|
|
|
{
|
|
|
|
portFile.write("\n");
|
|
|
|
portFile.flush();
|
|
|
|
}
|
|
|
|
portFile.close();
|
|
|
|
telemetryClientID = telemetryLegacyClientID;
|
|
|
|
settings.setValue("Identification", telemetryLegacyClientID.toUtf8().toBase64());
|
|
|
|
settings.setValue("IsPorted", true);
|
2018-01-26 07:53:24 +01:00
|
|
|
settings.setValue("ClientID", "v2+");
|
2018-01-26 07:48:59 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
telemetryClientID = QString();
|
|
|
|
}
|
|
|
|
}
|
2018-01-16 00:13:08 +01:00
|
|
|
telemetryPushAppConf = settings.value("PushAppConf", false).toBool();
|
2018-01-11 08:41:00 +01:00
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::refresh()
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TelemetryClass::canPush()
|
|
|
|
{
|
|
|
|
if (!isEnabled() || !isRegistered() || !TelemetryClassAuthenticator::havePushURL()) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TelemetryClass::canRegister()
|
|
|
|
{
|
2018-01-26 07:48:59 +01:00
|
|
|
QDir dir;
|
|
|
|
dir.mkpath(StandardPaths::dataLocation());
|
|
|
|
dir.setPath(StandardPaths::dataLocation());
|
|
|
|
QString dirPath = dir.absolutePath();
|
|
|
|
QString regLoc = dirPath % "/.reg";
|
|
|
|
if (QFile::exists(regLoc)) return false;
|
2018-01-11 08:41:00 +01:00
|
|
|
if (!isEnabled() || isRegistered() || !TelemetryClassAuthenticator::haveRegURL()) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TelemetryClass::isEnabled()
|
|
|
|
{
|
|
|
|
return telemetryEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TelemetryClass::isStateForced()
|
|
|
|
{
|
|
|
|
return telemetryStateForced;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TelemetryClass::isRegistered()
|
|
|
|
{
|
|
|
|
return !telemetryClientID.isEmpty();
|
|
|
|
}
|
|
|
|
|
2018-01-16 00:13:08 +01:00
|
|
|
QString TelemetryClass::getRegisteredID()
|
|
|
|
{
|
|
|
|
return telemetryClientID;
|
|
|
|
}
|
|
|
|
|
2018-01-11 08:41:00 +01:00
|
|
|
void TelemetryClass::setEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
telemetryEnabled = enabled;
|
|
|
|
telemetryStateForced = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::setDisabled(bool disabled)
|
|
|
|
{
|
|
|
|
telemetryEnabled = !disabled;
|
|
|
|
telemetryStateForced = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::push(TelemetryCategory category)
|
|
|
|
{
|
|
|
|
if (!canPush()) return;
|
|
|
|
switch (category)
|
|
|
|
{
|
|
|
|
case TelemetryCategory::OperatingSystemSpec:
|
|
|
|
push(category, getOperatingSystem());
|
|
|
|
break;
|
|
|
|
case TelemetryCategory::HardwareSpec:
|
|
|
|
push(category, getSystemHardware());
|
|
|
|
break;
|
|
|
|
case TelemetryCategory::UserLocaleData:
|
|
|
|
push(category, getSystemLocaleList());
|
|
|
|
break;
|
2018-01-16 00:13:08 +01:00
|
|
|
case TelemetryCategory::ApplicationConf:
|
|
|
|
push(category, getApplicationConf());
|
2018-01-11 08:41:00 +01:00
|
|
|
break;
|
|
|
|
case TelemetryCategory::ApplicationSpec:
|
|
|
|
push(category, getApplicationSpec());
|
|
|
|
break;
|
2018-01-11 09:38:43 +01:00
|
|
|
case TelemetryCategory::UserFeedback:
|
|
|
|
break;
|
2018-07-28 04:55:55 +02:00
|
|
|
case TelemetryCategory::PersonalData:
|
|
|
|
break;
|
2018-01-11 09:38:43 +01:00
|
|
|
case TelemetryCategory::CustomEmitted:
|
|
|
|
break;
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::push(TelemetryCategory category, QJsonDocument json)
|
|
|
|
{
|
|
|
|
if (!canPush()) return;
|
|
|
|
|
|
|
|
QJsonDocument jsonDocument(json);
|
|
|
|
QJsonObject jsonObject = jsonDocument.object();
|
|
|
|
jsonObject["ClientID"] = telemetryClientID;
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
|
|
|
|
QHttpMultiPart *httpMultiPart = new QHttpMultiPart(QHttpMultiPart::FormDataType);
|
|
|
|
|
|
|
|
QHttpPart categoryPart;
|
|
|
|
categoryPart.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant("form-data; name=\"json-category\""));
|
|
|
|
categoryPart.setBody(categoryToString(category).toUtf8());
|
|
|
|
|
|
|
|
QHttpPart jsonPart;
|
|
|
|
jsonPart.setHeader(QNetworkRequest::ContentTypeHeader, QVariant("application/octet-stream"));
|
|
|
|
jsonPart.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant("form-data; name=\"json-deflated\""));
|
|
|
|
jsonPart.setBody(qCompress(jsonDocument.toJson(QJsonDocument::Compact)));
|
|
|
|
|
|
|
|
httpMultiPart->append(categoryPart);
|
|
|
|
httpMultiPart->append(jsonPart);
|
|
|
|
|
|
|
|
QNetworkAccessManager *netManager = new QNetworkAccessManager();
|
|
|
|
QNetworkRequest netRequest(TelemetryClassAuthenticator::getTrackingPushURL());
|
2018-06-24 02:25:34 +02:00
|
|
|
netRequest.setRawHeader("User-Agent", AppEnv::getUserAgent());
|
2018-01-11 08:41:00 +01:00
|
|
|
QNetworkReply *netReply = netManager->post(netRequest, httpMultiPart);
|
|
|
|
httpMultiPart->setParent(netReply);
|
|
|
|
|
|
|
|
connect(netManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(pushFinished(QNetworkReply*)));
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonDocument TelemetryClass::getOperatingSystem()
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument;
|
|
|
|
QJsonObject jsonObject;
|
|
|
|
#if QT_VERSION >= 0x050400
|
2018-06-24 02:25:34 +02:00
|
|
|
jsonObject["KernelType"] = QSysInfo::kernelType();
|
|
|
|
jsonObject["KernelVersion"] = QSysInfo::kernelVersion();
|
|
|
|
jsonObject["ProductType"] = QSysInfo::productType();
|
|
|
|
jsonObject["ProductVersion"] = QSysInfo::productVersion();
|
2018-01-11 08:41:00 +01:00
|
|
|
jsonObject["OSName"] = QSysInfo::prettyProductName();
|
|
|
|
jsonObject["OSArch"] = QSysInfo::currentCpuArchitecture();
|
|
|
|
#endif
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
return jsonDocument;
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonDocument TelemetryClass::getSystemHardware()
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument;
|
|
|
|
QJsonObject jsonObject;
|
2020-09-26 16:12:55 +02:00
|
|
|
#ifdef Q_OS_WIN
|
2018-01-11 08:41:00 +01:00
|
|
|
{
|
|
|
|
int CPUInfo[4] = {-1};
|
2018-07-13 09:06:53 +02:00
|
|
|
unsigned nExIds, ic = 0;
|
2018-01-11 08:41:00 +01:00
|
|
|
char CPUBrandString[0x40];
|
|
|
|
__cpuid(CPUInfo, 0x80000000);
|
|
|
|
nExIds = CPUInfo[0];
|
2018-07-13 09:06:53 +02:00
|
|
|
for (ic = 0x80000000; ic <= nExIds; ic++)
|
2018-01-11 08:41:00 +01:00
|
|
|
{
|
2018-07-13 09:06:53 +02:00
|
|
|
__cpuid(CPUInfo, ic);
|
|
|
|
if (ic == 0x80000002) { memcpy(CPUBrandString, CPUInfo, sizeof(CPUInfo)); }
|
|
|
|
else if (ic == 0x80000003) { memcpy(CPUBrandString + 16, CPUInfo, sizeof(CPUInfo)); }
|
|
|
|
else if (ic == 0x80000004) { memcpy(CPUBrandString + 32, CPUInfo, sizeof(CPUInfo)); }
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|
2018-06-29 09:36:25 +02:00
|
|
|
jsonObject["CPUName"] = QString::fromLatin1(CPUBrandString).simplified();
|
2018-01-11 08:41:00 +01:00
|
|
|
SYSTEM_INFO sysInfo;
|
|
|
|
GetSystemInfo(&sysInfo);
|
|
|
|
jsonObject["CPUThreads"] = QString::number(sysInfo.dwNumberOfProcessors);
|
|
|
|
MEMORYSTATUSEX statex;
|
|
|
|
statex.dwLength = sizeof(statex);
|
|
|
|
GlobalMemoryStatusEx(&statex);
|
|
|
|
jsonObject["SystemRAM"] = QString(QString::number((statex.ullTotalPhys / 1024) / 1024) % "MB");
|
2018-07-13 09:06:53 +02:00
|
|
|
QStringList gpusList;
|
|
|
|
IDirect3D9 *pD3D = Direct3DCreate9(D3D_SDK_VERSION);
|
|
|
|
int adapters = pD3D->GetAdapterCount();
|
|
|
|
for (int ia = 0; ia < adapters; ia++)
|
|
|
|
{
|
|
|
|
D3DADAPTER_IDENTIFIER9 d3dIdent;
|
|
|
|
HRESULT result = pD3D->GetAdapterIdentifier(ia, 0, &d3dIdent);
|
|
|
|
if (result == D3D_OK)
|
|
|
|
{
|
|
|
|
QString gpuAdapter = QString::fromLatin1(d3dIdent.Description);
|
|
|
|
if (!gpusList.contains(gpuAdapter)) { gpusList << gpuAdapter; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pD3D->Release();
|
|
|
|
jsonObject["GPUs"] = QJsonValue::fromVariant(gpusList);
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
QDir procDir("/proc");
|
|
|
|
if (procDir.exists())
|
|
|
|
{
|
|
|
|
QFile cpuInfo("/proc/cpuinfo");
|
|
|
|
if (cpuInfo.open(QFile::ReadOnly))
|
|
|
|
{
|
|
|
|
QByteArray cpuInfoArray = cpuInfo.readAll();
|
|
|
|
QBuffer cpuInfoBuffer(&cpuInfoArray);
|
|
|
|
if (cpuInfoBuffer.open(QBuffer::ReadOnly))
|
|
|
|
{
|
|
|
|
QByteArray toFind = "model name";
|
|
|
|
while (cpuInfoBuffer.canReadLine())
|
|
|
|
{
|
|
|
|
QByteArray cpuData = cpuInfoBuffer.readLine();
|
|
|
|
if (cpuData.left(toFind.length()) == toFind)
|
|
|
|
{
|
2018-06-29 09:36:25 +02:00
|
|
|
jsonObject["CPUName"] = QString::fromUtf8(cpuData).split(':').at(1).simplified();
|
2018-01-11 08:41:00 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int cpuThreads = 0;
|
|
|
|
toFind = "processor";
|
|
|
|
cpuInfoBuffer.seek(0);
|
|
|
|
while (cpuInfoBuffer.canReadLine())
|
|
|
|
{
|
|
|
|
QByteArray cpuData = cpuInfoBuffer.readLine();
|
|
|
|
if (cpuData.left(toFind.length()) == toFind)
|
|
|
|
{
|
|
|
|
cpuThreads++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsonObject["CPUThreads"] = QString::number(cpuThreads);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile memInfo("/proc/meminfo");
|
|
|
|
if (memInfo.open(QFile::ReadOnly))
|
|
|
|
{
|
|
|
|
QByteArray memInfoArray = memInfo.readAll();
|
|
|
|
QBuffer memInfoBuffer(&memInfoArray);
|
|
|
|
if (memInfoBuffer.open(QBuffer::ReadOnly))
|
|
|
|
{
|
|
|
|
QByteArray toFind = "MemTotal:";
|
|
|
|
while (memInfoBuffer.canReadLine())
|
|
|
|
{
|
|
|
|
QByteArray memData = memInfoBuffer.readLine();
|
|
|
|
if (memData.left(toFind.length()) == toFind)
|
|
|
|
{
|
|
|
|
QByteArray memDataVal = memData.mid(toFind.length()).trimmed();
|
|
|
|
int totalMemoryInKB = memDataVal.left(memDataVal.length() - 3).toInt();
|
|
|
|
jsonObject["SystemRAM"] = QString(QString::number(totalMemoryInKB / 1024) % "MB");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
return jsonDocument;
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonDocument TelemetryClass::getApplicationSpec()
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument;
|
|
|
|
QJsonObject jsonObject;
|
|
|
|
#if QT_VERSION >= 0x050400
|
|
|
|
jsonObject["Arch"] = QSysInfo::buildCpuArchitecture();
|
|
|
|
#endif
|
|
|
|
jsonObject["Name"] = GTA5SYNC_APPSTR;
|
2018-07-13 12:07:13 +02:00
|
|
|
#ifdef GTA5SYNC_COMMIT
|
|
|
|
jsonObject["Commit"] = GTA5SYNC_COMMIT;
|
|
|
|
#endif
|
2018-01-11 08:41:00 +01:00
|
|
|
jsonObject["Version"] = GTA5SYNC_APPVER;
|
|
|
|
jsonObject["BuildDateTime"] = AppEnv::getBuildDateTime();
|
|
|
|
jsonObject["BuildType"] = GTA5SYNC_BUILDTYPE;
|
2018-02-07 10:20:59 +01:00
|
|
|
jsonObject["BuildCode"] = AppEnv::getBuildCode();
|
2018-01-11 08:41:00 +01:00
|
|
|
jsonObject["QtVersion"] = qVersion();
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
return jsonDocument;
|
|
|
|
}
|
|
|
|
|
2018-01-16 00:13:08 +01:00
|
|
|
QJsonDocument TelemetryClass::getApplicationConf()
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument;
|
|
|
|
QJsonObject jsonObject;
|
|
|
|
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
|
|
|
|
|
|
|
settings.beginGroup("Interface");
|
|
|
|
QJsonObject interfaceObject;
|
|
|
|
interfaceObject["AreaLanguage"] = settings.value("AreaLanguage", "Auto").toString();
|
|
|
|
interfaceObject["Language"] = settings.value("Language", "System").toString();
|
|
|
|
interfaceObject["NavigationBar"] = settings.value("NavigationBar", false).toBool();
|
|
|
|
jsonObject["Interface"] = interfaceObject;
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
settings.beginGroup("Pictures");
|
|
|
|
QJsonObject picturesObject;
|
|
|
|
picturesObject["AspectRatio"] = ((Qt::AspectRatioMode)settings.value("AspectRatio").toInt() == Qt::IgnoreAspectRatio) ? "IgnoreAspectRatio" : "KeepAspectRatio";
|
|
|
|
picturesObject["CustomQuality"] = settings.value("CustomQuality", 100).toInt();
|
|
|
|
picturesObject["CustomQualityEnabled"] = settings.value("CustomQualityEnabled", false).toBool();
|
|
|
|
picturesObject["ExportSizeMode"] = settings.value("ExportSizeMode", "Default").toString();
|
|
|
|
jsonObject["Pictures"] = picturesObject;
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
settings.beginGroup("Profile");
|
|
|
|
QJsonObject profileObject;
|
|
|
|
int contentMode = settings.value("ContentMode", 0).toInt();
|
|
|
|
switch (contentMode)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
profileObject["ContentMode"] = "OpenWithSingleClick";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
profileObject["ContentMode"] = "OpenWithDoubleClick";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
profileObject["ContentMode"] = "SelectWithSingleClick";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
jsonObject["Profile"] = profileObject;
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
settings.beginGroup("Startup");
|
|
|
|
QJsonObject startupObject;
|
|
|
|
startupObject["AppStyle"] = settings.value("AppStyle", "System").toString();
|
|
|
|
startupObject["CustomStyle"] = settings.value("CustomStyle", false).toBool();
|
2018-07-28 04:55:55 +02:00
|
|
|
startupObject["StartCount"] = QString::number(settings.value("StartCount", 0).toUInt());
|
2018-01-16 00:13:08 +01:00
|
|
|
jsonObject["Startup"] = startupObject;
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
return jsonDocument;
|
|
|
|
}
|
|
|
|
|
2018-01-11 08:41:00 +01:00
|
|
|
QJsonDocument TelemetryClass::getSystemLocaleList()
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument;
|
|
|
|
QJsonObject jsonObject;
|
|
|
|
QStringList languagesList = QLocale::system().uiLanguages();
|
|
|
|
if (languagesList.length() >= 1)
|
|
|
|
{
|
|
|
|
jsonObject["PrimaryLanguage"] = languagesList.at(0);
|
|
|
|
}
|
|
|
|
if (languagesList.length() >= 2)
|
|
|
|
{
|
|
|
|
languagesList.removeAt(0);
|
|
|
|
jsonObject["SecondaryLanguages"] = QJsonValue::fromVariant(languagesList);
|
|
|
|
}
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
return jsonDocument;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TelemetryClass::categoryToString(TelemetryCategory category)
|
|
|
|
{
|
|
|
|
switch (category)
|
|
|
|
{
|
|
|
|
case TelemetryCategory::OperatingSystemSpec:
|
|
|
|
return QString("OperatingSystemSpec");
|
|
|
|
break;
|
|
|
|
case TelemetryCategory::HardwareSpec:
|
|
|
|
return QString("HardwareSpec");
|
|
|
|
break;
|
|
|
|
case TelemetryCategory::UserLocaleData:
|
|
|
|
return QString("UserLocaleData");
|
|
|
|
break;
|
2018-01-16 00:13:08 +01:00
|
|
|
case TelemetryCategory::ApplicationConf:
|
|
|
|
return QString("ApplicationConf");
|
2018-01-11 08:41:00 +01:00
|
|
|
break;
|
2018-07-28 04:55:55 +02:00
|
|
|
case TelemetryCategory::ApplicationSpec:
|
|
|
|
return QString("ApplicationSpec");
|
|
|
|
break;
|
2018-01-11 08:41:00 +01:00
|
|
|
case TelemetryCategory::UserFeedback:
|
|
|
|
return QString("UserFeedback");
|
|
|
|
break;
|
2018-07-28 04:55:55 +02:00
|
|
|
case TelemetryCategory::PersonalData:
|
|
|
|
return QString("PersonalData");
|
2018-01-11 08:41:00 +01:00
|
|
|
break;
|
|
|
|
case TelemetryCategory::CustomEmitted:
|
|
|
|
return QString("CustomEmitted");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return QString("UnknownCategory");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-16 00:13:08 +01:00
|
|
|
QUrl TelemetryClass::getWebURL()
|
|
|
|
{
|
|
|
|
return QUrl(GTA5SYNC_TELEMETRY_WEBURL);
|
|
|
|
}
|
|
|
|
|
2018-01-11 08:41:00 +01:00
|
|
|
void TelemetryClass::registerClient()
|
|
|
|
{
|
|
|
|
QNetworkAccessManager *netManager = new QNetworkAccessManager();
|
|
|
|
QNetworkRequest netRequest(TelemetryClassAuthenticator::getTrackingRegURL());
|
2018-06-24 02:25:34 +02:00
|
|
|
netRequest.setRawHeader("User-Agent", AppEnv::getUserAgent());
|
2018-01-11 08:41:00 +01:00
|
|
|
netManager->get(netRequest);
|
|
|
|
|
|
|
|
connect(netManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(registerFinished(QNetworkReply*)));
|
|
|
|
}
|
|
|
|
|
2018-01-16 00:13:08 +01:00
|
|
|
void TelemetryClass::work()
|
|
|
|
{
|
|
|
|
if (!canPush() && canRegister())
|
|
|
|
{
|
|
|
|
connect(this, SIGNAL(registered(bool)), this, SLOT(work_pd(bool)));
|
|
|
|
registerClient();
|
|
|
|
}
|
|
|
|
else if (canPush())
|
|
|
|
{
|
|
|
|
work_p(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::work_p(bool doWork)
|
|
|
|
{
|
|
|
|
if (doWork)
|
|
|
|
{
|
|
|
|
push(TelemetryCategory::ApplicationSpec);
|
|
|
|
push(TelemetryCategory::UserLocaleData);
|
|
|
|
push(TelemetryCategory::OperatingSystemSpec);
|
|
|
|
push(TelemetryCategory::HardwareSpec);
|
|
|
|
if (telemetryPushAppConf)
|
|
|
|
{
|
|
|
|
push(TelemetryCategory::ApplicationConf);
|
|
|
|
}
|
2018-07-28 04:55:55 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
push(TelemetryCategory::ApplicationConf, QJsonDocument());
|
|
|
|
}
|
2018-01-16 00:13:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::work_pd(bool doWork)
|
2018-01-11 08:41:00 +01:00
|
|
|
{
|
2018-01-16 00:13:08 +01:00
|
|
|
disconnect(this, SIGNAL(registered(bool)), this, SLOT(work_pd(bool)));
|
|
|
|
work_p(doWork);
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::pushFinished(QNetworkReply *reply)
|
|
|
|
{
|
2018-01-16 00:13:08 +01:00
|
|
|
bool isSuccessful = false;
|
|
|
|
if (reply->canReadLine())
|
|
|
|
{
|
|
|
|
QByteArray readedData = reply->readLine();
|
|
|
|
if (QString::fromUtf8(readedData).trimmed() == QString("Submit success!"))
|
|
|
|
{
|
2018-01-11 08:41:00 +01:00
|
|
|
#ifdef GTA5SYNC_DEBUG
|
2018-01-16 00:13:08 +01:00
|
|
|
qDebug() << "Telemetry" << QString("Submit success!");
|
2018-01-11 08:41:00 +01:00
|
|
|
#endif
|
2018-01-16 00:13:08 +01:00
|
|
|
isSuccessful = true;
|
|
|
|
#ifdef GTA5SYNC_DEBUG
|
|
|
|
if (reply->isReadable())
|
|
|
|
{
|
|
|
|
readedData = reply->readAll().trimmed();
|
|
|
|
if (!readedData.isEmpty()) { qDebug() << "Telemetry Push" << readedData; }
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef GTA5SYNC_DEBUG
|
|
|
|
qDebug() << "Telemetry" << QString("Submit failed!");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef GTA5SYNC_DEBUG
|
|
|
|
qDebug() << "Telemetry" << QString("Submit failed!");
|
|
|
|
#endif
|
|
|
|
}
|
2018-01-11 08:41:00 +01:00
|
|
|
reply->deleteLater();
|
|
|
|
sender()->deleteLater();
|
2018-01-16 00:13:08 +01:00
|
|
|
emit pushed(isSuccessful);
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TelemetryClass::registerFinished(QNetworkReply *reply)
|
|
|
|
{
|
2018-01-16 00:13:08 +01:00
|
|
|
bool isSuccessful = false;
|
2018-01-11 08:41:00 +01:00
|
|
|
if (reply->canReadLine())
|
|
|
|
{
|
2018-01-16 00:13:08 +01:00
|
|
|
QByteArray readedData = reply->readLine();
|
|
|
|
if (QString::fromUtf8(readedData).trimmed() == QString("Registration success!") && reply->canReadLine())
|
2018-01-11 08:41:00 +01:00
|
|
|
{
|
2018-01-26 07:48:59 +01:00
|
|
|
QDir dir;
|
|
|
|
dir.mkpath(StandardPaths::dataLocation());
|
|
|
|
dir.setPath(StandardPaths::dataLocation());
|
|
|
|
QString dirPath = dir.absolutePath();
|
|
|
|
QString regLoc = dirPath % "/.reg";
|
2018-01-16 00:13:08 +01:00
|
|
|
readedData = reply->readLine();
|
|
|
|
telemetryClientID = QString::fromUtf8(readedData).trimmed();
|
2018-01-11 08:41:00 +01:00
|
|
|
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
|
|
|
settings.beginGroup("Telemetry");
|
2018-01-26 07:48:59 +01:00
|
|
|
settings.setValue("Identification", telemetryClientID.toUtf8().toBase64());
|
2018-01-11 08:41:00 +01:00
|
|
|
settings.endGroup();
|
2018-01-26 07:48:59 +01:00
|
|
|
QFile regFile(regLoc);
|
|
|
|
if (regFile.open(QFile::WriteOnly))
|
|
|
|
{
|
|
|
|
regFile.write("\n");
|
|
|
|
regFile.flush();
|
|
|
|
}
|
|
|
|
regFile.close();
|
2018-01-11 08:41:00 +01:00
|
|
|
#ifdef GTA5SYNC_DEBUG
|
|
|
|
qDebug() << "Telemetry" << QString("Registration success!");
|
|
|
|
#endif
|
2018-01-16 00:13:08 +01:00
|
|
|
isSuccessful = true;
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef GTA5SYNC_DEBUG
|
|
|
|
qDebug() << "Telemetry" << QString("Registration failed!");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef GTA5SYNC_DEBUG
|
|
|
|
qDebug() << "Telemetry" << QString("Registration failed!");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
reply->deleteLater();
|
|
|
|
sender()->deleteLater();
|
2018-01-16 00:13:08 +01:00
|
|
|
emit registered(isSuccessful);
|
2018-01-11 08:41:00 +01:00
|
|
|
}
|