diff options
author | Josip Delic <delijati@googlemail.com> | 2018-08-29 21:56:21 +0200 |
---|---|---|
committer | Josip Delic <delijati@googlemail.com> | 2018-08-29 21:56:21 +0200 |
commit | 6bb64db38f4a5f47d275a663861fd216f1bcf612 (patch) | |
tree | cf92c21991282852e2ae549cd950984a7ae64fc6 /lib/csapi/openid.cpp | |
parent | 8d07a6bec2689a81c3c3db64e5457143bd671223 (diff) | |
parent | d9ff200ff62fb7f5b6b51082dc3979d5454a1bec (diff) | |
download | libquotient-6bb64db38f4a5f47d275a663861fd216f1bcf612.tar.gz libquotient-6bb64db38f4a5f47d275a663861fd216f1bcf612.zip |
Merge branch 'master' of https://github.com/QMatrixClient/libqmatrixclient
Diffstat (limited to 'lib/csapi/openid.cpp')
-rw-r--r-- | lib/csapi/openid.cpp | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/lib/csapi/openid.cpp b/lib/csapi/openid.cpp new file mode 100644 index 00000000..2547f0c8 --- /dev/null +++ b/lib/csapi/openid.cpp @@ -0,0 +1,77 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#include "openid.h" + +#include "converters.h" + +#include <QtCore/QStringBuilder> + +using namespace QMatrixClient; + +static const auto basePath = QStringLiteral("/_matrix/client/r0"); + +class RequestOpenIdTokenJob::Private +{ + public: + QString accessToken; + QString tokenType; + QString matrixServerName; + int expiresIn; +}; + +static const auto RequestOpenIdTokenJobName = QStringLiteral("RequestOpenIdTokenJob"); + +RequestOpenIdTokenJob::RequestOpenIdTokenJob(const QString& userId, const QJsonObject& body) + : BaseJob(HttpVerb::Post, RequestOpenIdTokenJobName, + basePath % "/user/" % userId % "/openid/request_token") + , d(new Private) +{ + setRequestData(Data(toJson(body))); +} + +RequestOpenIdTokenJob::~RequestOpenIdTokenJob() = default; + +const QString& RequestOpenIdTokenJob::accessToken() const +{ + return d->accessToken; +} + +const QString& RequestOpenIdTokenJob::tokenType() const +{ + return d->tokenType; +} + +const QString& RequestOpenIdTokenJob::matrixServerName() const +{ + return d->matrixServerName; +} + +int RequestOpenIdTokenJob::expiresIn() const +{ + return d->expiresIn; +} + +BaseJob::Status RequestOpenIdTokenJob::parseJson(const QJsonDocument& data) +{ + auto json = data.object(); + if (!json.contains("access_token"_ls)) + return { JsonParseError, + "The key 'access_token' not found in the response" }; + d->accessToken = fromJson<QString>(json.value("access_token"_ls)); + if (!json.contains("token_type"_ls)) + return { JsonParseError, + "The key 'token_type' not found in the response" }; + d->tokenType = fromJson<QString>(json.value("token_type"_ls)); + if (!json.contains("matrix_server_name"_ls)) + return { JsonParseError, + "The key 'matrix_server_name' not found in the response" }; + d->matrixServerName = fromJson<QString>(json.value("matrix_server_name"_ls)); + if (!json.contains("expires_in"_ls)) + return { JsonParseError, + "The key 'expires_in' not found in the response" }; + d->expiresIn = fromJson<int>(json.value("expires_in"_ls)); + return Success; +} + |