diff options
author | Andrew <forkk@forkk.net> | 2013-11-28 20:45:52 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-11-28 20:45:52 -0600 |
commit | bfc9e1e5d598f354dd39e5c2eb51d5e51585359b (patch) | |
tree | 20d2dd60b8b053ac4a93eb916b5484090d375b67 /logic/auth/ValidateTask.h | |
parent | 1f150dcb7821fea19b40b9e1024fff5b594f03e9 (diff) | |
download | PrismLauncher-bfc9e1e5d598f354dd39e5c2eb51d5e51585359b.tar.gz PrismLauncher-bfc9e1e5d598f354dd39e5c2eb51d5e51585359b.tar.bz2 PrismLauncher-bfc9e1e5d598f354dd39e5c2eb51d5e51585359b.zip |
Verify access tokens before launching Minecraft
Kind of an important thing to do... Heh...
Diffstat (limited to 'logic/auth/ValidateTask.h')
-rw-r--r-- | logic/auth/ValidateTask.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/logic/auth/ValidateTask.h b/logic/auth/ValidateTask.h new file mode 100644 index 00000000..5bbc69c7 --- /dev/null +++ b/logic/auth/ValidateTask.h @@ -0,0 +1,44 @@ +/* Copyright 2013 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. + */ + +#pragma once + +#include <logic/auth/YggdrasilTask.h> + +#include <QObject> +#include <QString> +#include <QJsonObject> + +/** + * The validate task takes a MojangAccount and checks to make sure its access token is valid. + */ +class ValidateTask : public YggdrasilTask +{ +Q_OBJECT +public: + ValidateTask(MojangAccountPtr account, QObject* parent=0); + +protected: + virtual QJsonObject getRequestContent() const; + + virtual QString getEndpoint() const; + + virtual bool processResponse(QJsonObject responseData); + + QString getStateMessage(const YggdrasilTask::State state) const; + +private: +}; + |