mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 11:58:53 +01:00
56 lines
1.2 KiB
C++
56 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
|
|
};
|
|
}
|