2013-12-07 02:54:55 +05:30
|
|
|
#pragma once
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "tasks/Task.h"
|
2013-12-07 02:54:55 +05:30
|
|
|
#include <QNetworkReply>
|
2015-10-02 03:42:53 +05:30
|
|
|
#include <QBuffer>
|
2013-12-07 02:54:55 +05:30
|
|
|
#include <memory>
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT PasteUpload : public Task
|
2013-12-07 02:54:55 +05:30
|
|
|
{
|
2013-12-07 03:43:09 +05:30
|
|
|
Q_OBJECT
|
2013-12-07 02:54:55 +05:30
|
|
|
public:
|
2015-10-02 03:42:53 +05:30
|
|
|
PasteUpload(QWidget *window, QString text, QString key = "public");
|
|
|
|
virtual ~PasteUpload();
|
2014-07-07 03:32:04 +05:30
|
|
|
QString pasteLink()
|
|
|
|
{
|
|
|
|
return m_pasteLink;
|
|
|
|
}
|
|
|
|
QString pasteID()
|
|
|
|
{
|
|
|
|
return m_pasteID;
|
|
|
|
}
|
2017-05-21 23:50:37 +05:30
|
|
|
int maxSize()
|
2015-01-11 07:38:41 +05:30
|
|
|
{
|
2015-10-02 03:42:53 +05:30
|
|
|
// 2MB for paste.ee - public
|
|
|
|
if(m_key == "public")
|
|
|
|
return 1024*1024*2;
|
|
|
|
// 12MB for paste.ee - with actual key
|
|
|
|
return 1024*1024*12;
|
2015-01-11 07:38:41 +05:30
|
|
|
}
|
|
|
|
bool validateText();
|
2013-12-07 02:54:55 +05:30
|
|
|
protected:
|
|
|
|
virtual void executeTask();
|
|
|
|
|
|
|
|
private:
|
2014-03-07 20:45:38 +05:30
|
|
|
bool parseResult(QJsonDocument doc);
|
2013-12-07 02:54:55 +05:30
|
|
|
QString m_error;
|
|
|
|
QWidget *m_window;
|
2014-07-07 03:32:04 +05:30
|
|
|
QString m_pasteID;
|
|
|
|
QString m_pasteLink;
|
2015-10-02 03:42:53 +05:30
|
|
|
QString m_key;
|
2017-10-10 02:20:15 +05:30
|
|
|
QByteArray m_jsonContent;
|
2013-12-07 02:54:55 +05:30
|
|
|
std::shared_ptr<QNetworkReply> m_reply;
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void downloadError(QNetworkReply::NetworkError);
|
|
|
|
void downloadFinished();
|
|
|
|
};
|