summaryrefslogtreecommitdiffstats
path: root/logic/auth/AuthSession.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-02-27 19:58:40 +0100
committerPetr Mrázek <peterix@gmail.com>2016-02-27 19:58:40 +0100
commit17ad1e64f824fba6d8f153191effdb2af7d387c8 (patch)
tree3c0996cab5cff0dcf3807afe08df66dda3a50ec4 /logic/auth/AuthSession.h
parent71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8 (diff)
downloadMultiMC-17ad1e64f824fba6d8f153191effdb2af7d387c8.tar
MultiMC-17ad1e64f824fba6d8f153191effdb2af7d387c8.tar.gz
MultiMC-17ad1e64f824fba6d8f153191effdb2af7d387c8.tar.lz
MultiMC-17ad1e64f824fba6d8f153191effdb2af7d387c8.tar.xz
MultiMC-17ad1e64f824fba6d8f153191effdb2af7d387c8.zip
NOISSUE move files into paths that make more sense
Diffstat (limited to 'logic/auth/AuthSession.h')
-rw-r--r--logic/auth/AuthSession.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/logic/auth/AuthSession.h b/logic/auth/AuthSession.h
deleted file mode 100644
index dede90a9..00000000
--- a/logic/auth/AuthSession.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#pragma once
-
-#include <QString>
-#include <QMultiMap>
-#include <memory>
-
-#include "multimc_logic_export.h"
-
-struct User
-{
- QString id;
- QMultiMap<QString, QString> properties;
-};
-
-struct MULTIMC_LOGIC_EXPORT AuthSession
-{
- bool MakeOffline(QString offline_playername);
-
- QString serializeUserProperties();
-
- enum Status
- {
- Undetermined,
- RequiresPassword,
- PlayableOffline,
- PlayableOnline
- } status = Undetermined;
-
- User u;
-
- // 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;
-};
-
-typedef std::shared_ptr<AuthSession> AuthSessionPtr;