aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/auth/flows/MSAInteractive.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/minecraft/auth/flows/MSAInteractive.cpp')
-rw-r--r--launcher/minecraft/auth/flows/MSAInteractive.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/launcher/minecraft/auth/flows/MSAInteractive.cpp b/launcher/minecraft/auth/flows/MSAInteractive.cpp
new file mode 100644
index 00000000..03beb279
--- /dev/null
+++ b/launcher/minecraft/auth/flows/MSAInteractive.cpp
@@ -0,0 +1,20 @@
+#include "MSAInteractive.h"
+
+MSAInteractive::MSAInteractive(AccountData* data, QObject* parent) : AuthContext(data, parent) {}
+
+void MSAInteractive::executeTask() {
+ m_requestsDone = 0;
+ m_xboxProfileSucceeded = false;
+ m_mcAuthSucceeded = false;
+
+ initMSA();
+
+ QVariantMap extraOpts;
+ extraOpts["prompt"] = "select_account";
+ m_oauth2->setExtraRequestParams(extraOpts);
+
+ beginActivity(Katabasis::Activity::LoggingIn);
+ m_oauth2->unlink();
+ *m_data = AccountData();
+ m_oauth2->link();
+}