2022-03-19 17:16:56 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2022-03-21 00:31:08 +05:30
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2022-05-12 02:14:06 +05:30
|
|
|
* Copyright (c) 2022 Lenny McLennington <lenny@sneed.church>
|
2015-10-02 03:42:53 +05:30
|
|
|
*
|
2022-03-19 17:16:56 +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.
|
2015-10-02 03:42:53 +05:30
|
|
|
*
|
2022-03-19 17:16:56 +05:30
|
|
|
* 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.
|
2015-10-02 03:42:53 +05:30
|
|
|
*
|
2022-03-19 17:16:56 +05:30
|
|
|
* 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.
|
2015-10-02 03:42:53 +05:30
|
|
|
*/
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
#include "APIPage.h"
|
|
|
|
#include "ui_APIPage.h"
|
2015-10-02 03:42:53 +05:30
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QFileDialog>
|
2022-05-31 23:18:41 +05:30
|
|
|
#include <QRegularExpression>
|
2015-10-02 03:42:53 +05:30
|
|
|
#include <QStandardPaths>
|
2018-06-01 19:50:33 +05:30
|
|
|
#include <QTabBar>
|
2022-05-31 23:18:41 +05:30
|
|
|
#include <QValidator>
|
2022-01-19 13:14:29 +05:30
|
|
|
#include <QVariant>
|
2015-10-02 03:42:53 +05:30
|
|
|
|
|
|
|
#include "settings/SettingsObject.h"
|
|
|
|
#include "tools/BaseProfiler.h"
|
2021-11-20 20:52:22 +05:30
|
|
|
#include "Application.h"
|
2022-05-12 02:14:06 +05:30
|
|
|
#include "net/PasteUpload.h"
|
2022-05-25 09:16:15 +05:30
|
|
|
#include "BuildConfig.h"
|
2015-10-02 03:42:53 +05:30
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
APIPage::APIPage(QWidget *parent) :
|
2018-07-15 18:21:05 +05:30
|
|
|
QWidget(parent),
|
2022-02-13 00:38:50 +05:30
|
|
|
ui(new Ui::APIPage)
|
2015-10-02 03:42:53 +05:30
|
|
|
{
|
2022-05-13 22:18:19 +05:30
|
|
|
// This is here so you can reorder the entries in the combobox without messing stuff up
|
|
|
|
int comboBoxEntries[] = {
|
2022-05-12 02:14:06 +05:30
|
|
|
PasteUpload::PasteType::Mclogs,
|
|
|
|
PasteUpload::PasteType::NullPointer,
|
|
|
|
PasteUpload::PasteType::PasteGG,
|
|
|
|
PasteUpload::PasteType::Hastebin
|
|
|
|
};
|
|
|
|
|
2022-01-26 06:01:08 +05:30
|
|
|
static QRegularExpression validUrlRegExp("https?://.+");
|
2022-05-31 23:18:41 +05:30
|
|
|
static QRegularExpression validMSAClientID(QRegularExpression::anchoredPattern(
|
|
|
|
"[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}"));
|
|
|
|
static QRegularExpression validFlameKey(QRegularExpression::anchoredPattern(
|
|
|
|
"\\$2[ayb]\\$.{56}"));
|
2022-05-12 02:14:06 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->setupUi(this);
|
2022-05-12 02:14:06 +05:30
|
|
|
|
|
|
|
for (auto pasteType : comboBoxEntries) {
|
|
|
|
ui->pasteTypeComboBox->addItem(PasteUpload::PasteTypes.at(pasteType).name, pasteType);
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:18:19 +05:30
|
|
|
void (QComboBox::*currentIndexChangedSignal)(int) (&QComboBox::currentIndexChanged);
|
|
|
|
connect(ui->pasteTypeComboBox, currentIndexChangedSignal, this, &APIPage::updateBaseURLPlaceholder);
|
2022-05-12 02:14:06 +05:30
|
|
|
// This function needs to be called even when the ComboBox's index is still in its default state.
|
|
|
|
updateBaseURLPlaceholder(ui->pasteTypeComboBox->currentIndex());
|
|
|
|
ui->baseURLEntry->setValidator(new QRegularExpressionValidator(validUrlRegExp, ui->baseURLEntry));
|
2022-05-31 23:18:41 +05:30
|
|
|
ui->msaClientID->setValidator(new QRegularExpressionValidator(validMSAClientID, ui->msaClientID));
|
|
|
|
ui->flameKey->setValidator(new QRegularExpressionValidator(validFlameKey, ui->flameKey));
|
2022-05-12 02:14:06 +05:30
|
|
|
|
2022-05-25 09:16:15 +05:30
|
|
|
ui->metaURL->setPlaceholderText(BuildConfig.META_URL);
|
2022-06-04 13:03:17 +05:30
|
|
|
ui->userAgentLineEdit->setPlaceholderText(BuildConfig.USER_AGENT);
|
2022-05-25 09:16:15 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
loadSettings();
|
2022-05-13 22:18:19 +05:30
|
|
|
|
|
|
|
resetBaseURLNote();
|
|
|
|
connect(ui->pasteTypeComboBox, currentIndexChangedSignal, this, &APIPage::updateBaseURLNote);
|
|
|
|
connect(ui->baseURLEntry, &QLineEdit::textEdited, this, &APIPage::resetBaseURLNote);
|
2015-10-02 03:42:53 +05:30
|
|
|
}
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
APIPage::~APIPage()
|
2015-10-02 03:42:53 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
delete ui;
|
2015-10-02 03:42:53 +05:30
|
|
|
}
|
|
|
|
|
2022-05-13 22:18:19 +05:30
|
|
|
void APIPage::resetBaseURLNote()
|
|
|
|
{
|
|
|
|
ui->baseURLNote->hide();
|
|
|
|
baseURLPasteType = ui->pasteTypeComboBox->currentIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
void APIPage::updateBaseURLNote(int index)
|
|
|
|
{
|
|
|
|
if (baseURLPasteType == index)
|
|
|
|
{
|
|
|
|
ui->baseURLNote->hide();
|
|
|
|
}
|
|
|
|
else if (!ui->baseURLEntry->text().isEmpty())
|
|
|
|
{
|
|
|
|
ui->baseURLNote->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-12 02:14:06 +05:30
|
|
|
void APIPage::updateBaseURLPlaceholder(int index)
|
|
|
|
{
|
2022-05-13 22:18:19 +05:30
|
|
|
int pasteType = ui->pasteTypeComboBox->itemData(index).toInt();
|
|
|
|
QString pasteDefaultURL = PasteUpload::PasteTypes.at(pasteType).defaultBase;
|
|
|
|
ui->baseURLEntry->setPlaceholderText(pasteDefaultURL);
|
2022-05-12 02:14:06 +05:30
|
|
|
}
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
void APIPage::loadSettings()
|
2015-10-02 03:42:53 +05:30
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
auto s = APPLICATION->settings();
|
2022-05-12 02:14:06 +05:30
|
|
|
|
2022-05-13 22:18:19 +05:30
|
|
|
int pasteType = s->get("PastebinType").toInt();
|
2022-05-12 02:14:06 +05:30
|
|
|
QString pastebinURL = s->get("PastebinCustomAPIBase").toString();
|
|
|
|
|
|
|
|
ui->baseURLEntry->setText(pastebinURL);
|
|
|
|
int pasteTypeIndex = ui->pasteTypeComboBox->findData(pasteType);
|
|
|
|
if (pasteTypeIndex == -1)
|
|
|
|
{
|
|
|
|
pasteTypeIndex = ui->pasteTypeComboBox->findData(PasteUpload::PasteType::Mclogs);
|
|
|
|
ui->baseURLEntry->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->pasteTypeComboBox->setCurrentIndex(pasteTypeIndex);
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
QString msaClientID = s->get("MSAClientIDOverride").toString();
|
|
|
|
ui->msaClientID->setText(msaClientID);
|
2022-04-14 02:30:32 +05:30
|
|
|
QString metaURL = s->get("MetaURLOverride").toString();
|
|
|
|
ui->metaURL->setText(metaURL);
|
2022-05-30 00:59:07 +05:30
|
|
|
QString flameKey = s->get("FlameKeyOverride").toString();
|
|
|
|
ui->flameKey->setText(flameKey);
|
2022-06-04 13:03:17 +05:30
|
|
|
QString customUserAgent = s->get("UserAgentOverride").toString();
|
|
|
|
ui->userAgentLineEdit->setText(customUserAgent);
|
2015-10-02 03:42:53 +05:30
|
|
|
}
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
void APIPage::applySettings()
|
2015-10-02 03:42:53 +05:30
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
auto s = APPLICATION->settings();
|
2022-05-12 02:14:06 +05:30
|
|
|
|
2022-05-13 22:18:19 +05:30
|
|
|
s->set("PastebinType", ui->pasteTypeComboBox->currentData().toInt());
|
2022-05-12 02:14:06 +05:30
|
|
|
s->set("PastebinCustomAPIBase", ui->baseURLEntry->text());
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
QString msaClientID = ui->msaClientID->text();
|
|
|
|
s->set("MSAClientIDOverride", msaClientID);
|
2022-04-14 02:30:32 +05:30
|
|
|
QUrl metaURL = ui->metaURL->text();
|
2022-05-22 17:25:19 +05:30
|
|
|
// Add required trailing slash
|
|
|
|
if (!metaURL.isEmpty() && !metaURL.path().endsWith('/'))
|
|
|
|
{
|
|
|
|
QString path = metaURL.path();
|
|
|
|
path.append('/');
|
|
|
|
metaURL.setPath(path);
|
|
|
|
}
|
2022-04-14 02:30:32 +05:30
|
|
|
// Don't allow HTTP, since meta is basically RCE with all the jar files.
|
|
|
|
if(!metaURL.isEmpty() && metaURL.scheme() == "http")
|
|
|
|
{
|
|
|
|
metaURL.setScheme("https");
|
|
|
|
}
|
|
|
|
|
|
|
|
s->set("MetaURLOverride", metaURL);
|
2022-05-30 00:59:07 +05:30
|
|
|
QString flameKey = ui->flameKey->text();
|
|
|
|
s->set("FlameKeyOverride", flameKey);
|
2022-06-04 13:03:17 +05:30
|
|
|
s->set("UserAgentOverride", ui->userAgentLineEdit->text());
|
2015-10-02 03:42:53 +05:30
|
|
|
}
|
|
|
|
|
2022-02-13 00:38:50 +05:30
|
|
|
bool APIPage::apply()
|
2015-10-02 03:42:53 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
applySettings();
|
|
|
|
return true;
|
2015-10-02 03:42:53 +05:30
|
|
|
}
|
2022-02-22 23:53:53 +05:30
|
|
|
|
|
|
|
void APIPage::retranslate()
|
|
|
|
{
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|