mirror of
https://github.com/matrix-construct/construct
synced 2024-11-15 06:21:06 +01:00
97 lines
2 KiB
C++
97 lines
2 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.
|
|
|
|
#include "rooms.h"
|
|
|
|
using namespace ircd;
|
|
|
|
extern "C" m::event::id::buf
|
|
commit__m_receipt_m_read(const m::room::id &,
|
|
const m::user::id &,
|
|
const m::event::id &,
|
|
const time_t &);
|
|
|
|
resource::response
|
|
post__receipt(client &client,
|
|
const resource::request &request,
|
|
const m::room::id &room_id)
|
|
{
|
|
if(request.parv.size() < 3)
|
|
throw m::NEED_MORE_PARAMS
|
|
{
|
|
"receipt type required"
|
|
};
|
|
|
|
if(request.parv.size() < 4)
|
|
throw m::NEED_MORE_PARAMS
|
|
{
|
|
"event_id required"
|
|
};
|
|
|
|
const string_view &receipt_type
|
|
{
|
|
request.parv[2]
|
|
};
|
|
|
|
m::event::id::buf event_id
|
|
{
|
|
url::decode(request.parv[3], event_id)
|
|
};
|
|
|
|
return resource::response
|
|
{
|
|
client, http::OK
|
|
};
|
|
}
|
|
|
|
m::event::id::buf
|
|
commit__m_receipt_m_read(const m::room::id &room_id,
|
|
const m::user::id &user_id,
|
|
const m::event::id &event_id,
|
|
const time_t &ms)
|
|
{
|
|
const json::value event_ids[]
|
|
{
|
|
{ event_id }
|
|
};
|
|
|
|
const json::members m_read
|
|
{
|
|
{ "data",
|
|
{
|
|
{ "ts", ms }
|
|
}},
|
|
{ "event_ids", { event_ids, 1 } },
|
|
};
|
|
|
|
json::iov event, content;
|
|
const json::iov::push push[]
|
|
{
|
|
{ event, { "type", "m.receipt" } },
|
|
{ event, { "room_id", room_id } },
|
|
{ content, { room_id,
|
|
{
|
|
{ "m.read",
|
|
{
|
|
{ user_id, m_read }
|
|
}}
|
|
}}}
|
|
};
|
|
|
|
m::vm::opts opts;
|
|
opts.hash = false;
|
|
opts.sign = false;
|
|
opts.event_id = false;
|
|
opts.origin = true;
|
|
opts.origin_server_ts = false;
|
|
opts.conforming = false;
|
|
|
|
return m::vm::commit(event, content, opts);
|
|
}
|