2016-03-22 05:20:42 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
2016-03-27 09:52:23 +02:00
|
|
|
* Copyright (C) 2016 Syping
|
2016-03-22 05:20:42 +01:00
|
|
|
*
|
|
|
|
* 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 "DatabaseThread.h"
|
|
|
|
#include "CrewDatabase.h"
|
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkRequest>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QVariantMap>
|
|
|
|
#include <QEventLoop>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
DatabaseThread::DatabaseThread(CrewDatabase *crewDB, QObject *parent) : QThread(parent), crewDB(crewDB)
|
|
|
|
{
|
2016-03-23 07:45:30 +01:00
|
|
|
crewMaxPages = 83;
|
2016-03-22 05:20:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseThread::run()
|
|
|
|
{
|
|
|
|
QEventLoop threadLoop;
|
2016-03-27 11:21:53 +02:00
|
|
|
QStringList crewList;
|
2016-03-23 07:45:30 +01:00
|
|
|
|
|
|
|
// Quick time scan
|
|
|
|
if (crewList.length() <= 3)
|
|
|
|
{
|
2016-03-27 11:19:49 +02:00
|
|
|
scanCrewMembersList(crewList, 3, 1000);
|
2016-03-23 07:45:30 +01:00
|
|
|
emit playerNameUpdated();
|
|
|
|
}
|
|
|
|
else if (crewList.length() <= 5)
|
2016-03-22 05:20:42 +01:00
|
|
|
{
|
2016-03-27 11:19:49 +02:00
|
|
|
scanCrewMembersList(crewList, 2, 1000);
|
2016-03-23 07:45:30 +01:00
|
|
|
emit playerNameUpdated();
|
|
|
|
}
|
|
|
|
|
|
|
|
QEventLoop waitingLoop;
|
2016-03-27 11:19:49 +02:00
|
|
|
QTimer::singleShot(10000, &waitingLoop, SLOT(quit()));
|
2016-03-23 07:45:30 +01:00
|
|
|
waitingLoop.exec();
|
|
|
|
|
2016-03-27 11:21:53 +02:00
|
|
|
dbtBegin:
|
|
|
|
crewList = crewDB->getCrews();
|
|
|
|
|
2016-03-23 07:45:30 +01:00
|
|
|
// Long time scan
|
|
|
|
scanCrewMembersList(crewList, crewMaxPages, 10000);
|
|
|
|
emit playerNameUpdated();
|
2016-03-22 05:20:42 +01:00
|
|
|
|
2016-03-23 07:45:30 +01:00
|
|
|
QTimer::singleShot(300000, &threadLoop, SLOT(quit()));
|
|
|
|
threadLoop.exec();
|
|
|
|
goto dbtBegin;
|
|
|
|
}
|
2016-03-22 05:20:42 +01:00
|
|
|
|
2016-03-23 07:45:30 +01:00
|
|
|
void DatabaseThread::scanCrewMembersList(QStringList crewList, int maxPages, int requestDelay)
|
|
|
|
{
|
|
|
|
foreach (const QString &crewID, crewList)
|
|
|
|
{
|
2016-03-22 05:20:42 +01:00
|
|
|
|
2016-03-23 07:45:30 +01:00
|
|
|
int currentPage = 0;
|
|
|
|
int foundPlayers = 0;
|
|
|
|
int totalPlayers = 1000;
|
2016-03-22 05:20:42 +01:00
|
|
|
|
2016-03-23 07:45:30 +01:00
|
|
|
while(foundPlayers < totalPlayers && currentPage < maxPages)
|
2016-03-22 05:20:42 +01:00
|
|
|
{
|
2016-03-23 07:45:30 +01:00
|
|
|
QNetworkAccessManager *netManager = new QNetworkAccessManager();
|
|
|
|
|
|
|
|
QString memberListUrl = "http://socialclub.rockstargames.com/crewsapi/GetMembersList?crewId=" + crewID + "&pageNumber=" + QString::number(currentPage);
|
|
|
|
|
|
|
|
QNetworkRequest netRequest(memberListUrl);
|
|
|
|
netRequest.setRawHeader("User-Agent", "Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 gta5sync/1.0");
|
|
|
|
netRequest.setRawHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
|
|
|
|
netRequest.setRawHeader("Accept-Language", "en-US;q=0.5,en;q=0.3");
|
|
|
|
netRequest.setRawHeader("Connection", "keep-alive");
|
|
|
|
|
|
|
|
QNetworkReply *netReply = netManager->get(netRequest);
|
|
|
|
|
|
|
|
QEventLoop downloadLoop;
|
|
|
|
QObject::connect(netReply, SIGNAL(finished()), &downloadLoop, SLOT(quit()));
|
|
|
|
QTimer::singleShot(30000, &downloadLoop, SLOT(quit()));
|
|
|
|
downloadLoop.exec();
|
|
|
|
|
|
|
|
if (netReply->isFinished())
|
2016-03-22 05:20:42 +01:00
|
|
|
{
|
2016-03-23 07:45:30 +01:00
|
|
|
QByteArray crewJson = netReply->readAll();
|
|
|
|
QJsonDocument crewDocument = QJsonDocument::fromJson(crewJson);
|
|
|
|
QJsonObject crewObject = crewDocument.object();
|
|
|
|
QVariantMap crewMap = crewObject.toVariantMap();
|
|
|
|
|
|
|
|
if (crewMap.contains("Total")) { totalPlayers = crewMap["Total"].toInt(); }
|
|
|
|
|
|
|
|
if (crewMap.contains("Members"))
|
2016-03-22 05:20:42 +01:00
|
|
|
{
|
2016-03-23 07:45:30 +01:00
|
|
|
QList<QVariant> memberList = crewMap["Members"].toList();
|
|
|
|
foreach (const QVariant &memberVariant, memberList)
|
2016-03-22 05:20:42 +01:00
|
|
|
{
|
2016-03-23 07:45:30 +01:00
|
|
|
QMap<QString, QVariant> memberMap = memberVariant.toMap();
|
|
|
|
foundPlayers++;
|
|
|
|
if (memberMap.contains("RockstarId") && memberMap.contains("Name"))
|
2016-03-22 05:20:42 +01:00
|
|
|
{
|
2016-03-23 07:45:30 +01:00
|
|
|
int RockstarId = memberMap["RockstarId"].toInt();
|
|
|
|
QString memberName = memberMap["Name"].toString();
|
|
|
|
if (memberName != "" && RockstarId != 0)
|
|
|
|
{
|
|
|
|
emit playerNameFound(RockstarId, memberName);
|
|
|
|
}
|
2016-03-22 05:20:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-23 07:45:30 +01:00
|
|
|
|
|
|
|
QEventLoop waitingLoop;
|
|
|
|
QTimer::singleShot(requestDelay, &waitingLoop, SLOT(quit()));
|
|
|
|
waitingLoop.exec();
|
|
|
|
|
|
|
|
currentPage++;
|
2016-03-22 05:20:42 +01:00
|
|
|
}
|
2016-04-01 23:01:26 +02:00
|
|
|
|
|
|
|
netReply->deleteLater();
|
|
|
|
delete netReply;
|
|
|
|
netManager->deleteLater();
|
|
|
|
delete netManager;
|
2016-03-22 05:20:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|