diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-03 19:50:08 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-03 19:50:08 +0900 |
commit | 826b8fb5afc80dd6adcc7ecee22997365a59f9d0 (patch) | |
tree | fce5ab66edd53673e232dfa5aa3e1e3e35cb7669 /lib/csapi/presence.h | |
parent | 553c22541026bd44f8fbc7f4e186e60703f5ecb3 (diff) | |
download | libquotient-826b8fb5afc80dd6adcc7ecee22997365a59f9d0.tar.gz libquotient-826b8fb5afc80dd6adcc7ecee22997365a59f9d0.zip |
csapi: PeekEventsJob, ReportContentJob, presence jobs
Diffstat (limited to 'lib/csapi/presence.h')
-rw-r--r-- | lib/csapi/presence.h | 82 |
1 files changed, 82 insertions, 0 deletions
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<int> lastActiveAgo() const; + const QString& statusMsg() const; + bool currentlyActive() const; + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer<Private> 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<Private> d; + }; +} // namespace QMatrixClient |