diff options
Diffstat (limited to 'lib/csapi/voip.cpp')
-rw-r--r-- | lib/csapi/voip.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/csapi/voip.cpp b/lib/csapi/voip.cpp new file mode 100644 index 00000000..f84c140d --- /dev/null +++ b/lib/csapi/voip.cpp @@ -0,0 +1,50 @@ +/****************************************************************************** + * 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"); +} + +GetTurnServerJob::GetTurnServerJob() + : BaseJob(HttpVerb::Get, "GetTurnServerJob", + 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")) + return { JsonParseError, + "The key 'data' not found in the response" }; + d->data = fromJson<QJsonObject>(json.value("data")); + return Success; +} + |