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>
|
2021-07-27 01:14:11 +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.
|
2021-07-27 01:14:11 +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.
|
2021-07-27 01:14:11 +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.
|
2021-07-27 01:14:11 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "MinecraftAccount.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* List of available Mojang accounts.
|
2022-01-10 23:16:43 +05:30
|
|
|
* This should be loaded in the background by PolyMC on startup.
|
2021-07-27 01:14:11 +05:30
|
|
|
*/
|
|
|
|
class AccountList : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum ModelRoles
|
|
|
|
{
|
|
|
|
PointerRole = 0x34B1CB48
|
|
|
|
};
|
|
|
|
|
|
|
|
enum VListColumns
|
|
|
|
{
|
|
|
|
// TODO: Add icon column.
|
|
|
|
NameColumn = 0,
|
|
|
|
ProfileNameColumn,
|
2021-08-30 02:25:33 +05:30
|
|
|
MigrationColumn,
|
2021-07-27 01:14:11 +05:30
|
|
|
TypeColumn,
|
2021-11-20 20:52:22 +05:30
|
|
|
StatusColumn,
|
2021-07-27 01:14:11 +05:30
|
|
|
|
|
|
|
NUM_COLUMNS
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit AccountList(QObject *parent = 0);
|
2021-11-20 20:52:22 +05:30
|
|
|
virtual ~AccountList() noexcept;
|
2021-07-27 01:14:11 +05:30
|
|
|
|
|
|
|
const MinecraftAccountPtr at(int i) const;
|
|
|
|
int count() const;
|
|
|
|
|
|
|
|
//////// List Model Functions ////////
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
virtual int rowCount(const QModelIndex &parent) const override;
|
|
|
|
virtual int columnCount(const QModelIndex &parent) const override;
|
|
|
|
virtual Qt::ItemFlags flags(const QModelIndex &index) const override;
|
|
|
|
virtual bool setData(const QModelIndex &index, const QVariant &value, int role) override;
|
|
|
|
|
|
|
|
void addAccount(const MinecraftAccountPtr account);
|
|
|
|
void removeAccount(QModelIndex index);
|
|
|
|
int findAccountByProfileId(const QString &profileId) const;
|
2021-11-01 02:12:06 +05:30
|
|
|
MinecraftAccountPtr getAccountByProfileName(const QString &profileName) const;
|
2021-11-20 20:52:22 +05:30
|
|
|
QStringList profileNames() const;
|
2021-07-27 01:14:11 +05:30
|
|
|
|
2021-12-04 06:40:14 +05:30
|
|
|
// requesting a refresh pushes it to the front of the queue
|
2021-12-04 05:48:05 +05:30
|
|
|
void requestRefresh(QString accountId);
|
2021-12-04 06:40:14 +05:30
|
|
|
// queuing a refresh will let it go to the back of the queue (unless it's somewhere inside the queue already)
|
|
|
|
void queueRefresh(QString accountId);
|
2021-12-04 05:48:05 +05:30
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
/*!
|
|
|
|
* Sets the path to load/save the list file from/to.
|
|
|
|
* If autosave is true, this list will automatically save to the given path whenever it changes.
|
|
|
|
* THIS FUNCTION DOES NOT LOAD THE LIST. If you set autosave, be sure to call loadList() immediately
|
|
|
|
* after calling this function to ensure an autosaved change doesn't overwrite the list you intended
|
|
|
|
* to load.
|
|
|
|
*/
|
|
|
|
void setListFilePath(QString path, bool autosave = false);
|
|
|
|
|
|
|
|
bool loadList();
|
|
|
|
bool loadV2(QJsonObject &root);
|
|
|
|
bool loadV3(QJsonObject &root);
|
|
|
|
bool saveList();
|
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
MinecraftAccountPtr defaultAccount() const;
|
|
|
|
void setDefaultAccount(MinecraftAccountPtr profileId);
|
2021-07-27 01:14:11 +05:30
|
|
|
bool anyAccountIsValid();
|
|
|
|
|
2021-12-04 05:48:05 +05:30
|
|
|
bool isActive() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void beginActivity();
|
|
|
|
void endActivity();
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char* m_name;
|
|
|
|
uint32_t m_activityCount = 0;
|
2021-07-27 01:14:11 +05:30
|
|
|
signals:
|
|
|
|
void listChanged();
|
2021-11-20 20:52:22 +05:30
|
|
|
void listActivityChanged();
|
|
|
|
void defaultAccountChanged();
|
2021-12-04 05:48:05 +05:30
|
|
|
void activityChanged(bool active);
|
2021-07-27 01:14:11 +05:30
|
|
|
|
|
|
|
public slots:
|
|
|
|
/**
|
|
|
|
* This is called when one of the accounts changes and the list needs to be updated
|
|
|
|
*/
|
|
|
|
void accountChanged();
|
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
/**
|
|
|
|
* This is called when a (refresh/login) task involving the account starts or ends
|
|
|
|
*/
|
|
|
|
void accountActivityChanged(bool active);
|
|
|
|
|
2021-12-04 05:48:05 +05:30
|
|
|
/**
|
|
|
|
* This is initially to run background account refresh tasks, or on a hourly timer
|
|
|
|
*/
|
|
|
|
void fillQueue();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void tryNext();
|
|
|
|
|
|
|
|
void authSucceeded();
|
|
|
|
void authFailed(QString reason);
|
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
protected:
|
2021-12-04 05:48:05 +05:30
|
|
|
QList<QString> m_refreshQueue;
|
|
|
|
QTimer *m_refreshTimer;
|
|
|
|
QTimer *m_nextTimer;
|
|
|
|
shared_qobject_ptr<AccountTask> m_currentTask;
|
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
/*!
|
|
|
|
* Called whenever the list changes.
|
|
|
|
* This emits the listChanged() signal and autosaves the list (if autosave is enabled).
|
|
|
|
*/
|
|
|
|
void onListChanged();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Called whenever the active account changes.
|
2021-11-20 20:52:22 +05:30
|
|
|
* Emits the defaultAccountChanged() signal and autosaves the list if enabled.
|
2021-07-27 01:14:11 +05:30
|
|
|
*/
|
2021-11-20 20:52:22 +05:30
|
|
|
void onDefaultAccountChanged();
|
2021-07-27 01:14:11 +05:30
|
|
|
|
|
|
|
QList<MinecraftAccountPtr> m_accounts;
|
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
MinecraftAccountPtr m_defaultAccount;
|
2021-07-27 01:14:11 +05:30
|
|
|
|
|
|
|
//! Path to the account list file. Empty string if there isn't one.
|
|
|
|
QString m_listFilePath;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* If true, the account list will automatically save to the account list path when it changes.
|
|
|
|
* Ignored if m_listFilePath is blank.
|
|
|
|
*/
|
|
|
|
bool m_autosave = false;
|
|
|
|
};
|
2022-01-10 23:16:43 +05:30
|
|
|
|