0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-13 12:08:55 +02:00
construct/modules/client/sync/rooms/unread_notifications.cc
Jason Volk 6a59036f4e ircd:Ⓜ️🧾 Reorg/rename interface; simplify impl; add options argument.
ircd:Ⓜ️🧾 Remove central linkage cruft for interface.
2019-09-06 11:57:02 -07:00

225 lines
4.5 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
ircd::mapi::header
IRCD_MODULE
{
"Client Sync :Room Unread Notifications"
};
namespace ircd::m::sync
{
static long _notification_count(const room &, const event::idx &a, const event::idx &b);
static long _highlight_count(const room &, const user &u, const event::idx &a, const event::idx &b);
static bool room_unread_notifications_polylog(data &);
static bool room_unread_notifications_linear(data &);
extern item room_unread_notifications;
}
decltype(ircd::m::sync::room_unread_notifications)
ircd::m::sync::room_unread_notifications
{
"rooms.unread_notifications",
room_unread_notifications_polylog,
room_unread_notifications_linear,
};
bool
ircd::m::sync::room_unread_notifications_linear(data &data)
{
if(!data.event_idx)
return false;
if(!data.room)
return false;
const bool is_user_room
{
data.room->room_id == data.user_room.room_id
};
assert(data.event);
const bool is_self_read
{
is_user_room && json::get<"type"_>(*data.event) == "ircd.read"
};
const m::room &room
{
!is_self_read?
data.room->room_id:
room::id{at<"state_key"_>(*data.event)}
};
char membuf[32];
const string_view &membership
{
!is_self_read?
data.membership:
m::membership(membuf, room, data.user)
};
if(!membership)
return false;
// skips state events only until a non-state event is seen.
if(likely(!is_self_read))
if(defined(json::get<"state_key"_>(*data.event)))
return false;
// skips old events the server has backfilled in the background.
if(likely(!is_self_read))
if(room::events::viewport_size >= 0)
if(json::get<"depth"_>(*data.event) + room::events::viewport_size < data.room_depth)
return false;
m::event::id::buf last_read;
if(likely(!is_self_read))
if(!m::receipt::get(last_read, room.room_id, data.user))
return false;
const auto start_idx
{
last_read?
index(last_read):
!is_self_read?
index(room):
0UL
};
json::stack::object rooms
{
*data.out, "rooms"
};
json::stack::object membership_
{
*data.out, membership
};
json::stack::object room_
{
*data.out, room.room_id
};
json::stack::object unread_notifications
{
*data.out, "unread_notifications"
};
const event::idx upper_bound
{
std::max(data.range.second, data.event_idx + 1)
};
// highlight_count
json::stack::member
{
*data.out, "highlight_count", json::value
{
start_idx?
_highlight_count(room, data.user, start_idx, upper_bound):
0L
}
};
// notification_count
json::stack::member
{
*data.out, "notification_count", json::value
{
start_idx && !is_self_read?
_notification_count(room, start_idx, upper_bound):
0L
}
};
return true;
}
bool
ircd::m::sync::room_unread_notifications_polylog(data &data)
{
if(!data.membership)
return false;
assert(data.room);
const auto &room
{
*data.room
};
m::event::id::buf last_read_buf;
const auto last_read
{
m::receipt::get(last_read_buf, room.room_id, data.user)
};
const auto start_idx
{
last_read?
index(last_read):
data.membership == "join"?
room::index(room):
0UL
};
if(!apropos(data, start_idx))
return false;
// notification_count
json::stack::member
{
*data.out, "notification_count", json::value
{
_notification_count(room, start_idx, data.range.second)
}
};
// highlight_count
if(m::user::highlight::enable_count)
json::stack::member
{
*data.out, "highlight_count", json::value
{
_highlight_count(room, data.user, start_idx, data.range.second)
}
};
return true;
}
long
ircd::m::sync::_notification_count(const room &room,
const event::idx &a,
const event::idx &b)
{
return room::events::count(room, a, a < b? b : a);
}
long
ircd::m::sync::_highlight_count(const room &room,
const user &user,
const event::idx &a,
const event::idx &b)
{
const m::user::highlight highlight
{
user
};
const m::event::idx_range range
{
a, a < b? b : a
};
return highlight.count_between(room, range);
}