diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-07 11:40:46 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-07 12:49:07 +0900 |
commit | 879e0bd17abedcc93d005eb7b66f6e9aa762200a (patch) | |
tree | 451a8e9bb1e5f7ed3e5f172427d0302bec2ec2f6 /jobs/generated/whoami.cpp | |
parent | 80588a782ce702384802e3e0cb469f71e5640ef4 (diff) | |
download | libquotient-879e0bd17abedcc93d005eb7b66f6e9aa762200a.tar.gz libquotient-879e0bd17abedcc93d005eb7b66f6e9aa762200a.zip |
New generated jobs for: room directory, 3PIDs, redactions, typing notifications and others
Closes #128 (the issue has the full list of jobs arriving herewith).
Diffstat (limited to 'jobs/generated/whoami.cpp')
-rw-r--r-- | jobs/generated/whoami.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/jobs/generated/whoami.cpp b/jobs/generated/whoami.cpp new file mode 100644 index 00000000..dce091ec --- /dev/null +++ b/jobs/generated/whoami.cpp @@ -0,0 +1,48 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + + +#include "whoami.h" + +#include "converters.h" + +#include <QtCore/QStringBuilder> + +using namespace QMatrixClient; + +static const auto basePath = QStringLiteral("/_matrix/client/r0"); + +class GetTokenOwnerJob::Private +{ + public: + QString userId; +}; + +GetTokenOwnerJob::GetTokenOwnerJob() + : BaseJob(HttpVerb::Get, "GetTokenOwnerJob", + basePath % "/account/whoami", + Query { } + ), d(new Private) +{ } + +GetTokenOwnerJob::~GetTokenOwnerJob() +{ + delete d; +} + +const QString& GetTokenOwnerJob::userId() const +{ + return d->userId; +} + +BaseJob::Status GetTokenOwnerJob::parseJson(const QJsonDocument& data) +{ + auto json = data.object(); + if (!json.contains("user_id")) + return { JsonParseError, + "The key 'user_id' not found in the response" }; + d->userId = fromJson<QString>(json.value("user_id")); + return Success; +} + |