0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-04 17:48:35 +02:00
construct/include/ircd/m/filter.h

99 lines
2.8 KiB
C
Raw Normal View History

2018-02-04 03:22:01 +01:00
// 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.
2017-09-25 03:05:42 +02:00
#pragma once
#define HAVE_IRCD_M_FILTER_H
2017-10-25 18:47:03 +02:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsubobject-linkage"
2017-09-25 03:05:42 +02:00
namespace ircd::m
{
struct filter;
struct room_filter;
struct event_filter;
struct room_event_filter;
bool match(const event_filter &, const event &);
2018-02-17 22:08:59 +01:00
bool match(const room_event_filter &, const event &);
2017-09-25 03:05:42 +02:00
}
/// 5.1 "Filter" we use event_filter here
2017-09-25 03:05:42 +02:00
struct ircd::m::event_filter
:json::tuple
<
json::property<name::limit, uint>,
json::property<name::types, json::array>,
json::property<name::senders, json::array>,
json::property<name::not_types, json::array>,
json::property<name::not_senders, json::array>
>
{
using super_type::tuple;
using super_type::operator=;
};
/// 5.1 "RoomEventFilter"
2017-09-25 03:05:42 +02:00
struct ircd::m::room_event_filter
:json::tuple
<
json::property<name::limit, uint>,
json::property<name::types, json::array>,
json::property<name::rooms, json::array>,
json::property<name::senders, json::array>,
json::property<name::not_types, json::array>,
json::property<name::not_rooms, json::array>,
json::property<name::not_senders, json::array>
>
{
using super_type::tuple;
using super_type::operator=;
};
/// 5.1 "RoomFilter"
2017-09-25 03:05:42 +02:00
struct ircd::m::room_filter
:json::tuple
<
json::property<name::rooms, json::array>,
json::property<name::not_rooms, json::array>,
json::property<name::state, room_event_filter>,
json::property<name::timeline, room_event_filter>,
json::property<name::ephemeral, room_event_filter>,
json::property<name::account_data, room_event_filter>,
json::property<name::include_leave, bool>
>
{
using super_type::tuple;
using super_type::operator=;
};
struct ircd::m::filter
:json::tuple
<
json::property<name::event_fields, json::array>,
json::property<name::event_format, string_view>,
json::property<name::account_data, event_filter>,
json::property<name::room, room_filter>,
json::property<name::presence, event_filter>
>
{
using super_type::tuple;
using super_type::operator=;
using closure = std::function<void (const json::object &)>;
static bool get(std::nothrow_t, const user &, const string_view &filter_id, const closure &);
static void get(const user &, const string_view &filter_id, const closure &);
static string_view set(const mutable_buffer &id, const user &, const json::object &filter);
filter(const user &, const string_view &filter_id, const mutable_buffer &);
2017-09-25 03:05:42 +02:00
};
2017-10-25 18:47:03 +02:00
#pragma GCC diagnostic pop