aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/versions.cpp
blob: 7b55b94f04e81576909880595a7db9a2c1b73244 (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
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#include "versions.h"

#include "converters.h"

#include <QtCore/QStringBuilder>

using namespace QMatrixClient;

static const auto basePath = QStringLiteral("/_matrix/client");

class GetVersionsJob::Private
{
    public:
        QStringList versions;
};

QUrl GetVersionsJob::makeRequestUrl(QUrl baseUrl)
{
    return BaseJob::makeRequestUrl(std::move(baseUrl),
            basePath % "/versions");
}

GetVersionsJob::GetVersionsJob()
    : BaseJob(HttpVerb::Get, "GetVersionsJob",
        basePath % "/versions", false)
    , d(new Private)
{
}

GetVersionsJob::~GetVersionsJob() = default;

const QStringList& GetVersionsJob::versions() const
{
    return d->versions;
}

BaseJob::Status GetVersionsJob::parseJson(const QJsonDocument& data)
{
    auto json = data.object();
    d->versions = fromJson<QStringList>(json.value("versions"));
    return Success;
}