2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-11-14 00:08:28 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include <tasks/Task.h>
|
2013-11-14 00:08:28 +05:30
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QJsonObject>
|
2013-12-08 22:04:45 +05:30
|
|
|
#include <QTimer>
|
2013-12-25 04:08:37 +05:30
|
|
|
#include <qsslerror.h>
|
2013-11-14 00:08:28 +05:30
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
#include "MinecraftAccount.h"
|
2013-11-14 00:08:28 +05:30
|
|
|
|
|
|
|
class QNetworkReply;
|
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
class AccountTask : public Task
|
2013-11-14 00:08:28 +05:30
|
|
|
{
|
2021-07-27 01:14:11 +05:30
|
|
|
friend class AuthContext;
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-11-14 00:08:28 +05:30
|
|
|
public:
|
2021-07-27 01:14:11 +05:30
|
|
|
explicit AccountTask(AccountData * data, QObject *parent = 0);
|
|
|
|
virtual ~AccountTask() {};
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* assign a session to this task. the session will be filled with required infomration
|
|
|
|
* upon completion
|
|
|
|
*/
|
|
|
|
void assignSession(AuthSessionPtr session)
|
|
|
|
{
|
|
|
|
m_session = session;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// get the assigned session for filling with information.
|
|
|
|
AuthSessionPtr getAssignedSession()
|
|
|
|
{
|
|
|
|
return m_session;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-07-27 01:14:11 +05:30
|
|
|
* Class describing a Account error response.
|
2018-07-15 18:21:05 +05:30
|
|
|
*/
|
|
|
|
struct Error
|
|
|
|
{
|
|
|
|
QString m_errorMessageShort;
|
|
|
|
QString m_errorMessageVerbose;
|
|
|
|
QString m_cause;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AbortedBy
|
|
|
|
{
|
|
|
|
BY_NOTHING,
|
|
|
|
BY_USER,
|
|
|
|
BY_TIMEOUT
|
|
|
|
} m_aborted = BY_NOTHING;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enum for describing the state of the current task.
|
|
|
|
* Used by the getStateMessage function to determine what the status message should be.
|
|
|
|
*/
|
|
|
|
enum State
|
|
|
|
{
|
|
|
|
STATE_CREATED,
|
2021-07-27 01:14:11 +05:30
|
|
|
STATE_WORKING,
|
2018-07-15 18:21:05 +05:30
|
|
|
STATE_FAILED_SOFT, //!< soft failure. this generally means the user auth details haven't been invalidated
|
|
|
|
STATE_FAILED_HARD, //!< hard failure. auth is invalid
|
2021-08-29 23:28:35 +05:30
|
|
|
STATE_FAILED_GONE, //!< hard failure. auth is invalid, and the account no longer exists
|
2018-07-15 18:21:05 +05:30
|
|
|
STATE_SUCCEEDED
|
2021-07-27 01:14:11 +05:30
|
|
|
} m_accountState = STATE_CREATED;
|
2018-07-15 18:21:05 +05:30
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
State accountState() {
|
|
|
|
return m_accountState;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
|
2021-08-22 23:31:18 +05:30
|
|
|
signals:
|
|
|
|
void showVerificationUriAndCode(const QUrl &uri, const QString &code, int expiresIn);
|
|
|
|
void hideVerificationUriAndCode();
|
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the state message for the given state.
|
|
|
|
* Used to set the status message for the task.
|
|
|
|
* Should be overridden by subclasses that want to change messages for a given state.
|
|
|
|
*/
|
|
|
|
virtual QString getStateMessage() const;
|
2013-11-14 00:08:28 +05:30
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
protected slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void changeState(State newState, QString reason=QString());
|
2021-07-27 01:14:11 +05:30
|
|
|
|
2013-12-08 22:04:45 +05:30
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
// FIXME: segfault disaster waiting to happen
|
2021-07-27 01:14:11 +05:30
|
|
|
AccountData *m_data = nullptr;
|
2018-07-15 18:21:05 +05:30
|
|
|
std::shared_ptr<Error> m_error;
|
|
|
|
AuthSessionPtr m_session;
|
2013-11-14 00:08:28 +05:30
|
|
|
};
|