0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-06 02:28:38 +02:00
construct/modules/client/rooms/read_markers.cc

57 lines
1.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;
resource::response
post__read_markers(client &client,
const resource::request &request,
const m::room::id &room_id)
{
const string_view m_fully_read
{
unquote(request["m.fully_read"])
};
const string_view m_read
{
unquote(request["m.read"])
};
const auto &marker
{
m_read?: m_fully_read
};
if(marker) switch(m::sigil(marker))
{
case m::id::EVENT:
m::receipt::read(room_id, request.user_id, marker);
break;
case m::id::ROOM:
m::receipt::read(room_id, request.user_id, m::head(m::room::id(marker)));
break;
default: log::dwarning
{
"Unhandled read marker '%s' sigil type",
string_view{marker}
};
}
return resource::response
{
client, http::OK
};
}