blob: dce091ec0b676ff401c4bcf369ae1eb7e528db35 (
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
45
46
47
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;
}
|