0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 13:38:55 +02:00

ircd:Ⓜ️:push: Add iteration for all rules of all users.

This commit is contained in:
Jason Volk 2020-03-21 21:34:07 -07:00
parent f8ed27403e
commit 329982f3f1
2 changed files with 66 additions and 0 deletions

View file

@ -159,6 +159,9 @@ struct ircd::m::push::rule
{
static const string_view type_prefix;
using closure_bool = std::function<bool (const id::user &, const path &, const json::object &)>;
static bool for_each(const path &, const closure_bool &);
using super_type::tuple;
using super_type::operator=;
};

View file

@ -399,6 +399,69 @@ ircd::m::push::unknown_condition_kind(const event &event,
return false;
}
//
// rule
//
bool
ircd::m::push::rule::for_each(const path &path,
const closure_bool &closure)
{
using json::at;
char typebuf[event::TYPE_MAX_SIZE];
const string_view &type
{
make_type(typebuf, path)
};
return events::type::for_each_in(type, [&closure]
(const string_view &type, const event::idx &event_idx)
{
static const event::fetch::opts fopts
{
event::keys::include
{
"content",
"room_id",
"sender",
"state_key",
}
};
if(!m::room::state::present(event_idx))
return true;
const m::event::fetch event
{
event_idx, std::nothrow, fopts
};
if(!event.valid)
return true;
const m::user::id &sender
{
at<"sender"_>(event)
};
const m::room::id &room_id
{
at<"room_id"_>(event)
};
if(!my(sender) || !m::user::room::is(room_id, sender))
return true;
const push::path path
{
make_path(type, at<"state_key"_>(event))
};
return closure(at<"sender"_>(event), path, at<"content"_>(event));
});
}
//
// path
//