aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/peeking_events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csapi/peeking_events.cpp')
-rw-r--r--lib/csapi/peeking_events.cpp44
1 files changed, 18 insertions, 26 deletions
diff --git a/lib/csapi/peeking_events.cpp b/lib/csapi/peeking_events.cpp
index 3208d48d..d48eca3f 100644
--- a/lib/csapi/peeking_events.cpp
+++ b/lib/csapi/peeking_events.cpp
@@ -15,12 +15,13 @@ static const auto basePath = QStringLiteral("/_matrix/client/r0");
class PeekEventsJob::Private
{
public:
- QString begin;
- QString end;
- RoomEvents chunk;
+ QString begin;
+ QString end;
+ RoomEvents chunk;
};
-BaseJob::Query queryToPeekEvents(const QString& from, Omittable<int> timeout, const QString& roomId)
+BaseJob::Query queryToPeekEvents(const QString& from, Omittable<int> timeout,
+ const QString& roomId)
{
BaseJob::Query _q;
addParam<IfNotEmpty>(_q, QStringLiteral("from"), from);
@@ -29,39 +30,31 @@ BaseJob::Query queryToPeekEvents(const QString& from, Omittable<int> timeout, co
return _q;
}
-QUrl PeekEventsJob::makeRequestUrl(QUrl baseUrl, const QString& from, Omittable<int> timeout, const QString& roomId)
+QUrl PeekEventsJob::makeRequestUrl(QUrl baseUrl, const QString& from,
+ Omittable<int> timeout,
+ const QString& roomId)
{
- return BaseJob::makeRequestUrl(std::move(baseUrl),
- basePath % "/events",
- queryToPeekEvents(from, timeout, roomId));
+ return BaseJob::makeRequestUrl(std::move(baseUrl), basePath % "/events",
+ queryToPeekEvents(from, timeout, roomId));
}
static const auto PeekEventsJobName = QStringLiteral("PeekEventsJob");
-PeekEventsJob::PeekEventsJob(const QString& from, Omittable<int> timeout, const QString& roomId)
- : BaseJob(HttpVerb::Get, PeekEventsJobName,
- basePath % "/events",
- queryToPeekEvents(from, timeout, roomId))
- , d(new Private)
+PeekEventsJob::PeekEventsJob(const QString& from, Omittable<int> timeout,
+ const QString& roomId)
+ : BaseJob(HttpVerb::Get, PeekEventsJobName, basePath % "/events",
+ queryToPeekEvents(from, timeout, roomId)),
+ d(new Private)
{
}
PeekEventsJob::~PeekEventsJob() = default;
-const QString& PeekEventsJob::begin() const
-{
- return d->begin;
-}
+const QString& PeekEventsJob::begin() const { return d->begin; }
-const QString& PeekEventsJob::end() const
-{
- return d->end;
-}
+const QString& PeekEventsJob::end() const { return d->end; }
-RoomEvents&& PeekEventsJob::chunk()
-{
- return std::move(d->chunk);
-}
+RoomEvents&& PeekEventsJob::chunk() { return std::move(d->chunk); }
BaseJob::Status PeekEventsJob::parseJson(const QJsonDocument& data)
{
@@ -71,4 +64,3 @@ BaseJob::Status PeekEventsJob::parseJson(const QJsonDocument& data)
fromJson(json.value("chunk"_ls), d->chunk);
return Success;
}
-