summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-01-14 23:33:12 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-01-14 23:37:38 +0200
commit020a842aefe6c602428fa8e85e3f5bfa1239b666 (patch)
treed37db3dfac0796c248976c461c686682f5f05086 /include
parentCheck if the linuxdeployqt-AppDir does exist before downloading (#205) (diff)
downloadnheko-020a842aefe6c602428fa8e85e3f5bfa1239b666.tar.xz
Change cache format to not allow duplicate receipts
Convert list of receipts to map<userId, timestamp>
Diffstat (limited to 'include')
-rw-r--r--include/Cache.h22
-rw-r--r--include/dialogs/ReadReceipts.h2
2 files changed, 2 insertions, 22 deletions
diff --git a/include/Cache.h b/include/Cache.h

index 761c6060..7a626e12 100644 --- a/include/Cache.h +++ b/include/Cache.h
@@ -44,26 +44,6 @@ from_json(const json &j, ReadReceiptKey &key) key.room_id = j.at("room_id").get<std::string>(); } -//! Decribes a read receipt stored in cache. -struct ReadReceiptValue -{ - std::string user_id; - uint64_t ts; -}; - -inline void -to_json(json &j, const ReadReceiptValue &value) -{ - j = json{{"user_id", value.user_id}, {"ts", value.ts}}; -} - -inline void -from_json(const json &j, ReadReceiptValue &value) -{ - value.user_id = j.at("user_id").get<std::string>(); - value.ts = j.at("ts").get<uint64_t>(); -} - class Cache { public: @@ -100,7 +80,7 @@ public: //! Retrieve all the read receipts for the given event id and room. //! //! Returns a map of user ids and the time of the read receipt in milliseconds. - using UserReceipts = std::multimap<uint64_t, std::string>; + using UserReceipts = std::multimap<uint64_t, std::string, std::greater<uint64_t>>; UserReceipts readReceipts(const QString &event_id, const QString &room_id); QByteArray image(const QString &url) const; diff --git a/include/dialogs/ReadReceipts.h b/include/dialogs/ReadReceipts.h
index 42a9e1b7..8f860b46 100644 --- a/include/dialogs/ReadReceipts.h +++ b/include/dialogs/ReadReceipts.h
@@ -37,7 +37,7 @@ public: explicit ReadReceipts(QWidget *parent = nullptr); public slots: - void addUsers(const std::multimap<uint64_t, std::string> &users); + void addUsers(const std::multimap<uint64_t, std::string, std::greater<uint64_t>> &users); protected: void paintEvent(QPaintEvent *event) override;