/****************************************************************************** * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN */ #pragma once #include "jobs/basejob.h" #include #include "converters.h" namespace QMatrixClient { // Operations /// Gets the visibility of a room in the directory /// /// Gets the visibility of a given room on the server's public room directory. class GetRoomVisibilityOnDirectoryJob : public BaseJob { public: /*! Gets the visibility of a room in the directory * \param roomId * The room ID. */ explicit GetRoomVisibilityOnDirectoryJob(const QString& roomId); /*! Construct a URL without creating a full-fledged job object * * This function can be used when a URL for * GetRoomVisibilityOnDirectoryJob is necessary but the job * itself isn't. */ static QUrl makeRequestUrl(QUrl baseUrl, const QString& roomId); ~GetRoomVisibilityOnDirectoryJob() override; // Result properties /// The visibility of the room in the directory. const QString& visibility() const; protected: Status parseJson(const QJsonDocument& data) override; private: class Private; QScopedPointer d; }; /// Sets the visibility of a room in the room directory /// /// Sets the visibility of a given room in the server's public room /// directory. /// /// Servers may choose to implement additional access control checks /// here, for instance that room visibility can only be changed by /// the room creator or a server administrator. class SetRoomVisibilityOnDirectoryJob : public BaseJob { public: /*! Sets the visibility of a room in the room directory * \param roomId * The room ID. * \param visibility * The new visibility setting for the room. * Defaults to 'public'. */ explicit SetRoomVisibilityOnDirectoryJob(const QString& roomId, const QString& visibility = {}); }; /// Lists the public rooms on the server. /// /// Lists the public rooms on the server. /// /// This API returns paginated responses. The rooms are ordered by the number /// of joined members, with the largest rooms first. class GetPublicRoomsJob : public BaseJob { public: // Inner data structures /// Lists the public rooms on the server. /// /// This API returns paginated responses. The rooms are ordered by the number /// of joined members, with the largest rooms first. struct PublicRoomsChunk { /// Aliases of the room. May be empty. QStringList aliases; /// The canonical alias of the room, if any. QString canonicalAlias; /// The name of the room, if any. QString name; /// The number of members joined to the room. qint64 numJoinedMembers; /// The ID of the room. QString roomId; /// The topic of the room, if any. QString topic; /// Whether the room may be viewed by guest users without joining. bool worldReadable; /// Whether guest users may join the room and participate in it. /// If they can, they will be subject to ordinary power level /// rules like any other user. bool guestCanJoin; /// The URL for the room's avatar, if one is set. QString avatarUrl; }; // Construction/destruction /*! Lists the public rooms on the server. * \param limit * Limit the number of results returned. * \param since * A pagination token from a previous request, allowing clients to * get the next (or previous) batch of rooms. * The direction of pagination is specified solely by which token * is supplied, rather than via an explicit flag. * \param server * The server to fetch the public room lists from. Defaults to the * local server. */ explicit GetPublicRoomsJob(Omittable limit = none, const QString& since = {}, const QString& server = {}); /*! Construct a URL without creating a full-fledged job object * * This function can be used when a URL for * GetPublicRoomsJob is necessary but the job * itself isn't. */ static QUrl makeRequestUrl(QUrl baseUrl, Omittable limit = none, const QString& since = {}, const QString& server = {}); ~GetPublicRoomsJob() override; // Result properties /// A paginated chunk of public rooms. const QVector& chunk() const; /// A pagination token for the response. The absence of this token /// means there are no more results to fetch and the client should /// stop paginating. const QString& nextBatch() const; /// A pagination token that allows fetching previous results. The /// absence of this token means there are no results before this /// batch, i.e. this is the first batch. const QString& prevBatch() const; /// An estimate on the total number of public rooms, if the /// server has an estimate. Omittable totalRoomCountEstimate() const; protected: Status parseJson(const QJsonDocument& data) override; private: class Private; QScopedPointer d; }; /// Lists the public rooms on the server with optional filter. /// /// Lists the public rooms on the server, with optional filter. /// /// This API returns paginated responses. The rooms are ordered by the number /// of joined members, with the largest rooms first. class QueryPublicRoomsJob : public BaseJob { public: // Inner data structures /// Filter to apply to the results. struct Filter { /// A string to search for in the room metadata, e.g. name, /// topic, canonical alias etc. (Optional). QString genericSearchTerm; }; /// Lists the public rooms on the server, with optional filter. /// /// This API returns paginated responses. The rooms are ordered by the number /// of joined members, with the largest rooms first. struct PublicRoomsChunk { /// Aliases of the room. May be empty. QStringList aliases; /// The canonical alias of the room, if any. QString canonicalAlias; /// The name of the room, if any. QString name; /// The number of members joined to the room. qint64 numJoinedMembers; /// The ID of the room. QString roomId; /// The topic of the room, if any. QString topic; /// Whether the room may be viewed by guest users without joining. bool worldReadable; /// Whether guest users may join the room and participate in it. /// If they can, they will be subject to ordinary power level /// rules like any other user. bool guestCanJoin; /// The URL for the room's avatar, if one is set. QString avatarUrl; }; // Construction/destruction /*! Lists the public rooms on the server with optional filter. * \param server * The server to fetch the public room lists from. Defaults to the * local server. * \param limit * Limit the number of results returned. * \param since * A pagination token from a previous request, allowing clients * to get the next (or previous) batch of rooms. The direction * of pagination is specified solely by which token is supplied, * rather than via an explicit flag. * \param filter * Filter to apply to the results. */ explicit QueryPublicRoomsJob(const QString& server = {}, Omittable limit = none, const QString& since = {}, const Omittable& filter = none); ~QueryPublicRoomsJob() override; // Result properties /// A paginated chunk of public rooms. const QVector& chunk() const; /// A pagination token for the response. The absence of this token /// means there are no more results to fetch and the client should /// stop paginating. const QString& nextBatch() const; /// A pagination token that allows fetching previous results. The /// absence of this token means there are no results before this /// batch, i.e. this is the first batch. const QString& prevBatch() const; /// An estimate on the total number of public rooms, if the /// server has an estimate. Omittable totalRoomCountEstimate() const; protected: Status parseJson(const QJsonDocument& data) override; private: class Private; QScopedPointer d; }; } // namespace QMatrixClient