* remove dependency on deprecated qt5 libraries for qt6 removes the use of qt6-5compat for builds replaces use of QRegExp with QRegularExpression fixes incorrect usage of QRegExp removes use of QTextCodec fixes incorrect usage of QTextCodec sets qtlinguist as a required component for qt6 * fix anchoredPattern not existing in qt 5.11
92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
#include "deckstats_interface.h"
|
|
|
|
#include "decklist.h"
|
|
|
|
#include <QDesktopServices>
|
|
#include <QMessageBox>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QNetworkRequest>
|
|
#include <QRegularExpression>
|
|
#include <QUrlQuery>
|
|
|
|
DeckStatsInterface::DeckStatsInterface(CardDatabase &_cardDatabase, QObject *parent)
|
|
: QObject(parent), cardDatabase(_cardDatabase)
|
|
{
|
|
manager = new QNetworkAccessManager(this);
|
|
connect(manager, SIGNAL(finished(QNetworkReply *)), this, SLOT(queryFinished(QNetworkReply *)));
|
|
}
|
|
|
|
void DeckStatsInterface::queryFinished(QNetworkReply *reply)
|
|
{
|
|
if (reply->error() != QNetworkReply::NoError) {
|
|
QMessageBox::critical(nullptr, tr("Error"), reply->errorString());
|
|
reply->deleteLater();
|
|
deleteLater();
|
|
return;
|
|
}
|
|
|
|
QString data(reply->readAll());
|
|
reply->deleteLater();
|
|
|
|
static const QRegularExpression rx("<meta property=\"og:url\" content=\"([^\"]+)\"");
|
|
auto match = rx.match(data);
|
|
if (!match.hasMatch()) {
|
|
QMessageBox::critical(nullptr, tr("Error"), tr("The reply from the server could not be parsed."));
|
|
deleteLater();
|
|
return;
|
|
}
|
|
|
|
QString deckUrl = match.captured(1);
|
|
QDesktopServices::openUrl(deckUrl);
|
|
|
|
deleteLater();
|
|
}
|
|
|
|
void DeckStatsInterface::getAnalyzeRequestData(DeckList *deck, QByteArray *data)
|
|
{
|
|
DeckList deckWithoutTokens;
|
|
copyDeckWithoutTokens(*deck, deckWithoutTokens);
|
|
|
|
QUrl params;
|
|
QUrlQuery urlQuery;
|
|
urlQuery.addQueryItem("deck", deckWithoutTokens.writeToString_Plain());
|
|
urlQuery.addQueryItem("decktitle", deck->getName());
|
|
params.setQuery(urlQuery);
|
|
data->append(params.query(QUrl::EncodeReserved).toUtf8());
|
|
}
|
|
|
|
void DeckStatsInterface::analyzeDeck(DeckList *deck)
|
|
{
|
|
QByteArray data;
|
|
getAnalyzeRequestData(deck, &data);
|
|
|
|
QNetworkRequest request(QUrl("https://deckstats.net/index.php"));
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
|
|
|
manager->post(request, data);
|
|
}
|
|
|
|
struct CopyIfNotAToken
|
|
{
|
|
CardDatabase &cardDatabase;
|
|
DeckList &destination;
|
|
|
|
CopyIfNotAToken(CardDatabase &_cardDatabase, DeckList &_destination)
|
|
: cardDatabase(_cardDatabase), destination(_destination){};
|
|
|
|
void operator()(const InnerDecklistNode *node, const DecklistCardNode *card) const
|
|
{
|
|
CardInfoPtr dbCard = cardDatabase.getCard(card->getName());
|
|
if (dbCard && !dbCard->getIsToken()) {
|
|
DecklistCardNode *addedCard = destination.addCard(card->getName(), node->getName());
|
|
addedCard->setNumber(card->getNumber());
|
|
}
|
|
}
|
|
};
|
|
|
|
void DeckStatsInterface::copyDeckWithoutTokens(const DeckList &source, DeckList &destination)
|
|
{
|
|
CopyIfNotAToken copyIfNotAToken(cardDatabase, destination);
|
|
source.forEachCard(copyIfNotAToken);
|
|
}
|