2022-05-02 21:26:24 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
2022-05-13 22:18:19 +05:30
|
|
|
* Copyright (C) 2022 Lenny McLennington <lenny@sneed.church>
|
2022-05-02 21:26:24 +05:30
|
|
|
*
|
|
|
|
* 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, version 3.
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-12-07 02:54:55 +05:30
|
|
|
#pragma once
|
2022-05-02 21:26:24 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "tasks/Task.h"
|
2013-12-07 02:54:55 +05:30
|
|
|
#include <QNetworkReply>
|
2022-05-12 02:14:06 +05:30
|
|
|
#include <QString>
|
2015-10-02 03:42:53 +05:30
|
|
|
#include <QBuffer>
|
2013-12-07 02:54:55 +05:30
|
|
|
#include <memory>
|
2022-05-12 02:14:06 +05:30
|
|
|
#include <array>
|
2013-12-07 02:54:55 +05:30
|
|
|
|
2021-07-25 22:41:59 +05:30
|
|
|
class PasteUpload : public Task
|
2013-12-07 02:54:55 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-12-07 02:54:55 +05:30
|
|
|
public:
|
2022-05-13 22:18:19 +05:30
|
|
|
enum PasteType : int {
|
2022-05-12 02:14:06 +05:30
|
|
|
// 0x0.st
|
|
|
|
NullPointer,
|
|
|
|
// hastebin.com
|
|
|
|
Hastebin,
|
|
|
|
// paste.gg
|
|
|
|
PasteGG,
|
|
|
|
// mclo.gs
|
|
|
|
Mclogs,
|
|
|
|
// Helpful to get the range of valid values on the enum for input sanitisation:
|
|
|
|
First = NullPointer,
|
|
|
|
Last = Mclogs
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PasteTypeInfo {
|
|
|
|
const QString name;
|
|
|
|
const QString defaultBase;
|
|
|
|
const QString endpointPath;
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::array<PasteTypeInfo, 4> PasteTypes;
|
|
|
|
|
|
|
|
PasteUpload(QWidget *window, QString text, QString url, PasteType pasteType);
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual ~PasteUpload();
|
2018-06-29 01:04:56 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QString pasteLink()
|
|
|
|
{
|
|
|
|
return m_pasteLink;
|
|
|
|
}
|
2013-12-07 02:54:55 +05:30
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual void executeTask();
|
2013-12-07 02:54:55 +05:30
|
|
|
|
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
QWidget *m_window;
|
|
|
|
QString m_pasteLink;
|
2022-05-12 02:14:06 +05:30
|
|
|
QString m_baseUrl;
|
2022-01-19 13:14:29 +05:30
|
|
|
QString m_uploadUrl;
|
2022-05-12 02:14:06 +05:30
|
|
|
PasteType m_pasteType;
|
2022-01-19 13:14:29 +05:30
|
|
|
QByteArray m_text;
|
2018-07-15 18:21:05 +05:30
|
|
|
std::shared_ptr<QNetworkReply> m_reply;
|
2013-12-07 02:54:55 +05:30
|
|
|
public
|
|
|
|
slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void downloadError(QNetworkReply::NetworkError);
|
|
|
|
void downloadFinished();
|
2013-12-07 02:54:55 +05:30
|
|
|
};
|