2018-03-04 13:28:36 +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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_RECEIPT_H
|
|
|
|
|
2018-03-15 06:10:40 +01:00
|
|
|
namespace ircd::m::receipt
|
2018-03-04 13:28:36 +01:00
|
|
|
{
|
2018-09-07 15:22:09 +02:00
|
|
|
// [GET]
|
2019-02-12 00:23:43 +01:00
|
|
|
bool exists(const id::room &, const id::user &, const id::event &);
|
|
|
|
bool freshest(const id::room &, const id::user &, const id::event &);
|
|
|
|
bool ignoring(const m::user &, const id::event &);
|
|
|
|
bool ignoring(const m::user &, const id::room &);
|
|
|
|
bool read(const id::room &, const id::user &, const id::event::closure &);
|
2018-09-07 15:22:09 +02:00
|
|
|
id::event read(id::event::buf &out, const id::room &, const id::user &);
|
|
|
|
|
|
|
|
// [SET]
|
2018-03-15 06:10:40 +01:00
|
|
|
id::event::buf read(const id::room &, const id::user &, const id::event &, const time_t &);
|
|
|
|
id::event::buf read(const id::room &, const id::user &, const id::event &); // now
|
|
|
|
};
|
2018-03-04 13:28:36 +01:00
|
|
|
|
2018-03-15 05:05:08 +01:00
|
|
|
struct ircd::m::edu::m_receipt
|
|
|
|
{
|
|
|
|
struct m_read;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ircd::m::edu::m_receipt::m_read
|
2018-03-04 13:28:36 +01:00
|
|
|
:json::tuple
|
|
|
|
<
|
2018-03-15 05:05:08 +01:00
|
|
|
json::property<name::data, json::object>,
|
2018-03-04 13:28:36 +01:00
|
|
|
json::property<name::event_ids, json::array>
|
|
|
|
>
|
|
|
|
{
|
|
|
|
using super_type::tuple;
|
|
|
|
using super_type::operator=;
|
|
|
|
};
|