PrismLauncher/logic/net/PasteUpload.h

52 lines
994 B
C
Raw Normal View History

#pragma once
2015-02-09 00:51:14 +00:00
#include "tasks/Task.h"
#include <QMessageBox>
#include <QNetworkReply>
2015-10-01 23:12:53 +01:00
#include <QBuffer>
#include <memory>
#include "multimc_logic_export.h"
class MULTIMC_LOGIC_EXPORT PasteUpload : public Task
{
2013-12-06 22:13:09 +00:00
Q_OBJECT
public:
2015-10-01 23:12:53 +01:00
PasteUpload(QWidget *window, QString text, QString key = "public");
virtual ~PasteUpload();
QString pasteLink()
{
return m_pasteLink;
}
QString pasteID()
{
return m_pasteID;
}
uint32_t maxSize()
{
2015-10-01 23:12:53 +01:00
// 2MB for paste.ee - public
if(m_key == "public")
return 1024*1024*2;
// 12MB for paste.ee - with actual key
return 1024*1024*12;
}
bool validateText();
protected:
virtual void executeTask();
private:
bool parseResult(QJsonDocument doc);
QByteArray m_text;
QString m_error;
QWidget *m_window;
QString m_pasteID;
QString m_pasteLink;
2015-10-01 23:12:53 +01:00
QString m_key;
int m_textSize = 0;
QBuffer * buf = nullptr;
std::shared_ptr<QNetworkReply> m_reply;
public
slots:
void downloadError(QNetworkReply::NetworkError);
void downloadFinished();
};