aboutsummaryrefslogtreecommitdiff
path: root/matrix/rooms/room.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-05-16 20:09:09 +0300
committerTulir Asokan <tulir@maunium.net>2018-05-16 20:51:43 +0300
commit8a3fbc24ab430443b89dfa45e726ab96ad3ea1ec (patch)
tree7aab3b58b1d4119c752f8fd549c14e587da15279 /matrix/rooms/room.go
parentc88801a65782d28184aa73a8d25ed3e8a8641f82 (diff)
Handle m.direct and m.receipt events
Fixes #12 Fixes #45
Diffstat (limited to 'matrix/rooms/room.go')
-rw-r--r--matrix/rooms/room.go86
1 files changed, 75 insertions, 11 deletions
diff --git a/matrix/rooms/room.go b/matrix/rooms/room.go
index 40303be..17bf21b 100644
--- a/matrix/rooms/room.go
+++ b/matrix/rooms/room.go
@@ -43,6 +43,12 @@ type RoomTag struct {
Order string
}
+type UnreadMessage struct {
+ EventID string
+ Counted bool
+ Highlight bool
+}
+
// Room represents a single Matrix room.
type Room struct {
*gomatrix.Room
@@ -57,13 +63,11 @@ type Room struct {
SessionUserID string
// The number of unread messages that were notified about.
- UnreadMessages int
- // Whether or not any of the unread messages were highlights.
- Highlighted bool
- // Whether or not the room contains any new messages.
- // This can be true even when UnreadMessages is zero if there's
- // a notificationless message like bot notices.
- HasNewMessages bool
+ UnreadMessages []UnreadMessage
+ unreadCountCache *int
+ highlightCache *bool
+ // Whether or not this room is marked as a direct chat.
+ IsDirect bool
// List of tags given to this room
RawTags []RoomTag
@@ -110,14 +114,74 @@ func (room *Room) UnlockHistory() {
}
// MarkRead clears the new message statuses on this room.
-func (room *Room) MarkRead() {
- room.UnreadMessages = 0
- room.Highlighted = false
- room.HasNewMessages = false
+func (room *Room) MarkRead(eventID string) {
+ readToIndex := -1
+ for index, unreadMessage := range room.UnreadMessages {
+ if unreadMessage.EventID == eventID {
+ readToIndex = index
+ }
+ }
+ if readToIndex >= 0 {
+ room.UnreadMessages = room.UnreadMessages[readToIndex+1:]
+ room.highlightCache = nil
+ room.unreadCountCache = nil
+ }
+}
+
+func (room *Room) UnreadCount() int {
+ if room.unreadCountCache == nil {
+ room.unreadCountCache = new(int)
+ for _, unreadMessage := range room.UnreadMessages {
+ if unreadMessage.Counted {
+ *room.unreadCountCache++
+ }
+ }
+ }
+ return *room.unreadCountCache
+}
+
+func (room *Room) Highlighted() bool {
+ if room.highlightCache == nil {
+ room.highlightCache = new(bool)
+ for _, unreadMessage := range room.UnreadMessages {
+ if unreadMessage.Highlight {
+ *room.highlightCache = true
+ break
+ }
+ }
+ }
+ return *room.highlightCache
+}
+
+func (room *Room) HasNewMessages() bool {
+ return len(room.UnreadMessages) > 0
+}
+
+func (room *Room) AddUnread(eventID string, counted, highlight bool) {
+ room.UnreadMessages = append(room.UnreadMessages, UnreadMessage{
+ EventID: eventID,
+ Counted: counted,
+ Highlight: highlight,
+ })
+ if counted {
+ if room.unreadCountCache == nil {
+ room.unreadCountCache = new(int)
+ }
+ *room.unreadCountCache++
+ }
+ if highlight {
+ if room.highlightCache == nil {
+ room.highlightCache = new(bool)
+ }
+ *room.highlightCache = true
+ }
}
func (room *Room) Tags() []RoomTag {
if len(room.RawTags) == 0 {
+ if room.IsDirect {
+ return []RoomTag{{"net.maunium.gomuks.fake.direct", "0.5"}}
+ }
return []RoomTag{{"", "0.5"}}
}
return room.RawTags