diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-27 20:15:48 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-27 20:15:48 +0900 |
commit | 292ed58962fb11d6572e273bcb4d2ad762d60365 (patch) | |
tree | de9bc668076bce36184fd24a449d0fe57ca3ee0a | |
parent | dafb0e10a421a36d976d8d8f18fb3aadeaece994 (diff) | |
download | libquotient-292ed58962fb11d6572e273bcb4d2ad762d60365.tar.gz libquotient-292ed58962fb11d6572e273bcb4d2ad762d60365.zip |
jobs/generated: GetJoinedRoomsJob
-rw-r--r-- | jobs/generated/list_joined_rooms.cpp | 50 | ||||
-rw-r--r-- | jobs/generated/list_joined_rooms.h | 38 |
2 files changed, 88 insertions, 0 deletions
diff --git a/jobs/generated/list_joined_rooms.cpp b/jobs/generated/list_joined_rooms.cpp new file mode 100644 index 00000000..f902f94c --- /dev/null +++ b/jobs/generated/list_joined_rooms.cpp @@ -0,0 +1,50 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#include "list_joined_rooms.h" + +#include "converters.h" + +#include <QtCore/QStringBuilder> + +using namespace QMatrixClient; + +static const auto basePath = QStringLiteral("/_matrix/client/r0"); + +class GetJoinedRoomsJob::Private +{ + public: + QVector<QString> joinedRooms; +}; + +QUrl GetJoinedRoomsJob::makeRequestUrl(QUrl baseUrl) +{ + return BaseJob::makeRequestUrl(baseUrl, + basePath % "/joined_rooms"); +} + +GetJoinedRoomsJob::GetJoinedRoomsJob() + : BaseJob(HttpVerb::Get, "GetJoinedRoomsJob", + basePath % "/joined_rooms") + , d(new Private) +{ +} + +GetJoinedRoomsJob::~GetJoinedRoomsJob() = default; + +const QVector<QString>& GetJoinedRoomsJob::joinedRooms() const +{ + return d->joinedRooms; +} + +BaseJob::Status GetJoinedRoomsJob::parseJson(const QJsonDocument& data) +{ + auto json = data.object(); + if (!json.contains("joined_rooms")) + return { JsonParseError, + "The key 'joined_rooms' not found in the response" }; + d->joinedRooms = fromJson<QVector<QString>>(json.value("joined_rooms")); + return Success; +} + diff --git a/jobs/generated/list_joined_rooms.h b/jobs/generated/list_joined_rooms.h new file mode 100644 index 00000000..768f5166 --- /dev/null +++ b/jobs/generated/list_joined_rooms.h @@ -0,0 +1,38 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + +#include "../basejob.h" + +#include <QtCore/QVector> + + +namespace QMatrixClient +{ + // Operations + + class GetJoinedRoomsJob : public BaseJob + { + public: + /** Construct a URL out of baseUrl and usual parameters passed to + * GetJoinedRoomsJob. This function can be used when + * a URL for GetJoinedRoomsJob is necessary but the job + * itself isn't. + */ + static QUrl makeRequestUrl(QUrl baseUrl); + + explicit GetJoinedRoomsJob(); + ~GetJoinedRoomsJob() override; + + const QVector<QString>& joinedRooms() const; + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer<Private> d; + }; +} // namespace QMatrixClient |