From 826b8fb5afc80dd6adcc7ecee22997365a59f9d0 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sun, 3 Jun 2018 19:50:08 +0900 Subject: csapi: PeekEventsJob, ReportContentJob, presence jobs --- lib/csapi/presence.h | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 lib/csapi/presence.h (limited to 'lib/csapi/presence.h') diff --git a/lib/csapi/presence.h b/lib/csapi/presence.h new file mode 100644 index 00000000..2def94ba --- /dev/null +++ b/lib/csapi/presence.h @@ -0,0 +1,82 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + +#include "jobs/basejob.h" + +#include "events/event.h" +#include "converters.h" + +namespace QMatrixClient +{ + // Operations + + class SetPresenceJob : public BaseJob + { + public: + explicit SetPresenceJob(const QString& userId, const QString& presence, const QString& statusMsg = {}); + }; + + class GetPresenceJob : public BaseJob + { + public: + explicit GetPresenceJob(const QString& userId); + + /** Construct a URL out of baseUrl and usual parameters passed to + * GetPresenceJob. This function can be used when + * a URL for GetPresenceJob is necessary but the job + * itself isn't. + */ + static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId); + + ~GetPresenceJob() override; + + // Result properties + + const QString& presence() const; + Omittable lastActiveAgo() const; + const QString& statusMsg() const; + bool currentlyActive() const; + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer d; + }; + + class ModifyPresenceListJob : public BaseJob + { + public: + explicit ModifyPresenceListJob(const QString& userId, const QStringList& invite = {}, const QStringList& drop = {}); + }; + + class GetPresenceForListJob : public BaseJob + { + public: + explicit GetPresenceForListJob(const QString& userId); + + /** Construct a URL out of baseUrl and usual parameters passed to + * GetPresenceForListJob. This function can be used when + * a URL for GetPresenceForListJob is necessary but the job + * itself isn't. + */ + static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId); + + ~GetPresenceForListJob() override; + + // Result properties + + Events&& data(); + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer d; + }; +} // namespace QMatrixClient -- cgit v1.2.3