ShatteredPrism/launcher/CreateAuthlibInjectorAccount.h
Evan Goode 7dbaa896a6 Merge tag '9.0' into develop
This is an intermediate/halfway commit, more refactoring is needed to
get this to build.
2024-10-25 15:34:57 -04:00

44 lines
1.4 KiB
C++

// SPDX-License-Identifier: GPL-3.0-only
/*
* Prism Launcher - Minecraft Launcher
* Copyright (C) 2023 Evan Goode <mail@evangoo.de>
*
* 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/>.
*/
#pragma once
#include "minecraft/auth/MinecraftAccount.h"
#include "net/NetRequest.h"
class CreateAuthlibInjectorAccount : public Net::NetRequest {
Q_OBJECT
public:
using Ptr = shared_qobject_ptr<CreateAuthlibInjectorAccount>;
CreateAuthlibInjectorAccount(QUrl url, MinecraftAccountPtr account, QString username);
virtual ~CreateAuthlibInjectorAccount() = default;
static CreateAuthlibInjectorAccount::Ptr make(QUrl url, MinecraftAccountPtr account, QString username);
MinecraftAccountPtr getAccount();
protected slots:
virtual QNetworkReply* getReply(QNetworkRequest&) override;
void downloadFinished();
private:
QUrl m_url;
MinecraftAccountPtr m_account;
QString m_username;
};