aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/versions.cpp
blob: 13e3be15b38b3afb625021772624819ee7fd647c (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
49
50
51
52
53
/******************************************************************************
 * 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;
    QHash<QString, bool> unstableFeatures;
};

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

static const auto GetVersionsJobName = QStringLiteral("GetVersionsJob");

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

GetVersionsJob::~GetVersionsJob() = default;

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

const QHash<QString, bool>& GetVersionsJob::unstableFeatures() const
{
    return d->unstableFeatures;
}

BaseJob::Status GetVersionsJob::parseJson(const QJsonDocument& data)
{
    auto json = data.object();
    if (!json.contains("versions"_ls))
        return { JsonParseError,
                 "The key 'versions' not found in the response" };
    fromJson(json.value("versions"_ls), d->versions);
    fromJson(json.value("unstable_features"_ls), d->unstableFeatures);
    return Success;
}