2022-03-19 11:46:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-08-04 18:41:47 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-03-19 11:46:56 +00:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2013-11-11 18:59:59 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +00:00
|
|
|
* 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.
|
2013-11-11 18:59:59 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +00:00
|
|
|
* 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.
|
2013-11-11 18:59:59 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +00:00
|
|
|
* 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-11-11 18:59:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-11-18 18:58:03 +00:00
|
|
|
#include <QJsonObject>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QList>
|
2013-12-13 01:47:59 +00:00
|
|
|
#include <QMap>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QPair>
|
2021-07-26 20:44:11 +01:00
|
|
|
#include <QPixmap>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QString>
|
2013-11-14 20:32:43 +00:00
|
|
|
|
2013-11-18 18:05:35 +00:00
|
|
|
#include <memory>
|
2021-12-04 00:18:05 +00:00
|
|
|
|
2021-07-26 20:44:11 +01:00
|
|
|
#include "AccountData.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "AuthSession.h"
|
2021-11-20 15:22:22 +00:00
|
|
|
#include "QObjectPtr.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "Usable.h"
|
2013-11-14 20:32:43 +00:00
|
|
|
|
2013-12-08 16:34:45 +00:00
|
|
|
class Task;
|
2021-07-26 20:44:11 +01:00
|
|
|
class AccountTask;
|
|
|
|
class MinecraftAccount;
|
2013-11-18 18:58:03 +00:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
typedef shared_qobject_ptr<MinecraftAccount> MinecraftAccountPtr;
|
2021-07-26 20:44:11 +01:00
|
|
|
Q_DECLARE_METATYPE(MinecraftAccountPtr)
|
2013-11-18 18:58:03 +00:00
|
|
|
|
2013-11-14 20:32:43 +00:00
|
|
|
/**
|
2013-12-05 01:39:52 +00:00
|
|
|
* A profile within someone's Mojang account.
|
2013-11-14 20:32:43 +00:00
|
|
|
*
|
|
|
|
* Currently, the profile system has not been implemented by Mojang yet,
|
2022-10-18 15:37:04 +01:00
|
|
|
* but we might as well add some things for it in Prism Launcher right now so
|
2013-11-14 20:32:43 +00:00
|
|
|
* we don't have to rip the code to pieces to add it later.
|
|
|
|
*/
|
2023-08-02 17:35:35 +01:00
|
|
|
struct AccountProfile {
|
2018-07-15 13:51:05 +01:00
|
|
|
QString id;
|
|
|
|
QString name;
|
|
|
|
bool legacy;
|
2013-11-14 20:32:43 +00:00
|
|
|
};
|
|
|
|
|
2013-11-11 18:59:59 +00:00
|
|
|
/**
|
|
|
|
* Object that stores information about a certain Mojang account.
|
|
|
|
*
|
2013-12-01 01:00:42 +00:00
|
|
|
* Said information may include things such as that account's username, client token, and access
|
2013-11-11 18:59:59 +00:00
|
|
|
* token if the user chose to stay logged in.
|
|
|
|
*/
|
2023-08-02 17:35:35 +01:00
|
|
|
class MinecraftAccount : public QObject, public Usable {
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public: /* construction */
|
2018-07-15 13:51:05 +01:00
|
|
|
//! Do not copy accounts. ever.
|
2023-08-02 17:35:35 +01:00
|
|
|
explicit MinecraftAccount(const MinecraftAccount& other, QObject* parent) = delete;
|
2013-11-11 18:59:59 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
//! Default constructor
|
2023-08-02 17:35:35 +01:00
|
|
|
explicit MinecraftAccount(QObject* parent = 0);
|
2013-11-11 18:59:59 +00:00
|
|
|
|
2021-07-26 20:44:11 +01:00
|
|
|
static MinecraftAccountPtr createBlankMSA();
|
2013-11-18 18:58:03 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
static MinecraftAccountPtr createOffline(const QString& username);
|
2022-01-17 11:08:10 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
static MinecraftAccountPtr loadFromJsonV3(const QJsonObject& json);
|
2021-07-26 20:44:11 +01:00
|
|
|
|
2023-07-18 08:06:49 +01:00
|
|
|
static QUuid uuidFromUsername(QString username);
|
|
|
|
|
2021-07-26 20:44:11 +01:00
|
|
|
//! Saves a MinecraftAccount to a JSON object and returns it.
|
2018-07-15 13:51:05 +01:00
|
|
|
QJsonObject saveToJson() const;
|
2013-11-18 18:58:03 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public: /* manipulation */
|
2021-12-04 00:18:05 +00:00
|
|
|
shared_qobject_ptr<AccountTask> loginMSA();
|
2021-07-26 20:44:11 +01:00
|
|
|
|
2022-01-17 11:08:10 +00:00
|
|
|
shared_qobject_ptr<AccountTask> loginOffline();
|
|
|
|
|
2021-12-04 00:18:05 +00:00
|
|
|
shared_qobject_ptr<AccountTask> refresh();
|
|
|
|
|
|
|
|
shared_qobject_ptr<AccountTask> currentTask();
|
2013-11-11 18:59:59 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public: /* queries */
|
|
|
|
QString internalId() const { return data.internalId; }
|
2021-11-28 17:42:01 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QString accountDisplayString() const { return data.accountDisplayString(); }
|
2013-11-14 20:32:43 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QString accessToken() const { return data.accessToken(); }
|
2013-11-14 20:32:43 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QString profileId() const { return data.profileId(); }
|
2013-11-24 17:41:35 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QString profileName() const { return data.profileName(); }
|
2013-12-14 00:18:54 +00:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
bool isActive() const;
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool isMSA() const { return data.type == AccountType::MSA; }
|
2021-08-29 21:55:33 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool isOffline() const { return data.type == AccountType::Offline; }
|
2022-01-17 11:08:10 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool ownsMinecraft() const { return data.minecraftEntitlement.ownsMinecraft; }
|
2021-12-04 00:18:05 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool hasProfile() const { return data.profileId().size() != 0; }
|
2021-12-04 00:18:05 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QString typeString() const
|
|
|
|
{
|
|
|
|
switch (data.type) {
|
2021-07-26 20:44:11 +01:00
|
|
|
case AccountType::MSA: {
|
|
|
|
return "msa";
|
2023-08-02 17:35:35 +01:00
|
|
|
} break;
|
2022-01-17 11:08:10 +00:00
|
|
|
case AccountType::Offline: {
|
|
|
|
return "offline";
|
2023-08-02 17:35:35 +01:00
|
|
|
} break;
|
2021-07-26 20:44:11 +01:00
|
|
|
default: {
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap getFace() const;
|
2013-11-14 20:32:43 +00:00
|
|
|
|
2021-12-04 00:18:05 +00:00
|
|
|
//! Returns the current state of the account
|
|
|
|
AccountState accountState() const;
|
2013-11-14 20:32:43 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
AccountData* accountData() { return &data; }
|
2021-07-26 20:44:11 +01:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
bool shouldRefresh() const;
|
|
|
|
|
2021-12-04 00:18:05 +00:00
|
|
|
void fillSession(AuthSessionPtr session);
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QString lastError() const { return data.lastError(); }
|
2021-12-08 00:22:57 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
signals:
|
2018-07-15 13:51:05 +01:00
|
|
|
/**
|
|
|
|
* This signal is emitted when the account changes
|
|
|
|
*/
|
|
|
|
void changed();
|
2013-11-11 18:59:59 +00:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
void activityChanged(bool active);
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// TODO: better signalling for the various possible state changes - especially errors
|
2013-12-05 01:39:52 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected: /* variables */
|
2021-07-26 20:44:11 +01:00
|
|
|
AccountData data;
|
2013-12-05 01:39:52 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// current task we are executing here
|
2021-11-20 15:22:22 +00:00
|
|
|
shared_qobject_ptr<AccountTask> m_currentTask;
|
2013-12-05 01:39:52 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected: /* methods */
|
2018-07-15 13:51:05 +01:00
|
|
|
void incrementUses() override;
|
|
|
|
void decrementUses() override;
|
2016-11-15 01:51:22 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private slots:
|
2018-07-15 13:51:05 +01:00
|
|
|
void authSucceeded();
|
|
|
|
void authFailed(QString reason);
|
2013-11-11 18:59:59 +00:00
|
|
|
};
|