mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-30 23:50:19 -07:00
* Sort *every* file into a doxygen group. Took 7 hours 9 minutes Took 18 seconds Took 2 minutes * Lint some ingroup definitions. Took 10 minutes Took 2 seconds * Just include the groups in the Doxyfile in this commit. Took 3 minutes * Update some group comments so they link! Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
/**
|
|
* @file spoiler_background_updater.h
|
|
* @ingroup Network
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef COCKATRICE_SPOILER_DOWNLOADER_H
|
|
#define COCKATRICE_SPOILER_DOWNLOADER_H
|
|
|
|
#include <QByteArray>
|
|
#include <QLoggingCategory>
|
|
#include <QObject>
|
|
#include <QProcess>
|
|
|
|
inline Q_LOGGING_CATEGORY(SpoilerBackgroundUpdaterLog, "spoiler_background_updater");
|
|
|
|
class SpoilerBackgroundUpdater : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SpoilerBackgroundUpdater(QObject *apParent = nullptr);
|
|
inline QString getCardUpdaterBinaryName()
|
|
{
|
|
return "oracle";
|
|
};
|
|
QByteArray getHash(const QString fileName);
|
|
QByteArray getHash(QByteArray data);
|
|
static bool deleteSpoilerFile();
|
|
|
|
private slots:
|
|
void actDownloadFinishedSpoilersFile();
|
|
void actCheckIfSpoilerSeasonEnabled();
|
|
|
|
private:
|
|
bool isSpoilerDownloadEnabled;
|
|
QProcess *cardUpdateProcess;
|
|
QByteArray spoilerData;
|
|
void startSpoilerDownloadProcess(QString url, bool saveResults);
|
|
void downloadFromURL(QUrl url, bool saveResults);
|
|
bool saveDownloadedFile(QByteArray data);
|
|
|
|
signals:
|
|
void spoilersUpdatedSuccessfully();
|
|
void spoilerCheckerDone();
|
|
};
|
|
|
|
#endif // COCKATRICE_SPOILER_DOWNLOADER_H
|