diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-27 11:36:42 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-27 11:36:42 +0900 |
commit | f366cb25d1a5256341c1253fb04e36bd70373a70 (patch) | |
tree | 014be07ccd6fc527f9e8e926416a748df53e9667 | |
parent | 37b67cbd07beca1b6f010794a7ff1920bc053e6e (diff) | |
download | libquotient-f366cb25d1a5256341c1253fb04e36bd70373a70.tar.gz libquotient-f366cb25d1a5256341c1253fb04e36bd70373a70.zip |
Room: Save tags in the cache; isFavourite() and isLowPriority()
-rw-r--r-- | connection.cpp | 2 | ||||
-rw-r--r-- | room.cpp | 29 | ||||
-rw-r--r-- | room.h | 9 |
3 files changed, 39 insertions, 1 deletions
diff --git a/connection.cpp b/connection.cpp index 7b72c592..9a5a5a4e 100644 --- a/connection.cpp +++ b/connection.cpp @@ -627,7 +627,7 @@ void Connection::setHomeserver(const QUrl& url) emit homeserverChanged(homeserver()); } -static constexpr int CACHE_VERSION_MAJOR = 2; +static constexpr int CACHE_VERSION_MAJOR = 3; static constexpr int CACHE_VERSION_MINOR = 0; void Connection::saveState(const QUrl &toFile) const @@ -564,6 +564,21 @@ const QHash<QString, TagRecord>& Room::tags() const return d->tags; } +TagRecord Room::tag(const QString& name) const +{ + return d->tags.value(name); +} + +bool Room::isFavourite() const +{ + return d->tags.contains(FavouriteTag); +} + +bool Room::isLowPriority() const +{ + return d->tags.contains(LowPriorityTag); +} + const RoomMessageEvent* Room::Private::getEventWithFile(const QString& eventId) const { @@ -1635,6 +1650,20 @@ QJsonObject Room::Private::toJson() const result.insert("ephemeral", ephemeralObj); } + { + QJsonObject accountDataObj; + if (!tags.empty()) + { + QJsonObject tagsObj; + for (auto it = tags.begin(); it != tags.end(); ++it) + tagsObj.insert(it.key(), { {"order", it->order} }); + if (!tagsObj.empty()) + accountDataObj.insert("m.tag", tagsObj); + } + if (!accountDataObj.empty()) + result.insert("account_data", accountDataObj); + } + QJsonObject unreadNotificationsObj; if (highlightCount > 0) unreadNotificationsObj.insert("highlight_count", highlightCount); @@ -242,6 +242,15 @@ namespace QMatrixClient QStringList tagNames() const; const QHash<QString, TagRecord>& tags() const; + TagRecord tag(const QString& name) const; + + /** Check whether the list of tags has m.favourite */ + bool isFavourite() const; + /** Check whether the list of tags has m.lowpriority */ + bool isLowPriority() const; + + /** Check whether this room is a direct chat */ + bool isDirectChat() const; Q_INVOKABLE QUrl urlToThumbnail(const QString& eventId); Q_INVOKABLE QUrl urlToDownload(const QString& eventId); |