pollymc/launcher/minecraft/auth/AuthSession.h

53 lines
1.1 KiB
C
Raw Normal View History

#pragma once
#include <QString>
#include <QMultiMap>
#include <memory>
2021-11-20 20:52:22 +05:30
#include "QObjectPtr.h"
class MinecraftAccount;
2021-11-20 20:52:22 +05:30
class QNetworkAccessManager;
struct AuthSession
{
2018-07-15 18:21:05 +05:30
bool MakeOffline(QString offline_playername);
void MakeDemo();
2018-07-15 18:21:05 +05:30
QString serializeUserProperties();
enum Status
{
Undetermined,
RequiresOAuth,
2018-07-15 18:21:05 +05:30
RequiresPassword,
RequiresProfileSetup,
2018-07-15 18:21:05 +05:30
PlayableOffline,
PlayableOnline,
GoneOrMigrated
2018-07-15 18:21:05 +05:30
} status = Undetermined;
// client token
QString client_token;
// account user name
QString username;
// combined session ID
QString session;
// volatile auth token
QString access_token;
// profile name
QString player_name;
// profile ID
QString uuid;
// 'legacy' or 'mojang', depending on account type
QString user_type;
// Did the auth server reply?
bool auth_server_online = false;
// Did the user request online mode?
bool wants_online = true;
//Is this a demo session?
bool demo = false;
};
typedef std::shared_ptr<AuthSession> AuthSessionPtr;