aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/whoami.cpp
blob: 4f7b052c0a0e7fbc8f216b278d24d13b464ad978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/******************************************************************************
 * 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")
    , d(new Private)
{
}

GetTokenOwnerJob::~GetTokenOwnerJob() = default;

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;
}