-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use PolyMC's CurseForge workaround (#47)
* Curseforge workarounds This should allow people to use Curseforge without having to manually paste a working key into the settings or change the user agent. Signed-off-by: Lenny McLennington <[email protected]> * chore: update cf api key api url Sascha says the domain name we're using is not gonna be renewed, so I'm switching it to a domain controlled by me instead so that this won't be a problem in the future. Signed-off-by: Lenny McLennington <[email protected]> * feat: add ability to disable cf api key fetching by setting the cf api key api url to a blank string Signed-off-by: Lenny McLennington <[email protected]> * don't ask before fetching key * change polymc mention to pollymc Signed-off-by: Lenny McLennington <[email protected]> Co-authored-by: Lenny McLennington <[email protected]>
- Loading branch information
1 parent
3e8881e
commit 689a653
Showing
14 changed files
with
229 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
/* | ||
* PolyMC - Minecraft Launcher | ||
* Copyright (C) 2022 Sefa Eyeoglu <[email protected]> | ||
* Copyright (C) 2022 Lenny McLennington <[email protected]> | ||
* | ||
* 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 | ||
|
@@ -105,6 +106,7 @@ Config::Config() | |
IMGUR_CLIENT_ID = "@Launcher_IMGUR_CLIENT_ID@"; | ||
MSA_CLIENT_ID = "@Launcher_MSA_CLIENT_ID@"; | ||
FLAME_API_KEY = "@Launcher_CURSEFORGE_API_KEY@"; | ||
FLAME_API_KEY_API_URL = "@Launcher_CURSEFORGE_API_KEY_API_URL@"; | ||
META_URL = "@Launcher_META_URL@"; | ||
|
||
BUG_TRACKER_URL = "@Launcher_BUG_TRACKER_URL@"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
* PolyMC - Minecraft Launcher | ||
* Copyright (c) 2022 Jamie Mansfield <[email protected]> | ||
* Copyright (C) 2022 Sefa Eyeoglu <[email protected]> | ||
* Copyright (C) 2022 Lenny McLennington <[email protected]> | ||
* | ||
* 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 | ||
|
@@ -127,6 +128,11 @@ class Config { | |
*/ | ||
QString FLAME_API_KEY; | ||
|
||
/** | ||
* URL to fetch the Client API key for CurseForge from | ||
*/ | ||
QString FLAME_API_KEY_API_URL; | ||
|
||
/** | ||
* Metadata repository URL prefix | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// SPDX-License-Identifier: GPL-3.0-only | ||
/* | ||
* PolyMC - Minecraft Launcher | ||
* Copyright (C) 2022 Lenny McLennington <[email protected]> | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#include "FetchFlameAPIKey.h" | ||
#include "Application.h" | ||
#include <BuildConfig.h> | ||
#include <Json.h> | ||
|
||
#include <ui/dialogs/ProgressDialog.h> | ||
#include <ui/dialogs/CustomMessageBox.h> | ||
|
||
FetchFlameAPIKey::FetchFlameAPIKey(QObject *parent) | ||
: Task{parent} | ||
{ | ||
|
||
} | ||
|
||
void FetchFlameAPIKey::executeTask() | ||
{ | ||
QNetworkRequest req(BuildConfig.FLAME_API_KEY_API_URL); | ||
m_reply.reset(APPLICATION->network()->get(req)); | ||
connect(m_reply.get(), &QNetworkReply::downloadProgress, this, &Task::setProgress); | ||
connect(m_reply.get(), &QNetworkReply::finished, this, &FetchFlameAPIKey::downloadFinished); | ||
connect(m_reply.get(), | ||
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) | ||
&QNetworkReply::errorOccurred, | ||
#else | ||
qOverload<QNetworkReply::NetworkError>(&QNetworkReply::error), | ||
#endif | ||
this, | ||
[this] (QNetworkReply::NetworkError error) { | ||
qCritical() << "Network error: " << error; | ||
emitFailed(m_reply->errorString()); | ||
}); | ||
|
||
setStatus(tr("Fetching Curseforge core API key")); | ||
} | ||
|
||
void FetchFlameAPIKey::downloadFinished() | ||
{ | ||
auto res = m_reply->readAll(); | ||
auto doc = QJsonDocument::fromJson(res); | ||
|
||
qDebug() << doc; | ||
|
||
try { | ||
auto obj = Json::requireObject(doc); | ||
|
||
auto success = Json::requireBoolean(obj, "ok"); | ||
|
||
if (success) | ||
{ | ||
m_result = Json::requireString(obj, "token"); | ||
emitSucceeded(); | ||
} | ||
else | ||
{ | ||
emitFailed("The API returned an output indicating failure."); | ||
} | ||
} | ||
catch (Json::JsonException&) | ||
{ | ||
qCritical() << "Output: " << res; | ||
emitFailed("The API returned an unexpected JSON output."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// SPDX-License-Identifier: GPL-3.0-only | ||
/* | ||
* PolyMC - Minecraft Launcher | ||
* Copyright (C) 2022 Lenny McLennington <[email protected]> | ||
* | ||
* 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/>. | ||
*/ | ||
|
||
#ifndef FETCHFLAMEAPIKEY_H | ||
#define FETCHFLAMEAPIKEY_H | ||
|
||
#include <QObject> | ||
#include <QNetworkReply> | ||
#include <tasks/Task.h> | ||
|
||
class FetchFlameAPIKey : public Task | ||
{ | ||
Q_OBJECT | ||
public: | ||
explicit FetchFlameAPIKey(QObject *parent = nullptr); | ||
|
||
QString m_result; | ||
|
||
public slots: | ||
void downloadFinished(); | ||
|
||
protected: | ||
virtual void executeTask(); | ||
|
||
|
||
std::shared_ptr<QNetworkReply> m_reply; | ||
}; | ||
|
||
#endif // FETCHFLAMEAPIKEY_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters