blob: 8ecf92c6a91fb219fd6d042aa4f0314b8eefc877 (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "voip.h"
#include "converters.h"
#include <QtCore/QStringBuilder>
using namespace QMatrixClient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
class GetTurnServerJob::Private
{
public:
QJsonObject data;
};
QUrl GetTurnServerJob::makeRequestUrl(QUrl baseUrl)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/voip/turnServer");
}
static const auto GetTurnServerJobName = QStringLiteral("GetTurnServerJob");
GetTurnServerJob::GetTurnServerJob()
: BaseJob(HttpVerb::Get, GetTurnServerJobName,
basePath % "/voip/turnServer")
, d(new Private)
{
}
GetTurnServerJob::~GetTurnServerJob() = default;
const QJsonObject& GetTurnServerJob::data() const
{
return d->data;
}
BaseJob::Status GetTurnServerJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
if (!json.contains("data"_ls))
return { JsonParseError,
"The key 'data' not found in the response" };
d->data = fromJson<QJsonObject>(json.value("data"_ls));
return Success;
}
|